Skip to content

Commit

Permalink
Set versuin number and change log for v0.14.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Ortham committed Jun 30, 2019
1 parent 9d45afd commit b0d0f3e
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 5 deletions.
20 changes: 20 additions & 0 deletions docs/api/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@
Version History
***************

0.14.8 - 2019-06-30
===================

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.
- 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
``plugins.txt`` / ``loadorder.txt``. Load order position comparison is now
correctly case-insensitive.

Changed
-------

- Improved load order sorting performance.

0.14.7 - 2019-06-13
===================

Expand Down
2 changes: 1 addition & 1 deletion src/api/loot_version.cpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
namespace loot {
const unsigned int LootVersion::major = 0;
const unsigned int LootVersion::minor = 14;
const unsigned int LootVersion::patch = 7;
const unsigned int LootVersion::patch = 8;
const std::string LootVersion::revision = "@GIT_COMMIT_STRING@";

LOOT_API std::string LootVersion::GetVersionString() {
Expand Down
8 changes: 4 additions & 4 deletions src/api/resource.rc
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
#include <windows.h>

1 VERSIONINFO
FILEVERSION 0, 14, 7, 0
PRODUCTVERSION 0, 14, 7, 0
FILEVERSION 0, 14, 8, 0
PRODUCTVERSION 0, 14, 8, 0
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "FileVersion", "0.14.7"
VALUE "FileVersion", "0.14.8"
VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja"
VALUE "ProductVersion", "0.14.7"
VALUE "ProductVersion", "0.14.8"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit b0d0f3e

Please sign in to comment.