mirror of
https://github.com/vale981/tdesktop
synced 2025-03-10 13:06:39 -04:00

- Export data from individual chats using the '...' menu. - Added a new night theme. - You can now assign custom themes as night and day themes to quickly switch between them. - Support for Telegram Passport 1.1 and improved password hashing algorithm to better protect Telegram Passport data.
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 = 1003013;
|
|
constexpr str_const AppVersionStr = "1.3.13";
|
|
constexpr bool AppAlphaVersion = false;
|
|
constexpr uint64 AppBetaVersion = BETA_VERSION_MACRO;
|