diff --git a/Telegram/Resources/uwp/AppX/AppxManifest.xml b/Telegram/Resources/uwp/AppX/AppxManifest.xml index 0bb3bb4cd..4ad1dc1ec 100644 --- a/Telegram/Resources/uwp/AppX/AppxManifest.xml +++ b/Telegram/Resources/uwp/AppX/AppxManifest.xml @@ -9,7 +9,7 @@ + Version="2.8.12.0" /> Telegram Desktop Telegram Messenger LLP diff --git a/Telegram/Resources/winrc/Telegram.rc b/Telegram/Resources/winrc/Telegram.rc index f186a115f..e69dbf37c 100644 --- a/Telegram/Resources/winrc/Telegram.rc +++ b/Telegram/Resources/winrc/Telegram.rc @@ -44,8 +44,8 @@ IDI_ICON1 ICON "..\\art\\icon256.ico" // VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,8,11,0 - PRODUCTVERSION 2,8,11,0 + FILEVERSION 2,8,12,0 + PRODUCTVERSION 2,8,12,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -62,10 +62,10 @@ BEGIN BEGIN VALUE "CompanyName", "Telegram FZ-LLC" VALUE "FileDescription", "Telegram Desktop" - VALUE "FileVersion", "2.8.11.0" + VALUE "FileVersion", "2.8.12.0" VALUE "LegalCopyright", "Copyright (C) 2014-2021" VALUE "ProductName", "Telegram Desktop" - VALUE "ProductVersion", "2.8.11.0" + VALUE "ProductVersion", "2.8.12.0" END END BLOCK "VarFileInfo" diff --git a/Telegram/Resources/winrc/Updater.rc b/Telegram/Resources/winrc/Updater.rc index 318d96f42..9237bf8c6 100644 --- a/Telegram/Resources/winrc/Updater.rc +++ b/Telegram/Resources/winrc/Updater.rc @@ -35,8 +35,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US // VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,8,11,0 - PRODUCTVERSION 2,8,11,0 + FILEVERSION 2,8,12,0 + PRODUCTVERSION 2,8,12,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -53,10 +53,10 @@ BEGIN BEGIN VALUE "CompanyName", "Telegram FZ-LLC" VALUE "FileDescription", "Telegram Desktop Updater" - VALUE "FileVersion", "2.8.11.0" + VALUE "FileVersion", "2.8.12.0" VALUE "LegalCopyright", "Copyright (C) 2014-2021" VALUE "ProductName", "Telegram Desktop" - VALUE "ProductVersion", "2.8.11.0" + VALUE "ProductVersion", "2.8.12.0" END END BLOCK "VarFileInfo" diff --git a/Telegram/SourceFiles/core/changelogs.cpp b/Telegram/SourceFiles/core/changelogs.cpp index 0f0917017..0cddde722 100644 --- a/Telegram/SourceFiles/core/changelogs.cpp +++ b/Telegram/SourceFiles/core/changelogs.cpp @@ -21,78 +21,6 @@ namespace { std::map BetaLogs() { return { - { - 2005002, - "- Fix possible crash in video calls.\n" - - "- Fix possible crash in connecting to voice chats.\n" - - "- Use different audio module code on Windows in calls.\n" - }, - { - 2005003, - "- Allow using mouse buttons in Push-to-Talk shortcut.\n" - - "- Fix blurred thumbnails in Shared Links section.\n" - }, - { - 2005004, - "- Implement new audio module code for calls and voice chats.\n" - - "- Allow retracting votes from polls in comments to channel posts.\n" - - "- Show small voice chat button for empty voice chats.\n" - - "- Fix media viewer updating when screen resolution is changed.\n" - }, - { - 2005005, - "- Fix recording of audio in voice chats.\n" - - "- Fix media viewer zoom and crashing.\n" - }, - { - 2005006, - "- Press Up arrow to edit your last sent comment.\n" - - "- Add more information to date tooltips " - "in Recent Actions and channel comments.\n" - - "- Bug and crash fixes.\n" - }, - { - 2006002, - "- Fix text disappearing because of cloud drafts sync.\n" - }, - { - 2006003, - "- Fix audio device selection in voice chats.\n" - - "- Fix blinking self profile photo " - "in case the profile photo privacy is used.\n" - - "- Fix voice chat admin menu on macOS.\n" - }, - { - 2006004, - "- Fix freeze in voice chats.\n" - - "- Make default interface scale 110% on macOS Retina screens.\n" - }, - { - 2006005, - "- Improvements and fixes in new voice chat features.\n" - }, - { - 2006007, - "- Improve voice chat participants list updating.\n" - }, - { - 2006008, - "- Fix connecting and getting allowed to speak on voice chats.\n" - - "- MPRIS support on Linux.\n" - }, { 2007005, "- Add \"Voice chats\" filter in \"Recent actions\" for channels.\n" @@ -146,6 +74,20 @@ std::map BetaLogs() { "- Use GTK from a child process (Linux).\n" }, + { + 2008012, + "- Change the default chat background.\n" + + "- Add GIFs overview section in chats.\n" + + "- Add a simple new messages animation.\n" + + "- Use modern Telegram application icon.\n" + + "- Use Direct3D 11 by default on Windows.\n" + + "- Fix Direct3D acceleration on basic Windows 7 setup.\n" + }, }; }; diff --git a/Telegram/SourceFiles/core/version.h b/Telegram/SourceFiles/core/version.h index 1a8b4a464..646a5a97a 100644 --- a/Telegram/SourceFiles/core/version.h +++ b/Telegram/SourceFiles/core/version.h @@ -22,7 +22,7 @@ constexpr auto AppId = "{53F49750-6209-4FBF-9CA8-7A333C87D1ED}"_cs; constexpr auto AppNameOld = "Telegram Win (Unofficial)"_cs; constexpr auto AppName = "Telegram Desktop"_cs; constexpr auto AppFile = "Telegram"_cs; -constexpr auto AppVersion = 2008011; -constexpr auto AppVersionStr = "2.8.11"; -constexpr auto AppBetaVersion = false; +constexpr auto AppVersion = 2008012; +constexpr auto AppVersionStr = "2.8.12"; +constexpr auto AppBetaVersion = true; constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION; diff --git a/Telegram/build/version b/Telegram/build/version index 59d497c81..ec9d88268 100644 --- a/Telegram/build/version +++ b/Telegram/build/version @@ -1,7 +1,7 @@ -AppVersion 2008011 +AppVersion 2008012 AppVersionStrMajor 2.8 -AppVersionStrSmall 2.8.11 -AppVersionStr 2.8.11 -BetaChannel 0 +AppVersionStrSmall 2.8.12 +AppVersionStr 2.8.12 +BetaChannel 1 AlphaVersion 0 -AppVersionOriginal 2.8.11 +AppVersionOriginal 2.8.12.beta diff --git a/changelog.txt b/changelog.txt index 7714231eb..494e09cb7 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,12 @@ +2.8.12 beta (20.07.21) + +- Change the default chat background. +- Add GIFs overview section in chats. +- Add a simple new messages animation. +- Use modern Telegram application icon. +- Use Direct3D 11 by default on Windows. +- Fix Direct3D acceleration on basic Windows 7 setup. + 2.8.11 (17.07.21) - Check shader compilation / linking before using ANGLE.