mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-02-23 16:56:55 +00:00
Version 2.7.
- Start limitless Voice Chats in Groups and Channels. - Host discussions that can be listened to by millions of people simultaneously. - Record voice chats to share or publish in Channels later. - See that a chat is being recorded from the red dot next to its title. - See user bio texts right from the list of participants. - Raise your hand to show admins you want to speak. - Create separate Voice Chat Invite Links for listeners or speakers. - Change the title of your Voice Chat to give people an idea of the current topic. - Join Voice Chats as one of your Channels to hide your personal account.
This commit is contained in:
parent
e22ecafc1d
commit
eeecc42c25
@ -9,7 +9,7 @@
|
||||
<Identity Name="TelegramMessengerLLP.TelegramDesktop"
|
||||
ProcessorArchitecture="ARCHITECTURE"
|
||||
Publisher="CN=536BC709-8EE1-4478-AF22-F0F0F26FF64A"
|
||||
Version="2.6.8.0" />
|
||||
Version="2.7.0.0" />
|
||||
<Properties>
|
||||
<DisplayName>Telegram Desktop</DisplayName>
|
||||
<PublisherDisplayName>Telegram Messenger LLP</PublisherDisplayName>
|
||||
|
@ -44,8 +44,8 @@ IDI_ICON1 ICON "..\\art\\icon256.ico"
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 2,6,8,0
|
||||
PRODUCTVERSION 2,6,8,0
|
||||
FILEVERSION 2,7,0,0
|
||||
PRODUCTVERSION 2,7,0,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.6.8.0"
|
||||
VALUE "FileVersion", "2.7.0.0"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2014-2021"
|
||||
VALUE "ProductName", "Telegram Desktop"
|
||||
VALUE "ProductVersion", "2.6.8.0"
|
||||
VALUE "ProductVersion", "2.7.0.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
@ -35,8 +35,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 2,6,8,0
|
||||
PRODUCTVERSION 2,6,8,0
|
||||
FILEVERSION 2,7,0,0
|
||||
PRODUCTVERSION 2,7,0,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.6.8.0"
|
||||
VALUE "FileVersion", "2.7.0.0"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2014-2021"
|
||||
VALUE "ProductName", "Telegram Desktop"
|
||||
VALUE "ProductVersion", "2.6.8.0"
|
||||
VALUE "ProductVersion", "2.7.0.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
@ -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 = 2006008;
|
||||
constexpr auto AppVersionStr = "2.6.8";
|
||||
constexpr auto AppBetaVersion = true;
|
||||
constexpr auto AppVersion = 2007000;
|
||||
constexpr auto AppVersionStr = "2.7";
|
||||
constexpr auto AppBetaVersion = false;
|
||||
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;
|
||||
|
@ -558,7 +558,7 @@ void GroupThumbs::fillItems(
|
||||
const auto current = (index - from);
|
||||
const auto old = base::take(_items);
|
||||
|
||||
ValidateSlice(slice, _context, from, index, till);
|
||||
//ValidateSlice(slice, _context, from, index, till);
|
||||
|
||||
markCacheStale();
|
||||
_items.reserve(till - from);
|
||||
@ -587,17 +587,21 @@ void GroupThumbs::animateAliveItems(int current) {
|
||||
}
|
||||
|
||||
void GroupThumbs::fillDyingItems(const std::vector<not_null<Thumb*>> &old) {
|
||||
Expects(_cache.size() >= _items.size());
|
||||
//Expects(_cache.size() >= _items.size());
|
||||
|
||||
_dying.reserve(_cache.size() - _items.size());
|
||||
if (_cache.size() >= _items.size()) {
|
||||
_dying.reserve(_cache.size() - _items.size());
|
||||
}
|
||||
animatePreviouslyAlive(old);
|
||||
markRestAsDying();
|
||||
}
|
||||
|
||||
void GroupThumbs::markRestAsDying() {
|
||||
Expects(_cache.size() >= _items.size());
|
||||
//Expects(_cache.size() >= _items.size());
|
||||
|
||||
_dying.reserve(_cache.size() - _items.size());
|
||||
if (_cache.size() >= _items.size()) {
|
||||
_dying.reserve(_cache.size() - _items.size());
|
||||
}
|
||||
for (const auto &cacheItem : _cache) {
|
||||
const auto &thumb = cacheItem.second;
|
||||
const auto state = thumb->state();
|
||||
|
@ -1,7 +1,7 @@
|
||||
AppVersion 2006008
|
||||
AppVersionStrMajor 2.6
|
||||
AppVersionStrSmall 2.6.8
|
||||
AppVersionStr 2.6.8
|
||||
BetaChannel 1
|
||||
AppVersion 2007000
|
||||
AppVersionStrMajor 2.7
|
||||
AppVersionStrSmall 2.7
|
||||
AppVersionStr 2.7.0
|
||||
BetaChannel 0
|
||||
AlphaVersion 0
|
||||
AppVersionOriginal 2.6.8.beta
|
||||
AppVersionOriginal 2.7
|
||||
|
@ -1,3 +1,15 @@
|
||||
2.7 (19.03.21)
|
||||
|
||||
- Start limitless Voice Chats in Groups and Channels.
|
||||
- Host discussions that can be listened to by millions of people simultaneously.
|
||||
- Record voice chats to share or publish in Channels later.
|
||||
- See that a chat is being recorded from the red dot next to its title.
|
||||
- See user bio texts right from the list of participants.
|
||||
- Raise your hand to show admins you want to speak.
|
||||
- Create separate Voice Chat Invite Links for listeners or speakers.
|
||||
- Change the title of your Voice Chat to give people an idea of the current topic.
|
||||
- Join Voice Chats as one of your Channels to hide your personal account.
|
||||
|
||||
2.6.8 beta (18.03.21)
|
||||
|
||||
- Fix connecting and getting allowed to speak on voice chats.
|
||||
|
Loading…
Reference in New Issue
Block a user