Skip to content

Commit

Permalink
🔩 3.0.8 Release > Merge pull request #7 from CarterGames/release
Browse files Browse the repository at this point in the history
🚧 Hotfix for minor issue.
  • Loading branch information
JonathanMCarter authored Jun 12, 2024
2 parents b55d815 + 41aafb2 commit 6fdf66d
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 @@ -234,7 +234,9 @@ private void DrawTabButtons()
/// Forces the GUI to update when called.
/// </summary>
public static void ForceUpdate()
{
{
if (!HasOpenInstances<LibraryEditorWindow>()) return;

window ??= GetWindow<LibraryEditorWindow>();
window.Repaint();
}
Expand Down
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 => "3.0.7";
public static string VersionNumber => "3.0.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 => "09/06/2024";
public static string ReleaseDate => "12/06/2024";
}
}

0 comments on commit 6fdf66d

Please sign in to comment.