mirror of https://github.com/procxx/kepka.git
Beta version 1.9.2.
- Videos in chats start playing automatically. - Resume playback from where you left off when watching long videos. - Control videos, GIFs and round video messages automatic playback in Settings > Advanced > Automatic media download. - Spell checker on Linux using Enchant.
This commit is contained in:
parent
0693f98107
commit
1e8f4e428a
|
@ -9,7 +9,7 @@
|
|||
<Identity Name="TelegramMessengerLLP.TelegramDesktop"
|
||||
ProcessorArchitecture="ARCHITECTURE"
|
||||
Publisher="CN=536BC709-8EE1-4478-AF22-F0F0F26FF64A"
|
||||
Version="1.9.1.12" />
|
||||
Version="1.9.2.0" />
|
||||
<Properties>
|
||||
<DisplayName>Telegram Desktop</DisplayName>
|
||||
<PublisherDisplayName>Telegram FZ-LLC</PublisherDisplayName>
|
||||
|
|
|
@ -33,8 +33,8 @@ IDI_ICON1 ICON "..\\art\\icon256.ico"
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,9,1,12
|
||||
PRODUCTVERSION 1,9,1,12
|
||||
FILEVERSION 1,9,2,0
|
||||
PRODUCTVERSION 1,9,2,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -51,10 +51,10 @@ BEGIN
|
|||
BEGIN
|
||||
VALUE "CompanyName", "Telegram FZ-LLC"
|
||||
VALUE "FileDescription", "Telegram Desktop"
|
||||
VALUE "FileVersion", "1.9.1.12"
|
||||
VALUE "FileVersion", "1.9.2.0"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2014-2019"
|
||||
VALUE "ProductName", "Telegram Desktop"
|
||||
VALUE "ProductVersion", "1.9.1.12"
|
||||
VALUE "ProductVersion", "1.9.2.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
|
@ -24,8 +24,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,9,1,12
|
||||
PRODUCTVERSION 1,9,1,12
|
||||
FILEVERSION 1,9,2,0
|
||||
PRODUCTVERSION 1,9,2,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -42,10 +42,10 @@ BEGIN
|
|||
BEGIN
|
||||
VALUE "CompanyName", "Telegram FZ-LLC"
|
||||
VALUE "FileDescription", "Telegram Desktop Updater"
|
||||
VALUE "FileVersion", "1.9.1.12"
|
||||
VALUE "FileVersion", "1.9.2.0"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2014-2019"
|
||||
VALUE "ProductName", "Telegram Desktop"
|
||||
VALUE "ProductVersion", "1.9.1.12"
|
||||
VALUE "ProductVersion", "1.9.2.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
|
@ -18,51 +18,32 @@ namespace {
|
|||
|
||||
std::map<int, const char*> BetaLogs() {
|
||||
return {
|
||||
{
|
||||
1006004,
|
||||
"- Replace media when editing messages with media content.\n"
|
||||
|
||||
"- Jump quickly to the top of your chats list.\n"
|
||||
|
||||
"- Get emoji suggestions for the first word you type in a message.\n"
|
||||
|
||||
"- Help Telegram improve emoji suggestions in your language "
|
||||
"using this interface https://translations.telegram.org/en/emoji"
|
||||
},
|
||||
{
|
||||
1007001,
|
||||
"- Disable pinned messages notifications in Settings."
|
||||
},
|
||||
{
|
||||
1007004,
|
||||
"- Download video files while watching them using streaming."
|
||||
},
|
||||
{
|
||||
1007008,
|
||||
"\xE2\x80\xA2 Hide archived chats in the main menu.\n"
|
||||
|
||||
"\xE2\x80\xA2 See who is online straight from the chat list.\n"
|
||||
|
||||
"\xE2\x80\xA2 Apply formatting to selected text parts "
|
||||
"from the MacBook Pro TouchBar."
|
||||
},
|
||||
{
|
||||
1007011,
|
||||
"\xE2\x80\xA2 Use strikethrough and underline formatting.\n"
|
||||
|
||||
"\xE2\x80\xA2 Bug fixes and other minor improvements."
|
||||
},
|
||||
{
|
||||
1008005,
|
||||
"\xE2\x80\xA2 Create new themes based on your color and wallpaper choices.\n"
|
||||
"\xE2\x80\xA2 Create new themes based on your color "
|
||||
"and wallpaper choices.\n"
|
||||
|
||||
"\xE2\x80\xA2 Share your themes with other users via links.\n"
|
||||
|
||||
"\xE2\x80\xA2 Update your theme for all its users when you change something.\n"
|
||||
"\xE2\x80\xA2 Update your theme for all its users "
|
||||
"when you change something.\n"
|
||||
},
|
||||
{
|
||||
1009000,
|
||||
"\xE2\x80\xA2 System spellchecker on Windows 8+ and macOS 10.12+.\n"
|
||||
"\xE2\x80\xA2 System spell checker on Windows 8+ and macOS 10.12+.\n"
|
||||
},
|
||||
{
|
||||
1009002,
|
||||
"\xE2\x80\xA2 Videos in chats start playing automatically.\n"
|
||||
|
||||
"\xE2\x80\xA2 Resume playback from where you left off "
|
||||
"when watching long videos.\n"
|
||||
|
||||
"\xE2\x80\xA2 Control videos, GIFs and round video messages "
|
||||
"automatic playback in "
|
||||
"Settings > Advanced > Automatic media download.\n"
|
||||
|
||||
"\xE2\x80\xA2 Spell checker on Linux using Enchant.\n"
|
||||
},
|
||||
};
|
||||
};
|
||||
|
|
|
@ -7,7 +7,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
*/
|
||||
#pragma once
|
||||
|
||||
#define TDESKTOP_REQUESTED_ALPHA_VERSION (1009001012ULL)
|
||||
#define TDESKTOP_REQUESTED_ALPHA_VERSION (0ULL)
|
||||
|
||||
#ifdef TDESKTOP_ALLOW_CLOSED_ALPHA
|
||||
#define TDESKTOP_ALPHA_VERSION TDESKTOP_REQUESTED_ALPHA_VERSION
|
||||
|
@ -15,7 +15,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
#define TDESKTOP_ALPHA_VERSION (0ULL)
|
||||
#endif // TDESKTOP_ALLOW_CLOSED_ALPHA
|
||||
|
||||
constexpr auto AppVersion = 1009001;
|
||||
constexpr auto AppVersionStr = "1.9.1";
|
||||
constexpr auto AppBetaVersion = false;
|
||||
constexpr auto AppVersion = 1009002;
|
||||
constexpr auto AppVersionStr = "1.9.2";
|
||||
constexpr auto AppBetaVersion = true;
|
||||
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
AppVersion 1009001
|
||||
AppVersion 1009002
|
||||
AppVersionStrMajor 1.9
|
||||
AppVersionStrSmall 1.9.1
|
||||
AppVersionStr 1.9.1
|
||||
BetaChannel 0
|
||||
AlphaVersion 1009001012
|
||||
AppVersionOriginal 1.9.1.12
|
||||
AppVersionStrSmall 1.9.2
|
||||
AppVersionStr 1.9.2
|
||||
BetaChannel 1
|
||||
AlphaVersion 0
|
||||
AppVersionOriginal 1.9.2.beta
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
1.9.2 beta (29.12.19)
|
||||
|
||||
- Videos in chats start playing automatically.
|
||||
- Resume playback from where you left off when watching long videos.
|
||||
- Control videos, GIFs and round video messages automatic playback in Settings > Advanced > Automatic media download.
|
||||
- Spell checker on Linux using Enchant.
|
||||
|
||||
1.9.1 beta (06.11.19)
|
||||
|
||||
- Bug fixes and other minor improvements.
|
||||
|
|
Loading…
Reference in New Issue