diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-04-23 22:04:56 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-04-23 22:04:56 -0400 |
commit | 085ae07251c9972bed941e33103f41724d8cd320 (patch) | |
tree | ccc63c442f1f0fd64edd69130ad1c28ed622b61e /release-notes.md | |
parent | 5ff3184c301d382f6be528486bdd3139ef2ee2ff (diff) | |
download | SMAPI-085ae07251c9972bed941e33103f41724d8cd320.tar.gz SMAPI-085ae07251c9972bed941e33103f41724d8cd320.tar.bz2 SMAPI-085ae07251c9972bed941e33103f41724d8cd320.zip |
add string overloads for version methods (#263)
Diffstat (limited to 'release-notes.md')
-rw-r--r-- | release-notes.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/release-notes.md b/release-notes.md index fe55ed10..628757ae 100644 --- a/release-notes.md +++ b/release-notes.md @@ -20,10 +20,11 @@ For players: * Fixed rare issue where the installer would crash trying to delete a bundled mod from `%appdata%`. For mod developers: +* Mods are now initialised after the `Initialize`/`LoadContent` phase, which means the `GameEvents.Initialize` and `GameEvents.LoadContent` events are deprecated. You can move any logic in those methods to your mod's `Entry` method. +* Mods can now specify a minimum game version in their `manifest.json`. +* Added `IsBetween` and string overloads to the `ISemanticVersion` methods. * Fixed mouse-changed event never updating prior mouse position. * Fixed `monitor.ExitGameImmediately` not working correctly. -* Mods can now specify a minimum game version in their `manifest.json`. -* Mods are now initialised after the `Initialize`/`LoadContent` phase, which means the `GameEvents.Initialize` and `GameEvents.LoadContent` events are deprecated. You can move any logic in those methods to your mod's `Entry` method. ## 1.9 See [log](https://github.com/Pathoschild/SMAPI/compare/1.8...1.9). |