diff --git a/scripts/git/pre-commit b/scripts/git/pre-commit index 0cb21509..d3c6a2d7 100755 --- a/scripts/git/pre-commit +++ b/scripts/git/pre-commit @@ -5,7 +5,7 @@ # commit if more than one line in it has changed, otherwise discard any changes # to it. -xgettext --keyword="translate:1,1t" --keyword="translate:1,2,3t" --keyword="translateFormatted:1" --add-location=full --from-code=utf-8 --package-name=LOOT --package-version=0.10.1 --copyright-holder="WrinklyNinja" --msgid-bugs-address="https://github.com/loot/loot/issues" -o resources/l10n/template.pot src/gui/html/js/*.* src/gui/*.cpp src/gui/query/*.h src/backend/*/*.* src/backend/*.* +xgettext --keyword="translate:1,1t" --keyword="translate:1,2,3t" --keyword="translateFormatted:1" --add-location=full --from-code=utf-8 --package-name=LOOT --package-version=0.10.2 --copyright-holder="WrinklyNinja" --msgid-bugs-address="https://github.com/loot/loot/issues" -o resources/l10n/template.pot src/gui/html/js/*.* src/gui/*.cpp src/gui/query/*.h src/backend/*/*.* src/backend/*.* sed -i 's|charset=CHARSET|charset=UTF-8|' resources/l10n/template.pot diff --git a/scripts/installer.iss b/scripts/installer.iss index 746ee882..e0337811 100644 --- a/scripts/installer.iss +++ b/scripts/installer.iss @@ -11,7 +11,7 @@ #include #define MyAppName "LOOT" -#define MyAppVersion "0.10.1" +#define MyAppVersion "0.10.2" #define MyAppPublisher "LOOT Team" #define MyAppURL "https://loot.github.io" #define MyAppExeName "LOOT.exe" diff --git a/src/backend/app/loot_version.cpp.in b/src/backend/app/loot_version.cpp.in index 9d7cd4c6..649dc077 100644 --- a/src/backend/app/loot_version.cpp.in +++ b/src/backend/app/loot_version.cpp.in @@ -27,7 +27,7 @@ namespace loot { const unsigned int LootVersion::major = 0; const unsigned int LootVersion::minor = 10; -const unsigned int LootVersion::patch = 1; +const unsigned int LootVersion::patch = 2; const std::string LootVersion::revision = "@GIT_COMMIT_STRING@"; LOOT_API std::string LootVersion::string() { diff --git a/src/resource.rc b/src/resource.rc index 0fd53699..b3c40941 100644 --- a/src/resource.rc +++ b/src/resource.rc @@ -1,7 +1,7 @@ #include "gui/resource.h" 1 VERSIONINFO -FILEVERSION 0, 10, 1, 0 -PRODUCTVERSION 0, 10, 1, 0 +FILEVERSION 0, 10, 2, 0 +PRODUCTVERSION 0, 10, 2, 0 FILEOS VOS__WINDOWS32 FILETYPE VFT_APP BEGIN @@ -9,9 +9,9 @@ BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN -VALUE "FileVersion", "0.10.1" +VALUE "FileVersion", "0.10.2" VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja" -VALUE "ProductVersion", "0.10.1" +VALUE "ProductVersion", "0.10.2" END END BLOCK "VarFileInfo"