Skip to content

Commit

Permalink
version check issue fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Hydraxous committed May 17, 2023
1 parent 749f13d commit 298cc44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ConstInfo.cs
Expand Up @@ -4,7 +4,7 @@ public static class ConstInfo
{
public const string GUID = "Hydraxous.ULTRAKILL.BossRush";
public const string NAME = "BossRush";
public const string VERSION = "1.1.1";
public const string VERSION = "1.1.2";
public const string GITHUB_URL = "https://api.github.com/repos/Hydraxous/bossrush/tags";
}
}
2 changes: 1 addition & 1 deletion UI/BossRushVersionText.cs
Expand Up @@ -17,7 +17,7 @@ private void Awake()

private void OnEnable()
{
text.text = $"{ConstInfo.NAME} - {BossRush.VersionName} - {((BossRush.LatestVersion) ? "(<color=green>Latest</color>)" : "(<color=red>Update Available</color>)")}";
text.text = $"{ConstInfo.NAME} - {ConstInfo.VERSION} - {((BossRush.LatestVersion) ? "(<color=green>Latest</color>)" : "(<color=red>Update Available</color>)")}";
}
}
}

0 comments on commit 298cc44

Please sign in to comment.