Skip to content

Commit

Permalink
Update version and changelog for v0.19.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Ortham committed Mar 18, 2023
1 parent 9b3db15 commit c5efd9e
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 5 deletions.
29 changes: 29 additions & 0 deletions docs/api/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
===================

Expand Down
2 changes: 1 addition & 1 deletion include/loot/loot_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
8 changes: 4 additions & 4 deletions src/api/resource.rc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down

0 comments on commit c5efd9e

Please sign in to comment.