diff --git a/Telegram/Resources/uwp/AppX/AppxManifest.xml b/Telegram/Resources/uwp/AppX/AppxManifest.xml index 9e4755846..8ea2fac00 100644 --- a/Telegram/Resources/uwp/AppX/AppxManifest.xml +++ b/Telegram/Resources/uwp/AppX/AppxManifest.xml @@ -10,7 +10,7 @@ + Version="3.3.1.0" /> Telegram Desktop Telegram Messenger LLP diff --git a/Telegram/Resources/winrc/Telegram.rc b/Telegram/Resources/winrc/Telegram.rc index 3e06cabaf..b6226ef84 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 3,3,0,0 - PRODUCTVERSION 3,3,0,0 + FILEVERSION 3,3,1,0 + PRODUCTVERSION 3,3,1,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -62,10 +62,10 @@ BEGIN BEGIN VALUE "CompanyName", "Telegram FZ-LLC" VALUE "FileDescription", "Telegram Desktop" - VALUE "FileVersion", "3.3.0.0" + VALUE "FileVersion", "3.3.1.0" VALUE "LegalCopyright", "Copyright (C) 2014-2021" VALUE "ProductName", "Telegram Desktop" - VALUE "ProductVersion", "3.3.0.0" + VALUE "ProductVersion", "3.3.1.0" END END BLOCK "VarFileInfo" diff --git a/Telegram/Resources/winrc/Updater.rc b/Telegram/Resources/winrc/Updater.rc index 7e621db0b..3e5a70881 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 3,3,0,0 - PRODUCTVERSION 3,3,0,0 + FILEVERSION 3,3,1,0 + PRODUCTVERSION 3,3,1,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", "3.3.0.0" + VALUE "FileVersion", "3.3.1.0" VALUE "LegalCopyright", "Copyright (C) 2014-2021" VALUE "ProductName", "Telegram Desktop" - VALUE "ProductVersion", "3.3.0.0" + VALUE "ProductVersion", "3.3.1.0" END END BLOCK "VarFileInfo" diff --git a/Telegram/SourceFiles/core/changelogs.cpp b/Telegram/SourceFiles/core/changelogs.cpp index 38e7fadc5..0db97ec3e 100644 --- a/Telegram/SourceFiles/core/changelogs.cpp +++ b/Telegram/SourceFiles/core/changelogs.cpp @@ -22,109 +22,6 @@ namespace { std::map BetaLogs() { return { - { - 2009004, - "- Choose one from dozens of new gorgeous animated backgrounds" - " in Chat Settings > Chat background.\n" - }, - { - 2009005, - "- Tile chat background patterns horizontally.\n" - - "- Fix a rare crash in spellchecker on Windows.\n" - - "- Fix animated chat backgrounds in Saved Messages.\n" - - "- Fix \"Sorry, group is inaccessible\" message " - "in scheduled voice chats.\n", - }, - { - 2009013, - "- See unread comments count when scrolling discussions in channels." - }, - { - 3000002, - "- Check who've seen your message in small groups " - "from the context menu.\n" - - "- Enable recording with video in live streams and video chats." - }, - { - 3000004, - "- Fix a crash when joining video chat or live broadcast.\n" - - "- Add a \"Close to Taskbar\" option when tray icon is disabled " - "(Windows and Linux)." - }, - { - 3000005, - "- Add support for Emoji 13.1." - }, - { - 3001002, - "- Control video in fullscreen mode using arrows and numbers.\n" - - "- Open locations in browser if default Bing Maps is not installed.\n" - - "- Reconnect without timeout when network availability changes.\n" - - "- Crash fixes." - }, - { - 3001005, - "- Choose one of 8 new preset themes for any individual private chat.\n" - - "- Click on '...' menu > 'Change Colors' to pick a theme.\n" - - "- Both chat participants will see the same theme in that chat " - "– on all their devices.\n" - - "- Each new theme features colorful gradient message bubbles, " - "beautifully animated backgrounds and unique background patterns.\n" - - "- All chat themes have day and night versions and will follow " - "your overall dark mode settings.\n" - - "- Implement main window rounded corners on Windows 11.\n" - - "- Fix audio capture from AirPods on macOS.\n" - }, - { - 3001006, - "- Show small media previews in chats list.\n" - - "- Show media album previews and caption text in chats list.\n" - - "- Add \"Quick Reply\" and \"Mark as Read\" " - "to native Windows notifications.\n" - }, - { - 3001012, - "- Create special invite links that require admins " - "to approve users before they become members.\n" - - "- Admins can view the applicants' profiles and bios " - "by tapping the Join Requests bar at the top of the chat.\n" - - "- Add internal labels to your chat's Invite Links " - "to keep them organized.\n" - - "- Run natively on Apple Silicon (macOS only).\n" - }, - { - 3001013, - "- Fix requests to groups / channels processing.\n" - - "- Fix internal link previews with View Content button layout.\n" - - "- Fix crash in messages search with imported messages results.\n" - - "- Don't use fractional system UI scaling on Linux.\n" - - "- Fix invite link icons on macOS.\n" - - "- Several crash fixes.\n" - }, { 3002006, "- Try out the new audio player with playlist shuffle and repeat.\n" @@ -141,6 +38,24 @@ std::map BetaLogs() { "- Fix a crash in archived stickers loading.\n" "- Fix a crash in calls to old Telegram versions.\n" + }, + { + 3003001, + "- Switch between contacts list sorting modes.\n" + + "- Sort contacts list by last seen time by default.\n" + + "- Fix disappearing Send As Channel button after message editing.\n" + + "- Fix file upload cancelling.\n" + + "- Fix crash in video capture on macOS.\n" + + "- Fix labels in the About box.\n" + + "- Use Qt 6.2.2 for macOS and Linux builds.\n" + + "- Allow installing x64 Windows version on Windows ARM.\n" } }; }; diff --git a/Telegram/SourceFiles/core/version.h b/Telegram/SourceFiles/core/version.h index 2f40be903..1fc2a9d9d 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 = 3003000; -constexpr auto AppVersionStr = "3.3"; -constexpr auto AppBetaVersion = false; +constexpr auto AppVersion = 3003001; +constexpr auto AppVersionStr = "3.3.1"; +constexpr auto AppBetaVersion = true; constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION; diff --git a/Telegram/build/setup.iss b/Telegram/build/setup.iss index b0d352bf3..55e0787ca 100644 --- a/Telegram/build/setup.iss +++ b/Telegram/build/setup.iss @@ -33,8 +33,8 @@ DisableDirPage=no DisableProgramGroupPage=no #if MyBuildTarget == "win64" -ArchitecturesAllowed=x64 -ArchitecturesInstallIn64BitMode=x64 +ArchitecturesAllowed="x64 arm64" +ArchitecturesInstallIn64BitMode="x64 arm64" OutputBaseFilename=tsetup-x64.{#MyAppVersionFull} #define ArchModulesFolder "x64" #else diff --git a/Telegram/build/version b/Telegram/build/version index f8102b229..d4526843f 100644 --- a/Telegram/build/version +++ b/Telegram/build/version @@ -1,7 +1,7 @@ -AppVersion 3003000 +AppVersion 3003001 AppVersionStrMajor 3.3 -AppVersionStrSmall 3.3 -AppVersionStr 3.3.0 -BetaChannel 0 +AppVersionStrSmall 3.3.1 +AppVersionStr 3.3.1 +BetaChannel 1 AlphaVersion 0 -AppVersionOriginal 3.3 +AppVersionOriginal 3.3.1.beta diff --git a/changelog.txt b/changelog.txt index cecace3f0..3288e7d7f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,14 @@ +3.3.1 beta (22.12.21) + +- Switch between contacts list sorting modes. +- Sort contacts list by last seen time by default. +- Fix disappearing Send As Channel button after message editing. +- Fix file upload cancelling. +- Fix crash in video capture on macOS. +- Fix labels in the About box. +- Use Qt 6.2.2 for macOS and Linux builds. +- Allow installing x64 Windows version on Windows ARM. + 3.3 (07.12.21) - Content creators can restrict the ability to save media and forward messages from their groups and channels.