diff --git a/docs/api/changelog.rst b/docs/api/changelog.rst index 4d3c76b8..e2ea00de 100644 --- a/docs/api/changelog.rst +++ b/docs/api/changelog.rst @@ -2,6 +2,29 @@ Version History *************** +0.14.6 - 2019-04-24 +=================== + +Added +----- + +- Support for TES III: Morrowind using ``GameType::tes3``. The sorting process + for Morrowind is slightly different than for other games, because LOOT cannot + currently detect when plugins overlap. As a result, LOOT is much less likely + to suggest load order changes. + +Changed +------- + +- Updated esplugin to v2.1.2. +- Updated loot-condition-interpreter to v1.3.0. + +Fixed +----- + +- LOOT would unnecessarily ignore intermediate plugins in a non-master to master + cycle involving groups, leading to unexpected results when sorting plugins. + 0.14.5 - 2019-02-27 =================== diff --git a/src/api/loot_version.cpp.in b/src/api/loot_version.cpp.in index 91d0567c..32e803d9 100644 --- a/src/api/loot_version.cpp.in +++ b/src/api/loot_version.cpp.in @@ -27,7 +27,7 @@ namespace loot { const unsigned int LootVersion::major = 0; const unsigned int LootVersion::minor = 14; -const unsigned int LootVersion::patch = 5; +const unsigned int LootVersion::patch = 6; const std::string LootVersion::revision = "@GIT_COMMIT_STRING@"; LOOT_API std::string LootVersion::GetVersionString() { diff --git a/src/api/resource.rc b/src/api/resource.rc index 74c065c6..1e924372 100644 --- a/src/api/resource.rc +++ b/src/api/resource.rc @@ -2,8 +2,8 @@ #include 1 VERSIONINFO -FILEVERSION 0, 14, 5, 0 -PRODUCTVERSION 0, 14, 5, 0 +FILEVERSION 0, 14, 6, 0 +PRODUCTVERSION 0, 14, 6, 0 FILEOS VOS__WINDOWS32 FILETYPE VFT_APP BEGIN @@ -11,9 +11,9 @@ BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN -VALUE "FileVersion", "0.14.5" +VALUE "FileVersion", "0.14.6" VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja" -VALUE "ProductVersion", "0.14.5" +VALUE "ProductVersion", "0.14.6" END END BLOCK "VarFileInfo"