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
|
|
|
|
|
2016-09-29 11:37:16 +00:00
|
|
|
#include "core/utils.h"
|
2016-04-27 12:03:10 +00:00
|
|
|
|
2018-05-29 22:40:39 +00:00
|
|
|
#define BETA_VERSION_MACRO (1002024001ULL)
|
2016-04-27 12:03:10 +00:00
|
|
|
|
2018-05-26 15:48:11 +00:00
|
|
|
constexpr int AppVersion = 1002024;
|
|
|
|
constexpr str_const AppVersionStr = "1.2.24";
|
2018-05-29 22:40:39 +00:00
|
|
|
constexpr bool AppAlphaVersion = false;
|
2016-05-04 10:41:41 +00:00
|
|
|
constexpr uint64 AppBetaVersion = BETA_VERSION_MACRO;
|