Skip to content

Commit

Permalink
📦 2.2.2 Release - Merge pull request #5 from CarterGames/2.2.x
Browse files Browse the repository at this point in the history
🔧 WebGL build fix
  • Loading branch information
JonathanMCarter authored May 17, 2024
2 parents 181a461 + a3446f3 commit 1fac920
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static class AssetVersionData
/// <summary>
/// The version number of the asset.
/// </summary>
public static string VersionNumber => "2.2.1";
public static string VersionNumber => "2.2.2";


/// <summary>
Expand All @@ -40,6 +40,6 @@ public static class AssetVersionData
/// <remarks>
/// Asset owner is in the UK, so its D/M/Y format.
/// </remarks>
public static string ReleaseDate => "16/05/2024";
public static string ReleaseDate => "17/05/2024";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@

using System;
using System.IO;
#if UNITY_WEBGL && !UNITY_EDITOR
using UnityEngine;
#endif

namespace CarterGames.Assets.LeaderboardManager.Save
{
Expand Down Expand Up @@ -90,7 +93,6 @@ public void Save(string json)
// Nothing
}


#if UNITY_WEBGL && !UNITY_EDITOR
Application.ExternalEval("_JS_FileSystem_Sync();");
#endif
Expand Down

0 comments on commit 1fac920

Please sign in to comment.