Beta version 3.0.2.

- Check who've seen your message in small groups from the context menu.
- Enable recording with video in live streams and video chats.
This commit is contained in:
John Preston 2021-09-10 13:14:43 +03:00
parent 0570b2639d
commit b1d52e088e
9 changed files with 34 additions and 89 deletions

View File

@ -9,7 +9,7 @@
<Identity Name="TelegramMessengerLLP.TelegramDesktop"
ProcessorArchitecture="ARCHITECTURE"
Publisher="CN=536BC709-8EE1-4478-AF22-F0F0F26FF64A"
Version="3.0.1.1" />
Version="3.0.2.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,0,1,1
PRODUCTVERSION 3,0,1,1
FILEVERSION 3,0,2,0
PRODUCTVERSION 3,0,2,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.0.1.1"
VALUE "FileVersion", "3.0.2.0"
VALUE "LegalCopyright", "Copyright (C) 2014-2021"
VALUE "ProductName", "Telegram Desktop"
VALUE "ProductVersion", "3.0.1.1"
VALUE "ProductVersion", "3.0.2.0"
END
END
BLOCK "VarFileInfo"

View File

@ -35,8 +35,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 3,0,1,1
PRODUCTVERSION 3,0,1,1
FILEVERSION 3,0,2,0
PRODUCTVERSION 3,0,2,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.0.1.1"
VALUE "FileVersion", "3.0.2.0"
VALUE "LegalCopyright", "Copyright (C) 2014-2021"
VALUE "ProductName", "Telegram Desktop"
VALUE "ProductVersion", "3.0.1.1"
VALUE "ProductVersion", "3.0.2.0"
END
END
BLOCK "VarFileInfo"

View File

@ -21,73 +21,6 @@ namespace {
std::map<int, const char*> BetaLogs() {
return {
{
2007005,
"- Add \"Voice chats\" filter in \"Recent actions\" for channels.\n"
"- Write local drafts to disk on a background thread.\n"
"- Support autoupdate for Telegram in write-protected folders on Linux.\n"
"- Fix crash in native notifications on Linux.\n"
"- Fix crash in file dialog on Linux.\n"
},
{
2007007,
"- Optimized video playback in media viewer and Picture-in-Picture mode.\n"
"- Added integration with System Media Transport Controls on Windows 10.\n"
"- Added \"Now Playing\" integration for music playback on macOS.\n"
"- Added \"Archive Sticker\" into the \"...\" menu of the Sticker Set Box.\n"
"- Fixed memory not being freed on Linux.\n"
"- Several crash fixes.\n"
},
{
2007009,
"- Added \"Enable noise suppression\" option to group calls Settings.\n"
"- Fix media viewer with Retina + Non-Retina dual monitor setup on macOS.\n"
"- Several bug and crash fixes.\n"
},
{
2007010,
"- Added ability to mix together bold, italic and other formatting.\n"
"- Fix voice chats and video calls OpenGL with some drivers on Windows.\n"
"- Several bug fixes.\n"
},
{
2008006,
"- Added a simple image editor. "
"Crop photos or highlight parts of screenshots before sending.\n"
"- Use Direct3D 9 backend in ANGLE by default (Windows).\n"
"- Fix \"Show in Finder\" not focusing the Finder window (macOS).\n"
"- 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"
},
{
2009004,
"- Choose one from dozens of new gorgeous animated backgrounds"
@ -108,6 +41,13 @@ std::map<int, const char*> BetaLogs() {
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."
}
};
};

View File

@ -9,7 +9,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "base/const_string.h"
#define TDESKTOP_REQUESTED_ALPHA_VERSION (3000001001ULL)
#define TDESKTOP_REQUESTED_ALPHA_VERSION (0ULL)
#ifdef TDESKTOP_ALLOW_CLOSED_ALPHA
#define TDESKTOP_ALPHA_VERSION TDESKTOP_REQUESTED_ALPHA_VERSION
@ -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 = 3000001;
constexpr auto AppVersionStr = "3.0.1";
constexpr auto AppBetaVersion = false;
constexpr auto AppVersion = 3000002;
constexpr auto AppVersionStr = "3.0.2";
constexpr auto AppBetaVersion = true;
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;

@ -1 +1 @@
Subproject commit c64036b69e2f7d3bb909175d872e01d9462f7f8d
Subproject commit f76a9290fa502a8df473dd872aedf9a553b089cc

View File

@ -34,7 +34,7 @@ for arg in sys.argv:
versionMajor = match.group(1)
versionMinor = match.group(2)
versionPatch = match.group(4) if match.group(4) else '0'
if match.group(5) > 0:
if len(match.group(5)) > 0:
if match.group(6) == 'beta':
versionBeta = True
else:
@ -76,7 +76,7 @@ def checkChangelog():
global scriptPath, versionStr, versionStrSmall
count = 0
with open(scriptPath + '/../../changelog.txt', 'r') as f:
with open(scriptPath + '/../../changelog.txt', encoding='utf-8') as f:
for line in f:
if line.startswith(versionStr + ' ') or line.startswith(versionStrSmall + ' '):
count = count + 1

View File

@ -1,7 +1,7 @@
AppVersion 3000001
AppVersion 3000002
AppVersionStrMajor 3.0
AppVersionStrSmall 3.0.1
AppVersionStr 3.0.1
BetaChannel 0
AlphaVersion 3000001001
AppVersionOriginal 3.0.1.1
AppVersionStrSmall 3.0.2
AppVersionStr 3.0.2
BetaChannel 1
AlphaVersion 0
AppVersionOriginal 3.0.2.beta

View File

@ -1,3 +1,8 @@
3.0.2 beta (10.09.21)
- Check who've seen your message in small groups from the context menu.
- Enable recording with video in live streams and video chats.
3.0.1 (01.09.21)
- Crash fixes.