mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-05-06 10:09:37 +00:00
- You can now add any users to your contacts, even if their phone numbers are not visible. - Transfer ownership of group chats and channels by granting full rights to another admin. Useful when switching jobs or if you just want to retire as creator. - Hide archived chats to the main menu. - See who is online straight from the chat list. - Use the MacBook Pro TouchBar to apply formatting to selected text, insert emoji, and send stickers.
22 lines
680 B
C++
22 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 = 1007009;
|
|
constexpr auto AppVersionStr = "1.7.9";
|
|
constexpr auto AppBetaVersion = false;
|
|
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;
|