mirror of
https://github.com/vale981/tdesktop
synced 2025-03-06 10:11:41 -05:00
Version 0.10.16 stable: new media player + notifications update.
This commit is contained in:
parent
f1307f70ce
commit
9752224449
5 changed files with 17 additions and 17 deletions
|
@ -34,8 +34,8 @@ IDI_ICON1 ICON "..\\art\\icon256.ico"
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 0,10,15,0
|
||||
PRODUCTVERSION 0,10,15,0
|
||||
FILEVERSION 0,10,16,0
|
||||
PRODUCTVERSION 0,10,16,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -51,10 +51,10 @@ BEGIN
|
|||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
VALUE "CompanyName", "Telegram Messenger LLP"
|
||||
VALUE "FileVersion", "0.10.15.0"
|
||||
VALUE "FileVersion", "0.10.16.0"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2014-2016"
|
||||
VALUE "ProductName", "Telegram Desktop"
|
||||
VALUE "ProductVersion", "0.10.15.0"
|
||||
VALUE "ProductVersion", "0.10.16.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
|
@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 0,10,15,0
|
||||
PRODUCTVERSION 0,10,15,0
|
||||
FILEVERSION 0,10,16,0
|
||||
PRODUCTVERSION 0,10,16,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.10.15.0"
|
||||
VALUE "FileVersion", "0.10.16.0"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2014-2016"
|
||||
VALUE "ProductName", "Telegram Desktop"
|
||||
VALUE "ProductVersion", "0.10.15.0"
|
||||
VALUE "ProductVersion", "0.10.16.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
|
@ -1087,8 +1087,8 @@ void AppClass::checkMapVersion() {
|
|||
if (Local::oldMapVersion()) {
|
||||
QString versionFeatures;
|
||||
if ((cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 10014) {
|
||||
versionFeatures = QString::fromUtf8("\xe2\x80\x94 New audio player design\n\xe2\x80\x94 Moved to Qt library version 5.6.2\n\nWindows 10:\n\xe2\x80\x94 Respecting quiet hours for the notifications");
|
||||
} else if (!(cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 10005) {
|
||||
versionFeatures = langNewVersionText(); //QString::fromUtf8("\xe2\x80\x94 New audio player design\n\xe2\x80\x94 Moved to Qt library version 5.6.2\n\nWindows 10:\n\xe2\x80\x94 Respecting quiet hours for the notifications");
|
||||
} else if (!(cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 10016) {
|
||||
versionFeatures = langNewVersionText();
|
||||
} else {
|
||||
versionFeatures = lang(lng_new_version_minor).trimmed();
|
||||
|
|
|
@ -24,7 +24,7 @@ Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
|
|||
|
||||
#define BETA_VERSION_MACRO (0ULL)
|
||||
|
||||
constexpr int AppVersion = 10015;
|
||||
constexpr str_const AppVersionStr = "0.10.15";
|
||||
constexpr bool AppAlphaVersion = true;
|
||||
constexpr int AppVersion = 10016;
|
||||
constexpr str_const AppVersionStr = "0.10.16";
|
||||
constexpr bool AppAlphaVersion = false;
|
||||
constexpr uint64 AppBetaVersion = BETA_VERSION_MACRO;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
AppVersion 10015
|
||||
AppVersion 10016
|
||||
AppVersionStrMajor 0.10
|
||||
AppVersionStrSmall 0.10.15
|
||||
AppVersionStr 0.10.15
|
||||
AlphaChannel 1
|
||||
AppVersionStrSmall 0.10.16
|
||||
AppVersionStr 0.10.16
|
||||
AlphaChannel 0
|
||||
BetaVersion 0
|
||||
|
|
Loading…
Add table
Reference in a new issue