From b8045cbcc7e6b31eb6cbd10b051b54bf9e5b34aa Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 12 Mar 2019 17:01:34 +0400 Subject: [PATCH] Beta version 1.5.16. - Play video files and listen to received music without waiting for them to download. - Press CTRL+0 (CMD+0 on macOS) to jump to your Saved Messages. --- Telegram/Resources/uwp/AppX/AppxManifest.xml | 2 +- Telegram/Resources/winrc/Telegram.rc | 8 ++++---- Telegram/Resources/winrc/Updater.rc | 8 ++++---- Telegram/SourceFiles/core/changelogs.cpp | 7 +++++++ Telegram/SourceFiles/core/version.h | 8 ++++---- Telegram/build/version | 10 +++++----- changelog.txt | 5 +++++ 7 files changed, 30 insertions(+), 18 deletions(-) diff --git a/Telegram/Resources/uwp/AppX/AppxManifest.xml b/Telegram/Resources/uwp/AppX/AppxManifest.xml index 07825d78e..1af4ad0da 100644 --- a/Telegram/Resources/uwp/AppX/AppxManifest.xml +++ b/Telegram/Resources/uwp/AppX/AppxManifest.xml @@ -9,7 +9,7 @@ + Version="1.5.16.0" /> Telegram Desktop Telegram Messenger LLP diff --git a/Telegram/Resources/winrc/Telegram.rc b/Telegram/Resources/winrc/Telegram.rc index ad797b96b..f399485b5 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,5,15,6 - PRODUCTVERSION 1,5,15,6 + FILEVERSION 1,5,16,0 + PRODUCTVERSION 1,5,16,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.5.15.6" + VALUE "FileVersion", "1.5.16.0" VALUE "LegalCopyright", "Copyright (C) 2014-2019" VALUE "ProductName", "Telegram Desktop" - VALUE "ProductVersion", "1.5.15.6" + VALUE "ProductVersion", "1.5.16.0" END END BLOCK "VarFileInfo" diff --git a/Telegram/Resources/winrc/Updater.rc b/Telegram/Resources/winrc/Updater.rc index 4e747517e..79a84a5b2 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,5,15,6 - PRODUCTVERSION 1,5,15,6 + FILEVERSION 1,5,16,0 + PRODUCTVERSION 1,5,16,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.5.15.6" + VALUE "FileVersion", "1.5.16.0" VALUE "LegalCopyright", "Copyright (C) 2014-2019" VALUE "ProductName", "Telegram Desktop" - VALUE "ProductVersion", "1.5.15.6" + VALUE "ProductVersion", "1.5.16.0" END END BLOCK "VarFileInfo" diff --git a/Telegram/SourceFiles/core/changelogs.cpp b/Telegram/SourceFiles/core/changelogs.cpp index 7fa155ed4..e7d30fdef 100644 --- a/Telegram/SourceFiles/core/changelogs.cpp +++ b/Telegram/SourceFiles/core/changelogs.cpp @@ -62,6 +62,13 @@ std::map BetaLogs() { "- Choose input and output devices for Telegram Calls " "in Settings > Adavanced > Call Settings." + }, + { + 1005016, + "- Play video files and listen to received music " + "without waiting for them to download.\n" + + "- Press CTRL+0 (CMD+0 on macOS) to jump to your Saved Messages." } }; } diff --git a/Telegram/SourceFiles/core/version.h b/Telegram/SourceFiles/core/version.h index 5c457dcf4..75dabc9ba 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 (1005015006ULL) +#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 = 1005015; -constexpr auto AppVersionStr = "1.5.15"; -constexpr auto AppBetaVersion = false; +constexpr auto AppVersion = 1005016; +constexpr auto AppVersionStr = "1.5.16"; +constexpr auto AppBetaVersion = true; constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION; diff --git a/Telegram/build/version b/Telegram/build/version index 5e3b5f9b7..287727028 100644 --- a/Telegram/build/version +++ b/Telegram/build/version @@ -1,6 +1,6 @@ -AppVersion 1005015 +AppVersion 1005016 AppVersionStrMajor 1.5 -AppVersionStrSmall 1.5.15 -AppVersionStr 1.5.15 -BetaChannel 0 -AlphaVersion 1005015006 +AppVersionStrSmall 1.5.16 +AppVersionStr 1.5.16 +BetaChannel 1 +AlphaVersion 0 diff --git a/changelog.txt b/changelog.txt index 18204870e..af0586bcb 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,8 @@ +1.5.16 beta (12.03.19) + +- Play video files and listen to received music without waiting for them to download. +- Press CTRL+0 (CMD+0 on macOS) to jump to your Saved Messages. + 1.5.15 (12.02.19) - Crash fix.