diff --git a/Telegram/Resources/uwp/AppX/AppxManifest.xml b/Telegram/Resources/uwp/AppX/AppxManifest.xml index d31714da0..1724fa4c5 100644 --- a/Telegram/Resources/uwp/AppX/AppxManifest.xml +++ b/Telegram/Resources/uwp/AppX/AppxManifest.xml @@ -9,7 +9,7 @@ + Version="1.9.2.0" /> Telegram Desktop Telegram FZ-LLC diff --git a/Telegram/Resources/winrc/Telegram.rc b/Telegram/Resources/winrc/Telegram.rc index d235e7bba..5668f2360 100644 --- a/Telegram/Resources/winrc/Telegram.rc +++ b/Telegram/Resources/winrc/Telegram.rc @@ -33,8 +33,8 @@ IDI_ICON1 ICON "..\\art\\icon256.ico" // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,9,1,12 - PRODUCTVERSION 1,9,1,12 + FILEVERSION 1,9,2,0 + PRODUCTVERSION 1,9,2,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -51,10 +51,10 @@ BEGIN BEGIN VALUE "CompanyName", "Telegram FZ-LLC" VALUE "FileDescription", "Telegram Desktop" - VALUE "FileVersion", "1.9.1.12" + VALUE "FileVersion", "1.9.2.0" VALUE "LegalCopyright", "Copyright (C) 2014-2019" VALUE "ProductName", "Telegram Desktop" - VALUE "ProductVersion", "1.9.1.12" + VALUE "ProductVersion", "1.9.2.0" END END BLOCK "VarFileInfo" diff --git a/Telegram/Resources/winrc/Updater.rc b/Telegram/Resources/winrc/Updater.rc index 0723b904f..bf0ba5b57 100644 --- a/Telegram/Resources/winrc/Updater.rc +++ b/Telegram/Resources/winrc/Updater.rc @@ -24,8 +24,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,9,1,12 - PRODUCTVERSION 1,9,1,12 + FILEVERSION 1,9,2,0 + PRODUCTVERSION 1,9,2,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -42,10 +42,10 @@ BEGIN BEGIN VALUE "CompanyName", "Telegram FZ-LLC" VALUE "FileDescription", "Telegram Desktop Updater" - VALUE "FileVersion", "1.9.1.12" + VALUE "FileVersion", "1.9.2.0" VALUE "LegalCopyright", "Copyright (C) 2014-2019" VALUE "ProductName", "Telegram Desktop" - VALUE "ProductVersion", "1.9.1.12" + VALUE "ProductVersion", "1.9.2.0" END END BLOCK "VarFileInfo" diff --git a/Telegram/SourceFiles/core/changelogs.cpp b/Telegram/SourceFiles/core/changelogs.cpp index d7022a7f9..bb366dc20 100644 --- a/Telegram/SourceFiles/core/changelogs.cpp +++ b/Telegram/SourceFiles/core/changelogs.cpp @@ -18,51 +18,32 @@ namespace { std::map BetaLogs() { return { - { - 1006004, - "- Replace media when editing messages with media content.\n" - - "- Jump quickly to the top of your chats list.\n" - - "- Get emoji suggestions for the first word you type in a message.\n" - - "- Help Telegram improve emoji suggestions in your language " - "using this interface https://translations.telegram.org/en/emoji" - }, - { - 1007001, - "- Disable pinned messages notifications in Settings." - }, - { - 1007004, - "- Download video files while watching them using streaming." - }, - { - 1007008, - "\xE2\x80\xA2 Hide archived chats in the main menu.\n" - - "\xE2\x80\xA2 See who is online straight from the chat list.\n" - - "\xE2\x80\xA2 Apply formatting to selected text parts " - "from the MacBook Pro TouchBar." - }, - { - 1007011, - "\xE2\x80\xA2 Use strikethrough and underline formatting.\n" - - "\xE2\x80\xA2 Bug fixes and other minor improvements." - }, { 1008005, - "\xE2\x80\xA2 Create new themes based on your color and wallpaper choices.\n" + "\xE2\x80\xA2 Create new themes based on your color " + "and wallpaper choices.\n" "\xE2\x80\xA2 Share your themes with other users via links.\n" - "\xE2\x80\xA2 Update your theme for all its users when you change something.\n" + "\xE2\x80\xA2 Update your theme for all its users " + "when you change something.\n" }, { 1009000, - "\xE2\x80\xA2 System spellchecker on Windows 8+ and macOS 10.12+.\n" + "\xE2\x80\xA2 System spell checker on Windows 8+ and macOS 10.12+.\n" + }, + { + 1009002, + "\xE2\x80\xA2 Videos in chats start playing automatically.\n" + + "\xE2\x80\xA2 Resume playback from where you left off " + "when watching long videos.\n" + + "\xE2\x80\xA2 Control videos, GIFs and round video messages " + "automatic playback in " + "Settings > Advanced > Automatic media download.\n" + + "\xE2\x80\xA2 Spell checker on Linux using Enchant.\n" }, }; }; diff --git a/Telegram/SourceFiles/core/version.h b/Telegram/SourceFiles/core/version.h index babb68eec..66c8c3b9f 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 (1009001012ULL) +#define TDESKTOP_REQUESTED_ALPHA_VERSION (0ULL) #ifdef TDESKTOP_ALLOW_CLOSED_ALPHA #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_ALLOW_CLOSED_ALPHA -constexpr auto AppVersion = 1009001; -constexpr auto AppVersionStr = "1.9.1"; -constexpr auto AppBetaVersion = false; +constexpr auto AppVersion = 1009002; +constexpr auto AppVersionStr = "1.9.2"; +constexpr auto AppBetaVersion = true; constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION; diff --git a/Telegram/build/version b/Telegram/build/version index e5b14b220..a1efbc4b2 100644 --- a/Telegram/build/version +++ b/Telegram/build/version @@ -1,7 +1,7 @@ -AppVersion 1009001 +AppVersion 1009002 AppVersionStrMajor 1.9 -AppVersionStrSmall 1.9.1 -AppVersionStr 1.9.1 -BetaChannel 0 -AlphaVersion 1009001012 -AppVersionOriginal 1.9.1.12 +AppVersionStrSmall 1.9.2 +AppVersionStr 1.9.2 +BetaChannel 1 +AlphaVersion 0 +AppVersionOriginal 1.9.2.beta diff --git a/changelog.txt b/changelog.txt index 5241eca18..b29466b35 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,10 @@ +1.9.2 beta (29.12.19) + +- Videos in chats start playing automatically. +- Resume playback from where you left off when watching long videos. +- Control videos, GIFs and round video messages automatic playback in Settings > Advanced > Automatic media download. +- Spell checker on Linux using Enchant. + 1.9.1 beta (06.11.19) - Bug fixes and other minor improvements.