Skip to content

Commit

Permalink
chore: 🔖 Update the version id.
Browse files Browse the repository at this point in the history
  • Loading branch information
DreamEnderKing committed Apr 24, 2024
1 parent 064d3d9 commit a483e9f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions installer/Data/MD5FileData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ public class TVersion
{
// 代码库版本
[JsonInclude]
public Version LibVersion = new Version(1, 0, 0, 0);
public Version LibVersion = new Version(1, 0, 0, 1);
// 选手代码模板版本
[JsonInclude]
public Version TemplateVersion = new Version(1, 0, 0, 1);
public Version TemplateVersion = new Version(1, 0, 0, 2);
// 本体版本
[JsonInclude]
public Version InstallerVersion = new Version(1, 0, 0, 1);
public Version InstallerVersion = new Version(1, 0, 0, 2);
public static bool operator <(TVersion l, TVersion r)
{
return l.LibVersion < r.LibVersion || l.TemplateVersion < r.TemplateVersion || l.InstallerVersion < r.InstallerVersion;
Expand Down

0 comments on commit a483e9f

Please sign in to comment.