Skip to content

Commit

Permalink
🔩 Release 2.1.8 > Merge pull request #4 from CarterGames/release
Browse files Browse the repository at this point in the history
- Fix for a build issue.
  • Loading branch information
JonathanMCarter authored May 20, 2024
2 parents 68b4cde + 2f22c1d commit a27cdb7
Show file tree
Hide file tree
Showing 2 changed files with 3 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.1.7";
public static string VersionNumber => "2.1.8";


/// <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 => "11/05/2024";
public static string ReleaseDate => "20/05/2024";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ private void OnApplicationQuit()
private void OnApplicationFocus(bool hasFocus)
{
#if !UNITY_EDITOR
if (!AssetAccessor.GetAsset<SettingsAssetRuntime>().AutoSave) return;
if (!AssetAccessor.GetAsset<AssetGlobalRuntimeSettings>().AutoSave) return;
if (hasFocus) return;
SaveManager.Save(false);
#endif
Expand Down

0 comments on commit a27cdb7

Please sign in to comment.