mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
Update changelog and version for 0.14.0 release
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
Version History
|
||||
***************
|
||||
|
||||
0.14.0 - Unreleased
|
||||
0.14.0 - 2018-12-09
|
||||
===================
|
||||
|
||||
Added
|
||||
@@ -32,8 +32,12 @@ Changed
|
||||
- :cpp:any:`CyclicInteractionError` has had its constructor and methods
|
||||
completely replaced to provide a more detailed and flexible representation of
|
||||
the cyclic path that it reports.
|
||||
- ``UndefinedGroupError::getGroupName()`` has been renamed to ``UndefinedGroupError::GetGroupName()`` for consistency with other API method names.
|
||||
- ``LootVersion::string()`` has been renamed to ``LootVersion::GetVersionString()`` for consistency with other API method names.
|
||||
- ``UndefinedGroupError::getGroupName()`` has been renamed to
|
||||
``UndefinedGroupError::GetGroupName()`` for consistency with other API method
|
||||
names.
|
||||
- ``LootVersion::string()`` has been renamed to
|
||||
``LootVersion::GetVersionString()`` for consistency with other API method
|
||||
names.
|
||||
- :cpp:any:`GetPluginMetadata()` and :cpp:any:`GetPluginUserMetadata()` now
|
||||
return ``std::optional<PluginMetadata>`` to differentiate metadata being found
|
||||
or not. Note that the ``PluginMetadata`` value may still return true for
|
||||
|
||||
@@ -26,8 +26,8 @@
|
||||
|
||||
namespace loot {
|
||||
const unsigned int LootVersion::major = 0;
|
||||
const unsigned int LootVersion::minor = 13;
|
||||
const unsigned int LootVersion::patch = 8;
|
||||
const unsigned int LootVersion::minor = 14;
|
||||
const unsigned int LootVersion::patch = 0;
|
||||
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, 13, 8, 0
|
||||
PRODUCTVERSION 0, 13, 8, 0
|
||||
FILEVERSION 0, 14, 0, 0
|
||||
PRODUCTVERSION 0, 14, 0, 0
|
||||
FILEOS VOS__WINDOWS32
|
||||
FILETYPE VFT_APP
|
||||
BEGIN
|
||||
@@ -11,9 +11,9 @@ BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
VALUE "FileVersion", "0.13.8"
|
||||
VALUE "FileVersion", "0.14.0"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja"
|
||||
VALUE "ProductVersion", "0.13.8"
|
||||
VALUE "ProductVersion", "0.14.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
||||
Reference in New Issue
Block a user