mirror of
https://github.com/vale981/tdesktop
synced 2025-03-13 14:36:40 -04:00

- Listen to voice and video messages in 2X mode if you're in a hurry. - Find video messages in the shared voice messages section. - Add a comment when you share posts from channels. - View all photos and videos in Twitter and Instagram link previews. - Bug fixes and other minor improvements.
21 lines
679 B
C++
21 lines
679 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_OFFICIAL_TARGET
|
|
#define TDESKTOP_ALPHA_VERSION TDESKTOP_REQUESTED_ALPHA_VERSION
|
|
#else // TDESKTOP_OFFICIAL_TARGET
|
|
#define TDESKTOP_ALPHA_VERSION (0ULL)
|
|
#endif // TDESKTOP_OFFICIAL_TARGET
|
|
|
|
constexpr auto AppVersion = 1004005;
|
|
constexpr auto AppVersionStr = "1.4.5";
|
|
constexpr auto AppBetaVersion = true;
|
|
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;
|