2016-04-27 12:03:10 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
|
|
|
|
|
|
|
Telegram Desktop is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2017-01-11 18:31:31 +00:00
|
|
|
Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
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
|
|
|
|
2017-08-20 06:34:24 +00:00
|
|
|
#define BETA_VERSION_MACRO (1001019003ULL)
|
2016-04-27 12:03:10 +00:00
|
|
|
|
2017-08-01 18:45:04 +00:00
|
|
|
constexpr int AppVersion = 1001019;
|
|
|
|
constexpr str_const AppVersionStr = "1.1.19";
|
2017-07-23 10:30:02 +00:00
|
|
|
constexpr bool AppAlphaVersion = false;
|
2016-05-04 10:41:41 +00:00
|
|
|
constexpr uint64 AppBetaVersion = BETA_VERSION_MACRO;
|