Skip to content

Commit

Permalink
Update version and changelog for v0.18.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Ortham committed Oct 1, 2022
1 parent e0c38f7 commit c4cdfbb
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 5 deletions.
33 changes: 33 additions & 0 deletions docs/api/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,39 @@
Version History
***************

0.18.1 - 2022-10-01
===================

Fixed
-----

- libloot will now use the correct local app data path for the GOG distribution
of Skyrim Special Edition when no local app data path is passed to
:cpp:any:`loot::CreateGameHandle()`. Via libloadorder.
- If Oblivion's ``Oblivion.ini`` could not be found or read, or if it did not
contain the ``bUseMyGamesDirectory`` setting, the game's install path would be
used as the parent directory for ``plugins.txt``. libloot now correctly
defaults to using the game's local app data directory, and only uses the
install path if ``bUseMyGamesDirectory=0`` is found. Via libloadorder.

Changed
-------

- When serialising plugin metadata as YAML, LOOT now:

- Puts ``url`` before ``group``
- Serialises single-element lists using the flow style if the element would be
serialised as a scalar value
- Pads CRC hexadecimal values to always be 8 characters long (excluding the
``0x`` prefix)
- Uses uppercase letters in CRC hexadecimal values.

- Updated esplugin to v4.0.0.
- Updated Google Test to v1.12.1.
- Updated libloadorder to v13.2.0.
- Updated loot-condition-interpreter to v2.3.1.
- Updated spdlog to v1.10.0.

0.18.0 - 2022-02-27
===================

Expand Down
2 changes: 1 addition & 1 deletion include/loot/loot_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ inline constexpr unsigned int LIBLOOT_VERSION_MAJOR = 0;
inline constexpr unsigned int LIBLOOT_VERSION_MINOR = 18;

/** @brief libloot's patch version number. */
inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 0;
inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 1;

/**
* @brief Get the library version.
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, 18, 0, 0
PRODUCTVERSION 0, 18, 0, 0
FILEVERSION 0, 18, 1, 0
PRODUCTVERSION 0, 18, 1, 0
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "FileVersion", "0.18.0"
VALUE "FileVersion", "0.18.1"
VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja"
VALUE "ProductVersion", "0.18.0"
VALUE "ProductVersion", "0.18.1"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit c4cdfbb

Please sign in to comment.