Skip to content

Commit

Permalink
🔧 1.1.3 Hotfix
Browse files Browse the repository at this point in the history
- Ifdef correction + some meta file changes.
  • Loading branch information
JonathanMCarter committed Jun 11, 2023
1 parent a10e1a2 commit 094529a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Editor/Updaters/SemanticVersionUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public static string GetVersionNumber(BuildTarget buildTarget, bool updatedNumbe
return updatedNumber
? UpdateVersionNumber(PlayerSettings.Switch.releaseVersion)
: PlayerSettings.Switch.releaseVersion;
#if !UNITY_2021_2_8_OR_NEWER
#if UNITY_2022_2_X_OR_NEWER
case BuildTarget.Lumin:
return updatedNumber
? UpdateVersionNumber(PlayerSettings.Lumin.versionName)
Expand Down Expand Up @@ -212,7 +212,7 @@ public static void CallUpdateVersionNumber(BuildTarget buildTarget, int numberTo
PlayerSettings.Switch.releaseVersion = UpdateVersionNumber(PlayerSettings.Switch.releaseVersion, numberToUpdate);
PlayerSettings.Switch.displayVersion = UpdateVersionNumber(PlayerSettings.Switch.displayVersion, numberToUpdate);
break;
#if !UNITY_2021_2_8_OR_NEWER
#if UNITY_2022_2_X_OR_NEWER
case BuildTarget.Lumin:
PlayerSettings.Lumin.versionName = UpdateVersionNumber(PlayerSettings.Lumin.versionName, numberToUpdate);
break;
Expand Down

0 comments on commit 094529a

Please sign in to comment.