Update UpdateChecker.cs

This commit is contained in:
Netch
2022-06-24 15:03:58 +08:00
committed by GitHub
parent c696277b6b
commit 99480e99c3

View File

@@ -15,7 +15,7 @@ public static class UpdateChecker
public const string Name = @"Netch";
public const string Copyright = @"Copyright © 2019 - 2022";
public const string AssemblyVersion = @"1.9.6";
public const string AssemblyVersion = @"1.9.7";
private const string Suffix = @"";
public static readonly string Version = $"{AssemblyVersion}{(string.IsNullOrEmpty(Suffix) ? "" : $"-{Suffix}")}";
@@ -103,4 +103,4 @@ public static class UpdateChecker
var ordered = releases.OrderByDescending(release => release.tag_name, new VersionUtil.VersionComparer());
return ordered.ElementAt(0);
}
}
}