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:
John Preston 2018-10-16 23:10:26 +03:00
parent 5b4abe69aa
commit 500ecb464c
7 changed files with 41 additions and 29 deletions

View file

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

View file

@ -34,8 +34,8 @@ IDI_ICON1 ICON "..\\art\\icon256.ico"
// //
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,4,3,0 FILEVERSION 1,4,4,0
PRODUCTVERSION 1,4,3,0 PRODUCTVERSION 1,4,4,0
FILEFLAGSMASK 0x3fL FILEFLAGSMASK 0x3fL
#ifdef _DEBUG #ifdef _DEBUG
FILEFLAGS 0x1L FILEFLAGS 0x1L
@ -52,10 +52,10 @@ BEGIN
BEGIN BEGIN
VALUE "CompanyName", "Telegram Messenger LLP" VALUE "CompanyName", "Telegram Messenger LLP"
VALUE "FileDescription", "Telegram Desktop" VALUE "FileDescription", "Telegram Desktop"
VALUE "FileVersion", "1.4.3.0" VALUE "FileVersion", "1.4.4.0"
VALUE "LegalCopyright", "Copyright (C) 2014-2018" VALUE "LegalCopyright", "Copyright (C) 2014-2018"
VALUE "ProductName", "Telegram Desktop" VALUE "ProductName", "Telegram Desktop"
VALUE "ProductVersion", "1.4.3.0" VALUE "ProductVersion", "1.4.4.0"
END END
END END
BLOCK "VarFileInfo" BLOCK "VarFileInfo"

View file

@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
// //
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,4,3,0 FILEVERSION 1,4,4,0
PRODUCTVERSION 1,4,3,0 PRODUCTVERSION 1,4,4,0
FILEFLAGSMASK 0x3fL FILEFLAGSMASK 0x3fL
#ifdef _DEBUG #ifdef _DEBUG
FILEFLAGS 0x1L FILEFLAGS 0x1L
@ -43,10 +43,10 @@ BEGIN
BEGIN BEGIN
VALUE "CompanyName", "Telegram Messenger LLP" VALUE "CompanyName", "Telegram Messenger LLP"
VALUE "FileDescription", "Telegram Desktop Updater" VALUE "FileDescription", "Telegram Desktop Updater"
VALUE "FileVersion", "1.4.3.0" VALUE "FileVersion", "1.4.4.0"
VALUE "LegalCopyright", "Copyright (C) 2014-2018" VALUE "LegalCopyright", "Copyright (C) 2014-2018"
VALUE "ProductName", "Telegram Desktop" VALUE "ProductName", "Telegram Desktop"
VALUE "ProductVersion", "1.4.3.0" VALUE "ProductVersion", "1.4.4.0"
END END
END END
BLOCK "VarFileInfo" BLOCK "VarFileInfo"

View file

@ -20,44 +20,51 @@ std::map<int, const char*> BetaLogs() {
return { return {
{ {
1002024, 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." "or by Ctrl/Cmd + K keyboard shortcut."
}, },
{ {
1002025, 1002025,
"\xE2\x80\x94 Apply markdown formatting (```, `, **, __) " "- Apply markdown formatting (```, `, **, __) "
"only when sending the message.\n" "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, 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." "as night and day themes to quickly switch between them."
}, },
{ {
1003015, 1003015,
"\xE2\x80\x94 Improved local caching " "- Improved local caching "
"for images and GIF animations.\n" "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." "and for how long the cached files are stored."
}, },
{ {
1003017, 1003017,
"\xE2\x80\x94 Fully redisigned Settings section.\n" "- Fully redisigned Settings section.\n"
"\xE2\x80\x94 New theme selector in Chat Settings.\n" "- New theme selector in Chat Settings.\n"
"\xE2\x80\x94 New settings: Peer-to-Peer settings for calls, " "- New settings: Peer-to-Peer settings for calls, "
"disable animations for low performance computers.\n" "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."
}, },
}; };
} }

View file

@ -11,7 +11,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#define ALPHA_VERSION_MACRO (0ULL) #define ALPHA_VERSION_MACRO (0ULL)
constexpr int AppVersion = 1004003; constexpr int AppVersion = 1004004;
constexpr str_const AppVersionStr = "1.4.3"; constexpr str_const AppVersionStr = "1.4.4";
constexpr bool AppBetaVersion = false; constexpr bool AppBetaVersion = true;
constexpr uint64 AppAlphaVersion = ALPHA_VERSION_MACRO; constexpr uint64 AppAlphaVersion = ALPHA_VERSION_MACRO;

View file

@ -1,6 +1,6 @@
AppVersion 1004003 AppVersion 1004004
AppVersionStrMajor 1.4 AppVersionStrMajor 1.4
AppVersionStrSmall 1.4.3 AppVersionStrSmall 1.4.4
AppVersionStr 1.4.3 AppVersionStr 1.4.4
BetaChannel 0 BetaChannel 1
AlphaVersion 0 AlphaVersion 0

View file

@ -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) 1.4.3 (13.10.18)
- Bug fixes and other minor improvements. - Bug fixes and other minor improvements.