Update changelog and version for v0.14.2

This commit is contained in:
Oliver Hamlet
2019-01-20 12:18:46 +00:00
parent 2c9ea2209b
commit 4f01487bad
3 changed files with 32 additions and 6 deletions
+27 -1
View File
@@ -2,16 +2,42 @@
Version History
***************
0.14.2 - 2019-01-20
===================
Changed
-------
- Updated loot-condition-interpreter to v1.2.1.
- Updated spdlog to v1.3.0.
Fixed
-----
- An error when loading plugins with a file present in the plugins directory
that has a filename containing characters that cannot be represented in the
system code page.
- An error when trying to read the version of an executable that does not have
a US English version information resource. Executable versions are now read
from the file's first version information resource, whatever its language.
Via loot-condition-interpreter.
0.14.1 - 2018-12-23
===================
Changed
-------
- Updated loot-condition-interpreter to v1.2.0.
Fixed
-----
- Product version conditions read from executables' ``VS_FIXEDFILEINFO``
structure, so the versions read did not match the versions displayed by
Windows' File Explorer. Product versions are now read from executables'
``VS_VERSIONINFO`` structure, using the ``ProductVersion`` key.
``VS_VERSIONINFO`` structure, using the ``ProductVersion`` key. Via
loot-condition-interpreter.
- The release date in the metadata syntax changelog for v0.14 was "Unreleased".
0.14.0 - 2018-12-09
+1 -1
View File
@@ -27,7 +27,7 @@
namespace loot {
const unsigned int LootVersion::major = 0;
const unsigned int LootVersion::minor = 14;
const unsigned int LootVersion::patch = 1;
const unsigned int LootVersion::patch = 2;
const std::string LootVersion::revision = "@GIT_COMMIT_STRING@";
LOOT_API std::string LootVersion::GetVersionString() {
+4 -4
View File
@@ -2,8 +2,8 @@
#include <windows.h>
1 VERSIONINFO
FILEVERSION 0, 14, 1, 0
PRODUCTVERSION 0, 14, 1, 0
FILEVERSION 0, 14, 2, 0
PRODUCTVERSION 0, 14, 2, 0
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
BEGIN
@@ -11,9 +11,9 @@ BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "FileVersion", "0.14.1"
VALUE "FileVersion", "0.14.2"
VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja"
VALUE "ProductVersion", "0.14.1"
VALUE "ProductVersion", "0.14.2"
END
END
BLOCK "VarFileInfo"