2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

Beta version 1.5.5.

- Support for auto-download of files and music.
- Improved auto-download settings.
This commit is contained in:
John Preston
2018-12-27 09:25:05 +04:00
parent e2668e7cfa
commit d17c985bcb
7 changed files with 30 additions and 41 deletions

View File

@@ -18,31 +18,6 @@ namespace {
std::map<int, const char*> BetaLogs() {
return {
{
1003011,
"- Added a new night theme.\n"
"- You can now assign custom themes "
"as night and day themes to quickly switch between them."
},
{
1003015,
"- Improved local caching "
"for images and GIF animations.\n"
"- Control how much disk space is used by the cache "
"and for how long the cached files are stored."
},
{
1003017,
"- Fully redisigned Settings section.\n"
"- New theme selector in Chat Settings.\n"
"- New settings: Peer-to-Peer settings for calls, "
"disable animations for low performance computers.\n"
"- Various other improvements."
},
{
1004004,
"- Interface scaling for large screens, up to 300% "
@@ -71,6 +46,14 @@ std::map<int, const char*> BetaLogs() {
"- Switch off the 'Count unread messages' option "
"in Settings > Notifications if you want to see "
"the unread chats count in the badge instead."
},
{
1005005,
"- Support for auto-download of files and music.\n"
"- Improved auto-download settings.\n"
"- Bug fixes and other minor improvements."
}
};
}

View File

@@ -15,7 +15,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#define TDESKTOP_ALPHA_VERSION (0ULL)
#endif // TDESKTOP_OFFICIAL_TARGET
constexpr auto AppVersion = 1005004;
constexpr auto AppVersionStr = "1.5.4";
constexpr auto AppBetaVersion = false;
constexpr auto AppVersion = 1005005;
constexpr auto AppVersionStr = "1.5.5";
constexpr auto AppBetaVersion = true;
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;