mirror of https://github.com/procxx/kepka.git
a couple of crashes fixed, version 0.9.24 stable
This commit is contained in:
parent
a597ded99b
commit
80455492b0
|
@ -1051,14 +1051,11 @@ void AppClass::checkMapVersion() {
|
||||||
if (Local::oldMapVersion() < AppVersion) {
|
if (Local::oldMapVersion() < AppVersion) {
|
||||||
if (Local::oldMapVersion()) {
|
if (Local::oldMapVersion()) {
|
||||||
QString versionFeatures;
|
QString versionFeatures;
|
||||||
if ((cDevVersion() || cBetaVersion()) && Local::oldMapVersion() < 9022) {
|
if ((cDevVersion() || cBetaVersion()) && Local::oldMapVersion() < 9024) {
|
||||||
if (cPlatform() == dbipMac || cPlatform() == dbipMacOld) {
|
// versionFeatures = QString::fromUtf8("\xe2\x80\x94 Voice messages waveform visualizations\n\xe2\x80\x94 Bug fixes and other minor improvements");// .replace('@', qsl("@") + QChar(0x200D));
|
||||||
versionFeatures = QString::fromUtf8("\xe2\x80\x94 Voice messages waveform visualizations\n\xe2\x80\x94 Bug fixes and other minor improvements");// .replace('@', qsl("@") + QChar(0x200D));
|
versionFeatures = lang(lng_new_version_minor).trimmed();
|
||||||
} else {
|
} else if (Local::oldMapVersion() < 9024) {
|
||||||
versionFeatures = QString::fromUtf8("\xe2\x80\x94 Voice messages waveform visualizations\n\xe2\x80\x94 Bug fixes and other minor improvements");// .replace('@', qsl("@") + QChar(0x200D));
|
versionFeatures = lang(lng_new_version_text).trimmed();
|
||||||
}
|
|
||||||
} else if (Local::oldMapVersion() < 9016) {
|
|
||||||
versionFeatures = lng_new_version_text(lt_gifs_link, qsl("https://telegram.org/blog/gif-revolution"), lt_bots_link, qsl("https://telegram.org/blog/inline-bots")).trimmed();
|
|
||||||
} else {
|
} else {
|
||||||
versionFeatures = lang(lng_new_version_minor).trimmed();
|
versionFeatures = lang(lng_new_version_minor).trimmed();
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,9 +20,9 @@ Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
static const int32 AppVersion = 9023;
|
static const int32 AppVersion = 9024;
|
||||||
static const wchar_t *AppVersionStr = L"0.9.23";
|
static const wchar_t *AppVersionStr = L"0.9.24";
|
||||||
static const bool DevVersion = true;
|
static const bool DevVersion = false;
|
||||||
//#define BETA_VERSION (9019002ULL) // just comment this line to build public version
|
//#define BETA_VERSION (9019002ULL) // just comment this line to build public version
|
||||||
|
|
||||||
static const wchar_t *AppNameOld = L"Telegram Win (Unofficial)";
|
static const wchar_t *AppNameOld = L"Telegram Win (Unofficial)";
|
||||||
|
|
|
@ -963,7 +963,9 @@ void DialogsInner::dialogsReceived(const QVector<MTPDialog> &added) {
|
||||||
case mtpc_dialog: {
|
case mtpc_dialog: {
|
||||||
const MTPDdialog &d(i->c_dialog());
|
const MTPDdialog &d(i->c_dialog());
|
||||||
history = App::historyFromDialog(peerFromMTP(d.vpeer), d.vunread_count.v, d.vread_inbox_max_id.v);
|
history = App::historyFromDialog(peerFromMTP(d.vpeer), d.vunread_count.v, d.vread_inbox_max_id.v);
|
||||||
App::main()->applyNotifySetting(MTP_notifyPeer(d.vpeer), d.vnotify_settings, history);
|
if (App::main()) {
|
||||||
|
App::main()->applyNotifySetting(MTP_notifyPeer(d.vpeer), d.vnotify_settings, history);
|
||||||
|
}
|
||||||
} break;
|
} break;
|
||||||
|
|
||||||
case mtpc_dialogChannel: {
|
case mtpc_dialogChannel: {
|
||||||
|
@ -986,7 +988,9 @@ void DialogsInner::dialogsReceived(const QVector<MTPDialog> &added) {
|
||||||
if (!history->isMegagroup() && d.vtop_message.v > d.vtop_important_message.v) {
|
if (!history->isMegagroup() && d.vtop_message.v > d.vtop_important_message.v) {
|
||||||
history->setNotLoadedAtBottom();
|
history->setNotLoadedAtBottom();
|
||||||
}
|
}
|
||||||
App::main()->applyNotifySetting(MTP_notifyPeer(d.vpeer), d.vnotify_settings, history);
|
if (App::main()) {
|
||||||
|
App::main()->applyNotifySetting(MTP_notifyPeer(d.vpeer), d.vnotify_settings, history);
|
||||||
|
}
|
||||||
} break;
|
} break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1821,19 +1821,25 @@ void OverviewInner::itemRemoved(HistoryItem *item) {
|
||||||
_overview->updateTopBarSelection();
|
_overview->updateTopBarSelection();
|
||||||
}
|
}
|
||||||
|
|
||||||
onUpdateSelected();
|
LayoutItems::iterator j = _layoutItems.find(item);
|
||||||
|
if (j != _layoutItems.cend()) {
|
||||||
|
int32 index = _items.indexOf(j.value());
|
||||||
|
if (index >= 0) {
|
||||||
|
_items.remove(index);
|
||||||
|
}
|
||||||
|
delete j.value();
|
||||||
|
_layoutItems.erase(j);
|
||||||
|
}
|
||||||
|
|
||||||
if (_dragSelFrom == msgId) {
|
if (_dragSelFrom == msgId || _dragSelTo == msgId) {
|
||||||
_dragSelFrom = 0;
|
_dragSelFrom = 0;
|
||||||
_dragSelFromIndex = -1;
|
_dragSelFromIndex = -1;
|
||||||
}
|
|
||||||
if (_dragSelTo == msgId) {
|
|
||||||
_dragSelTo = 0;
|
_dragSelTo = 0;
|
||||||
_dragSelToIndex = -1;
|
_dragSelToIndex = -1;
|
||||||
|
update();
|
||||||
}
|
}
|
||||||
updateDragSelection(_dragSelFrom, _dragSelFromIndex, _dragSelTo, _dragSelToIndex, _dragSelecting);
|
|
||||||
|
|
||||||
update();
|
onUpdateSelected();
|
||||||
}
|
}
|
||||||
|
|
||||||
void OverviewInner::repaintItem(const HistoryItem *msg) {
|
void OverviewInner::repaintItem(const HistoryItem *msg) {
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>0.9.23</string>
|
<string>0.9.24</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleURLTypes</key>
|
<key>CFBundleURLTypes</key>
|
||||||
|
|
|
@ -34,8 +34,8 @@ IDI_ICON1 ICON "SourceFiles\\art\\icon256.ico"
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 0,9,23,0
|
FILEVERSION 0,9,24,0
|
||||||
PRODUCTVERSION 0,9,23,0
|
PRODUCTVERSION 0,9,24,0
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
|
@ -51,10 +51,10 @@ BEGIN
|
||||||
BLOCK "040904b0"
|
BLOCK "040904b0"
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "CompanyName", "Telegram Messenger LLP"
|
VALUE "CompanyName", "Telegram Messenger LLP"
|
||||||
VALUE "FileVersion", "0.9.23.0"
|
VALUE "FileVersion", "0.9.24.0"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2014-2016"
|
VALUE "LegalCopyright", "Copyright (C) 2014-2016"
|
||||||
VALUE "ProductName", "Telegram Desktop"
|
VALUE "ProductName", "Telegram Desktop"
|
||||||
VALUE "ProductVersion", "0.9.23.0"
|
VALUE "ProductVersion", "0.9.24.0"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
|
@ -1720,7 +1720,7 @@
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
COPY_PHASE_STRIP = NO;
|
COPY_PHASE_STRIP = NO;
|
||||||
CURRENT_PROJECT_VERSION = 0.9.23;
|
CURRENT_PROJECT_VERSION = 0.9.24;
|
||||||
DEBUG_INFORMATION_FORMAT = dwarf;
|
DEBUG_INFORMATION_FORMAT = dwarf;
|
||||||
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
|
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
|
||||||
GCC_OPTIMIZATION_LEVEL = 0;
|
GCC_OPTIMIZATION_LEVEL = 0;
|
||||||
|
@ -1739,7 +1739,7 @@
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
COPY_PHASE_STRIP = YES;
|
COPY_PHASE_STRIP = YES;
|
||||||
CURRENT_PROJECT_VERSION = 0.9.23;
|
CURRENT_PROJECT_VERSION = 0.9.24;
|
||||||
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
|
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
|
||||||
GCC_OPTIMIZATION_LEVEL = fast;
|
GCC_OPTIMIZATION_LEVEL = fast;
|
||||||
GCC_PREFIX_HEADER = ./SourceFiles/stdafx.h;
|
GCC_PREFIX_HEADER = ./SourceFiles/stdafx.h;
|
||||||
|
@ -1768,10 +1768,10 @@
|
||||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||||
CODE_SIGN_IDENTITY = "";
|
CODE_SIGN_IDENTITY = "";
|
||||||
COPY_PHASE_STRIP = NO;
|
COPY_PHASE_STRIP = NO;
|
||||||
CURRENT_PROJECT_VERSION = 0.9.23;
|
CURRENT_PROJECT_VERSION = 0.9.24;
|
||||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||||
DYLIB_COMPATIBILITY_VERSION = 0.9;
|
DYLIB_COMPATIBILITY_VERSION = 0.9;
|
||||||
DYLIB_CURRENT_VERSION = 0.9.23;
|
DYLIB_CURRENT_VERSION = 0.9.24;
|
||||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||||
FRAMEWORK_SEARCH_PATHS = "";
|
FRAMEWORK_SEARCH_PATHS = "";
|
||||||
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
|
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
|
||||||
|
@ -1909,10 +1909,10 @@
|
||||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||||
CODE_SIGN_IDENTITY = "";
|
CODE_SIGN_IDENTITY = "";
|
||||||
COPY_PHASE_STRIP = NO;
|
COPY_PHASE_STRIP = NO;
|
||||||
CURRENT_PROJECT_VERSION = 0.9.23;
|
CURRENT_PROJECT_VERSION = 0.9.24;
|
||||||
DEBUG_INFORMATION_FORMAT = dwarf;
|
DEBUG_INFORMATION_FORMAT = dwarf;
|
||||||
DYLIB_COMPATIBILITY_VERSION = 0.9;
|
DYLIB_COMPATIBILITY_VERSION = 0.9;
|
||||||
DYLIB_CURRENT_VERSION = 0.9.23;
|
DYLIB_CURRENT_VERSION = 0.9.24;
|
||||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||||
ENABLE_TESTABILITY = YES;
|
ENABLE_TESTABILITY = YES;
|
||||||
FRAMEWORK_SEARCH_PATHS = "";
|
FRAMEWORK_SEARCH_PATHS = "";
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
AppVersion 9023
|
AppVersion 9024
|
||||||
AppVersionStrMajor 0.9
|
AppVersionStrMajor 0.9
|
||||||
AppVersionStrSmall 0.9.23
|
AppVersionStrSmall 0.9.24
|
||||||
AppVersionStr 0.9.23
|
AppVersionStr 0.9.24
|
||||||
DevChannel 1
|
DevChannel 0
|
||||||
BetaVersion 0 9019002
|
BetaVersion 0 9019002
|
||||||
|
|
Loading…
Reference in New Issue