- Replace media when editing messages with media content. - Jump quickly to the top of your chats list. - Get emoji suggestions for the first word you type in a message. - Help Telegram improve emoji suggestions in your language using this interface https://translations.telegram.org/en/emoji
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			680 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 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 = 1006007;
 | 
						|
constexpr auto AppVersionStr = "1.6.7";
 | 
						|
constexpr auto AppBetaVersion = false;
 | 
						|
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;
 |