tdesktop/Telegram/SourceFiles/core/version.h

22 lines
681 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
#define TDESKTOP_REQUESTED_ALPHA_VERSION (0ULL)
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 = 1008013;
constexpr auto AppVersionStr = "1.8.13";
constexpr auto AppBetaVersion = false;
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;