mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-05-06 16:03:58 +02:00
- Emoji Profile Pictures. Quickly create group and profile pictures from animated emoji and stickers with the new "Use an Emoji" option. - Emoji Categories. Filter stickers and emoji by categories like "love", "cheers" or "sleeping" in the sticker and emoji tabs. - Chat Translation. As a Premium user, translate entire chats in real time as you scroll them or receive new messages. - Media Permissions in Groups. Control whether members of your groups can send 9 distinct media types – like Photos, Voice or Video Messages. - Select Chats for Bots. Bot developers can now let users quickly select groups, channels or contacts that meet predefined criteria (more in @BotNews). - Open in New Window. Open chats or additional accounts in separate windows.
28 lines
984 B
C++
28 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 = 4006000;
|
|
constexpr auto AppVersionStr = "4.6";
|
|
constexpr auto AppBetaVersion = false;
|
|
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;
|