Skip to content

Commit

Permalink
VERSION 2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandrem committed Apr 30, 2023
1 parent 2833617 commit c5ed93a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Binary file modified Assets/Scenes/MainMenu.unity
Binary file not shown.
6 changes: 3 additions & 3 deletions Assets/Scripts/Global/Global.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ public class Global : MonoBehaviour {

private static bool isAlreadyInitialized;

public static string CurrentVersion = "2.4";
public static int CurrentVersionInt = 102040000;
public static int LatestVersionInt = 102040000;
public static string CurrentVersion = "2.5";
public static int CurrentVersionInt = 102050000;
public static int LatestVersionInt = 102050000;

public static SquadBuilder SquadBuilder { get; set;}

Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/MainMenu/View/MainMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ private void ShowSupportOnPatreon(int support)

GameObject panel = GameObject.Find("UI/Panels").transform.Find("MainMenuPanel").Find("SupportOnPatreon").gameObject;

panel.transform.Find("Text").GetComponent<Text>().text = $"\"Rules 2.5\" and new expansions are coming! If you want\nto see them in Fly Casual -\nsupport me on patreon\n{support} / 200";
//panel.transform.Find("Text").GetComponent<Text>().text = $"\"Rules 2.5\" and new expansions are coming! If you want\nto see them in Fly Casual -\nsupport me on patreon\n{support} / 200";
panel.transform.position = new Vector2(Screen.width - 20, 20);

panel.SetActive(true);
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/Model/Tools/DebugManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

public static class DebugManager
{
public static bool ReleaseVersion = false;
public static bool ReleaseVersion = true;

public static bool DebugNetworkSingleDevice;

Expand Down
Binary file modified ProjectSettings/ProjectSettings.asset
Binary file not shown.

0 comments on commit c5ed93a

Please sign in to comment.