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

Beta version 1.5.16.

- Play video files and listen to received music
without waiting for them to download.
- Press CTRL+0 (CMD+0 on macOS) to jump to your Saved Messages.
This commit is contained in:
John Preston
2019-03-12 17:01:34 +04:00
parent aa1090a585
commit b8045cbcc7
7 changed files with 30 additions and 18 deletions

View File

@@ -62,6 +62,13 @@ std::map<int, const char*> BetaLogs() {
"- Choose input and output devices for Telegram Calls "
"in Settings > Adavanced > Call Settings."
},
{
1005016,
"- Play video files and listen to received music "
"without waiting for them to download.\n"
"- Press CTRL+0 (CMD+0 on macOS) to jump to your Saved Messages."
}
};
}

View File

@@ -7,7 +7,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
#define TDESKTOP_REQUESTED_ALPHA_VERSION (1005015006ULL)
#define TDESKTOP_REQUESTED_ALPHA_VERSION (0ULL)
#ifdef TDESKTOP_OFFICIAL_TARGET
#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_OFFICIAL_TARGET
constexpr auto AppVersion = 1005015;
constexpr auto AppVersionStr = "1.5.15";
constexpr auto AppBetaVersion = false;
constexpr auto AppVersion = 1005016;
constexpr auto AppVersionStr = "1.5.16";
constexpr auto AppBetaVersion = true;
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;