Hello community,

here is the log from the commit of package kmozillahelper for openSUSE:Factory 
checked in at 2018-01-20 11:28:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kmozillahelper (Old)
 and      /work/SRC/openSUSE:Factory/.kmozillahelper.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kmozillahelper"

Sat Jan 20 11:28:17 2018 rev:2 rq:567817 version:5.0.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/kmozillahelper/kmozillahelper.changes    
2017-02-19 01:01:23.376568899 +0100
+++ /work/SRC/openSUSE:Factory/.kmozillahelper.new/kmozillahelper.changes       
2018-01-20 11:28:20.499801062 +0100
@@ -1,0 +2,7 @@
+Fri Jan 19 23:07:29 UTC 2018 - [email protected]
+
+- Update to 5.0.2:
+  * Workaround for file dialogs failing to deliver the result
+    under some circumstances
+
+-------------------------------------------------------------------

Old:
----
  kmozillahelper-5.0.1.tar.gz

New:
----
  kmozillahelper-5.0.2.tar.gz

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

Other differences:
------------------
++++++ kmozillahelper.spec ++++++
--- /var/tmp/diff_new_pack.fBhm6W/_old  2018-01-20 11:28:21.655747001 +0100
+++ /var/tmp/diff_new_pack.fBhm6W/_new  2018-01-20 11:28:21.659746814 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kmozillahelper
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 # having a hard requirement on this package
 %define helper_version 6
 Name:           kmozillahelper
-Version:        5.0.1
+Version:        5.0.2
 Release:        0
 Summary:        Helper for KDE Firefox Integration
 License:        MIT

++++++ kmozillahelper-5.0.1.tar.gz -> kmozillahelper-5.0.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kmozillahelper-5.0.1/main.cpp 
new/kmozillahelper-5.0.2/main.cpp
--- old/kmozillahelper-5.0.1/main.cpp   2017-02-11 18:52:12.000000000 +0100
+++ new/kmozillahelper-5.0.2/main.cpp   2018-01-20 00:04:52.000000000 +0100
@@ -53,7 +53,7 @@
 //#define DEBUG_KDE
 
 #define HELPER_VERSION 6
-#define APP_HELPER_VERSION "5.0.0"
+#define APP_HELPER_VERSION "5.0.2"
 
 int main(int argc, char* argv[])
 {
@@ -96,9 +96,13 @@
         return;
     }
 
+    /* Allow multiple commands at once.
+       Firefox nests the event loop in the same way we do,
+       so if a file dialog is open, another command may arrive which we handle
+       in our nested event loop...
     // For now we only allow one command at once.
     // We need to do this as dialogs spawn their own eventloop and thus they 
get nested...
-    notifier.setEnabled(false);
+    notifier.setEnabled(false); */
 
 #ifdef DEBUG_KDE
     std::cerr << "COMMAND: " << command.toStdString() << std::endl;
@@ -157,7 +161,8 @@
     // in normal data (\ is escaped otherwise)
     outputLine(status ? "\\1" : "\\0", false); // do not escape
 
-    notifier.setEnabled(true);
+    /* See comment on setEnabled above
+    notifier.setEnabled(true); */
 }
 
 bool Helper::handleCheck()


Reply via email to