mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-05-13 03:13:59 +02:00
- You can set a Global Auto-Delete Timer for all new chats and groups you create. - New messages will be deleted after 1 day, week, month, or a custom duration you choose. - The new menu in Settings > Privacy & Security > Auto-Delete Messages also lets you set up Auto-Delete for any of your existing chats faster. - Admins of groups with 100+ members can organize discussions into separate topics. - Topics now have a two-column layout that keeps recent chats easily accessible as you browse topics. - Previews of topic messages in the chat list work like a button, click to jump to the last updated topic. - Up to 5 topics can be pinned to the top of the list. - Each topic now supports multiple pinned messages. - The View as Messages mode now shows which topic each message belongs to. - Badge counters for topics you never opened will have a lighter, less distracting color. - A new General topic is now included by default, containing service messages and the earlier message history from the group. - Admins can rename the General topic. - Large groups can enable Aggressive Filtering in Manage Group > Administrators to remove more spam with automated algorithms. - Admins help improve filtering by reporting any false positives in Recent Actions.
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 = 4004000;
|
|
constexpr auto AppVersionStr = "4.4";
|
|
constexpr auto AppBetaVersion = false;
|
|
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;
|