Skip to content

Commit 070822f

Browse files
committed
Update changelog and version for 0.26.1
1 parent ca68972 commit 070822f

File tree

4 files changed

+43
-6
lines changed

4 files changed

+43
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

426426
set_property(TARGET loot PROPERTY VERSION ${LIBLOOT_VERSION})
427427
set_property(TARGET loot PROPERTY SOVERSION 0)

docs/api/changelog.rst

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,43 @@
22
Version 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+
542
0.26.0 - 2025-04-19
643
===================
744

include/loot/loot_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ inline constexpr unsigned int LIBLOOT_VERSION_MAJOR = 0;
3737
inline 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.

src/api/resource.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#include <windows.h>
33

44
1 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
77
FILEOS VOS__WINDOWS32
88
FILETYPE VFT_DLL
99
BEGIN
@@ -13,12 +13,12 @@ BLOCK "040904b0"
1313
BEGIN
1414
VALUE "CompanyName", "LOOT"
1515
VALUE "FileDescription", "Library providing LOOT's core functionality"
16-
VALUE "FileVersion", "0.26.0"
16+
VALUE "FileVersion", "0.26.1"
1717
VALUE "InternalName", "loot"
1818
VALUE "LegalCopyright", "Copyright (C) 2013-2022 Oliver Hamlet"
1919
VALUE "OriginalFilename", "loot.dll"
2020
VALUE "ProductName", "LOOT"
21-
VALUE "ProductVersion", "0.26.0"
21+
VALUE "ProductVersion", "0.26.1"
2222
END
2323
END
2424
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)