diff --git a/Telegram/Resources/uwp/AppX/AppxManifest.xml b/Telegram/Resources/uwp/AppX/AppxManifest.xml index 159ab951b..9e051b711 100644 --- a/Telegram/Resources/uwp/AppX/AppxManifest.xml +++ b/Telegram/Resources/uwp/AppX/AppxManifest.xml @@ -9,7 +9,7 @@ + Version="1.0.36.0" /> Telegram Desktop Telegram Messenger LLP diff --git a/Telegram/Resources/winrc/Telegram.rc b/Telegram/Resources/winrc/Telegram.rc index 9af98dcae..45cc87d81 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,35,3 - PRODUCTVERSION 1,0,35,3 + FILEVERSION 1,0,36,0 + PRODUCTVERSION 1,0,36,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.35.3" + VALUE "FileVersion", "1.0.36.0" VALUE "LegalCopyright", "Copyright (C) 2014-2017" VALUE "ProductName", "Telegram Desktop" - VALUE "ProductVersion", "1.0.35.3" + VALUE "ProductVersion", "1.0.36.0" END END BLOCK "VarFileInfo" diff --git a/Telegram/Resources/winrc/Updater.rc b/Telegram/Resources/winrc/Updater.rc index 7fc64b166..21eb6a43d 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,35,3 - PRODUCTVERSION 1,0,35,3 + FILEVERSION 1,0,36,0 + PRODUCTVERSION 1,0,36,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.35.3" + VALUE "FileVersion", "1.0.36.0" VALUE "LegalCopyright", "Copyright (C) 2014-2017" VALUE "ProductName", "Telegram Desktop" - VALUE "ProductVersion", "1.0.35.3" + VALUE "ProductVersion", "1.0.36.0" END END BLOCK "VarFileInfo" diff --git a/Telegram/SourceFiles/core/version.h b/Telegram/SourceFiles/core/version.h index 503693082..df2ff34a7 100644 --- a/Telegram/SourceFiles/core/version.h +++ b/Telegram/SourceFiles/core/version.h @@ -22,9 +22,9 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org #include "core/utils.h" -#define BETA_VERSION_MACRO (1000035003ULL) +#define BETA_VERSION_MACRO (0ULL) -constexpr int AppVersion = 1000035; -constexpr str_const AppVersionStr = "1.0.35"; -constexpr bool AppAlphaVersion = false; +constexpr int AppVersion = 1000036; +constexpr str_const AppVersionStr = "1.0.36"; +constexpr bool AppAlphaVersion = true; constexpr uint64 AppBetaVersion = BETA_VERSION_MACRO; diff --git a/Telegram/SourceFiles/messenger.cpp b/Telegram/SourceFiles/messenger.cpp index f8e007371..3aa5d9403 100644 --- a/Telegram/SourceFiles/messenger.cpp +++ b/Telegram/SourceFiles/messenger.cpp @@ -726,8 +726,8 @@ void Messenger::checkMapVersion() { if (Local::oldMapVersion() < AppVersion) { if (Local::oldMapVersion()) { QString versionFeatures; - 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."); + if ((cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 1000036) { + versionFeatures = QString::fromUtf8("\xE2\x80\x94 Telegram Calls are now available on desktops: secure, crystal-clear, constantly improved by artificial intelligence.\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 03e98f1be..3e81006cf 100644 --- a/Telegram/build/version +++ b/Telegram/build/version @@ -1,6 +1,6 @@ -AppVersion 1000035 +AppVersion 1000036 AppVersionStrMajor 1.0 -AppVersionStrSmall 1.0.35 -AppVersionStr 1.0.35 -AlphaChannel 0 -BetaVersion 1000035003 +AppVersionStrSmall 1.0.36 +AppVersionStr 1.0.36 +AlphaChannel 1 +BetaVersion 0 diff --git a/changelog.txt b/changelog.txt index f02768f9b..2fd90f780 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,8 @@ +1.0.36 alpha (09.05.17) + +- Telegram Calls are now available on desktops: secure, crystal-clear, constantly improved by artificial intelligence. +- Bug fixes and other minor improvements. + 1.0.35 alpha (30.04.17) - Chat admins can delete other participants' messages.