Skip to content

Commit

Permalink
Update changelog and version for 0.22.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Ortham committed Dec 2, 2023
1 parent a793d53 commit 7440e8e
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 10 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.2 - Unreleased
0.22.2 - 2023-12-01
===================

Fixed
Expand Down
4 changes: 2 additions & 2 deletions resources/l10n/template.pot
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: LOOT 0.22.1\n"
"Project-Id-Version: LOOT 0.22.2\n"
"Report-Msgid-Bugs-To: https://github.com/loot/loot/issues\n"
"POT-Creation-Date: 2023-11-28 20:45+0000\n"
"POT-Creation-Date: 2023-12-02 11:19+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
8 changes: 8 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,14 @@
</screenshots>

<releases>
<release version="0.22.2" date="2023-12-01">
<description>
<ul>
<li>Fixed errors encountered while parsing game ini files that contain single quote, double quote or backslash characters</li>
</ul>
</description>
<url>https://loot.readthedocs.io/en/0.22.2/app/changelog.html#id1</url>
</release>
<release version="0.22.1" date="2023-11-05">
<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.1 \
--package-version=0.22.2 \
--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.1"
#define MyAppVersion "0.22.2"
#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, 1, 0
PRODUCTVERSION 0, 22, 1, 0
FILEVERSION 0, 22, 2, 0
PRODUCTVERSION 0, 22, 2, 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.1"
VALUE "FileVersion", "0.22.2"
VALUE "InternalName", "LOOT"
VALUE "LegalCopyright", "Copyright (C) 2013-2022 Oliver Hamlet"
VALUE "OriginalFilename", "LOOT.exe"
VALUE "ProductName", "LOOT"
VALUE "ProductVersion", "0.22.1"
VALUE "ProductVersion", "0.22.2"
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 = 1;
const unsigned int Version::patch = 2;
const std::string Version::revision = "@GIT_COMMIT_STRING@";

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

0 comments on commit 7440e8e

Please sign in to comment.