From c5efd9e5c219af691be227e63977b01eafe017f6 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sat, 18 Mar 2023 21:56:15 +0000 Subject: [PATCH] Update version and changelog for v0.19.3 release --- docs/api/changelog.rst | 29 +++++++++++++++++++++++++++++ include/loot/loot_version.h | 2 +- src/api/resource.rc | 8 ++++---- 3 files changed, 34 insertions(+), 5 deletions(-) diff --git a/docs/api/changelog.rst b/docs/api/changelog.rst index 547bc383..bf883ac4 100644 --- a/docs/api/changelog.rst +++ b/docs/api/changelog.rst @@ -2,6 +2,35 @@ Version History *************** +0.19.3 - 2023-03-18 +=================== + +Added +----- + +- Support for the Steam and GOG distributions of Enderal: Forgotten Stories and + Enderal: Forgotten Stories (Special Edition), which are total conversion mods + for Skyrim and Skyrim Special Edition respectively. This support means that + the game local path does not need to be specified when creating a game handle: + when libloot is given the path to a Skyrim or Skyrim SE installation that is + actually an Enderal installation, it is now able to look up the correct + game local path. Via libloadorder. + +Fixed +----- + +- libloot would deactivate plugins when setting the load order if too many + plugins were active. This could cause unexpected behaviour if later-loading + active plugins were sorted to load earlier. +- The path returned by :cpp:any:`loot::CyclicInteractionError::GetCycle()` + could include too many vertices, including repeated vertices. + +Changed +------- + +- Updated Boost to v1.81.0. +- Updated libloadorder to v14.0.0. + 0.19.2 - 2023-01-13 =================== diff --git a/include/loot/loot_version.h b/include/loot/loot_version.h index b029ba1e..0b6b0cac 100644 --- a/include/loot/loot_version.h +++ b/include/loot/loot_version.h @@ -37,7 +37,7 @@ inline constexpr unsigned int LIBLOOT_VERSION_MAJOR = 0; inline constexpr unsigned int LIBLOOT_VERSION_MINOR = 19; /** @brief libloot's patch version number. */ -inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 2; +inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 3; /** * @brief Get the library version. diff --git a/src/api/resource.rc b/src/api/resource.rc index fdbd6f50..604bb285 100644 --- a/src/api/resource.rc +++ b/src/api/resource.rc @@ -2,8 +2,8 @@ #include 1 VERSIONINFO -FILEVERSION 0, 19, 2, 0 -PRODUCTVERSION 0, 19, 2, 0 +FILEVERSION 0, 19, 3, 0 +PRODUCTVERSION 0, 19, 3, 0 FILEOS VOS__WINDOWS32 FILETYPE VFT_DLL BEGIN @@ -13,12 +13,12 @@ BLOCK "040904b0" BEGIN VALUE "CompanyName", "LOOT" VALUE "FileDescription", "Library providing LOOT's core functionality" -VALUE "FileVersion", "0.19.2" +VALUE "FileVersion", "0.19.3" VALUE "InternalName", "loot" VALUE "LegalCopyright", "Copyright (C) 2013-2022 Oliver Hamlet" VALUE "OriginalFilename", "loot.dll" VALUE "ProductName", "LOOT" -VALUE "ProductVersion", "0.19.2" +VALUE "ProductVersion", "0.19.3" END END BLOCK "VarFileInfo"