2016-04-27 12:03:10 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-04-27 12:03:10 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-04-27 12:03:10 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2019-04-05 11:53:46 +00:00
|
|
|
#define TDESKTOP_REQUESTED_ALPHA_VERSION (0ULL)
|
2016-04-27 12:03:10 +00:00
|
|
|
|
2018-11-08 05:50:18 +00:00
|
|
|
#ifdef TDESKTOP_OFFICIAL_TARGET
|
2018-11-08 06:26:18 +00:00
|
|
|
#define TDESKTOP_ALPHA_VERSION TDESKTOP_REQUESTED_ALPHA_VERSION
|
2018-11-08 05:50:18 +00:00
|
|
|
#else // TDESKTOP_OFFICIAL_TARGET
|
|
|
|
#define TDESKTOP_ALPHA_VERSION (0ULL)
|
|
|
|
#endif // TDESKTOP_OFFICIAL_TARGET
|
|
|
|
|
2019-04-11 06:20:30 +00:00
|
|
|
constexpr auto AppVersion = 1006006;
|
|
|
|
constexpr auto AppVersionStr = "1.6.6";
|
2019-04-05 11:53:46 +00:00
|
|
|
constexpr auto AppBetaVersion = true;
|
2018-11-08 05:50:18 +00:00
|
|
|
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;
|