mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
Update changelog and version for 0.27.0
This commit is contained in:
Generated
+6
-6
@@ -545,7 +545,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "libloot"
|
||||
version = "0.26.3"
|
||||
version = "0.27.0"
|
||||
dependencies = [
|
||||
"crc32fast",
|
||||
"esplugin",
|
||||
@@ -565,7 +565,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "libloot-cpp"
|
||||
version = "0.26.3"
|
||||
version = "0.27.0"
|
||||
dependencies = [
|
||||
"cxx",
|
||||
"cxx-build",
|
||||
@@ -576,14 +576,14 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "libloot-ffi-errors"
|
||||
version = "0.26.3"
|
||||
version = "0.27.0"
|
||||
dependencies = [
|
||||
"libloot",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "libloot-nodejs"
|
||||
version = "0.26.3"
|
||||
version = "0.27.0"
|
||||
dependencies = [
|
||||
"libloot",
|
||||
"libloot-ffi-errors",
|
||||
@@ -594,7 +594,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "libloot-python"
|
||||
version = "0.26.3"
|
||||
version = "0.27.0"
|
||||
dependencies = [
|
||||
"libloot",
|
||||
"libloot-ffi-errors",
|
||||
@@ -776,7 +776,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "parameterized-test"
|
||||
version = "0.26.3"
|
||||
version = "0.27.0"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "libloot"
|
||||
version = "0.26.3"
|
||||
version = "0.27.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-or-later"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# libloot-rs
|
||||
|
||||
This is an **experimental** reimplementation of [libloot](https://github.com/loot/libloot) using Rust instead of C++, that should match libloot v0.26.2.
|
||||
This is an **experimental** reimplementation of [libloot](https://github.com/loot/libloot) using Rust instead of C++, that should match libloot v0.27.0.
|
||||
|
||||
There is one intentional difference in behaviour: if a plugin has metadata but it is all filtered out when conditions are evaluated, getting its metadata returns `None` instead of a name-only PluginMetadata object.
|
||||
|
||||
|
||||
+1
-1
@@ -234,7 +234,7 @@ endif()
|
||||
# Install
|
||||
########################################
|
||||
|
||||
set(LIBLOOT_VERSION "0.26.3")
|
||||
set(LIBLOOT_VERSION "0.27.0")
|
||||
|
||||
set_property(TARGET loot PROPERTY VERSION ${LIBLOOT_VERSION})
|
||||
set_property(TARGET loot PROPERTY SOVERSION 0)
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "libloot-cpp"
|
||||
version = "0.26.3"
|
||||
version = "0.27.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-or-later"
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
# libloot-rs C++ wrapper
|
||||
|
||||
This is a wrapper around libloot that provides a C++ interface that's ABI-compatible with libloot v0.26.2.
|
||||
This is a wrapper around libloot that provides a C++ interface that's ABI-compatible with libloot v0.27.0.
|
||||
|
||||
The wrapper has two layers:
|
||||
|
||||
|
||||
@@ -2,6 +2,48 @@
|
||||
Version History
|
||||
***************
|
||||
|
||||
0.27.0 - 2025-06-08
|
||||
===================
|
||||
|
||||
Added
|
||||
-----
|
||||
|
||||
- :cpp:any:`loot::PluginNotLoadedError`, which is thrown when trying to sort a
|
||||
load order that contains a plugin that hasn't been loaded, or when trying to
|
||||
load a Morrowind, OpenMW or Starfield plugin that has a master that has not
|
||||
been loaded.
|
||||
|
||||
Changed
|
||||
-------
|
||||
|
||||
- Windows builds that are built using MSVC (including official release builds)
|
||||
are now built with the ``/GL`` flag to enable whole-program optimisation
|
||||
(including link-time optimisation).
|
||||
- Official Windows builds are now built using MSVC 2022, so they now require the
|
||||
MSVC 2022 redistributable to be installed.
|
||||
|
||||
Removed
|
||||
-------
|
||||
|
||||
- ``LogLevel::Fatal`` as it was never used.
|
||||
- ``ConditionalMetadata``, which was the parent class of :cpp:any:`loot::File`,
|
||||
:cpp:any:`loot::Message` and :cpp:any:`loot::Tag`. Its ``GetCondition()``
|
||||
member function has been moved to those child classes. There is no direct
|
||||
replacement for its ``IsConditional()`` member function.
|
||||
- ``FileAccessError`` and ``ConditionSyntaxError``: ``std::runtime_error``
|
||||
exceptions are thrown instead.
|
||||
- ``loot_condition_interpreter_category()`` as the error category it returned is
|
||||
no longer used.
|
||||
- ``libloadorder_category()``, as errors reported by libloadorder are now thrown
|
||||
as ``std::runtime_error`` exceptions instead of ``std::system_error``
|
||||
exceptions.
|
||||
- ``esplugin_category()``, as errors reported by esplugin are now thrown as
|
||||
either :cpp:any:`loot::PluginNotLoadedError` or ``std::runtime_error``
|
||||
exceptions instead of ``std::system_error`` exceptions.
|
||||
- Support for the old Boost-style (e.g. ``%1%``) message placeholder syntax that
|
||||
was replaced in the v0.21 metadata syntax by the curly brace syntax (e.g.
|
||||
``{0}``).
|
||||
|
||||
0.26.3 - 2025-05-28
|
||||
===================
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "libloot-cpp-docs"
|
||||
version = "0.26.3"
|
||||
version = "0.27.0"
|
||||
requires-python = ">=3.11"
|
||||
dependencies = [
|
||||
"breathe==4.36.0",
|
||||
|
||||
Generated
+1
-1
@@ -139,7 +139,7 @@ wheels = [
|
||||
|
||||
[[package]]
|
||||
name = "libloot-cpp-docs"
|
||||
version = "0.26.2"
|
||||
version = "0.27.0"
|
||||
source = { virtual = "." }
|
||||
dependencies = [
|
||||
{ name = "breathe" },
|
||||
|
||||
@@ -34,10 +34,10 @@ namespace loot {
|
||||
inline constexpr unsigned int LIBLOOT_VERSION_MAJOR = 0;
|
||||
|
||||
/** @brief libloot's minor version number. */
|
||||
inline constexpr unsigned int LIBLOOT_VERSION_MINOR = 26;
|
||||
inline constexpr unsigned int LIBLOOT_VERSION_MINOR = 27;
|
||||
|
||||
/** @brief libloot's patch version number. */
|
||||
inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 3;
|
||||
inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 0;
|
||||
|
||||
/**
|
||||
* @brief Get the library version.
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
#include <windows.h>
|
||||
|
||||
1 VERSIONINFO
|
||||
FILEVERSION 0, 26, 3, 0
|
||||
PRODUCTVERSION 0, 26, 3, 0
|
||||
FILEVERSION 0, 27, 0, 0
|
||||
PRODUCTVERSION 0, 27, 0, 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.26.3"
|
||||
VALUE "FileVersion", "0.27.0"
|
||||
VALUE "InternalName", "loot"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2013-2022 Oliver Hamlet"
|
||||
VALUE "OriginalFilename", "loot.dll"
|
||||
VALUE "ProductName", "LOOT"
|
||||
VALUE "ProductVersion", "0.26.3"
|
||||
VALUE "ProductVersion", "0.27.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "libloot-ffi-errors"
|
||||
version = "0.26.3"
|
||||
version = "0.27.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-or-later"
|
||||
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
edition = "2021"
|
||||
name = "libloot-nodejs"
|
||||
version = "0.26.3"
|
||||
version = "0.27.0"
|
||||
license = "GPL-3.0-or-later"
|
||||
|
||||
[lib]
|
||||
|
||||
@@ -7,7 +7,7 @@ test('liblootVersion', t => {
|
||||
});
|
||||
|
||||
test('isCompatible', t => {
|
||||
t.is(isCompatible(0, 26, 0), true)
|
||||
t.is(isCompatible(0, 27, 0), true)
|
||||
});
|
||||
|
||||
test('Group equality', t => {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "libloot-nodejs-linux-x64-gnu",
|
||||
"version": "0.26.3",
|
||||
"version": "0.27.0",
|
||||
"os": [
|
||||
"linux"
|
||||
],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "libloot-nodejs-win32-x64-msvc",
|
||||
"version": "0.26.3",
|
||||
"version": "0.27.0",
|
||||
"os": [
|
||||
"win32"
|
||||
],
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "libloot-nodejs",
|
||||
"version": "0.26.3",
|
||||
"version": "0.27.0",
|
||||
"main": "index.js",
|
||||
"types": "index.d.ts",
|
||||
"napi": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "parameterized-test"
|
||||
version = "0.26.3"
|
||||
version = "0.27.0"
|
||||
edition = "2024"
|
||||
license = "MIT"
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "libloot-python"
|
||||
version = "0.26.3"
|
||||
version = "0.27.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-or-later"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user