set max game version to prepare for 1.4 release
This commit is contained in:
parent
ec0039ff7f
commit
d8cf910347
|
@ -11,6 +11,7 @@ Released 01 March 2019 for Stardew Valley 1.3.36.
|
||||||
|
|
||||||
* For players:
|
* For players:
|
||||||
* Updated for Stardew Valley 1.3.36.
|
* Updated for Stardew Valley 1.3.36.
|
||||||
|
* Updated game version check for the upcoming Stardew Valley 1.4.
|
||||||
|
|
||||||
* For modders:
|
* For modders:
|
||||||
* Bumped all deprecation levels to _pending removal_.
|
* Bumped all deprecation levels to _pending removal_.
|
||||||
|
|
|
@ -26,7 +26,7 @@ namespace StardewModdingAPI
|
||||||
public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.3.36");
|
public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.3.36");
|
||||||
|
|
||||||
/// <summary>The maximum supported version of Stardew Valley.</summary>
|
/// <summary>The maximum supported version of Stardew Valley.</summary>
|
||||||
public static ISemanticVersion MaximumGameVersion { get; } = null;
|
public static ISemanticVersion MaximumGameVersion { get; } = new GameVersion("1.3.36");
|
||||||
|
|
||||||
/// <summary>The target game platform.</summary>
|
/// <summary>The target game platform.</summary>
|
||||||
public static GamePlatform TargetPlatform => (GamePlatform)Constants.Platform;
|
public static GamePlatform TargetPlatform => (GamePlatform)Constants.Platform;
|
||||||
|
|
Loading…
Reference in New Issue