2016-04-27 15:03:10 +03:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 13:23:14 +03:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-04-27 15:03:10 +03:00
|
|
|
|
2018-01-03 13:23:14 +03:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-04-27 15:03:10 +03:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2020-01-29 12:44:37 +03:00
|
|
|
#include "base/const_string.h"
|
|
|
|
|
2024-01-18 21:21:23 +04:00
|
|
|
#define TDESKTOP_REQUESTED_ALPHA_VERSION (0ULL)
|
2016-04-27 15:03:10 +03:00
|
|
|
|
2019-12-06 14:10:44 +03:00
|
|
|
#ifdef TDESKTOP_ALLOW_CLOSED_ALPHA
|
2018-11-08 10:26:18 +04:00
|
|
|
#define TDESKTOP_ALPHA_VERSION TDESKTOP_REQUESTED_ALPHA_VERSION
|
2019-12-06 14:10:44 +03:00
|
|
|
#else // TDESKTOP_ALLOW_CLOSED_ALPHA
|
2018-11-08 09:50:18 +04:00
|
|
|
#define TDESKTOP_ALPHA_VERSION (0ULL)
|
2019-12-06 14:10:44 +03:00
|
|
|
#endif // TDESKTOP_ALLOW_CLOSED_ALPHA
|
2018-11-08 09:50:18 +04:00
|
|
|
|
2020-01-29 12:44:37 +03:00
|
|
|
// 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;
|
2025-03-20 18:37:30 +04:00
|
|
|
constexpr auto AppVersion = 5012006;
|
|
|
|
constexpr auto AppVersionStr = "5.12.6";
|
Beta version 5.12.4.
- Touchpad swipe back to go back in navigation history.
- Touchpad swipe between folders if they're horizontal.
Out-of-the-box monochrome tray icon on Linux
with GTK icon recolorization support.
Files telegram{,{,-attention,-mute}-panel} are renamed
to org.telegram.desktop{,{,-attention,-mute}-symbolic} for
unified icon lookup in multiple (sometimes sandboxed) builds
and GTK icon recolorization support.
Snap package got icon theming support,
the icon names are snap.telegram-desktop.{,{,-attention,-mute}-symbolic}
(notice the name ends with a dot in case of no suffix!)
2025-03-12 18:24:27 +04:00
|
|
|
constexpr auto AppBetaVersion = true;
|
2018-11-08 09:50:18 +04:00
|
|
|
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;
|