Alpha version 0.9.57: some design improvements, GTK file chooser.

This commit is contained in:
John Preston 2016-07-07 19:32:34 +03:00
parent 609cacf8b5
commit d98a6d3f82
6 changed files with 23 additions and 19 deletions

View File

@ -34,8 +34,8 @@ IDI_ICON1 ICON "..\\art\\icon256.ico"
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,9,56,0
PRODUCTVERSION 0,9,56,0
FILEVERSION 0,9,57,0
PRODUCTVERSION 0,9,57,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -51,10 +51,10 @@ BEGIN
BLOCK "040904b0"
BEGIN
VALUE "CompanyName", "Telegram Messenger LLP"
VALUE "FileVersion", "0.9.56.0"
VALUE "FileVersion", "0.9.57.0"
VALUE "LegalCopyright", "Copyright (C) 2014-2016"
VALUE "ProductName", "Telegram Desktop"
VALUE "ProductVersion", "0.9.56.0"
VALUE "ProductVersion", "0.9.57.0"
END
END
BLOCK "VarFileInfo"

View File

@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,9,56,0
PRODUCTVERSION 0,9,56,0
FILEVERSION 0,9,57,0
PRODUCTVERSION 0,9,57,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -43,10 +43,10 @@ BEGIN
BEGIN
VALUE "CompanyName", "Telegram Messenger LLP"
VALUE "FileDescription", "Telegram Updater"
VALUE "FileVersion", "0.9.56.0"
VALUE "FileVersion", "0.9.57.0"
VALUE "LegalCopyright", "Copyright (C) 2014-2016"
VALUE "ProductName", "Telegram Desktop"
VALUE "ProductVersion", "0.9.56.0"
VALUE "ProductVersion", "0.9.57.0"
END
END
BLOCK "VarFileInfo"

View File

@ -1045,8 +1045,12 @@ void AppClass::checkMapVersion() {
if (Local::oldMapVersion() < AppVersion) {
if (Local::oldMapVersion()) {
QString versionFeatures;
if ((cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 9055) {
versionFeatures = QString::fromUtf8("\xe2\x80\x94 Main window position and size are saved between the launches in Windows\n\xe2\x80\x94 Dock and top bar hiding fixed in OS X\n\xe2\x80\x94 Various design improvements and other bug fixes");
if ((cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 9057) {
#if defined Q_OS_LINUX32 || defined Q_OS_LINUX64
versionFeatures = QString::fromUtf8("\xe2\x80\x94 Design improvements\n\xe2\x80\x94 Linux : trying to use GTK file chooser when it is available");
#else // Q_OS_LINUX32 || Q_OS_LINUX64
versionFeatures = QString::fromUtf8("\xe2\x80\x94 Design improvements");
#endif // Q_OS_LINUX32 || Q_OS_LINUX64
// versionFeatures = langNewVersionText();
} else if (Local::oldMapVersion() < 9056) {
versionFeatures = langNewVersionText();

View File

@ -24,7 +24,7 @@ Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
#define BETA_VERSION_MACRO (0ULL)
constexpr int AppVersion = 9056;
constexpr str_const AppVersionStr = "0.9.56";
constexpr bool AppAlphaVersion = false;
constexpr int AppVersion = 9057;
constexpr str_const AppVersionStr = "0.9.57";
constexpr bool AppAlphaVersion = true;
constexpr uint64 AppBetaVersion = BETA_VERSION_MACRO;

View File

@ -2375,7 +2375,7 @@
SDKROOT = macosx;
SYMROOT = ./../Mac;
TDESKTOP_MAJOR_VERSION = 0.9;
TDESKTOP_VERSION = 0.9.56;
TDESKTOP_VERSION = 0.9.57;
};
name = Release;
};
@ -2516,7 +2516,7 @@
SDKROOT = macosx;
SYMROOT = ./../Mac;
TDESKTOP_MAJOR_VERSION = 0.9;
TDESKTOP_VERSION = 0.9.56;
TDESKTOP_VERSION = 0.9.57;
};
name = Debug;
};

View File

@ -1,6 +1,6 @@
AppVersion 9056
AppVersion 9057
AppVersionStrMajor 0.9
AppVersionStrSmall 0.9.56
AppVersionStr 0.9.56
AlphaChannel 0
AppVersionStrSmall 0.9.57
AppVersionStr 0.9.57
AlphaChannel 1
BetaVersion 0