mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-04-01 23:00:58 +00:00
- Quick Reply. Double click near a message for a quick reply. - Search for Stickers. Click on the new search icon to access your sticker sets or find new ones.
18 lines
488 B
C++
18 lines
488 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 "core/utils.h"
|
|
|
|
#define BETA_VERSION_MACRO (0ULL)
|
|
|
|
constexpr int AppVersion = 1002009;
|
|
constexpr str_const AppVersionStr = "1.2.9";
|
|
constexpr bool AppAlphaVersion = true;
|
|
constexpr uint64 AppBetaVersion = BETA_VERSION_MACRO;
|