summaryrefslogtreecommitdiff
path: root/docs/release-notes.md
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-12-26 00:31:36 -0500
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-12-26 00:31:36 -0500
commit15d4b6310e3dd15c62f3faedbf1290b2db26fb59 (patch)
tree47d49a9c69628f0df1e688361f46bc5b46b3c0fd /docs/release-notes.md
parent5cc5f089b9645a60385ff293b5a7202f260bfc0f (diff)
parentf19cc3aac1a781bf2f2d20bc9577c2fe929b1e96 (diff)
downloadSMAPI-15d4b6310e3dd15c62f3faedbf1290b2db26fb59.tar.gz
SMAPI-15d4b6310e3dd15c62f3faedbf1290b2db26fb59.tar.bz2
SMAPI-15d4b6310e3dd15c62f3faedbf1290b2db26fb59.zip
Merge branch 'develop' into stable
Diffstat (limited to 'docs/release-notes.md')
-rw-r--r--docs/release-notes.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/release-notes.md b/docs/release-notes.md
index 4cf8efa2..165e7d4e 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -1,4 +1,24 @@
# Release notes
+## 2.3
+* For players:
+ * Added a user-friendly [download page](https://smapi.io).
+ * Improved cryptic libgdiplus errors on Mac when Mono isn't installed.
+ * Fixed mod UIs hidden when menu backgrounds are enabled.
+
+* For modders:
+ * **Added mod-provided APIs** to allow simple integrations between mods, even without direct assembly references.
+ * Added `GameEvents.FirstUpdateTick` event (called once after all mods are initialised).
+ * Added `IsSuppressed` to input events so mods can optionally avoid handling keys another mod has already handled.
+ * Added trace message for mods with no update keys.
+ * Adjusted reflection API to match actual usage (e.g. renamed `GetPrivate*` to `Get*`), and deprecated previous methods.
+ * Fixed `GraphicsEvents.OnPostRenderEvent` not being raised in some specialised cases.
+ * Fixed reflection API error for properties missing a `get` and `set`.
+ * Fixed issue where a mod could change the cursor position reported to other mods.
+ * Updated compatibility list.
+
+* For the [log parser][]:
+ * Fixed broken favicon.
+
## 2.2
* For players:
* Fixed error when a mod loads custom assets on Linux/Mac.