diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-04-13 22:41:34 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-04-13 22:41:34 -0400 |
commit | a3ade7a5126642f42794281057349fa5ff737cdd (patch) | |
tree | 0d0401dc56efe835f58d6001bf3e871e2197418c /docs | |
parent | 5997857064f4d6bb0747e84e1dbd1556c97b7481 (diff) | |
download | SMAPI-a3ade7a5126642f42794281057349fa5ff737cdd.tar.gz SMAPI-a3ade7a5126642f42794281057349fa5ff737cdd.tar.bz2 SMAPI-a3ade7a5126642f42794281057349fa5ff737cdd.zip |
split mod DB into a separate file
The mod metadata has grown over time, and there's no need to keep it in memory after mod loading. This lets us load the config earlier (since it has a smaller impact on memory usage which affects the game's audio code), and lets us discard the mod metadata when we're done with it.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/release-notes.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/release-notes.md b/docs/release-notes.md index e68720da..f0202ee1 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -15,6 +15,7 @@ * For SMAPI developers: * Added prerelease versions to the mod update-check API response where available (GitHub only). * Added support for beta releases on the home page. + * Split mod DB out of `StardewModdingAPI.config.json`, so we can load config earlier and reduce unnecessary memory usage later. --> ## 2.5.5 |