mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-04-01 23:00:58 +00:00
- Premium: Send media and files each up to 4 GB in size.
- Premium: Download media and files at the fastest possible speed,
with no limits.
- Premium: Double most of the limits in the app.
- Premium: Get a new button next to any voice message
to generate a transcript of its audio.
- Premium: React with even more emoji,
including :clown: and 😍.
- Premium: Send unique stickers with additional effects,
updated monthly.
- Premium: Set a default chat folder
or enable tools to auto-archive and hide new chats.
- Premium: Subscribers have a badge next to their name,
showing they help support Telegram.
- Premium: Show off your profile video
that will be animated for everyone in chats and the chat list.
- Premium: Sponsored Messages that are sometimes shown
in public channels will no longer appear.
- Enable join requests for your public groups,
no invite links required.
- Users who open the group will see an Apply to Join Group button.
- Once approved by an admin,
users will be able to participate in the chat.
- Bots that are integrated into the attachment menu
can be programmed to work in groups and channels.
29 lines
984 B
C++
29 lines
984 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 "base/const_string.h"
|
|
|
|
#define TDESKTOP_REQUESTED_ALPHA_VERSION (0ULL)
|
|
|
|
#ifdef TDESKTOP_ALLOW_CLOSED_ALPHA
|
|
#define TDESKTOP_ALPHA_VERSION TDESKTOP_REQUESTED_ALPHA_VERSION
|
|
#else // TDESKTOP_ALLOW_CLOSED_ALPHA
|
|
#define TDESKTOP_ALPHA_VERSION (0ULL)
|
|
#endif // TDESKTOP_ALLOW_CLOSED_ALPHA
|
|
|
|
// used in Updater.cpp and Setup.iss for Windows
|
|
constexpr auto AppId = "{53F49750-6209-4FBF-9CA8-7A333C87D1ED}"_cs;
|
|
constexpr auto AppNameOld = "Telegram Win (Unofficial)"_cs;
|
|
constexpr auto AppName = "Telegram Desktop"_cs;
|
|
constexpr auto AppFile = "Telegram"_cs;
|
|
constexpr auto AppVersion = 4000000;
|
|
constexpr auto AppVersionStr = "4.0";
|
|
constexpr auto AppBetaVersion = false;
|
|
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;
|