23 lines
		
	
	
	
		
			769 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			769 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 = 1008015;
 | |
| constexpr auto AppVersionStr = "1.8.15";
 | |
| constexpr auto AppBetaVersion = true;
 | |
| constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;
 | |
| constexpr auto AppKotatoVersion = 1000007;
 | |
| constexpr auto AppKotatoVersionStr = "1.0.7";
 |