Files
CMLeonOS/utils/Version.cs

55 lines
1.7 KiB
C#
Raw Normal View History

2026-03-08 20:22:53 +08:00
// The CMLeonOS Project (https://github.com/Leonmmcoset/CMLeonOS)
// Copyright (C) 2025-present LeonOS 2 Developer Team
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
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
}
}