summaryrefslogtreecommitdiff
path: root/release-notes.md
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-04-23 22:04:56 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-04-23 22:04:56 -0400
commit085ae07251c9972bed941e33103f41724d8cd320 (patch)
treeccc63c442f1f0fd64edd69130ad1c28ed622b61e /release-notes.md
parent5ff3184c301d382f6be528486bdd3139ef2ee2ff (diff)
downloadSMAPI-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.md5
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).