diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2016-12-23 12:43:42 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2016-12-23 12:43:42 -0500 |
commit | b75d86e7cc19f9bc961abb475f22e8f2b059533c (patch) | |
tree | 352a208a25780285419b0bae73148a00a98356ff /release-notes.md | |
parent | 8416c9009e37def03ff894dc660dec34a05c0558 (diff) | |
download | SMAPI-b75d86e7cc19f9bc961abb475f22e8f2b059533c.tar.gz SMAPI-b75d86e7cc19f9bc961abb475f22e8f2b059533c.tar.bz2 SMAPI-b75d86e7cc19f9bc961abb475f22e8f2b059533c.zip |
update for SMAPI 1.5 release
Diffstat (limited to 'release-notes.md')
-rw-r--r-- | release-notes.md | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/release-notes.md b/release-notes.md index 9eeae111..a11d9ea8 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,16 +1,17 @@ # Release notes ## 1.5 -See [log](https://github.com/Pathoschild/SMAPI/compare/stable...develop). +See [log](https://github.com/Pathoschild/SMAPI/compare/1.4...1.5). For players: - * Added option to disable update checks. + * Added an option to disable update checks. * SMAPI will now show a friendly error with update links when you try to use a known incompatible mod version. - * Fixed error when a mod uses the new reflection API on a missing field or method. + * Fixed an error when a mod uses the new reflection API on a missing field or method. + * Fixed an issue where mods weren't notified of a menu change if it changed while SMAPI was still notifying mods of the previous change. For developers: * Deprecated `Version` in favour of `SemanticVersion`. - _This new implementation is [semver 2.0](http://semver.org/)-compliant, introduces `NewerThan(version)` and `OlderThan(version)` convenience methods, adds support for parsing a version string into a `SemanticVersion`, and fixes various bugs with the former implementation._ + _This new implementation is [semver 2.0](http://semver.org/)-compliant, introduces `NewerThan(version)` and `OlderThan(version)` convenience methods, adds support for parsing a version string into a `SemanticVersion`, and fixes various bugs with the former implementation. This also replaces `Manifest` with `IManifest`._ * Increased deprecation levels for `SObject`, `Extensions`, `LogWriter` (not `Log`), `SPlayer`, and `Mod.Entry(ModHelper)` (not `Mod.Entry(IModHelper)`). ## 1.4 |