Files
CMLeonOS/utils/Version.cs

39 lines
999 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-28 22:09:18 +08:00
public static string VersionType = "Release";
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-03-01 17:03:49 +08:00
public static string GetVersion()
{
return ShortVersion;
}
2026-02-02 02:01:52 +08:00
}
}