Skip to content

Commit

Permalink
hopefully correct the version
Browse files Browse the repository at this point in the history
  • Loading branch information
factubsio committed Dec 22, 2021
1 parent d6f51fb commit 1e09c93
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion BlueprintExplorer/BlueprintDB.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ public int CompareTo(GameVersion other)

}


public List<GameVersion> Available = new() { };

private readonly GameVersion LastKnown = new(1, 1, 6, 'e', 0);
Expand Down
1 change: 1 addition & 0 deletions BlueprintExplorer/BlueprintExplorer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon />
<StartupObject />
<Version>0.0.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion BlueprintExplorer/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public Form1() {
{
var json = t.Result;
if (json.TryGetProperty("tag_name", out var tag)) {
long latest = 65536 + ParseVersion(tag.GetString()[1..]);
long latest = ParseVersion(tag.GetString()[1..]);
if (latest > version)
{
AddNotification(new()
Expand Down

0 comments on commit 1e09c93

Please sign in to comment.