Hello community,

here is the log from the commit of package kiconthemes for openSUSE:Factory 
checked in at 2015-07-14 17:27:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kiconthemes (Old)
 and      /work/SRC/openSUSE:Factory/.kiconthemes.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kiconthemes"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kiconthemes/kiconthemes.changes  2015-06-23 
12:08:45.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kiconthemes.new/kiconthemes.changes     
2015-07-14 17:27:49.000000000 +0200
@@ -1,0 +2,8 @@
+Sun Jul  5 18:45:08 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.12.0
+  * Don't try to paint the icon if the size is invalid
+  * For more details please see:
+    https://www.kde.org/announcements/kde-frameworks-5.12.0.php
+
+-------------------------------------------------------------------

Old:
----
  kiconthemes-5.11.0.tar.xz

New:
----
  kiconthemes-5.12.0.tar.xz

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

Other differences:
------------------
++++++ kiconthemes.spec ++++++
--- /var/tmp/diff_new_pack.ITOz0f/_old  2015-07-14 17:27:50.000000000 +0200
+++ /var/tmp/diff_new_pack.ITOz0f/_new  2015-07-14 17:27:50.000000000 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define lname   libKF5IconThemes5
-%define _tar_path 5.11
+%define _tar_path 5.12
 Name:           kiconthemes
-Version:        5.11.0
+Version:        5.12.0
 Release:        0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12

++++++ kiconthemes-5.11.0.tar.xz -> kiconthemes-5.12.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiconthemes-5.11.0/CMakeLists.txt 
new/kiconthemes-5.12.0/CMakeLists.txt
--- old/kiconthemes-5.11.0/CMakeLists.txt       2015-06-06 23:18:03.000000000 
+0200
+++ new/kiconthemes-5.12.0/CMakeLists.txt       2015-07-05 11:05:08.000000000 
+0200
@@ -4,7 +4,7 @@
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.11.0  NO_MODULE)
+find_package(ECM 5.12.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -19,8 +19,8 @@
 include(ECMGenerateHeaders)
 include(ECMMarkNonGuiExecutable)
 
-set(KF5_VERSION "5.11.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.11.0") # handled by release scripts
+set(KF5_VERSION "5.12.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.12.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
                   VARIABLE_PREFIX KICONTHEMES
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiconthemes-5.11.0/src/kiconengine.cpp 
new/kiconthemes-5.12.0/src/kiconengine.cpp
--- old/kiconthemes-5.11.0/src/kiconengine.cpp  2015-06-06 23:18:03.000000000 
+0200
+++ new/kiconthemes-5.12.0/src/kiconengine.cpp  2015-07-05 11:05:08.000000000 
+0200
@@ -83,6 +83,10 @@
 {
     Q_UNUSED(state)
 
+    if (!size.isValid()) {
+        return QPixmap();
+    }
+
     if (!mIconLoader) {
         QPixmap pm(size);
         pm.fill(Qt::transparent);


Reply via email to