Hello community,

here is the log from the commit of package gwenview5 for openSUSE:Factory 
checked in at 2017-01-25 22:48:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gwenview5 (Old)
 and      /work/SRC/openSUSE:Factory/.gwenview5.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gwenview5"

Changes:
--------
--- /work/SRC/openSUSE:Factory/gwenview5/gwenview5.changes      2016-12-17 
10:31:21.743832942 +0100
+++ /work/SRC/openSUSE:Factory/.gwenview5.new/gwenview5.changes 2017-01-25 
22:48:10.441345778 +0100
@@ -1,0 +2,7 @@
+Sat Jan 14 08:50:33 UTC 2017 - lbeltr...@kde.org
+
+- - Update to KDE Applications 16.12.1
+   * KDE Applications 16.12.1 
+   * https://www.kde.org/announcements/announce-applications-16.12.1.php
+
+-------------------------------------------------------------------

Old:
----
  gwenview-16.12.0.tar.xz

New:
----
  gwenview-16.12.1.tar.xz

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

Other differences:
------------------
++++++ gwenview5.spec ++++++
--- /var/tmp/diff_new_pack.HXbpq4/_old  2017-01-25 22:48:11.397201597 +0100
+++ /var/tmp/diff_new_pack.HXbpq4/_new  2017-01-25 22:48:11.397201597 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gwenview5
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -17,10 +17,10 @@
 
 
 Name:           gwenview5
-Version:        16.12.0
+Version:        16.12.1
 Release:        0
 %define kf5_version 5.26.0
-# Latest stable Applications (e.g. 16.08 in KA, but 16.12.0 in KUA)
+# Latest stable Applications (e.g. 16.08 in KA, but 16.12.1 in KUA)
 %{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 Summary:        Simple Image Viewer for KDE
 License:        GPL-2.0+
@@ -92,5 +92,4 @@
 %dir %{_kf5_htmldir}
 %doc %{_kf5_htmldir}/en/*/
 
-
 %changelog

++++++ gwenview-16.12.0.tar.xz -> gwenview-16.12.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gwenview-16.12.0/CMakeLists.txt 
new/gwenview-16.12.1/CMakeLists.txt
--- old/gwenview-16.12.0/CMakeLists.txt 2016-12-06 20:55:48.000000000 +0100
+++ new/gwenview-16.12.1/CMakeLists.txt 2017-01-07 19:53:13.000000000 +0100
@@ -3,7 +3,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "16")
 set (KDE_APPLICATIONS_VERSION_MINOR "12")
-set (KDE_APPLICATIONS_VERSION_MICRO "0")
+set (KDE_APPLICATIONS_VERSION_MICRO "1")
 set (KDE_APPLICATIONS_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 
 set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gwenview-16.12.0/app/fileopscontextmanageritem.cpp 
new/gwenview-16.12.1/app/fileopscontextmanageritem.cpp
--- old/gwenview-16.12.0/app/fileopscontextmanageritem.cpp      2016-12-06 
20:55:48.000000000 +0100
+++ new/gwenview-16.12.1/app/fileopscontextmanageritem.cpp      2017-01-07 
19:53:13.000000000 +0100
@@ -142,12 +142,9 @@
     KActionCategory* edit = new KActionCategory(i18nc("@title actions 
category", "Edit"), actionCollection);
 
     mCutAction = edit->addAction(KStandardAction::Cut, this, SLOT(cut()));
-
-    // Copied from Dolphin:
-    // need to remove shift+del from cut action, else the shortcut for 
deletejob
-    // doesn't work
-    //KF5TODO
-//     mCopyAction->setShortcut(QKeySequence());
+    QList<QKeySequence> cutActionShortcuts = mCutAction->shortcuts();
+    cutActionShortcuts.removeAll(QKeySequence(Qt::ShiftModifier | 
Qt::Key_Delete));
+    actionCollection->setDefaultShortcuts(mCutAction, cutActionShortcuts);
 
     mCopyAction = edit->addAction(KStandardAction::Copy, this, SLOT(copy()));
     mPasteAction = edit->addAction(KStandardAction::Paste, this, 
SLOT(paste()));


Reply via email to