From 0b5500fe755e04d74984c1a0fe8dd780205f62e6 Mon Sep 17 00:00:00 2001 From: John Preston Date: Sun, 24 Mar 2019 18:48:26 +0400 Subject: [PATCH] Version 1.6.2. - Delete any message on both ends in any private chat, anytime. - Control whether your forwarded messages link back to your account. - Control who may see your profile picture. - Enjoy the new streamlined group management screen. --- Telegram/Resources/uwp/AppX/AppxManifest.xml | 2 +- Telegram/Resources/winrc/Telegram.rc | 8 ++++---- Telegram/Resources/winrc/Updater.rc | 8 ++++---- Telegram/SourceFiles/core/version.h | 6 +++--- Telegram/build/version | 8 ++++---- changelog.txt | 7 +++++++ 6 files changed, 23 insertions(+), 16 deletions(-) diff --git a/Telegram/Resources/uwp/AppX/AppxManifest.xml b/Telegram/Resources/uwp/AppX/AppxManifest.xml index 382c035b7..1e9749441 100644 --- a/Telegram/Resources/uwp/AppX/AppxManifest.xml +++ b/Telegram/Resources/uwp/AppX/AppxManifest.xml @@ -9,7 +9,7 @@ + Version="1.6.2.0" /> Telegram Desktop Telegram Messenger LLP diff --git a/Telegram/Resources/winrc/Telegram.rc b/Telegram/Resources/winrc/Telegram.rc index c2dc91cfe..6024da8a0 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,6,1,1 - PRODUCTVERSION 1,6,1,1 + FILEVERSION 1,6,2,0 + PRODUCTVERSION 1,6,2,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.6.1.1" + VALUE "FileVersion", "1.6.2.0" VALUE "LegalCopyright", "Copyright (C) 2014-2019" VALUE "ProductName", "Telegram Desktop" - VALUE "ProductVersion", "1.6.1.1" + VALUE "ProductVersion", "1.6.2.0" END END BLOCK "VarFileInfo" diff --git a/Telegram/Resources/winrc/Updater.rc b/Telegram/Resources/winrc/Updater.rc index d73cdee9f..353ec2649 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,6,1,1 - PRODUCTVERSION 1,6,1,1 + FILEVERSION 1,6,2,0 + PRODUCTVERSION 1,6,2,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.6.1.1" + VALUE "FileVersion", "1.6.2.0" VALUE "LegalCopyright", "Copyright (C) 2014-2019" VALUE "ProductName", "Telegram Desktop" - VALUE "ProductVersion", "1.6.1.1" + VALUE "ProductVersion", "1.6.2.0" END END BLOCK "VarFileInfo" diff --git a/Telegram/SourceFiles/core/version.h b/Telegram/SourceFiles/core/version.h index 125020190..03f3d6b08 100644 --- a/Telegram/SourceFiles/core/version.h +++ b/Telegram/SourceFiles/core/version.h @@ -7,7 +7,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL */ #pragma once -#define TDESKTOP_REQUESTED_ALPHA_VERSION (1006001001ULL) +#define TDESKTOP_REQUESTED_ALPHA_VERSION (0ULL) #ifdef TDESKTOP_OFFICIAL_TARGET #define TDESKTOP_ALPHA_VERSION TDESKTOP_REQUESTED_ALPHA_VERSION @@ -15,7 +15,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL #define TDESKTOP_ALPHA_VERSION (0ULL) #endif // TDESKTOP_OFFICIAL_TARGET -constexpr auto AppVersion = 1006001; -constexpr auto AppVersionStr = "1.6.1"; +constexpr auto AppVersion = 1006002; +constexpr auto AppVersionStr = "1.6.2"; constexpr auto AppBetaVersion = false; constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION; diff --git a/Telegram/build/version b/Telegram/build/version index b06630fec..2d2762e47 100644 --- a/Telegram/build/version +++ b/Telegram/build/version @@ -1,6 +1,6 @@ -AppVersion 1006001 +AppVersion 1006002 AppVersionStrMajor 1.6 -AppVersionStrSmall 1.6.1 -AppVersionStr 1.6.1 +AppVersionStrSmall 1.6.2 +AppVersionStr 1.6.2 BetaChannel 0 -AlphaVersion 1006001001 +AlphaVersion 0 diff --git a/changelog.txt b/changelog.txt index b55a33e64..ad16c8532 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,10 @@ +1.6.2 (24.03.19) + +- Delete any message on both ends in any private chat, anytime. +- Control whether your forwarded messages link back to your account. +- Control who may see your profile picture. +- Enjoy the new streamlined group management screen. + 1.6.1 (20.03.19) - Bug fixes and other minor improvements.