diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-08-26 23:11:41 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-08-26 23:11:41 -0400 |
commit | 0bf692addc3e309a8448de9ffb2a41cb701cfddf (patch) | |
tree | f616ea55e6f996d8f746ad96903184ece6774e99 /docs | |
parent | 54e7fb7a0bcd994f6d49348c879cb96902dbe07b (diff) | |
download | SMAPI-0bf692addc3e309a8448de9ffb2a41cb701cfddf.tar.gz SMAPI-0bf692addc3e309a8448de9ffb2a41cb701cfddf.tar.bz2 SMAPI-0bf692addc3e309a8448de9ffb2a41cb701cfddf.zip |
add heuristic rewrite for field => const changes
Diffstat (limited to 'docs')
-rw-r--r-- | docs/release-notes.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/release-notes.md b/docs/release-notes.md index 21f9d213..554b9518 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -26,12 +26,12 @@ * For SMAPI developers: * The web API now returns an update alert in two new cases: any newer unofficial update (previously only shown if the mod was incompatible), and a newer prerelease version if the installed non-prerelease version is broken (previously only shown if the installed version was prerelease). - * Internal refactoring to simplify game updates: - * Reorganised SMAPI core to reduce coupling to `Game1` and make it easier to navigate. - * Added rewriter for any method broken due to new optional parameters. - * Added rewriter for any field which was replaced by a property. - * `FieldReplaceRewriter` now supports mapping to a different target type. - * Internal refactoring to simplify future game updates. + * Reorganised SMAPI core to reduce coupling to `Game1`, make it easier to navigate, and simplify future game updates. + * SMAPI now automatically fixes code broken by these changes in game code, so manual rewriters are no longer needed: + * reference to a method with new optional parameters; + * reference to a field replaced by a property; + * reference to a field replaced by a `const` field. + * `FieldReplaceRewriter` now supports mapping to a different target type. ## 3.6.2 Released 02 August 2020 for Stardew Valley 1.4.1 or later. |