mirror of
https://github.com/vale981/tdesktop
synced 2025-03-11 21:46:41 -04:00

- Fully redisigned Settings section. - New theme selector in Chat Settings. - New settings: Peer-to-Peer settings for calls, disable animations for low performance computers. - Various other improvements.
17 lines
491 B
C++
17 lines
491 B
C++
/*
|
|
This file is part of Telegram Desktop,
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
For license and copyright information please follow this link:
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
*/
|
|
#pragma once
|
|
|
|
#include "core/utils.h"
|
|
|
|
#define ALPHA_VERSION_MACRO (0ULL)
|
|
|
|
constexpr int AppVersion = 1003017;
|
|
constexpr str_const AppVersionStr = "1.3.17";
|
|
constexpr bool AppBetaVersion = true;
|
|
constexpr uint64 AppAlphaVersion = ALPHA_VERSION_MACRO;
|