Skip to content

Commit

Permalink
Bump version to v4.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
vtmateos committed Dec 18, 2020
1 parent 2cb986b commit 5570377
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions installer_win.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ VIAddVersionKey "LegalCopyright" "MEGA Limited 2019"
VIAddVersionKey "ProductName" "MEGAsync"

; Version info
VIProductVersion "4.3.8.0"
VIAddVersionKey "FileVersion" "4.3.8.0"
VIAddVersionKey "ProductVersion" "4.3.8.0"
!define PRODUCT_VERSION "4.3.8"
VIProductVersion "4.3.9.0"
VIAddVersionKey "FileVersion" "4.3.9.0"
VIAddVersionKey "ProductVersion" "4.3.9.0"
!define PRODUCT_VERSION "4.3.9"

!define PRODUCT_PUBLISHER "Mega Limited"
!define PRODUCT_WEB_SITE "http://www.mega.nz"
Expand Down
10 changes: 5 additions & 5 deletions src/MEGASync/control/Preferences.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ extern Q_CORE_EXPORT int qt_ntfs_permission_lookup;
#endif

const char Preferences::CLIENT_KEY[] = "FhMgXbqb";
const char Preferences::USER_AGENT[] = "MEGAsync/4.3.8.0";
const int Preferences::VERSION_CODE = 4308;
const char Preferences::USER_AGENT[] = "MEGAsync/4.3.9.0";
const int Preferences::VERSION_CODE = 4309;
const int Preferences::BUILD_ID = 0;
// Do not change the location of VERSION_STRING, create_tarball.sh parses this file
const QString Preferences::VERSION_STRING = QString::fromAscii("4.3.8");
QString Preferences::SDK_ID = QString::fromAscii("37b346c");
const QString Preferences::VERSION_STRING = QString::fromAscii("4.3.9");
QString Preferences::SDK_ID = QString::fromAscii("c917ddc");
const QString Preferences::CHANGELOG = QString::fromUtf8(QT_TR_NOOP(
"- Fixed decryption errors for downloads during integrity verification."));
"- Fixed detected crashes on Windows and Linux."));

const QString Preferences::TRANSLATION_FOLDER = QString::fromAscii("://translations/");
const QString Preferences::TRANSLATION_PREFIX = QString::fromAscii("MEGASyncStrings_");
Expand Down
8 changes: 4 additions & 4 deletions src/MEGASync/icon.rc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <windows.h>

VS_VERSION_INFO VERSIONINFO
FILEVERSION 4, 3, 8, 0
PRODUCTVERSION 4, 3, 8, 0
FILEVERSION 4, 3, 9, 0
PRODUCTVERSION 4, 3, 9, 0
FILEFLAGSMASK 0x3fL
FILEFLAGS 0
FILEOS VOS_NT_WINDOWS32
Expand All @@ -20,10 +20,10 @@ BEGIN
VALUE "CompanyName", "Mega Limited\0"
VALUE "FileDescription", "MEGAsync\0"
VALUE "InternalName", "MEGAsync.exe\0"
VALUE "LegalCopyright", "Mega Limited 2020\0"
VALUE "LegalCopyright", "Mega Limited 2021\0"
VALUE "OriginalFilename", "MEGAsync.exe\0"
VALUE "ProductName", "MEGAsync\0"
VALUE "ProductVersion", "4.3.8.0\0"
VALUE "ProductVersion", "4.3.9.0\0"
END
END
END
Expand Down
2 changes: 1 addition & 1 deletion src/MEGASync/mega

0 comments on commit 5570377

Please sign in to comment.