2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-22 18:27:17 +00:00

22 lines
698 B
C
Raw Normal View History

2016-04-27 15:03:10 +03:00
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
2016-04-27 15:03:10 +03:00
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
2016-04-27 15:03:10 +03:00
*/
#pragma once
2019-12-24 16:39:56 +03:00
#define TDESKTOP_REQUESTED_ALPHA_VERSION (1009001011ULL)
2016-04-27 15:03:10 +03:00
#ifdef TDESKTOP_ALLOW_CLOSED_ALPHA
2018-11-08 10:26:18 +04:00
#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 = 1009001;
constexpr auto AppVersionStr = "1.9.1";
2019-11-15 16:11:17 +03:00
constexpr auto AppBetaVersion = false;
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;