From 500ecb464c0373cb7cbd70ce17f2b8702b2e609d Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 16 Oct 2018 23:10:26 +0300 Subject: [PATCH] Beta version 1.4.4. - Interface scaling for large screens, up to 300% (up to 150% for macOS retina screens). - Updated emoji. --- Telegram/Resources/uwp/AppX/AppxManifest.xml | 2 +- Telegram/Resources/winrc/Telegram.rc | 8 ++--- Telegram/Resources/winrc/Updater.rc | 8 ++--- Telegram/SourceFiles/core/changelogs.cpp | 33 ++++++++++++-------- Telegram/SourceFiles/core/version.h | 6 ++-- Telegram/build/version | 8 ++--- changelog.txt | 5 +++ 7 files changed, 41 insertions(+), 29 deletions(-) diff --git a/Telegram/Resources/uwp/AppX/AppxManifest.xml b/Telegram/Resources/uwp/AppX/AppxManifest.xml index 622a7c310..fb83ec5a1 100644 --- a/Telegram/Resources/uwp/AppX/AppxManifest.xml +++ b/Telegram/Resources/uwp/AppX/AppxManifest.xml @@ -9,7 +9,7 @@ + Version="1.4.4.0" /> Telegram Desktop Telegram Messenger LLP diff --git a/Telegram/Resources/winrc/Telegram.rc b/Telegram/Resources/winrc/Telegram.rc index f814f7445..66e77c4b5 100644 --- a/Telegram/Resources/winrc/Telegram.rc +++ b/Telegram/Resources/winrc/Telegram.rc @@ -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" diff --git a/Telegram/Resources/winrc/Updater.rc b/Telegram/Resources/winrc/Updater.rc index d311d1387..4be352baf 100644 --- a/Telegram/Resources/winrc/Updater.rc +++ b/Telegram/Resources/winrc/Updater.rc @@ -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" diff --git a/Telegram/SourceFiles/core/changelogs.cpp b/Telegram/SourceFiles/core/changelogs.cpp index 1564c17d4..c52cba285 100644 --- a/Telegram/SourceFiles/core/changelogs.cpp +++ b/Telegram/SourceFiles/core/changelogs.cpp @@ -20,44 +20,51 @@ std::map 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." }, }; } diff --git a/Telegram/SourceFiles/core/version.h b/Telegram/SourceFiles/core/version.h index e9a2dc238..7c5a89b02 100644 --- a/Telegram/SourceFiles/core/version.h +++ b/Telegram/SourceFiles/core/version.h @@ -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; diff --git a/Telegram/build/version b/Telegram/build/version index 06afd06a7..a809280bc 100644 --- a/Telegram/build/version +++ b/Telegram/build/version @@ -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 diff --git a/changelog.txt b/changelog.txt index 504f87fec..f683c8a24 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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.