prepare for release

This commit is contained in:
Jesse Plamondon-Willard 2020-08-02 16:38:02 -04:00
parent 1cd55c34f0
commit b96bcb2189
No known key found for this signature in database
GPG Key ID: CF8B1456B3E29F49
5 changed files with 13 additions and 12 deletions

View File

@ -4,7 +4,7 @@
<!--set properties --> <!--set properties -->
<PropertyGroup> <PropertyGroup>
<Version>3.6.1</Version> <Version>3.6.2</Version>
<Product>SMAPI</Product> <Product>SMAPI</Product>
<LangVersion>latest</LangVersion> <LangVersion>latest</LangVersion>

View File

@ -7,22 +7,23 @@
* Migrated to Harmony 2.0 (see [_migrate to Harmony 2.0_](https://stardewvalleywiki.com/Modding:Migrate_to_Harmony_2.0) for more info). * Migrated to Harmony 2.0 (see [_migrate to Harmony 2.0_](https://stardewvalleywiki.com/Modding:Migrate_to_Harmony_2.0) for more info).
--> -->
## Upcoming release ## 3.6.2
Released 02 August 2020 for Stardew Valley 1.4.1 or later.
* For players: * For players:
* SMAPI now ignores more content file types when detecting mods (`.doc`, `.docx`, `.rar`, and `.zip`). * Improved compatibility with some Linux terminals (thanks to jlaw and Spatterjaaay!).
* Added trace log for GPU running the game to simplify troubleshooting some issues.
* Fixed launcher's fallback logic on Linux when no compatible terminal was found (thanks to jlaw!).
* Fixed rare crash when a mod adds/removes an event handler from an event handler. * Fixed rare crash when a mod adds/removes an event handler from an event handler.
* Fixed string sorting/comparison for some special characters. * Fixed string sorting/comparison for some special characters.
* Improved compatibility with some Linux terminals (thanks to Spatterjaaay!).
* For the Console Commands mod: * For the Console Commands mod:
* Fixed error opening menu when some item data is invalid. * Fixed error opening menu when some item data is invalid.
* Fixed spawned Floor TV not functional as a TV (thanks to Platonymous!). * Fixed spawned Floor TV not functional as a TV (thanks to Platonymous!).
* Fixed incorrect color for sturgeon roe. * Fixed spawned sturgeon roe having incorrect color.
* For modders: * For modders:
* Updated internal dependencies. * Updated internal dependencies.
* SMAPI now ignores more file types when scanning for mod folders (`.doc`, `.docx`, `.rar`, and `.zip`).
* Added current GPU to trace logs to simplify troubleshooting.
## 3.6.1 ## 3.6.1
Released 21 June 2020 for Stardew Valley 1.4.1 or later. Released 21 June 2020 for Stardew Valley 1.4.1 or later.

View File

@ -1,9 +1,9 @@
{ {
"Name": "Console Commands", "Name": "Console Commands",
"Author": "SMAPI", "Author": "SMAPI",
"Version": "3.6.1", "Version": "3.6.2",
"Description": "Adds SMAPI console commands that let you manipulate the game.", "Description": "Adds SMAPI console commands that let you manipulate the game.",
"UniqueID": "SMAPI.ConsoleCommands", "UniqueID": "SMAPI.ConsoleCommands",
"EntryDll": "ConsoleCommands.dll", "EntryDll": "ConsoleCommands.dll",
"MinimumApiVersion": "3.6.1" "MinimumApiVersion": "3.6.2"
} }

View File

@ -1,9 +1,9 @@
{ {
"Name": "Save Backup", "Name": "Save Backup",
"Author": "SMAPI", "Author": "SMAPI",
"Version": "3.6.1", "Version": "3.6.2",
"Description": "Automatically backs up all your saves once per day into its folder.", "Description": "Automatically backs up all your saves once per day into its folder.",
"UniqueID": "SMAPI.SaveBackup", "UniqueID": "SMAPI.SaveBackup",
"EntryDll": "SaveBackup.dll", "EntryDll": "SaveBackup.dll",
"MinimumApiVersion": "3.6.1" "MinimumApiVersion": "3.6.2"
} }

View File

@ -20,7 +20,7 @@ namespace StardewModdingAPI
** Public ** Public
****/ ****/
/// <summary>SMAPI's current semantic version.</summary> /// <summary>SMAPI's current semantic version.</summary>
public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("3.6.1"); public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("3.6.2");
/// <summary>The minimum supported version of Stardew Valley.</summary> /// <summary>The minimum supported version of Stardew Valley.</summary>
public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.4.1"); public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.4.1");