Hello community, here is the log from the commit of package kwidgetsaddons for openSUSE:Factory checked in at 2017-08-24 18:11:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kwidgetsaddons (Old) and /work/SRC/openSUSE:Factory/.kwidgetsaddons.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kwidgetsaddons" Thu Aug 24 18:11:04 2017 rev:44 rq:518346 version:5.37.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kwidgetsaddons/kwidgetsaddons.changes 2017-07-17 10:26:09.845920712 +0200 +++ /work/SRC/openSUSE:Factory/.kwidgetsaddons.new/kwidgetsaddons.changes 2017-08-24 18:11:10.821734277 +0200 @@ -1,0 +2,27 @@ +Wed Aug 23 08:22:04 UTC 2017 - [email protected] + +- Add upstream patch to fix geometry of password dialogs: + * 0001-KPasswordDialog-Reset-geometry-property.patch + +------------------------------------------------------------------- +Fri Aug 18 17:37:09 UTC 2017 - [email protected] + +- Add 0001-KPasswordLineEdit-Set-focus-proxy-to-line-edit.patch + (kde#383653) + + +------------------------------------------------------------------- +Sat Aug 12 09:23:40 UTC 2017 - [email protected] + +- Update to 5.37.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/kde-frameworks-5.37.0.php +- Changes since 5.36.0 : + * CHANGELOG: Extract lineedit password widget + * KNewPasswordWidget: test whether we hide verification line edit. + * turn setColumnCount no-op when the column count doesn't change + * do not crash qaccessible by causing a resize in a resize event (kde#374933) + * [KPageListViewDelegate] Pass widget to drawPrimitive in drawFocus + +------------------------------------------------------------------- Old: ---- kwidgetsaddons-5.36.0.tar.xz New: ---- 0001-KPasswordDialog-Reset-geometry-property.patch 0001-KPasswordLineEdit-Set-focus-proxy-to-line-edit.patch kwidgetsaddons-5.37.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kwidgetsaddons.spec ++++++ --- /var/tmp/diff_new_pack.3DfCYE/_old 2017-08-24 18:11:11.609623343 +0200 +++ /var/tmp/diff_new_pack.3DfCYE/_new 2017-08-24 18:11:11.613622780 +0200 @@ -18,9 +18,9 @@ %bcond_without lang %define lname libKF5WidgetsAddons5 -%define _tar_path 5.36 +%define _tar_path 5.37 Name: kwidgetsaddons -Version: 5.36.0 +Version: 5.37.0 Release: 0 BuildRequires: cmake >= 3.0 BuildRequires: extra-cmake-modules >= %{_tar_path} @@ -38,6 +38,10 @@ Url: http://www.kde.org Source: http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz Source1: baselibs.conf +# PATCH-FIX-UPSTREAM +Patch0: 0001-KPasswordLineEdit-Set-focus-proxy-to-line-edit.patch +# PATCH-FIX-UPSTREAM +Patch1: 0001-KPasswordDialog-Reset-geometry-property.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -75,6 +79,8 @@ %lang_package -n %lname %prep %setup -q +%patch0 -p1 +%patch1 -p1 %build %cmake_kf5 -d build -- -Dlconvert_executable=%{_kf5_libdir}/qt5/bin/lconvert ++++++ 0001-KPasswordDialog-Reset-geometry-property.patch ++++++ >From 03981a052b1a8264cdd068a540ec2112879df157 Mon Sep 17 00:00:00 2001 From: Christoph Feck <[email protected]> Date: Fri, 18 Aug 2017 01:46:59 +0200 Subject: [PATCH] [KPasswordDialog] Reset geometry property The actual geometry is computed at runtime by the layout --- src/kpassworddialog.ui | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/kpassworddialog.ui b/src/kpassworddialog.ui index b1ad99c..9da02d8 100644 --- a/src/kpassworddialog.ui +++ b/src/kpassworddialog.ui @@ -2,14 +2,6 @@ <ui version="4.0"> <class>KPasswordDialog</class> <widget class="QDialog" name="KPasswordDialog"> - <property name="geometry"> - <rect> - <x>0</x> - <y>0</y> - <width>412</width> - <height>328</height> - </rect> - </property> <layout class="QVBoxLayout" name="vBoxLayout"> <item> <layout class="QHBoxLayout" name="hboxLayout"> -- 2.13.2 ++++++ 0001-KPasswordLineEdit-Set-focus-proxy-to-line-edit.patch ++++++ >From e72a8c2dad4dbce7972bba24631f8ad24e8fe990 Mon Sep 17 00:00:00 2001 From: Christoph Feck <[email protected]> Date: Fri, 18 Aug 2017 14:05:39 +0200 Subject: [PATCH] [KPasswordLineEdit] Set focus proxy to line edit BUG: 383653 FIXED-IN: 5.38.0 Differential Revision: https://phabricator.kde.org/D7378 --- src/kpasswordlineedit.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/kpasswordlineedit.cpp b/src/kpasswordlineedit.cpp index 834cfb1..89e89b8 100644 --- a/src/kpasswordlineedit.cpp +++ b/src/kpasswordlineedit.cpp @@ -96,6 +96,7 @@ KPasswordLineEdit::KPasswordLineEdit(QWidget *parent) d->passwordLineEdit->setObjectName(QStringLiteral("passwordlineedit")); d->passwordLineEdit->setEchoMode(QLineEdit::Password); connect(d->passwordLineEdit, &QLineEdit::textChanged, this, &KPasswordLineEdit::passwordChanged); + setFocusProxy(d->passwordLineEdit); mainLayout->addWidget(d->passwordLineEdit); d->initialize(); } -- 2.14.0 ++++++ kwidgetsaddons-5.36.0.tar.xz -> kwidgetsaddons-5.37.0.tar.xz ++++++ ++++ 41624 lines of diff (skipped)
