mirror of
https://github.com/vale981/tdesktop
synced 2025-03-14 06:56:40 -04:00

- Support for custom languages. Crowdsource a cloud-based language pack for Telegram in any language using our Translations platform - then apply it in real time. - Interface scaling for large screens, up to 300% (up to 150% for macOS retina screens). - 'Count unread messages' setting for the Badge counter in Settings > Notifications. Disable to show number of unread chats. - Video messages displayed in shared media (under voice messages). - Updated emoji. Farewell to question marks! Also in this update: - Listen to voice and video messages in 2X mode if you're in a hurry. - Add a comment when sharing posts from channels. - View all photos and videos in Twitter and Instagram link previews. - Add emoji to media captions.
21 lines
678 B
C++
21 lines
678 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
|
|
|
|
#define TDESKTOP_REQUESTED_ALPHA_VERSION (0ULL)
|
|
|
|
#ifdef TDESKTOP_OFFICIAL_TARGET
|
|
#define TDESKTOP_ALPHA_VERSION TDESKTOP_REQUESTED_ALPHA_VERSION
|
|
#else // TDESKTOP_OFFICIAL_TARGET
|
|
#define TDESKTOP_ALPHA_VERSION (0ULL)
|
|
#endif // TDESKTOP_OFFICIAL_TARGET
|
|
|
|
constexpr auto AppVersion = 1005000;
|
|
constexpr auto AppVersionStr = "1.5";
|
|
constexpr auto AppBetaVersion = false;
|
|
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;
|