diff --git a/Telegram/Resources/uwp/AppX/AppxManifest.xml b/Telegram/Resources/uwp/AppX/AppxManifest.xml index 659aa0e3b..64da23220 100644 --- a/Telegram/Resources/uwp/AppX/AppxManifest.xml +++ b/Telegram/Resources/uwp/AppX/AppxManifest.xml @@ -9,7 +9,7 @@ + Version="1.0.34.0" /> Telegram Desktop Telegram Messenger LLP diff --git a/Telegram/Resources/winrc/Telegram.rc b/Telegram/Resources/winrc/Telegram.rc index c91243326..52b32b142 100644 --- a/Telegram/Resources/winrc/Telegram.rc +++ b/Telegram/Resources/winrc/Telegram.rc @@ -34,8 +34,8 @@ IDI_ICON1 ICON "..\\art\\icon256.ico" // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,0,33,0 - PRODUCTVERSION 1,0,33,0 + FILEVERSION 1,0,34,0 + PRODUCTVERSION 1,0,34,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -52,10 +52,10 @@ BEGIN BEGIN VALUE "CompanyName", "Telegram Messenger LLP" VALUE "FileDescription", "Telegram Desktop" - VALUE "FileVersion", "1.0.33.0" + VALUE "FileVersion", "1.0.34.0" VALUE "LegalCopyright", "Copyright (C) 2014-2017" VALUE "ProductName", "Telegram Desktop" - VALUE "ProductVersion", "1.0.33.0" + VALUE "ProductVersion", "1.0.34.0" END END BLOCK "VarFileInfo" diff --git a/Telegram/Resources/winrc/Updater.rc b/Telegram/Resources/winrc/Updater.rc index f1c14be0d..6e2c4a3c4 100644 --- a/Telegram/Resources/winrc/Updater.rc +++ b/Telegram/Resources/winrc/Updater.rc @@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,0,33,0 - PRODUCTVERSION 1,0,33,0 + FILEVERSION 1,0,34,0 + PRODUCTVERSION 1,0,34,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -43,10 +43,10 @@ BEGIN BEGIN VALUE "CompanyName", "Telegram Messenger LLP" VALUE "FileDescription", "Telegram Desktop Updater" - VALUE "FileVersion", "1.0.33.0" + VALUE "FileVersion", "1.0.34.0" VALUE "LegalCopyright", "Copyright (C) 2014-2017" VALUE "ProductName", "Telegram Desktop" - VALUE "ProductVersion", "1.0.33.0" + VALUE "ProductVersion", "1.0.34.0" END END BLOCK "VarFileInfo" diff --git a/Telegram/SourceFiles/boxes/send_files_box.cpp b/Telegram/SourceFiles/boxes/send_files_box.cpp index 5448882c1..89354275e 100644 --- a/Telegram/SourceFiles/boxes/send_files_box.cpp +++ b/Telegram/SourceFiles/boxes/send_files_box.cpp @@ -628,7 +628,7 @@ void EditCaptionBox::onCaptionResized() { } void EditCaptionBox::updateBoxSize() { - auto newHeight = st::boxPhotoPadding.top() + st::boxPhotoCaptionSkip + _field->height() + st::normalFont->height; + auto newHeight = st::boxPhotoPadding.top() + st::boxPhotoCaptionSkip + _field->height() + errorTopSkip() + st::normalFont->height; if (_photo || _animated) { newHeight += _thumbh; } else if (_thumbw) { @@ -641,6 +641,10 @@ void EditCaptionBox::updateBoxSize() { setDimensions(st::boxWideWidth, newHeight); } +int EditCaptionBox::errorTopSkip() const { + return (st::boxButtonPadding.top() / 2); +} + void EditCaptionBox::paintEvent(QPaintEvent *e) { BoxContent::paintEvent(e); @@ -731,14 +735,14 @@ void EditCaptionBox::paintEvent(QPaintEvent *e) { if (!_error.isEmpty()) { p.setFont(st::normalFont); p.setPen(st::boxTextFgError); - p.drawTextLeft(_field->x(), _field->y() + _field->height() + (st::boxButtonPadding.top() / 2), width(), _error); + p.drawTextLeft(_field->x(), _field->y() + _field->height() + errorTopSkip(), width(), _error); } } void EditCaptionBox::resizeEvent(QResizeEvent *e) { BoxContent::resizeEvent(e); _field->resize(st::boxWideWidth - st::boxPhotoPadding.left() - st::boxPhotoPadding.right(), _field->height()); - _field->moveToLeft(st::boxPhotoPadding.left(), height() - st::normalFont->height - _field->height()); + _field->moveToLeft(st::boxPhotoPadding.left(), height() - st::normalFont->height - errorTopSkip() - _field->height()); } void EditCaptionBox::setInnerFocus() { @@ -748,7 +752,7 @@ void EditCaptionBox::setInnerFocus() { void EditCaptionBox::onSave(bool ctrlShiftEnter) { if (_saveRequestId) return; - HistoryItem *item = App::histItemById(_msgId); + auto item = App::histItemById(_msgId); if (!item) { _error = lang(lng_edit_deleted); update(); diff --git a/Telegram/SourceFiles/boxes/send_files_box.h b/Telegram/SourceFiles/boxes/send_files_box.h index b5a894a8b..dff070727 100644 --- a/Telegram/SourceFiles/boxes/send_files_box.h +++ b/Telegram/SourceFiles/boxes/send_files_box.h @@ -139,6 +139,8 @@ private: void saveDone(const MTPUpdates &updates); bool saveFail(const RPCError &error); + int errorTopSkip() const; + FullMsgId _msgId; bool _animated = false; bool _photo = false; diff --git a/Telegram/SourceFiles/core/version.h b/Telegram/SourceFiles/core/version.h index 8296d2006..28c9cc198 100644 --- a/Telegram/SourceFiles/core/version.h +++ b/Telegram/SourceFiles/core/version.h @@ -24,7 +24,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org #define BETA_VERSION_MACRO (0ULL) -constexpr int AppVersion = 1000033; -constexpr str_const AppVersionStr = "1.0.33"; +constexpr int AppVersion = 1000034; +constexpr str_const AppVersionStr = "1.0.34"; constexpr bool AppAlphaVersion = true; constexpr uint64 AppBetaVersion = BETA_VERSION_MACRO; diff --git a/Telegram/SourceFiles/mainwidget.cpp b/Telegram/SourceFiles/mainwidget.cpp index cfd5bd835..63e24bc02 100644 --- a/Telegram/SourceFiles/mainwidget.cpp +++ b/Telegram/SourceFiles/mainwidget.cpp @@ -2212,6 +2212,22 @@ void MainWidget::ui_showPeerHistory(quint64 peerId, qint32 showAtMsgId, Ui::Show } return false; }; + + // Qt bug workaround: QWidget::render() for an arbitrary widget calls + // sendPendingMoveAndResizeEvents(true, true) for the whole window, + // which does something like: + // + // setAttribute(Qt::WA_UpdatesDisabled); + // sendEvent(QResizeEvent); + // setAttribute(Qt::WA_UpdatesDisabled, false); + // + // So if we create TabbedSection widget in HistoryWidget::resizeEvent() + // it will get an enabled Qt::WA_UpdatesDisabled from its parent and it + // will never be rendered, because no one will ever remove that attribute. + // + // So we force HistoryWidget::resizeEvent() here, without WA_UpdatesDisabled. + myEnsureResized(_history); + auto animationParams = animatedShow() ? prepareHistoryAnimation(peerId) : Window::SectionSlideParams(); if (_history->peer() && _history->peer()->id != peerId && way != Ui::ShowWay::Forward) { diff --git a/Telegram/build/version b/Telegram/build/version index 104ba9068..859594680 100644 --- a/Telegram/build/version +++ b/Telegram/build/version @@ -1,6 +1,6 @@ -AppVersion 1000033 +AppVersion 1000034 AppVersionStrMajor 1.0 -AppVersionStrSmall 1.0.33 -AppVersionStr 1.0.33 +AppVersionStrSmall 1.0.34 +AppVersionStr 1.0.34 AlphaChannel 1 BetaVersion 0 diff --git a/changelog.txt b/changelog.txt index 8110d459a..95114531c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,7 @@ +1.0.34 alpha (21.04.17) + +- Bug fixes and other minor improvements. + 1.0.33 alpha (16.04.17) - Bug fixes and other minor improvements.