mirror of
https://github.com/telegramdesktop/tdesktop
synced 2024-12-24 23:42:58 +00:00
Beta version 1.4.4.
- Interface scaling for large screens, up to 300% (up to 150% for macOS retina screens). - Updated emoji.
This commit is contained in:
parent
5b4abe69aa
commit
500ecb464c
@ -9,7 +9,7 @@
|
||||
<Identity Name="TelegramMessengerLLP.TelegramDesktop"
|
||||
ProcessorArchitecture="ARCHITECTURE"
|
||||
Publisher="CN=536BC709-8EE1-4478-AF22-F0F0F26FF64A"
|
||||
Version="1.4.3.0" />
|
||||
Version="1.4.4.0" />
|
||||
<Properties>
|
||||
<DisplayName>Telegram Desktop</DisplayName>
|
||||
<PublisherDisplayName>Telegram Messenger LLP</PublisherDisplayName>
|
||||
|
@ -34,8 +34,8 @@ IDI_ICON1 ICON "..\\art\\icon256.ico"
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,4,3,0
|
||||
PRODUCTVERSION 1,4,3,0
|
||||
FILEVERSION 1,4,4,0
|
||||
PRODUCTVERSION 1,4,4,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
@ -52,10 +52,10 @@ BEGIN
|
||||
BEGIN
|
||||
VALUE "CompanyName", "Telegram Messenger LLP"
|
||||
VALUE "FileDescription", "Telegram Desktop"
|
||||
VALUE "FileVersion", "1.4.3.0"
|
||||
VALUE "FileVersion", "1.4.4.0"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2014-2018"
|
||||
VALUE "ProductName", "Telegram Desktop"
|
||||
VALUE "ProductVersion", "1.4.3.0"
|
||||
VALUE "ProductVersion", "1.4.4.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,4,3,0
|
||||
PRODUCTVERSION 1,4,3,0
|
||||
FILEVERSION 1,4,4,0
|
||||
PRODUCTVERSION 1,4,4,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
@ -43,10 +43,10 @@ BEGIN
|
||||
BEGIN
|
||||
VALUE "CompanyName", "Telegram Messenger LLP"
|
||||
VALUE "FileDescription", "Telegram Desktop Updater"
|
||||
VALUE "FileVersion", "1.4.3.0"
|
||||
VALUE "FileVersion", "1.4.4.0"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2014-2018"
|
||||
VALUE "ProductName", "Telegram Desktop"
|
||||
VALUE "ProductVersion", "1.4.3.0"
|
||||
VALUE "ProductVersion", "1.4.4.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
@ -20,44 +20,51 @@ std::map<int, const char*> BetaLogs() {
|
||||
return {
|
||||
{
|
||||
1002024,
|
||||
"\xE2\x80\x94 Add links with custom text from context menu "
|
||||
"- Add links with custom text from context menu "
|
||||
"or by Ctrl/Cmd + K keyboard shortcut."
|
||||
},
|
||||
{
|
||||
1002025,
|
||||
"\xE2\x80\x94 Apply markdown formatting (```, `, **, __) "
|
||||
"- Apply markdown formatting (```, `, **, __) "
|
||||
"only when sending the message.\n"
|
||||
|
||||
"\xE2\x80\x94 Display connection quality bars in calls.\n"
|
||||
"- Display connection quality bars in calls.\n"
|
||||
|
||||
"\xE2\x80\x94 Telegram Desktop can update itself through MTProto.\n"
|
||||
"- Telegram Desktop can update itself through MTProto.\n"
|
||||
|
||||
"\xE2\x80\x94 Bug fixes and other minor improvements."
|
||||
"- Bug fixes and other minor improvements."
|
||||
},
|
||||
{
|
||||
1003011,
|
||||
"\xE2\x80\x94 Added a new night theme.\n"
|
||||
"- Added a new night theme.\n"
|
||||
|
||||
"\xE2\x80\x94 You can now assign custom themes "
|
||||
"- You can now assign custom themes "
|
||||
"as night and day themes to quickly switch between them."
|
||||
},
|
||||
{
|
||||
1003015,
|
||||
"\xE2\x80\x94 Improved local caching "
|
||||
"- Improved local caching "
|
||||
"for images and GIF animations.\n"
|
||||
|
||||
"\xE2\x80\x94 Control how much disk space is used by the cache "
|
||||
"- Control how much disk space is used by the cache "
|
||||
"and for how long the cached files are stored."
|
||||
},
|
||||
{
|
||||
1003017,
|
||||
"\xE2\x80\x94 Fully redisigned Settings section.\n"
|
||||
"- Fully redisigned Settings section.\n"
|
||||
|
||||
"\xE2\x80\x94 New theme selector in Chat Settings.\n"
|
||||
"\xE2\x80\x94 New settings: Peer-to-Peer settings for calls, "
|
||||
"- New theme selector in Chat Settings.\n"
|
||||
"- New settings: Peer-to-Peer settings for calls, "
|
||||
"disable animations for low performance computers.\n"
|
||||
|
||||
"\xE2\x80\x94 Various other improvements."
|
||||
"- Various other improvements."
|
||||
},
|
||||
{
|
||||
1004004,
|
||||
"- Interface scaling for large screens, up to 300% "
|
||||
"(up to 150% for macOS retina screens).\n"
|
||||
|
||||
"- Updated emoji."
|
||||
},
|
||||
};
|
||||
}
|
||||
|
@ -11,7 +11,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||
|
||||
#define ALPHA_VERSION_MACRO (0ULL)
|
||||
|
||||
constexpr int AppVersion = 1004003;
|
||||
constexpr str_const AppVersionStr = "1.4.3";
|
||||
constexpr bool AppBetaVersion = false;
|
||||
constexpr int AppVersion = 1004004;
|
||||
constexpr str_const AppVersionStr = "1.4.4";
|
||||
constexpr bool AppBetaVersion = true;
|
||||
constexpr uint64 AppAlphaVersion = ALPHA_VERSION_MACRO;
|
||||
|
@ -1,6 +1,6 @@
|
||||
AppVersion 1004003
|
||||
AppVersion 1004004
|
||||
AppVersionStrMajor 1.4
|
||||
AppVersionStrSmall 1.4.3
|
||||
AppVersionStr 1.4.3
|
||||
BetaChannel 0
|
||||
AppVersionStrSmall 1.4.4
|
||||
AppVersionStr 1.4.4
|
||||
BetaChannel 1
|
||||
AlphaVersion 0
|
||||
|
@ -1,3 +1,8 @@
|
||||
1.4.4 beta (16.10.18)
|
||||
|
||||
- Interface scaling for large screens, up to 300% (up to 150% for macOS retina screens).
|
||||
- Updated emoji.
|
||||
|
||||
1.4.3 (13.10.18)
|
||||
|
||||
- Bug fixes and other minor improvements.
|
||||
|
Loading…
Reference in New Issue
Block a user