Skip to content

Commit

Permalink
Update changelog and version for 0.22.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Ortham committed Nov 5, 2023
1 parent 321ba58 commit e84ed3b
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/app/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Version History

Only application history is recorded here. A full history of masterlist changes may be viewed by browsing the GitHub repositories.

0.22.1 - Unreleased
0.22.1 - 2023-11-05
===================

Fixed
Expand Down
12 changes: 12 additions & 0 deletions resources/linux/io.github.loot.loot.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,18 @@
</screenshots>

<releases>
<release version="0.22.1" date="2023-11-05">
<description>
<ul>
<li>Fixed the "Hide Creation Club plugins" filter having no effect.</li>
<li>Disabled sorting for Starfield. Due to the way that Starfield plugins make changes to existing data, LOOT cannot reliable detect when two plugins change the same record, so sorting may not function as intended.</li>
<li>The new plugin type and plugin header flag introduced by Starfield that was
previously referred to as the "override" plugin type and flag is now referred to as the "overlay" plugin type and flag for consistency with xEdit, Wrye Bash and Mod Organizer 2.</li>
<li>The "Show only conflicting plugins for" filter has been renamed to "Show only overlapping plugins for" for clarity and consistency with other LOOT functionality.</li>
</ul>
</description>
<url>https://loot.readthedocs.io/en/0.22.1/app/changelog.html#id1</url>
</release>
<release version="0.22.0" date="2023-10-07">
<description>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion scripts/git/hooks/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ xgettext \
--add-comments=translators: \
--from-code=utf-8 \
--package-name=LOOT \
--package-version=0.22.0 \
--package-version=0.22.1 \
--copyright-holder="WrinklyNinja" \
--msgid-bugs-address="https://github.com/loot/loot/issues" \
-o resources/l10n/template.pot \
Expand Down
2 changes: 1 addition & 1 deletion scripts/installer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
; be displayed correctly.

#define MyAppName "LOOT"
#define MyAppVersion "0.22.0"
#define MyAppVersion "0.22.1"
#define MyAppPublisher "LOOT Team"
#define MyAppURL "https://loot.github.io"
#define MyAppExeName "LOOT.exe"
Expand Down
8 changes: 4 additions & 4 deletions src/gui/resource.rc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "gui/resource.h"
1 VERSIONINFO
FILEVERSION 0, 22, 0, 0
PRODUCTVERSION 0, 22, 0, 0
FILEVERSION 0, 22, 1, 0
PRODUCTVERSION 0, 22, 1, 0
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
BEGIN
Expand All @@ -11,12 +11,12 @@ BLOCK "040904b0"
BEGIN
VALUE "CompanyName", "LOOT"
VALUE "FileDescription", "LOOT executable"
VALUE "FileVersion", "0.22.0"
VALUE "FileVersion", "0.22.1"
VALUE "InternalName", "LOOT"
VALUE "LegalCopyright", "Copyright (C) 2013-2022 Oliver Hamlet"
VALUE "OriginalFilename", "LOOT.exe"
VALUE "ProductName", "LOOT"
VALUE "ProductVersion", "0.22.0"
VALUE "ProductVersion", "0.22.1"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion src/gui/version.cpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace loot {
namespace gui {
const unsigned int Version::major = 0;
const unsigned int Version::minor = 22;
const unsigned int Version::patch = 0;
const unsigned int Version::patch = 1;
const std::string Version::revision = "@GIT_COMMIT_STRING@";

std::string Version::string() {
Expand Down

0 comments on commit e84ed3b

Please sign in to comment.