tdesktop/Telegram/SourceFiles/core/version.h

22 lines
689 B
C
Raw Normal View History

2016-04-27 12:03:10 +00:00
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
2016-04-27 12:03:10 +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-12-06 10:23:04 +00:00
#define TDESKTOP_REQUESTED_ALPHA_VERSION (1009001008ULL)
2016-04-27 12:03:10 +00:00
#ifdef TDESKTOP_OFFICIAL_TARGET
2018-11-08 06:26:18 +00:00
#define TDESKTOP_ALPHA_VERSION TDESKTOP_REQUESTED_ALPHA_VERSION
#else // TDESKTOP_OFFICIAL_TARGET
#define TDESKTOP_ALPHA_VERSION (0ULL)
#endif // TDESKTOP_OFFICIAL_TARGET
constexpr auto AppVersion = 1009001;
constexpr auto AppVersionStr = "1.9.1";
2019-11-15 13:11:17 +00:00
constexpr auto AppBetaVersion = false;
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;