diff --git a/Telegram/Resources/uwp/AppX/AppxManifest.xml b/Telegram/Resources/uwp/AppX/AppxManifest.xml index 64da23220..dc56ca747 100644 --- a/Telegram/Resources/uwp/AppX/AppxManifest.xml +++ b/Telegram/Resources/uwp/AppX/AppxManifest.xml @@ -9,7 +9,7 @@ + Version="1.0.35.0" /> Telegram Desktop Telegram Messenger LLP diff --git a/Telegram/Resources/winrc/Telegram.rc b/Telegram/Resources/winrc/Telegram.rc index 52b32b142..24d7ae414 100644 --- a/Telegram/Resources/winrc/Telegram.rc +++ b/Telegram/Resources/winrc/Telegram.rc @@ -34,8 +34,8 @@ IDI_ICON1 ICON "..\\art\\icon256.ico" // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,0,34,0 - PRODUCTVERSION 1,0,34,0 + FILEVERSION 1,0,35,0 + PRODUCTVERSION 1,0,35,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -52,10 +52,10 @@ BEGIN BEGIN VALUE "CompanyName", "Telegram Messenger LLP" VALUE "FileDescription", "Telegram Desktop" - VALUE "FileVersion", "1.0.34.0" + VALUE "FileVersion", "1.0.35.0" VALUE "LegalCopyright", "Copyright (C) 2014-2017" VALUE "ProductName", "Telegram Desktop" - VALUE "ProductVersion", "1.0.34.0" + VALUE "ProductVersion", "1.0.35.0" END END BLOCK "VarFileInfo" diff --git a/Telegram/Resources/winrc/Updater.rc b/Telegram/Resources/winrc/Updater.rc index 6e2c4a3c4..5d0c968bc 100644 --- a/Telegram/Resources/winrc/Updater.rc +++ b/Telegram/Resources/winrc/Updater.rc @@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,0,34,0 - PRODUCTVERSION 1,0,34,0 + FILEVERSION 1,0,35,0 + PRODUCTVERSION 1,0,35,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -43,10 +43,10 @@ BEGIN BEGIN VALUE "CompanyName", "Telegram Messenger LLP" VALUE "FileDescription", "Telegram Desktop Updater" - VALUE "FileVersion", "1.0.34.0" + VALUE "FileVersion", "1.0.35.0" VALUE "LegalCopyright", "Copyright (C) 2014-2017" VALUE "ProductName", "Telegram Desktop" - VALUE "ProductVersion", "1.0.34.0" + VALUE "ProductVersion", "1.0.35.0" END END BLOCK "VarFileInfo" diff --git a/Telegram/SourceFiles/core/version.h b/Telegram/SourceFiles/core/version.h index 28c9cc198..69141a662 100644 --- a/Telegram/SourceFiles/core/version.h +++ b/Telegram/SourceFiles/core/version.h @@ -24,7 +24,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org #define BETA_VERSION_MACRO (0ULL) -constexpr int AppVersion = 1000034; -constexpr str_const AppVersionStr = "1.0.34"; +constexpr int AppVersion = 1000035; +constexpr str_const AppVersionStr = "1.0.35"; constexpr bool AppAlphaVersion = true; constexpr uint64 AppBetaVersion = BETA_VERSION_MACRO; diff --git a/Telegram/SourceFiles/messenger.cpp b/Telegram/SourceFiles/messenger.cpp index 01a90a670..3b4cc7fa0 100644 --- a/Telegram/SourceFiles/messenger.cpp +++ b/Telegram/SourceFiles/messenger.cpp @@ -713,8 +713,8 @@ void Messenger::checkMapVersion() { if (Local::oldMapVersion() < AppVersion) { if (Local::oldMapVersion()) { QString versionFeatures; - if ((cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 1000030) { - versionFeatures = QString::fromUtf8("\xE2\x80\x94 The new Emoji, Stickers, and Saved GIFs panel becomes a separate space on the right when Telegram is running in a wide enough window.\n\xE2\x80\x94 Manage blocked users list in your supergroups."); + if ((cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 1000035) { + versionFeatures = QString::fromUtf8("\xE2\x80\x94 Chat admins can delete other participants' messages.\n\xE2\x80\x94 Bug fixes and other minor improvements."); } else if (!(cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 1000029) { versionFeatures = langNewVersionText(); } else { diff --git a/Telegram/build/version b/Telegram/build/version index 859594680..a0f57a4f4 100644 --- a/Telegram/build/version +++ b/Telegram/build/version @@ -1,6 +1,6 @@ -AppVersion 1000034 +AppVersion 1000035 AppVersionStrMajor 1.0 -AppVersionStrSmall 1.0.34 -AppVersionStr 1.0.34 +AppVersionStrSmall 1.0.35 +AppVersionStr 1.0.35 AlphaChannel 1 BetaVersion 0 diff --git a/changelog.txt b/changelog.txt index 95114531c..f02768f9b 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,8 @@ +1.0.35 alpha (30.04.17) + +- Chat admins can delete other participants' messages. +- Bug fixes and other minor improvements. + 1.0.34 alpha (21.04.17) - Bug fixes and other minor improvements.