mirror of
https://github.com/vale981/tdesktop
synced 2025-03-08 19:21:39 -05:00

- Fully redesigned Settings section. - New theme selector in Chat Settings. - New local storage settings: Control how much disk space is used by the cache and for how long the cached files are stored. - Improved local caching for images and GIF animations. - New settings: Peer-to-Peer settings for calls, disable animations for low performance computers. - Various other improvements.
17 lines
489 B
C++
17 lines
489 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 = 1004000;
|
|
constexpr str_const AppVersionStr = "1.4";
|
|
constexpr bool AppBetaVersion = false;
|
|
constexpr uint64 AppAlphaVersion = ALPHA_VERSION_MACRO;
|