File tree Expand file tree Collapse file tree 4 files changed +43
-6
lines changed
Expand file tree Collapse file tree 4 files changed +43
-6
lines changed Original file line number Diff line number Diff line change @@ -421,7 +421,7 @@ endif()
421421# Install
422422########################################
423423
424- set (LIBLOOT_VERSION "0.26.0 " )
424+ set (LIBLOOT_VERSION "0.26.1 " )
425425
426426set_property (TARGET loot PROPERTY VERSION ${LIBLOOT_VERSION} )
427427set_property (TARGET loot PROPERTY SOVERSION 0)
Original file line number Diff line number Diff line change 22Version History
33***************
44
5+ 0.26.1 - 2025-05-01
6+ ===================
7+
8+ Added
9+ -----
10+
11+ - Support for TES IV: Oblivion Remastered. A game handle can be obtained using :cpp:any: `loot::GameType::oblivionRemastered `.
12+
13+ - Oblivion Remastered uses a similar load order system to Skyrim (not Skyrim
14+ Special Edition), so libloot will similarly read and write a
15+ ``loadorder.txt `` in the same directory as ``Plugins.txt ``.
16+ - Like OpenMW, Oblivion Remastered does not force master plugins to load
17+ before other plugins: all plugins are treated as non-masters.
18+
19+ Fixed
20+ -----
21+
22+ - A crash could occur when creating a game handle for an OpenMW install that
23+ does not define any user config paths. An error now occurs instead. Via
24+ libloadorder.
25+ - A crash could occur when loading plugin files. Via esplugin.
26+ - The ``description_contains() `` metadata condition function did not read the
27+ description field of OpenMW plugins. Via loot-condition-interpreter.
28+ - No debug info was included for libloot's Rust dependencies (esplugin,
29+ libloadorder and loot-condition-interpreter). Via libloadorder.
30+ - A few compiler warnings.
31+
32+ Changed
33+ -------
34+
35+ - Paths in condition strings are no longer restricted to staying within the
36+ directory tree that starts one level above the game's main plugins directory
37+ (usually the ``Data `` directory). Via loot-condition-interpreter.
38+ - Updated esplugin to v6.1.3.
39+ - Updated loot-condition-interpreter to v5.3.2.
40+ - Updated libloadorder to v18.4.0.
41+
5420.26.0 - 2025-04-19
643===================
744
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ inline constexpr unsigned int LIBLOOT_VERSION_MAJOR = 0;
3737inline constexpr unsigned int LIBLOOT_VERSION_MINOR = 26 ;
3838
3939/* * @brief libloot's patch version number. */
40- inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 0 ;
40+ inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 1 ;
4141
4242/* *
4343 * @brief Get the library version.
Original file line number Diff line number Diff line change 22#include <windows.h>
33
441 VERSIONINFO
5- FILEVERSION 0, 26, 0 , 0
6- PRODUCTVERSION 0, 26, 0 , 0
5+ FILEVERSION 0, 26, 1 , 0
6+ PRODUCTVERSION 0, 26, 1 , 0
77FILEOS VOS__WINDOWS32
88FILETYPE VFT_DLL
99BEGIN
@@ -13,12 +13,12 @@ BLOCK "040904b0"
1313BEGIN
1414VALUE "CompanyName", "LOOT"
1515VALUE "FileDescription", "Library providing LOOT's core functionality"
16- VALUE "FileVersion", "0.26.0 "
16+ VALUE "FileVersion", "0.26.1 "
1717VALUE "InternalName", "loot"
1818VALUE "LegalCopyright", "Copyright (C) 2013-2022 Oliver Hamlet"
1919VALUE "OriginalFilename", "loot.dll"
2020VALUE "ProductName", "LOOT"
21- VALUE "ProductVersion", "0.26.0 "
21+ VALUE "ProductVersion", "0.26.1 "
2222END
2323END
2424BLOCK "VarFileInfo"
You can’t perform that action at this time.
0 commit comments