Update version and changelog for v0.19.3 release

This commit is contained in:
Oliver Hamlet
2023-03-18 21:56:15 +00:00
parent 9b3db15bda
commit c5efd9e5c2
3 changed files with 34 additions and 5 deletions
+29
View File
@@ -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
===================
+1 -1
View File
@@ -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.
+4 -4
View File
@@ -2,8 +2,8 @@
#include <windows.h>
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"