mirror of
https://github.com/vale981/tdesktop
synced 2025-03-10 13:06:39 -04:00

- Global permissions for groups. Restrict all members in any group from posting certain types of content. - Unified group settings. Make groups public, set admins with granular permissions and toggle persistent history in just a few clicks in any group. - Choose the emoji set you would like to use in Chat Settings. - Choose input and output devices for Telegram Calls in Settings > Advanced > Call Settings. - Support for automatically downloading files and music.
21 lines
680 B
C++
21 lines
680 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 = 1005008;
|
|
constexpr auto AppVersionStr = "1.5.8";
|
|
constexpr auto AppBetaVersion = false;
|
|
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;
|