2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

Dev version 0.9.43 - media text selection and disabling player shortcuts.

This commit is contained in:
John Preston
2016-04-14 22:28:02 +03:00
parent bb70a76b9c
commit 3b6d0ef7c0
6 changed files with 21 additions and 25 deletions

View File

@@ -20,20 +20,16 @@ Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
*/
#include "stdafx.h"
#include "application.h"
#include "ui/style.h"
#include "shortcuts.h"
#include "pspecific.h"
#include "fileuploader.h"
#include "mainwidget.h"
#include "lang.h"
#include "boxes/confirmbox.h"
#include "langloaderplain.h"
#include "localstorage.h"
#include "autoupdater.h"
namespace {
@@ -1034,8 +1030,8 @@ void AppClass::checkMapVersion() {
if (Local::oldMapVersion()) {
QString versionFeatures;
if ((cDevVersion() || cBetaVersion()) && Local::oldMapVersion() < 9041) {
// versionFeatures = QString::fromUtf8("\xe2\x80\x94 Design improvements\n\xe2\x80\x94 Bug fixes and other minor improvements");
versionFeatures = langNewVersionText();
versionFeatures = QString::fromUtf8("\xe2\x80\x94 Select and copy text in photo / video captions and web page previews\n\xe2\x80\x94 Media player shortcuts are enabled only when player is opened");
// versionFeatures = langNewVersionText();
} else if (Local::oldMapVersion() < 9041) {
versionFeatures = langNewVersionText();
} else {

View File

@@ -20,9 +20,9 @@ Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
*/
#pragma once
static const int32 AppVersion = 9042;
static const wchar_t *AppVersionStr = L"0.9.42";
static const bool DevVersion = false;
static const int32 AppVersion = 9043;
static const wchar_t *AppVersionStr = L"0.9.43";
static const bool DevVersion = true;
//#define BETA_VERSION (9040128ULL) // just comment this line to build public version
static const wchar_t *AppNameOld = L"Telegram Win (Unofficial)";