mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-04-28 14:19:49 +00:00
- Create three new kinds of polls. - See who voted for what in polls with visible votes. - Vote for several options in polls that allow multiple answers. - Guess the correct answer in quiz-style polls. - Explore various ways of combining the different poll options. - Add polls from the '...' menu in any group or channel. - Use bots like @QuizBot to create quizzes with several questions and media attachments. - Schedule messages to be sent when your recipient comes online (only works if you know their online status).
22 lines
689 B
C++
22 lines
689 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_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
|
|
|
|
constexpr auto AppVersion = 1009007;
|
|
constexpr auto AppVersionStr = "1.9.7";
|
|
constexpr auto AppBetaVersion = false;
|
|
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;
|