Hello community,

here is the log from the commit of package kscreenlocker for openSUSE:Factory 
checked in at 2016-04-12 19:04:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kscreenlocker (Old)
 and      /work/SRC/openSUSE:Factory/.kscreenlocker.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kscreenlocker"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kscreenlocker/kscreenlocker.changes      
2016-04-07 13:32:03.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kscreenlocker.new/kscreenlocker.changes 
2016-04-12 19:04:24.000000000 +0200
@@ -1,0 +2,9 @@
+Tue Apr  5 15:53:47 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.6.2
+  * New bugfix release
+  * For more details please see:
+    https://www.kde.org/announcements/plasma-5.6.2.php
+- Drop upstreamed Workaround-problems-with-QtQueuedConnection.patch
+
+-------------------------------------------------------------------

Old:
----
  Workaround-problems-with-QtQueuedConnection.patch
  kscreenlocker-5.6.1.tar.xz

New:
----
  kscreenlocker-5.6.2.tar.xz

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

Other differences:
------------------
++++++ kscreenlocker.spec ++++++
--- /var/tmp/diff_new_pack.tRan1t/_old  2016-04-12 19:04:24.000000000 +0200
+++ /var/tmp/diff_new_pack.tRan1t/_new  2016-04-12 19:04:24.000000000 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:           kscreenlocker
-Version:        5.6.1
+Version:        5.6.2
 Release:        0
 Summary:        Library and components for secure lock screen architecture
 License:        GPL-2.0+
@@ -27,8 +27,6 @@
 Source:         %{name}-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE fix-wayland-version-requirement.diff -- Changes wayland 
requirement from 1.3 to 1.2.1
 Patch0:         fix-wayland-version-requirement.diff
-# PATCH-FIX-UPSTREAM Workaround-problems-with-QtQueuedConnection.patch
-Patch1:         Workaround-problems-with-QtQueuedConnection.patch
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  extra-cmake-modules >= 1.8.0
 BuildRequires:  kf5-filesystem
@@ -92,7 +90,6 @@
 # SLE12 has a patched 1.2.1 wayland with all features KDE needs from up to 
1.7.0
 %patch0 -p1
 %endif
-%patch1 -p1
 
 %build
   %cmake_kf5 -d build -- -DKDE4_COMMON_PAM_SERVICE=xdm 
-DCMAKE_INSTALL_LOCALEDIR=share/locale/kf5

++++++ kscreenlocker-5.6.1.tar.xz -> kscreenlocker-5.6.2.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.6.1/CMakeLists.txt 
new/kscreenlocker-5.6.2/CMakeLists.txt
--- old/kscreenlocker-5.6.1/CMakeLists.txt      2016-03-29 16:12:08.000000000 
+0200
+++ new/kscreenlocker-5.6.2/CMakeLists.txt      2016-04-05 15:46:03.000000000 
+0200
@@ -1,4 +1,4 @@
-set(PROJECT_VERSION "5.6.1")
+set(PROJECT_VERSION "5.6.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.6.1/kcm/screenlocker.desktop 
new/kscreenlocker-5.6.2/kcm/screenlocker.desktop
--- old/kscreenlocker-5.6.1/kcm/screenlocker.desktop    2016-03-29 
16:11:38.000000000 +0200
+++ new/kscreenlocker-5.6.2/kcm/screenlocker.desktop    2016-04-05 
15:45:14.000000000 +0200
@@ -53,7 +53,7 @@
 Comment[en_GB]=Screen Locking Timeouts
 Comment[es]=Tiempos de espera del bloqueo de pantalla
 Comment[et]=Ekraani lukustamise aegumine
-Comment[fi]=Näytön lukitsemisen viipeet
+Comment[fi]=Näytön lukitsemisen viiveet
 Comment[fr]=Délai de verrouillage de l'écran
 Comment[gl]=Tempos máximos de trancar a pantalla
 Comment[it]=Tempo massimo per il blocco dello schermo
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.6.1/ksldapp.cpp 
new/kscreenlocker-5.6.2/ksldapp.cpp
--- old/kscreenlocker-5.6.1/ksldapp.cpp 2016-03-29 16:11:38.000000000 +0200
+++ new/kscreenlocker-5.6.2/ksldapp.cpp 2016-04-05 15:45:14.000000000 +0200
@@ -607,7 +607,7 @@
             return;
         }
         m_lockWindow->setGlobalAccel(m_globalAccel);
-        connect(m_lockWindow, &AbstractLocker::userActivity, this,
+        connect(m_lockWindow, &AbstractLocker::userActivity, m_lockWindow,
             [this]() {
                 if (isGraceTime()) {
                     unlock();
@@ -615,7 +615,11 @@
             },
             Qt::QueuedConnection
         );
-        connect(m_lockWindow, &AbstractLocker::lockWindowShown, this, 
&KSldApp::lockScreenShown, Qt::QueuedConnection);
+        connect(m_lockWindow, &AbstractLocker::lockWindowShown, m_lockWindow,
+            [this] {
+                lockScreenShown();
+            }
+        , Qt::QueuedConnection);
         connect(m_waylandServer, &WaylandServer::x11WindowAdded, m_lockWindow, 
&AbstractLocker::addAllowedWindow);
     }
     m_lockWindow->showLockWindow();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kscreenlocker-5.6.1/po/de/screenlocker_kcm.po 
new/kscreenlocker-5.6.2/po/de/screenlocker_kcm.po
--- old/kscreenlocker-5.6.1/po/de/screenlocker_kcm.po   2016-03-29 
16:11:45.000000000 +0200
+++ new/kscreenlocker-5.6.2/po/de/screenlocker_kcm.po   2016-04-05 
15:45:25.000000000 +0200
@@ -1,11 +1,11 @@
 # Frederik Schwarzer <schwar...@kde.org>, 2014.
-# Burkhard Lück <lu...@hube-lueck.de>, 2014, 2015.
+# Burkhard Lück <lu...@hube-lueck.de>, 2014, 2015, 2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2016-03-09 10:26+0000\n"
-"PO-Revision-Date: 2015-03-15 21:02+0100\n"
+"PO-Revision-Date: 2016-03-31 09:44+0100\n"
 "Last-Translator: Burkhard Lück <lu...@hube-lueck.de>\n"
 "Language-Team: German <kde-i18n...@kde.org>\n"
 "Language: de\n"
@@ -13,7 +13,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 
 #: kcm.cpp:67
 msgid "Lock Session"
@@ -35,7 +35,7 @@
 #. i18n: ectx: property (text), widget (QLabel, label_2)
 #: kcm.ui:36
 msgid "Re&quire password after locking:"
-msgstr "&Passwort nach der Sperrung anfordern:"
+msgstr "&Passwort nach der Sperrung anfordern nach:"
 
 #. i18n: ectx: property (specialValueText), widget (QSpinBox, kcfg_LockGrace)
 #: kcm.ui:52


Reply via email to