Hello community,

here is the log from the commit of package kde-print-manager for 
openSUSE:Factory checked in at 2017-07-29 08:56:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kde-print-manager (Old)
 and      /work/SRC/openSUSE:Factory/.kde-print-manager.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kde-print-manager"

Sat Jul 29 08:56:55 2017 rev:27 rq:510698 version:17.04.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/kde-print-manager/kde-print-manager.changes      
2017-06-15 11:21:07.322642026 +0200
+++ /work/SRC/openSUSE:Factory/.kde-print-manager.new/kde-print-manager.changes 
2017-07-29 08:56:56.846635916 +0200
@@ -1,0 +2,10 @@
+Sat Jul 15 22:59:47 CEST 2017 - lbeltr...@kde.org
+
+- Update to 17.04.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-17.04.3.php
+- Changes since 17.04.2:
+  * Fix handling of activateRequested, the first arg is the exe name, strip it 
off.
+
+-------------------------------------------------------------------

Old:
----
  print-manager-17.04.2.tar.xz

New:
----
  print-manager-17.04.3.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kde-print-manager.spec ++++++
--- /var/tmp/diff_new_pack.juTZqd/_old  2017-07-29 08:56:58.182447189 +0200
+++ /var/tmp/diff_new_pack.juTZqd/_new  2017-07-29 08:56:58.186446624 +0200
@@ -20,7 +20,7 @@
 %bcond_without lang
 
 Name:           kde-print-manager
-Version:        17.04.2
+Version:        17.04.3
 Release:        0
 %define kf5_version 5.26.0
 # Latest stable Applications (e.g. 16.08 in KA, but 16.11.80 in KUA)

++++++ print-manager-17.04.2.tar.xz -> print-manager-17.04.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/print-manager-17.04.2/printqueue/main.cpp 
new/print-manager-17.04.3/printqueue/main.cpp
--- old/print-manager-17.04.2/printqueue/main.cpp       2017-05-11 
21:35:51.000000000 +0200
+++ new/print-manager-17.04.3/printqueue/main.cpp       2017-07-09 
11:25:39.000000000 +0200
@@ -55,7 +55,11 @@
     parser.process(app);
     about.processCommandLine(&parser);
 
-    QObject::connect(&service, &KDBusService::activateRequested, &app, 
&PrintQueue::showQueues);
+    QObject::connect(&service, &KDBusService::activateRequested, &app, 
[&app](const QStringList &arguments) {
+        if (!arguments.isEmpty()) {
+            app.showQueues(arguments.mid(1)); // strip off executable name
+        }
+    });
 
     app.showQueues(parser.positionalArguments());
 


Reply via email to