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.10
This commit is contained in:
@@ -2,6 +2,24 @@
|
||||
Version History
|
||||
***************
|
||||
|
||||
0.14.10 - 2019-09-06
|
||||
====================
|
||||
|
||||
Changed
|
||||
-------
|
||||
|
||||
- Improved the sorting process for Morrowind. Previously, sorting was unable to
|
||||
determine if a Morrowind plugin contained any records overriding those of its
|
||||
masters, and so added no overlap edges between Morrowind plugins when sorting.
|
||||
Sorting now counts override records by comparing plugins against their
|
||||
masters, giving the same results as for other games.
|
||||
|
||||
However, unlike for other games, this requires all a plugin's masters to be
|
||||
installed. If a plugin's masters are missing, the plugin's total record count
|
||||
will be used as if it was the plugin's override record count to ensure that
|
||||
sorting can still proceed, albeit with potentially reduced accuracy.
|
||||
- Updated libgit2 to v0.28.3.
|
||||
|
||||
0.14.9 - 2019-07-23
|
||||
===================
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
namespace loot {
|
||||
const unsigned int LootVersion::major = 0;
|
||||
const unsigned int LootVersion::minor = 14;
|
||||
const unsigned int LootVersion::patch = 9;
|
||||
const unsigned int LootVersion::patch = 10;
|
||||
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, 9, 0
|
||||
PRODUCTVERSION 0, 14, 9, 0
|
||||
FILEVERSION 0, 14, 10, 0
|
||||
PRODUCTVERSION 0, 14, 10, 0
|
||||
FILEOS VOS__WINDOWS32
|
||||
FILETYPE VFT_APP
|
||||
BEGIN
|
||||
@@ -11,9 +11,9 @@ BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
VALUE "FileVersion", "0.14.9"
|
||||
VALUE "FileVersion", "0.14.10"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja"
|
||||
VALUE "ProductVersion", "0.14.9"
|
||||
VALUE "ProductVersion", "0.14.10"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
||||
Reference in New Issue
Block a user