mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
Set version number and changelog for v0.14.9
This commit is contained in:
+17
-1
@@ -2,6 +2,21 @@
|
||||
Version History
|
||||
***************
|
||||
|
||||
0.14.9 - 2019-07-23
|
||||
===================
|
||||
|
||||
Fixed
|
||||
-----
|
||||
|
||||
- Regular expressions in condition strings are now prefixed with ``^`` and
|
||||
suffixed with ``$`` before evaluation to ensure that only exact matches to the
|
||||
given expression are found. Via loot-condition-interpreter.
|
||||
|
||||
Changed
|
||||
-------
|
||||
|
||||
- Updated loot-condition-interpreter to v2.0.0.
|
||||
|
||||
0.14.8 - 2019-06-30
|
||||
===================
|
||||
|
||||
@@ -10,7 +25,7 @@ Fixed
|
||||
|
||||
- Evaluating ``version()`` and ``product_version()`` conditions will no longer
|
||||
error if the given executable has no version fields. Instead, it will be
|
||||
evaluated as having no version.
|
||||
evaluated as having no version. Via loot-condition-interpreter.
|
||||
- Sorting would not preserve the existing relative positions of plugins that had
|
||||
no relative positioning enforced by plugin data or metadata, if one or both of
|
||||
their filenames were not case-sensitively equal to their entries in
|
||||
@@ -21,6 +36,7 @@ Changed
|
||||
-------
|
||||
|
||||
- Improved load order sorting performance.
|
||||
- Updated loot-condition-interpreter to v2.0.0.
|
||||
|
||||
0.14.7 - 2019-06-13
|
||||
===================
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
namespace loot {
|
||||
const unsigned int LootVersion::major = 0;
|
||||
const unsigned int LootVersion::minor = 14;
|
||||
const unsigned int LootVersion::patch = 8;
|
||||
const unsigned int LootVersion::patch = 9;
|
||||
const std::string LootVersion::revision = "@GIT_COMMIT_STRING@";
|
||||
|
||||
LOOT_API std::string LootVersion::GetVersionString() {
|
||||
|
||||
+4
-4
@@ -2,8 +2,8 @@
|
||||
#include <windows.h>
|
||||
|
||||
1 VERSIONINFO
|
||||
FILEVERSION 0, 14, 8, 0
|
||||
PRODUCTVERSION 0, 14, 8, 0
|
||||
FILEVERSION 0, 14, 9, 0
|
||||
PRODUCTVERSION 0, 14, 9, 0
|
||||
FILEOS VOS__WINDOWS32
|
||||
FILETYPE VFT_APP
|
||||
BEGIN
|
||||
@@ -11,9 +11,9 @@ BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
VALUE "FileVersion", "0.14.8"
|
||||
VALUE "FileVersion", "0.14.9"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja"
|
||||
VALUE "ProductVersion", "0.14.8"
|
||||
VALUE "ProductVersion", "0.14.9"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
||||
Reference in New Issue
Block a user