Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
alwaysintreble committed Mar 31, 2024
1 parent 9a6d4c3 commit cdeeeaf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
10 changes: 6 additions & 4 deletions Archipelago/ArchipelagoClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ namespace MessengerRando.Archipelago
{
public static class ArchipelagoClient
{
private const string ApVersion = "0.4.3";
private const string ApVersion = "0.4.4";
public static ArchipelagoData ServerData = new ArchipelagoData();

private delegate void OnConnectAttempt(string result);
public static bool Authenticated;
public static bool HasConnected;
private static bool attemptingConnection;
public static bool offline;
public static bool Offline;

public static bool DisplayAPMessages = true;
public static bool FilterAPMessages = true;
Expand Down Expand Up @@ -409,9 +409,11 @@ public static void UpdateArchipelagoState()
Console.WriteLine(message);
DialogChanger.CreateDialogBox(message);
}

TrapManager.UpdateTrapStatus();
if (!Authenticated)
{
if (offline) return;
if (Offline) return;
Console.WriteLine("Attempting to reconnect to Archipelago Server...");
ThreadPool.QueueUserWorkItem(_ => ConnectAsync());
return;
Expand Down Expand Up @@ -494,7 +496,7 @@ public static string UpdateStatusText()
text += $"\nHint points available: {Session.RoomState.HintPoints}\nHint point cost: {hintCost}";
}
}
else if (offline)
else if (Offline)
{
text = "";
}
Expand Down
2 changes: 1 addition & 1 deletion MessengerRando.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<Version>0.13.5</Version>
<Version>0.14.0</Version>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
Expand Down
2 changes: 1 addition & 1 deletion courier.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "TheMessengerRandomizerAP"
version = "0.13.5"
version = "0.14.0"
dependencies = [
{ name = "Courier", version = "0.7.0" }
]

0 comments on commit cdeeeaf

Please sign in to comment.