mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-03-25 04:38:23 +00:00
- Videos in chats start playing automatically. - Resume playback from where you left off when watching long videos. - Control videos, GIFs and round video messages automatic playback in Settings > Advanced > Automatic media download. - Spell checker on Linux using Enchant.
22 lines
688 B
C++
22 lines
688 B
C++
/*
|
|
This file is part of Telegram Desktop,
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
For license and copyright information please follow this link:
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
*/
|
|
#pragma once
|
|
|
|
#define TDESKTOP_REQUESTED_ALPHA_VERSION (0ULL)
|
|
|
|
#ifdef TDESKTOP_ALLOW_CLOSED_ALPHA
|
|
#define TDESKTOP_ALPHA_VERSION TDESKTOP_REQUESTED_ALPHA_VERSION
|
|
#else // TDESKTOP_ALLOW_CLOSED_ALPHA
|
|
#define TDESKTOP_ALPHA_VERSION (0ULL)
|
|
#endif // TDESKTOP_ALLOW_CLOSED_ALPHA
|
|
|
|
constexpr auto AppVersion = 1009002;
|
|
constexpr auto AppVersionStr = "1.9.2";
|
|
constexpr auto AppBetaVersion = true;
|
|
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;
|