Hello community,
here is the log from the commit of package plasma5-desktop for openSUSE:Factory
checked in at 2018-12-05 09:45:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/plasma5-desktop (Old)
and /work/SRC/openSUSE:Factory/.plasma5-desktop.new.19453 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plasma5-desktop"
Wed Dec 5 09:45:07 2018 rev:96 rq:652470 version:5.14.4
Changes:
--------
--- /work/SRC/openSUSE:Factory/plasma5-desktop/plasma5-desktop.changes
2018-11-10 16:53:42.672169878 +0100
+++
/work/SRC/openSUSE:Factory/.plasma5-desktop.new.19453/plasma5-desktop.changes
2018-12-05 09:45:15.420583052 +0100
@@ -1,0 +2,22 @@
+Wed Nov 28 16:09:02 UTC 2018 - Fabian Vogt <[email protected]>
+
+- Add patch from Plasma/5.14 to fix the group dialog (kde#401508):
+ * 0001-Fix-group-popup-dialog.patch
+
+-------------------------------------------------------------------
+Wed Nov 28 07:52:47 UTC 2018 - [email protected]
+
+- Update to 5.14.4
+ * New bugfix release
+ * For more details please see:
+ * https://www.kde.org/announcements/plasma-5.14.4.php
+- Changes since 5.14.3:
+ * [Folder View] improve label contrast against challenging backgrounds
(kde#361228)
+ * [Componentchooser KCM] Make default browser app choice work even when
combobox is not used (kde#350663)
+ * Minor: Fix -Wextra-semi warning
+ * Fix dismissing the Dashboard by clicking inbetween multi-grid categories.
(kde#400720)
+ * Revert unintended line
+ * Compress calls to `updateSize` (kde#400364)
+ * Remove debug
+
+-------------------------------------------------------------------
Old:
----
plasma-desktop-5.14.3.tar.xz
plasma-desktop-5.14.3.tar.xz.sig
New:
----
0001-Fix-group-popup-dialog.patch
plasma-desktop-5.14.4.tar.xz
plasma-desktop-5.14.4.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ plasma5-desktop.spec ++++++
--- /var/tmp/diff_new_pack.Xd1UyF/_old 2018-12-05 09:45:16.116582291 +0100
+++ /var/tmp/diff_new_pack.Xd1UyF/_new 2018-12-05 09:45:16.116582291 +0100
@@ -20,7 +20,7 @@
%bcond_without lang
Name: plasma5-desktop
-Version: 5.14.3
+Version: 5.14.4
Release: 0
# Full Plasma 5 version (e.g. 5.9.3)
%{!?_plasma5_bugfix: %define _plasma5_bugfix %{version}}
@@ -38,6 +38,7 @@
# PATCH-FIX-OPENSUSE
Patch1: 0001-Use-themed-user-face-icon-in-kickoff.patch
# PATCHES 100-200 and above are from upstream 5.14 branch
+Patch100: 0001-Fix-group-popup-dialog.patch
# PATCHES 201-300 and above are from upstream master/5.15 branch
%if 0%{?suse_version} > 1325
BuildRequires: libboost_headers-devel
++++++ 0001-Fix-group-popup-dialog.patch ++++++
>From ed34cc5f181e61d1fc98872866c5d7300a90af86 Mon Sep 17 00:00:00 2001
From: Eike Hein <[email protected]>
Date: Thu, 29 Nov 2018 00:22:17 +0900
Subject: [PATCH] Fix group popup dialog
Summary:
Fixes regression introduced with ab26ebb18b74: That diff contained
a change unrelated to the original submission, swapping a || out for
&& in response to a review note. This turns out to have broken things.
BUG:401508
Reviewers: davidedmundson
Subscribers: plasma-devel
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D17219
---
applets/taskmanager/package/contents/ui/GroupDialog.qml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/applets/taskmanager/package/contents/ui/GroupDialog.qml
b/applets/taskmanager/package/contents/ui/GroupDialog.qml
index 6f592756..28238dce 100644
--- a/applets/taskmanager/package/contents/ui/GroupDialog.qml
+++ b/applets/taskmanager/package/contents/ui/GroupDialog.qml
@@ -262,7 +262,7 @@ PlasmaCore.Dialog {
// Setting VisualDataModel.rootIndex drops groupRepeater.count to 0
// before the actual row count. updateSize is therefore invoked twice;
// only update size once the repeater count matches the model role.
- } else if (!groupRepeater.aboutToPopulate && visualParent.childCount
== groupRepeater.count) {
+ } else if (!groupRepeater.aboutToPopulate || visualParent.childCount
== groupRepeater.count) {
var task;
var maxWidth = 0;
var maxHeight = 0;
--
2.19.1
++++++ plasma-desktop-5.14.3.tar.xz -> plasma-desktop-5.14.4.tar.xz ++++++
/work/SRC/openSUSE:Factory/plasma5-desktop/plasma-desktop-5.14.3.tar.xz
/work/SRC/openSUSE:Factory/.plasma5-desktop.new.19453/plasma-desktop-5.14.4.tar.xz
differ: char 25, line 1