Hello community,
here is the log from the commit of package plasma5-workspace for
openSUSE:Factory checked in at 2020-06-25 15:06:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/plasma5-workspace (Old)
and /work/SRC/openSUSE:Factory/.plasma5-workspace.new.3060 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plasma5-workspace"
Thu Jun 25 15:06:23 2020 rev:139 rq:816718 version:5.19.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/plasma5-workspace/plasma5-workspace.changes
2020-06-23 21:02:14.157386629 +0200
+++
/work/SRC/openSUSE:Factory/.plasma5-workspace.new.3060/plasma5-workspace.changes
2020-06-25 15:06:58.781275999 +0200
@@ -1,0 +2,21 @@
+Tue Jun 23 20:24:28 UTC 2020 - Fabian Vogt <[email protected]>
+
+- Add patch to fix power actions (kde#423391):
+ * 0001-Fix-DBus-service-used-in-shutdown-interface.patch
+
+-------------------------------------------------------------------
+Tue Jun 23 13:26:18 UTC 2020 - Fabian Vogt <[email protected]>
+
+- Update to 5.19.2
+ * New bugfix release
+ * For more details please see:
+ * https://kde.org/announcements/plasma-5.19.2
+- Changes since 5.19.1:
+ * [Notifications] Support description where only a value is set (kde#423218)
+ * Fix case of monitored service in startplasma's shutdown (kde#422870)
+ * Fix faint outline for notification timeout indicator with newer charts
(kde#423079)
+ * [applets/appmenu] Listen to more signals to ensure that appmenu applet can
reliably catch the active window changing (kde#422786,kde#422260)
+ * Fix KRunner positioning on X11 with High DPI and Qt scaling on Plasma
(kde#422578)
+ * [lock screen] Stop timer when interacting with media controls (kde#422707)
+
+-------------------------------------------------------------------
Old:
----
plasma-workspace-5.19.1.tar.xz
plasma-workspace-5.19.1.tar.xz.sig
New:
----
0001-Fix-DBus-service-used-in-shutdown-interface.patch
plasma-workspace-5.19.2.tar.xz
plasma-workspace-5.19.2.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ plasma5-workspace.spec ++++++
--- /var/tmp/diff_new_pack.e0Gkqi/_old 2020-06-25 15:07:00.445281359 +0200
+++ /var/tmp/diff_new_pack.e0Gkqi/_new 2020-06-25 15:07:00.449281372 +0200
@@ -27,7 +27,7 @@
%{!?_plasma5_bugfix: %global _plasma5_bugfix %{version}}
# Latest ABI-stable Plasma (e.g. 5.8 in KF5, but 5.9.1 in KUF)
%{!?_plasma5_version: %define _plasma5_version %(echo %{_plasma5_bugfix} | awk
-F. '{print $1"."$2}')}
-Version: 5.19.1
+Version: 5.19.2
Release: 0
Summary: The KDE Plasma Workspace Components
License: GPL-2.0-or-later
@@ -42,6 +42,7 @@
Source4: plasmafullwayland.desktop
# PATCH-FIX-UPSTREAM
Patch1: 0001-Port-applets-to-use-PlasmaExtras.PlaceholderMessage.patch
+Patch2: 0001-Fix-DBus-service-used-in-shutdown-interface.patch
# PATCHES 501-??? are PATCH-FIX-OPENSUSE
Patch501: 0001-Use-qdbus-qt5.patch
Patch502: 0001-Ignore-default-sddm-face-icons.patch
++++++ 0001-Fix-DBus-service-used-in-shutdown-interface.patch ++++++
>From 1c787f7698b5078779c043b3b5ff98800679d0ec Mon Sep 17 00:00:00 2001
From: David Edmundson <[email protected]>
Date: Tue, 23 Jun 2020 16:17:44 +0100
Subject: [PATCH] Fix DBus service used in shutdown interface
During Plasma 5.18, ksmserver was cleverly split so it hosted the new
new interface registering both services names org.kde.ksmserver and
org.kde.Shutdown.
This way we could do a gradual port, update the libs, and migrate the
final code without any breakages. It was a good plan in theory.
In 5.19 we did the final actual splitting, unfortunately in
libkworkspace on the path where we skip logout confirmation had the
wrong name.
BUG: 423391
---
libkworkspace/sessionmanagement.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libkworkspace/sessionmanagement.cpp
b/libkworkspace/sessionmanagement.cpp
index 943b4c4c6..b9d868548 100644
--- a/libkworkspace/sessionmanagement.cpp
+++ b/libkworkspace/sessionmanagement.cpp
@@ -47,7 +47,7 @@ class ShutdownIface : public OrgKdeShutdownInterface
Q_OBJECT
public:
ShutdownIface()
- : OrgKdeShutdownInterface(QStringLiteral("org.kde.ksmserver"),
QStringLiteral("/Shutdown"), QDBusConnection::sessionBus())
+ : OrgKdeShutdownInterface(QStringLiteral("org.kde.Shutdown"),
QStringLiteral("/Shutdown"), QDBusConnection::sessionBus())
{
}
};
--
2.25.1
++++++ plasma-workspace-5.19.1.tar.xz -> plasma-workspace-5.19.2.tar.xz ++++++
++++ 42363 lines of diff (skipped)