mirror of
https://github.com/vale981/tdesktop
synced 2025-03-09 12:36:39 -04:00

- Discover new stickers. Type one emoji to see suggestions from popular sticker sets. Suggestions from your installed sticker sets will come first. - Search for Stickers. Click on the new search icon to access your sticker sets or find new ones. - Quick Reply. Double click near a message for a quick reply.
17 lines
490 B
C++
17 lines
490 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 = 1002014;
|
|
constexpr str_const AppVersionStr = "1.2.14";
|
|
constexpr bool AppAlphaVersion = false;
|
|
constexpr uint64 AppBetaVersion = BETA_VERSION_MACRO;
|