2016-10-31 11:59:51 +08:00
# Release notes
2016-12-19 02:28:23 +08:00
## 1.5
See [log ](https://github.com/Pathoschild/SMAPI/compare/stable...develop ).
For players:
* Fixed error when a mod uses the new reflection API on a missing field or method.
2016-12-22 23:26:00 +08:00
For developers:
* Deprecated `Version` in favour of `SemanticVersion` .
_This new implementation is [semver 2.0](http://semver.org/)-compliant, introduces `NewerThan(version)` and `OlderThan(version)` convenience methods, adds support for parsing a version string into a `SemanticVersion`, and fixes various bugs with the former implementation._
2016-12-13 00:20:31 +08:00
## 1.4
2016-12-19 02:28:23 +08:00
See [log ](https://github.com/Pathoschild/SMAPI/compare/1.3...1.4 ).
2016-12-06 13:45:22 +08:00
For players:
2016-12-13 00:20:31 +08:00
* SMAPI will now prevent mods from crashing your game with menu errors.
2016-12-09 01:15:10 +08:00
* The installer will now automatically detect most custom install paths.
* The installer will now automatically clean up old SMAPI files.
2016-12-11 03:29:38 +08:00
* Each mod now has its own `.cache` folder, so removing the mod won't leave orphaned cache files behind.
* Improved installer wording to reduce confusion.
2016-12-08 11:43:05 +08:00
* Fixed the installer not removing TrainerMod from appdata if it's already in the game mods directory.
* Fixed the installer not moving mods out of appdata if the game isn't installed on the same Windows partition.
2016-12-11 03:29:38 +08:00
* Fixed the SMAPI console not being shown on Linux and Mac.
2016-12-06 13:45:22 +08:00
For developers:
2016-12-11 03:29:38 +08:00
* Added a reflection API (via `helper.Reflection` ) that simplifies robust access to the game's private fields and methods.
* Added a searchable `list_items` console command to replace the `out_items` , `out_melee` , and `out_rings` commands.
2016-12-08 11:05:14 +08:00
* Added `TypeLoadException` details when intercepted by SMAPI.
2016-12-07 11:19:38 +08:00
* Fixed an issue where you couldn't debug into an assembly because it was copied into the `.cache` directory. That will now only happen if necessary.
2016-12-06 13:45:22 +08:00
2016-11-30 08:24:00 +08:00
## 1.3
2016-12-19 02:28:23 +08:00
See [log ](https://github.com/Pathoschild/SMAPI/compare/1.2...1.3 ).
2016-11-30 08:24:00 +08:00
For players:
* You can now run most mods on any platform (e.g. run Windows mods on Linux/Mac).
2016-11-30 08:42:27 +08:00
* Fixed the normal uninstaller not removing files added by the 'SMAPI for developers' installer.
2016-11-30 08:24:00 +08:00
2016-11-25 01:19:57 +08:00
## 1.2
2016-12-19 02:28:23 +08:00
See [log ](https://github.com/Pathoschild/SMAPI/compare/1.1.1...1.2 ).
2016-11-24 09:21:12 +08:00
For players:
* Fixed compatibility with some older mods.
2016-11-25 01:19:57 +08:00
* Fixed mod errors in most event handlers crashing the game.
* Fixed mod errors in some event handlers preventing other mods from receiving the same event.
2016-11-25 01:43:28 +08:00
* Fixed game crashing on startup with an audio error for some players.
2016-11-24 09:21:12 +08:00
2016-11-24 09:23:42 +08:00
For developers:
2016-11-25 01:19:57 +08:00
* Improved logging to show `ReflectionTypeLoadException` details when it's caught by SMAPI.
2016-11-24 09:23:42 +08:00
2016-11-15 08:27:44 +08:00
## 1.1
2016-12-19 02:28:23 +08:00
See [log ](https://github.com/Pathoschild/SMAPI/compare/1.0...1.1.1 ).
2016-11-15 08:27:44 +08:00
2016-11-17 06:42:44 +08:00
For players:
* Fixed console exiting immediately when some exceptions occur.
* Fixed an error in 1.0 when mod uses `config.json` but the file doesn't exist.
* Fixed critical errors being saved to a separate log file.
2016-11-24 09:21:12 +08:00
* Fixed compatibility with some older mods.< sup > 1.1.1</ sup >
2016-11-20 05:03:45 +08:00
* Fixed race condition where some mods would sometimes crash because the game wasn't ready yet.< sup > 1.1.1</ sup >
2016-11-17 06:42:44 +08:00
For developers:
* Added new logging interface:
* easier to use;
* supports trace logs (written to the log file, but hidden in the console by default);
* messages are now listed in order;
* messages now show which mod logged them;
* more consistent and intuitive console color scheme.
* Added optional `MinimumApiVersion` to `manifest.json` .
2016-11-17 11:41:27 +08:00
* Added emergency interrupt feature for dangerous mods.
2016-11-19 13:17:58 +08:00
* Fixed deprecation warnings being repeated if the mod can't be identified.< sup > 1.1.1</ sup >
2016-11-15 08:27:44 +08:00
2016-11-08 05:26:31 +08:00
## 1.0
2016-12-19 02:28:23 +08:00
See [log ](https://github.com/Pathoschild/SMAPI/compare/0.40.1.1-3...1.0 ).
2016-11-08 05:26:31 +08:00
For players:
2016-10-31 11:59:51 +08:00
* Added support for Linux and Mac.
2016-11-04 12:07:17 +08:00
* Added installer to automate adding & removing SMAPI.
2016-11-03 12:43:41 +08:00
* Added background update check on launch.
2016-11-08 05:26:31 +08:00
* Fixed missing `steam_appid.txt` file.
* Fixed some mod UIs disappearing at a non-default zoom level for some users.
* Removed undocumented support for mods in AppData folder ** (breaking change)**.
* Removed `F2` debug mode.
For mod developers:
* Added deprecation warnings.
2016-11-03 12:25:54 +08:00
* Added OS version to log.
2016-11-03 12:43:41 +08:00
* Added zoom-adjusted mouse position to mouse-changed event arguments.
2016-11-08 05:26:31 +08:00
* Added SMAPI code documentation.
2016-11-03 12:31:51 +08:00
* Switched to [semantic versioning ](http://semver.org ).
2016-11-08 05:26:31 +08:00
* Fixed mod versions not shown correctly in the log.
2016-11-03 12:25:54 +08:00
* Fixed misspelled field in `manifest.json` schema.
2016-11-08 05:26:31 +08:00
* Fixed some events getting wrong data.
* Simplified log output.
For SMAPI developers:
* Simplified compiling from source.
* Formalised release process and added automated build packaging.
* Removed obsolete and unfinished code.
* Internal cleanup & refactoring.
2016-10-31 11:59:51 +08:00
## 0.x
2016-12-19 02:28:23 +08:00
* 0.40.1.1 (2016-09-30, [log ](https://github.com/Pathoschild/SMAPI/compare/0.40.0...0.40.1.1-3 ))
2016-10-31 11:59:51 +08:00
* Added support for Stardew Valley 1.1.
2016-12-19 02:28:23 +08:00
* 0.40.0 (2016-04-05, [log ](https://github.com/Pathoschild/SMAPI/compare/0.39.7...0.40.0 ))
2016-10-31 11:59:51 +08:00
* Fixed an error that ocurred during minigames.
2016-12-19 02:28:23 +08:00
* 0.39.7 (2016-04-04, [log ](https://github.com/Pathoschild/SMAPI/compare/0.39.6...0.39.7 ))
2016-10-31 11:59:51 +08:00
* Added 'no check' graphics events that are triggered regardless of game's if checks.
2016-12-19 02:28:23 +08:00
* 0.39.6 (2016-04-01, [log ](https://github.com/Pathoschild/SMAPI/compare/0.39.5...0.39.6 ))
2016-10-31 11:59:51 +08:00
* Added game & SMAPI versions to log.
* Fixed conflict in graphics tick events.
* Bug fixes.
2016-12-19 02:28:23 +08:00
* 0.39.5 (2016-03-30, [log ](https://github.com/Pathoschild/SMAPI/compare/0.39.4...0.39.5 ))
* 0.39.4 (2016-03-29, [log ](https://github.com/Pathoschild/SMAPI/compare/0.39.3...0.39.4 ))
* 0.39.3 (2016-03-28, [log ](https://github.com/Pathoschild/SMAPI/compare/0.39.2...0.39.3 ))
* 0.39.2 (2016-03-23, [log ](https://github.com/Pathoschild/SMAPI/compare/0.39.1...0.39.2 ))
* 0.39.1 (2016-03-23, [log ](https://github.com/Pathoschild/SMAPI/compare/0.38.8...0.39.1 ))
* 0.38.8 (2016-03-23, [log ](https://github.com/Pathoschild/SMAPI/compare/0.38.7...0.38.8 ))
* 0.38.7 (2016-03-23, [log ](https://github.com/Pathoschild/SMAPI/compare/0.38.6...0.38.7 ))
* 0.38.6 (2016-03-22, [log ](https://github.com/Pathoschild/SMAPI/compare/0.38.5...0.38.6 ))
* 0.38.5 (2016-03-22, [log ](https://github.com/Pathoschild/SMAPI/compare/0.38.4...0.38.5 ))
* 0.38.4 (2016-03-21, [log ](https://github.com/Pathoschild/SMAPI/compare/0.38.3...0.38.4 ))
* 0.38.3 (2016-03-21, [log ](https://github.com/Pathoschild/SMAPI/compare/0.38.2...0.38.3 ))
* 0.38.2 (2016-03-21, [log ](https://github.com/Pathoschild/SMAPI/compare/0.38.0...0.38.2 ))
* 0.38.0 (2016-03-20, [log ](https://github.com/Pathoschild/SMAPI/compare/0.38.1...0.38.0 ))
* 0.38.1 (2016-03-20, [log ](https://github.com/Pathoschild/SMAPI/compare/0.37.3...0.38.1 ))
* 0.37.3 (2016-03-08, [log ](https://github.com/Pathoschild/SMAPI/compare/0.37.2...0.37.3 ))
* 0.37.2 (2016-03-07, [log ](https://github.com/Pathoschild/SMAPI/compare/0.37.1...0.37.2 ))
* 0.37.1 (2016-03-06, [log ](https://github.com/Pathoschild/SMAPI/compare/0.36...0.37.1 ))
* 0.36 (2016-03-04, [log ](https://github.com/Pathoschild/SMAPI/compare/0.37...0.36 ))
* 0.37 (2016-03-04, [log ](https://github.com/Pathoschild/SMAPI/compare/0.35...0.37 ))
* 0.35 (2016-03-02, [log ](https://github.com/Pathoschild/SMAPI/compare/0.34...0.35 ))
* 0.34 (2016-03-02, [log ](https://github.com/Pathoschild/SMAPI/compare/0.33...0.34 ))
* 0.33 (2016-03-02, [log ](https://github.com/Pathoschild/SMAPI/compare/0.32...0.33 ))
* 0.32 (2016-03-02, [log ](https://github.com/Pathoschild/SMAPI/compare/0.31...0.32 ))
* 0.31 (2016-03-02, [log ](https://github.com/Pathoschild/SMAPI/compare/0.3...0.31 ))
* 0.3 (2016-03-01, [log ](https://github.com/Pathoschild/SMAPI/compare/Alpha0.2...0.3 ))
* 0.2 (2016-02-29, [log ](https://github.com/Pathoschild/SMAPI/compare/Alpha0.1...Alpha0.2 )
2016-11-04 12:07:17 +08:00
* 0.1 (2016-02-28)