| Load After | This is a list of plugins which, if present, the current plugin must load after, but which are not required. This metadata can be used for resolving specific compatibility issues. Each entry has three fields:
- - The filename is the path, relative to the game's Data folder, of the file to be checked for. This field is required.
+
- The filename is the path, relative to the game's Data folder, of the file to be checked for. This field is required. It gives the filenames of installed plugins as autocomplete suggestions.
- The display name is optional, and if specified will be used instead of the filename in any error messages that are displayed if a problem is encountered relating to the file.
- The condition is the optional condition string that is used to determine if the file should be checked for. If left blank, the file will always be checked for. Condition strings are a relatively advanced part of LOOT's functionality, and their syntax is covered in the Metadata Syntax documentation.
@@ -400,7 +400,7 @@ figure > div {
Each Bash Tag has three fields:
- The state determines whether the Tag is to be suggested for addition or removal.
-
- The name is the actual Bash Tag name.
+
- The name is the actual Bash Tag name. The field gives autocomplete suggestions for Bash Tags supported by the current game.
- The condition decides if the Tag is to be suggested or not. It functions as for files and messages.
If a plugin's masters are missing, an error message will be displayed for it. Filter patches are special mods designed for use with a Bashed Patch that do not require all their masters to be present, and so any plugin with the Filter tag applied and missing masters will not cause any errors to be displayed.
@@ -533,6 +533,27 @@ A copy of the license is included in the file named "GNU FDL v1.3.txt".Version History
Only program history is recorded here. A full history of masterlist changes may be viewed by browsing the GitHub repositories.
+ 0.9.2 - X August 2016
+
+ - Fixed error when applying filters on startup.
+ - Fixed hidden plugin and message counters not updating correctly after sorting.
+ - Fixed an error occurring when the user's temporary files directory didn't exist and updating the masterlist tried to create a directory there.
+ - Fixed the installer failing if LOOT was previously installed on a drive that no longer exists. The installer now always gives the option to change the default install path it selects.
+ - Fixed startup errors being reported incorrectly and causing additional errors that prevented the user from being informed of the original issue.
+ - Fixed the metadata editor's CRC input field being too short to fully display its validation error message.
+ - Fixed errors when reading some Oblivion plugins during sorting, including the official DLC.
+ - Fixed some cases where LOOT would fail to start.
+ - Fixed the conflict filter not including the Unofficial Skyrim Legendary Edition Patch's plugin (and any other plugin that overrides a very large number of records) in results.
+ - Fixed the "not sorted" message reappearing if the load order was sorted twice in one session and cancelled the second time.
+ - Fixed version numbers where a digit was immediately followed by a letter not being detected.
+ - Theming support and the dark theme have been reimplemented and reintroduced.
+ - Plugin filename and Bash Tag name fields will now autocomplete in the metadata editor.
+ - The in-game load order indices of active plugins are now displayed in the sidebar.
+ - All URLs now use HTTPS.
+ - The Danish and French translations have been updated.
+ - The CEF (3.2743.1442.ge29124d), libespm (2.5.5), Polymer (1.6.0) and Pseudosem (1.1.0) dependencies have been updated to the versions given in brackets.
+
+
0.9.1 - 23 June 2016
- Removed support for Windows Vista.
diff --git a/include/loot/api.h b/include/loot/api.h
index 2b676b6d..7f282968 100644
--- a/include/loot/api.h
+++ b/include/loot/api.h
@@ -61,6 +61,14 @@
* "docs/licenses/Licenses.txt" file.
*
* @section history_sec Version History
+ * ## 0.9.2 - *2 August 2016*
+ *
+ * * Fixed the wrong API binary being packaged. This caused the v0.9.0 and v0.9.1 API releases to actually be re-releases of a snapshot build made at some point between v0.8.1 and v0.9.0: the affected API releases were taken offline once this was discovered.
+ * * Fixed `loot_get_plugin_tags()`` remembering results and including them in the results of subsequent calls.
+ * * Fixed an error occurring when the user's temporary files directory didn't exist and updating the masterlist tried to create a directory there.
+ * * Fixed errors when reading some Oblivion plugins during sorting, including the official DLC.
+ * * libespm (2.5.5) and Pseudosem (1.1.0) dependencies have been updated to the versions given in brackets.
+ *
* ## 0.9.1 - *23 June 2016*
*
* * No API changes.
|