From 1d09e85c089ef71445286faae248f25cd7d239a6 Mon Sep 17 00:00:00 2001 From: Silarn Date: Tue, 21 May 2019 23:46:12 -0500 Subject: Add logs to build artifacts on CI fail, commit translation changes --- src/version.rc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/version.rc') diff --git a/src/version.rc b/src/version.rc index 241cd0ce..af6fd603 100644 --- a/src/version.rc +++ b/src/version.rc @@ -3,8 +3,8 @@ // If VS_FF_PRERELEASE is not set, MO labels the build as a release and uses VER_FILEVERSION to determine version number. // Otherwise, if letters are used in VER_FILEVERSION_STR, uses the full MOBase::VersionInfo parser // Otherwise, uses the numbers from VER_FILEVERSION and sets the release type as pre-alpha -#define VER_FILEVERSION 2,2,0 -#define VER_FILEVERSION_STR "2.2.0\0" +#define VER_FILEVERSION 2,2,1 +#define VER_FILEVERSION_STR "2.2.1alpha1\0" VS_VERSION_INFO VERSIONINFO FILEVERSION VER_FILEVERSION -- cgit v1.3.1 From 58fbdc1c22a75ca18ff9a4e1a8dc9e02b0c052c5 Mon Sep 17 00:00:00 2001 From: isanae <14251494+isanae@users.noreply.github.com> Date: Sat, 15 Jun 2019 15:08:45 -0400 Subject: removed 'L' from the language code: - it's incorrect, since language codes are unsigned shorts, and - it actually breaks the translation section and makes retrieving it through standard Windows API fail --- src/version.rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/version.rc') diff --git a/src/version.rc b/src/version.rc index af6fd603..04259d7d 100644 --- a/src/version.rc +++ b/src/version.rc @@ -32,6 +32,6 @@ BEGIN BLOCK "VarFileInfo" BEGIN - VALUE "Translation", 0x0409L, 1200 + VALUE "Translation", 0x0409, 1200 END END -- cgit v1.3.1 From 63f835628be1b82b3d5cc940b8e7797f7ccdf1be Mon Sep 17 00:00:00 2001 From: Silarn Date: Tue, 9 Jul 2019 11:34:32 -0500 Subject: 2.2.1 RC Version --- src/version.rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/version.rc') diff --git a/src/version.rc b/src/version.rc index 04259d7d..92370853 100644 --- a/src/version.rc +++ b/src/version.rc @@ -4,7 +4,7 @@ // Otherwise, if letters are used in VER_FILEVERSION_STR, uses the full MOBase::VersionInfo parser // Otherwise, uses the numbers from VER_FILEVERSION and sets the release type as pre-alpha #define VER_FILEVERSION 2,2,1 -#define VER_FILEVERSION_STR "2.2.1alpha1\0" +#define VER_FILEVERSION_STR "2.2.1rc1\0" VS_VERSION_INFO VERSIONINFO FILEVERSION VER_FILEVERSION -- cgit v1.3.1