diff --git a/docs/api/changelog.rst b/docs/api/changelog.rst index 4b349bb2..d86bac81 100644 --- a/docs/api/changelog.rst +++ b/docs/api/changelog.rst @@ -2,6 +2,18 @@ Version History *************** +0.14.1 - 2018-12-23 +=================== + +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. +- The release date in the metadata syntax changelog for v0.14 was "Unreleased". + 0.14.0 - 2018-12-09 =================== diff --git a/src/api/loot_version.cpp.in b/src/api/loot_version.cpp.in index 97e5243f..c20dcaad 100644 --- a/src/api/loot_version.cpp.in +++ b/src/api/loot_version.cpp.in @@ -27,7 +27,7 @@ namespace loot { const unsigned int LootVersion::major = 0; const unsigned int LootVersion::minor = 14; -const unsigned int LootVersion::patch = 0; +const unsigned int LootVersion::patch = 1; const std::string LootVersion::revision = "@GIT_COMMIT_STRING@"; LOOT_API std::string LootVersion::GetVersionString() { diff --git a/src/api/resource.rc b/src/api/resource.rc index 2bf6297a..d6fe25c2 100644 --- a/src/api/resource.rc +++ b/src/api/resource.rc @@ -2,8 +2,8 @@ #include 1 VERSIONINFO -FILEVERSION 0, 14, 0, 0 -PRODUCTVERSION 0, 14, 0, 0 +FILEVERSION 0, 14, 1, 0 +PRODUCTVERSION 0, 14, 1, 0 FILEOS VOS__WINDOWS32 FILETYPE VFT_APP BEGIN @@ -11,9 +11,9 @@ BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN -VALUE "FileVersion", "0.14.0" +VALUE "FileVersion", "0.14.1" VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja" -VALUE "ProductVersion", "0.14.0" +VALUE "ProductVersion", "0.14.1" END END BLOCK "VarFileInfo"