Hello community,

here is the log from the commit of package kdesdk-thumbnailers for 
openSUSE:Factory checked in at 2019-11-13 13:19:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kdesdk-thumbnailers (Old)
 and      /work/SRC/openSUSE:Factory/.kdesdk-thumbnailers.new.2990 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kdesdk-thumbnailers"

Wed Nov 13 13:19:25 2019 rev:80 rq:746861 version:19.08.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/kdesdk-thumbnailers/kdesdk-thumbnailers.changes  
2019-10-28 16:49:19.624926843 +0100
+++ 
/work/SRC/openSUSE:Factory/.kdesdk-thumbnailers.new.2990/kdesdk-thumbnailers.changes
        2019-11-13 13:19:34.379150799 +0100
@@ -1,0 +2,10 @@
+Thu Nov  7 23:12:53 UTC 2019 - Luca Beltrame <lbeltr...@kde.org>
+
+- Update to 19.08.3
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.08.3.php
+- Changes since 19.08.2:
+  * [pocreator] Avoid divide by 0 (kde#412585)
+
+-------------------------------------------------------------------

Old:
----
  kdesdk-thumbnailers-19.08.2.tar.xz
  kdesdk-thumbnailers-19.08.2.tar.xz.sig

New:
----
  kdesdk-thumbnailers-19.08.3.tar.xz
  kdesdk-thumbnailers-19.08.3.tar.xz.sig

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

Other differences:
------------------
++++++ kdesdk-thumbnailers.spec ++++++
--- /var/tmp/diff_new_pack.T2FaZ2/_old  2019-11-13 13:19:35.363151823 +0100
+++ /var/tmp/diff_new_pack.T2FaZ2/_new  2019-11-13 13:19:35.363151823 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:           kdesdk-thumbnailers
-Version:        19.08.2
+Version:        19.08.3
 Release:        0
 Summary:        Translation file thumbnail generators
 License:        GPL-2.0-or-later


++++++ kdesdk-thumbnailers-19.08.2.tar.xz -> kdesdk-thumbnailers-19.08.3.tar.xz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdesdk-thumbnailers-19.08.2/po/zh_CN/pothumbnail.po 
new/kdesdk-thumbnailers-19.08.3/po/zh_CN/pothumbnail.po
--- old/kdesdk-thumbnailers-19.08.2/po/zh_CN/pothumbnail.po     2019-10-08 
02:18:13.000000000 +0200
+++ new/kdesdk-thumbnailers-19.08.3/po/zh_CN/pothumbnail.po     2019-11-05 
05:12:08.000000000 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-08-30 07:46+0200\n"
-"PO-Revision-Date: 2019-09-05 09:57\n"
+"PO-Revision-Date: 2019-10-09 10:14\n"
 "Last-Translator: Guo Yunhe (guoyunhe)\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdesdk-thumbnailers-19.08.2/po_thumbnailer/pocreator.cpp 
new/kdesdk-thumbnailers-19.08.3/po_thumbnailer/pocreator.cpp
--- old/kdesdk-thumbnailers-19.08.2/po_thumbnailer/pocreator.cpp        
2019-07-17 08:58:14.000000000 +0200
+++ new/kdesdk-thumbnailers-19.08.3/po_thumbnailer/pocreator.cpp        
2019-10-31 15:59:23.000000000 +0100
@@ -119,6 +119,11 @@
 
     int total = translate + untranslate + fuzzy + obsolete;
 
+    if (total == 0) {
+        // Treat a .po file with no strings as an invalid file
+        return false;
+    }
+
     int d = ( width < height ) ? width - 2 : height - 2;
 
     QImage pix( d + 2, d + 2, QImage::Format_ARGB32_Premultiplied );


Reply via email to