Beta version 3.3.1.

- 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.
This commit is contained in:
John Preston 2021-12-22 15:25:31 +00:00
parent 75337ad1c2
commit ede4c0f781
8 changed files with 48 additions and 122 deletions

View File

@ -10,7 +10,7 @@
<Identity Name="TelegramMessengerLLP.TelegramDesktop"
ProcessorArchitecture="ARCHITECTURE"
Publisher="CN=536BC709-8EE1-4478-AF22-F0F0F26FF64A"
Version="3.3.0.0" />
Version="3.3.1.0" />
<Properties>
<DisplayName>Telegram Desktop</DisplayName>
<PublisherDisplayName>Telegram Messenger LLP</PublisherDisplayName>

View File

@ -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"

View File

@ -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"

View File

@ -22,109 +22,6 @@ namespace {
std::map<int, const char*> 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<int, const char*> 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"
}
};
};

View File

@ -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;

View File

@ -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

View File

@ -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

View File

@ -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.