diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-06-26 11:01:47 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-06-26 11:01:47 -0400 |
commit | 8d7b5b372657c0f96196cb2a902b2bdcce184fe4 (patch) | |
tree | b993c2dca419bb80accdb9eb4eef331cc277ecd6 /release-notes.md | |
parent | e66ee50cae9773d4ebaed0ab7e649aef9602cc94 (diff) | |
download | SMAPI-8d7b5b372657c0f96196cb2a902b2bdcce184fe4.tar.gz SMAPI-8d7b5b372657c0f96196cb2a902b2bdcce184fe4.tar.bz2 SMAPI-8d7b5b372657c0f96196cb2a902b2bdcce184fe4.zip |
improve logging when SMAPI loads mods
Diffstat (limited to 'release-notes.md')
-rw-r--r-- | release-notes.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/release-notes.md b/release-notes.md index f0e08e3a..d1f02588 100644 --- a/release-notes.md +++ b/release-notes.md @@ -17,10 +17,12 @@ See [log](https://github.com/Pathoschild/SMAPI/compare/1.14...1.15). For players: * SMAPI will no longer load mods known to be obsolete or unneeded. * When the `ObjectInformation.xnb` is broken, SMAPI will now print one error to the console instead of a warning flood. (The individual issues are still listed in the log file if needed.) +* Mods are now listed in alphabetical order in the log. For modders: * You can now specify minimum dependency versions in `manifest.json`. * Added `System.ValueTuple.dll` to the SMAPI install package so mods can use [C# 7 value tuples](https://docs.microsoft.com/en-us/dotnet/csharp/tuples). +* Improved trace logging when SMAPI loads mods. * Fixed `SemanticVersion` parsing some invalid versions into close approximations (like `1.apple` → `1.0-apple`). * Fixed `SemanticVersion` not treating hyphens as separators when comparing prerelease tags. <small>_(While that was technically correct, it leads to unintuitive behaviour like sorting `-alpha-2` _after_ `-alpha-10`, even though `-alpha.2` sorts before `-alpha.10`.)_</small> |