From 5af87fc3be989c092dfcc9f328aa8bf3e7d48664 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Wed, 31 Aug 2022 17:08:30 -0400 Subject: remove compatibility section in the new app manifest This apparently leads to NoSuitableGraphicsDeviceException errors when launching SMAPI for some players. --- docs/release-notes.md | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'docs/release-notes.md') diff --git a/docs/release-notes.md b/docs/release-notes.md index f306607c..a572e6cf 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -7,6 +7,10 @@ _If needed, you can update to SMAPI 3.16.0 first and then install the latest version._ --> +## Upcoming release +* For players: + * Fixed some players with compatible GPUs incorrectly getting `NoSuitableGraphicsDeviceException` errors on launch. + ## 3.16.1 Released 29 August 2022 for Stardew Valley 1.5.6 or later. -- cgit From 41e95642f004b2bf96b8855a276454260cb5ed0e Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Wed, 31 Aug 2022 17:15:58 -0400 Subject: prepare for release --- build/common.targets | 2 +- docs/release-notes.md | 6 ++++-- src/SMAPI.Mods.ConsoleCommands/manifest.json | 4 ++-- src/SMAPI.Mods.ErrorHandler/manifest.json | 4 ++-- src/SMAPI.Mods.SaveBackup/manifest.json | 4 ++-- src/SMAPI/Constants.cs | 2 +- 6 files changed, 12 insertions(+), 10 deletions(-) (limited to 'docs/release-notes.md') diff --git a/build/common.targets b/build/common.targets index 1a81a105..7fe66fab 100644 --- a/build/common.targets +++ b/build/common.targets @@ -7,7 +7,7 @@ repo. It imports the other MSBuild files as needed. - 3.16.1 + 3.16.2 SMAPI latest $(AssemblySearchPaths);{GAC} diff --git a/docs/release-notes.md b/docs/release-notes.md index a572e6cf..ab23b46e 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -7,9 +7,11 @@ _If needed, you can update to SMAPI 3.16.0 first and then install the latest version._ --> -## Upcoming release +## 3.16.2 +Released 31 August 2022 for Stardew Valley 1.5.6 or later. + * For players: - * Fixed some players with compatible GPUs incorrectly getting `NoSuitableGraphicsDeviceException` errors on launch. + * Fixed `NoSuitableGraphicsDeviceException` launch error for some players with compatible GPUs since 3.16.0. ## 3.16.1 Released 29 August 2022 for Stardew Valley 1.5.6 or later. diff --git a/src/SMAPI.Mods.ConsoleCommands/manifest.json b/src/SMAPI.Mods.ConsoleCommands/manifest.json index f3dc8aef..abe8b334 100644 --- a/src/SMAPI.Mods.ConsoleCommands/manifest.json +++ b/src/SMAPI.Mods.ConsoleCommands/manifest.json @@ -1,9 +1,9 @@ { "Name": "Console Commands", "Author": "SMAPI", - "Version": "3.16.1", + "Version": "3.16.2", "Description": "Adds SMAPI console commands that let you manipulate the game.", "UniqueID": "SMAPI.ConsoleCommands", "EntryDll": "ConsoleCommands.dll", - "MinimumApiVersion": "3.16.1" + "MinimumApiVersion": "3.16.2" } diff --git a/src/SMAPI.Mods.ErrorHandler/manifest.json b/src/SMAPI.Mods.ErrorHandler/manifest.json index cbcf0f82..b6764bc0 100644 --- a/src/SMAPI.Mods.ErrorHandler/manifest.json +++ b/src/SMAPI.Mods.ErrorHandler/manifest.json @@ -1,9 +1,9 @@ { "Name": "Error Handler", "Author": "SMAPI", - "Version": "3.16.1", + "Version": "3.16.2", "Description": "Handles some common vanilla errors to log more useful info or avoid breaking the game.", "UniqueID": "SMAPI.ErrorHandler", "EntryDll": "ErrorHandler.dll", - "MinimumApiVersion": "3.16.1" + "MinimumApiVersion": "3.16.2" } diff --git a/src/SMAPI.Mods.SaveBackup/manifest.json b/src/SMAPI.Mods.SaveBackup/manifest.json index 5aa092ef..a2657168 100644 --- a/src/SMAPI.Mods.SaveBackup/manifest.json +++ b/src/SMAPI.Mods.SaveBackup/manifest.json @@ -1,9 +1,9 @@ { "Name": "Save Backup", "Author": "SMAPI", - "Version": "3.16.1", + "Version": "3.16.2", "Description": "Automatically backs up all your saves once per day into its folder.", "UniqueID": "SMAPI.SaveBackup", "EntryDll": "SaveBackup.dll", - "MinimumApiVersion": "3.16.1" + "MinimumApiVersion": "3.16.2" } diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs index 14aaf166..493aebd9 100644 --- a/src/SMAPI/Constants.cs +++ b/src/SMAPI/Constants.cs @@ -52,7 +52,7 @@ namespace StardewModdingAPI internal static int? LogScreenId { get; set; } /// SMAPI's current raw semantic version. - internal static string RawApiVersion = "3.16.1"; + internal static string RawApiVersion = "3.16.2"; } /// Contains SMAPI's constants and assumptions. -- cgit