- Improved censorship circumvention. - Improved stability when working through proxy servers. - Save several proxy servers to quickly switch between them. - Use proxy for calls. - Emoji and text replacement now happens immediately after typing (instead of after sending) and can be rolled back using Backspace or CTRL/CMD + Z. Replacement no longer happens when pasting text. Added formatting shortcuts. Select text and use: - CTRL/CMD + B/I for bold and italic - CTRL/CMD + K to create or edit a custom link - CTRL/CMD + SHIFT + M for monospace font - CTRL/CMD + SHIFT + N to clear formatting
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			487 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			487 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 = 1003000;
 | 
						|
constexpr str_const AppVersionStr = "1.3";
 | 
						|
constexpr bool AppAlphaVersion = false;
 | 
						|
constexpr uint64 AppBetaVersion = BETA_VERSION_MACRO;
 |