diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/release-notes.md | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/docs/release-notes.md b/docs/release-notes.md index e524ea65..624891eb 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,18 +1,21 @@ # Release notes -<!-- ## 2.6 alpha * For players: * Added support for Stardew Valley 1.3+; no longer compatible with earlier versions. - * Added `Context.IsMultiplayer` and `Context.IsMainPlayer` flags. + * Added warning for mods which don't have update checks configured. + * Fixed detection of GOG install path in rare cases. * Fixed SMAPI update checks not showing newer beta versions when using a beta version. * Fixed console color scheme on Mac or PowerShell, and added override option to `StardewModdingAPI.config.json`. * Fixed `world_settime` console command sometimes breaking NPC schedules (e.g. so they stay in bed). * For modders: * Added code analysis to mod build config package to flag common issues as warnings. - * Dropped some deprecated APIs. + * Added `Context.IsMultiplayer` and `Context.IsMainPlayer` flags. * Fixed assets loaded by temporary content managers not being editable. * Fixed issue where assets didn't reload correctly when the player switches language. + * Fixed `helper.ModRegistry.GetApi` interface validation errors not mentioning which interface caused the issue. + * **Breaking change**: dropped some deprecated APIs. + * **Breaking change**: mods can't intercept chatbox input, including the game's hotkey to toggle the chatbox (default `T`). * For SMAPI developers: * Added more consistent crossplatform handling using a new `EnvironmentUtility`. @@ -20,7 +23,11 @@ * Added prerelease versions to the mod update-check API response where available (GitHub only). * Added support for beta releases on the home page. * Split mod DB out of `StardewModdingAPI.config.json`, so we can load config earlier and reduce unnecessary memory usage later. ---> + * Rewrote input suppression using new SDV 1.3 APIs. + * Rewrote world/player state tracking: + * much more efficient than previous method; + * uses net field events where available; + * lays groundwork for tracking events for multiple players. ## 2.5.5 * For players: |