mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
Bumped version to v0.8.1.
This commit is contained in:
@@ -536,6 +536,15 @@ A copy of the license is included in the file named "GNU FDL v1.3.txt".</blockqu
|
||||
<h2 id="history">Version History</h2>
|
||||
<p>Only program history is recorded here. A full history of masterlist changes may be viewed by browsing the GitHub repositories.
|
||||
|
||||
<h3>0.8.1 - <i>27 September 2015</i></h3>
|
||||
<ul>
|
||||
<li>Fixed crash when loading plugins due to lack of thread safety.</li>
|
||||
<li>Fixed masterlist updater and validator not checking for valid condition and regex syntax.</li>
|
||||
<li>Check for safe file paths when parsing conditions.</li>
|
||||
<li>Updated Chinese translation.</li>
|
||||
<li>Updated Boost (1.59.0), libgit2 (0.23.2) and CEF (branch 2454) dependencies. This fixes the masterlist updater not working correctly for Windows Vista users.</li>
|
||||
</ul>
|
||||
|
||||
<h3>0.8.0 - <i>22 July 2015</i></h3>
|
||||
<ul>
|
||||
<li>Fixed <q>Cannot read property 'push' of undefined</q> errors when sorting.</li>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
; be displayed correctly.
|
||||
|
||||
#define MyAppName "LOOT"
|
||||
#define MyAppVersion "0.8.0"
|
||||
#define MyAppVersion "0.8.1"
|
||||
#define MyAppPublisher "LOOT Team"
|
||||
#define MyAppURL "http://loot.github.io"
|
||||
#define MyAppExeName "LOOT.exe"
|
||||
|
||||
+25
-7
@@ -25,7 +25,7 @@
|
||||
/**
|
||||
* @mainpage
|
||||
* @author WrinklyNinja
|
||||
* @version 0.8.0
|
||||
* @version 0.8.1
|
||||
* @copyright
|
||||
* The LOOT API is distributed under the GNU General Public License v3.0.
|
||||
* For the full text of the license, see the "GNU GPL v3.txt" file
|
||||
@@ -61,20 +61,38 @@
|
||||
* "docs/licenses/Licenses.txt" file.
|
||||
*
|
||||
* @section history_sec Version History
|
||||
* ## 0.8.1 - 27 September 2015*
|
||||
*
|
||||
* * Fixed crash when loading plugins due to lack of thread safety.
|
||||
* * Fixed masterlist updater and validator not checking for valid
|
||||
* condition and regex syntax.
|
||||
* * Check for safe file paths when parsing conditions.
|
||||
* * Updated Boost (1.59.0), libgit2 (0.23.2) and CEF (branch 2454)
|
||||
* dependencies. This fixes the masterlist updater not working
|
||||
* correctly for Windows Vista users.
|
||||
*
|
||||
* ## 0.8.0 - *22 July 2015*
|
||||
*
|
||||
* * Fixed many miscellaneous bugs, including initialisation crashes and incorrect metadata input/output handling.
|
||||
* * Fixed LOOT silently discarding some non-unique metadata: an error will now occur when loading or attempting to apply such metadata.
|
||||
* * Fixed and improved LOOT's version comparison behaviour for a wide variety of version string formats. This involved removing LOOT's usage of the Alphanum code library.
|
||||
* * Improved plugin loading performance for computers with weaker multithreading capabilities (eg. non-hyperthreaded dual-core or single-core CPUs).
|
||||
* * Fixed many miscellaneous bugs, including initialisation crashes and
|
||||
* incorrect metadata input/output handling.
|
||||
* * Fixed LOOT silently discarding some non-unique metadata: an error
|
||||
* will now occur when loading or attempting to apply such metadata.
|
||||
* * Fixed and improved LOOT's version comparison behaviour for a wide
|
||||
* variety of version string formats. This involved removing LOOT's
|
||||
* usage of the Alphanum code library.
|
||||
* * Improved plugin loading performance for computers with weaker
|
||||
* multithreading capabilities (eg. non-hyperthreaded dual-core or
|
||||
* single-core CPUs).
|
||||
* * LOOT no longer outputs validity warnings for inactive plugins.
|
||||
* * Metadata syntax support changes, see the metadata syntax document for details.
|
||||
* * Metadata syntax support changes, see the metadata syntax document
|
||||
* for details.
|
||||
* * Updated libgit2 to v0.23.0.
|
||||
*
|
||||
* ## 0.7.1 - *22 June 2015*
|
||||
*
|
||||
* * Fixed "No existing load order position" errors when sorting.
|
||||
* * Fixed output of Bash Tag removal suggestions in `loot_write_minimal_list()`.
|
||||
* * Fixed output of Bash Tag removal suggestions in
|
||||
* `loot_write_minimal_list()`.
|
||||
*
|
||||
* ## 0.7.0 - *20 May 2015*
|
||||
*
|
||||
|
||||
@@ -29,7 +29,7 @@ namespace loot {
|
||||
//Version numbers.
|
||||
const unsigned int g_version_major = 0;
|
||||
const unsigned int g_version_minor = 8;
|
||||
const unsigned int g_version_patch = 0;
|
||||
const unsigned int g_version_patch = 1;
|
||||
|
||||
// Build revision
|
||||
const char * g_build_revision = "@GIT_COMMIT_STRING@";
|
||||
|
||||
+4
-4
@@ -1,7 +1,7 @@
|
||||
#include "gui/resource.h"
|
||||
1 VERSIONINFO
|
||||
FILEVERSION 0, 8, 0, 0
|
||||
PRODUCTVERSION 0, 8, 0, 0
|
||||
FILEVERSION 0, 8, 1, 0
|
||||
PRODUCTVERSION 0, 8, 1, 0
|
||||
FILEOS VOS__WINDOWS32
|
||||
FILETYPE VFT_APP
|
||||
BEGIN
|
||||
@@ -9,9 +9,9 @@ BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
VALUE "FileVersion", "0.8.0"
|
||||
VALUE "FileVersion", "0.8.1"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2013-2015 WrinklyNinja"
|
||||
VALUE "ProductVersion", "0.8.0"
|
||||
VALUE "ProductVersion", "0.8.1"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
||||
Reference in New Issue
Block a user