Files
CMLeonOS/utils/Version.cs

34 lines
900 B
C#
Raw Normal View History

2026-02-02 02:01:52 +08:00
using System;
namespace CMLeonOS
{
public static class Version
{
public static string Major = "1";
public static string Minor = "0";
public static string Patch = "0";
2026-02-12 00:06:16 +08:00
public static string VersionType = "PreRelease 2";
2026-02-09 02:04:58 +08:00
public static string GitCommit = "unknown";
2026-02-02 02:01:52 +08:00
public static string FullVersion
{
2026-02-05 21:35:35 +08:00
get { return $"{Major}.{Minor}.{Patch}-{VersionType}"; }
2026-02-02 02:01:52 +08:00
}
public static string ShortVersion
{
get { return $"{Major}.{Minor}.{Patch}"; }
}
public static string DisplayVersion
{
2026-02-05 21:35:35 +08:00
get { return $"CMLeonOS v{ShortVersion} ({VersionType})"; }
2026-02-02 02:01:52 +08:00
}
2026-02-09 02:04:58 +08:00
public static string DisplayVersionWithGit
{
get { return $"CMLeonOS v{ShortVersion} ({VersionType}) - Git: {GitCommit}"; }
}
2026-02-02 02:01:52 +08:00
}
}