Hello community,

here is the log from the commit of package ksnakeduel for openSUSE:Factory 
checked in at 2019-08-16 15:47:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ksnakeduel (Old)
 and      /work/SRC/openSUSE:Factory/.ksnakeduel.new.22127 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ksnakeduel"

Fri Aug 16 15:47:56 2019 rev:87 rq:723709 version:19.08.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/ksnakeduel/ksnakeduel.changes    2019-07-17 
13:18:22.251708908 +0200
+++ /work/SRC/openSUSE:Factory/.ksnakeduel.new.22127/ksnakeduel.changes 
2019-08-16 15:48:28.497640068 +0200
@@ -1,0 +2,35 @@
+Fri Aug  9 08:31:42 UTC 2019 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 19.08.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.08.0.php
+- No code change since 19.07.90
+
+-------------------------------------------------------------------
+Tue Aug 06 16:50:50 UTC 2019 - lbeltr...@kde.org
+
+- Update to 19.07.90
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.08-rc.php
+- Changes since 19.07.80:
+  * No code changes since 19.07.80
+
+-------------------------------------------------------------------
+Tue Jul 23 11:59:04 UTC 2019 - lbeltr...@kde.org
+
+- Update to 19.07.80
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.08-beta.php
+- Changes since 19.04.3:
+  * Use new logging category directory when ECM>=5.59
+  * it was fixed in qt5.13 beta2
+  * Make it compile without deprecated method
+  * It compiles fine without foreach
+  * Try to increase it
+  * Fix clazy warning
+  * It's already defined in KDEFrameworkCompilerSettings
+
+-------------------------------------------------------------------

Old:
----
  ksnakeduel-19.04.3.tar.xz

New:
----
  applications.keyring
  ksnakeduel-19.08.0.tar.xz
  ksnakeduel-19.08.0.tar.xz.sig

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

Other differences:
------------------
++++++ ksnakeduel.spec ++++++
--- /var/tmp/diff_new_pack.FyeX56/_old  2019-08-16 15:48:28.989639887 +0200
+++ /var/tmp/diff_new_pack.FyeX56/_new  2019-08-16 15:48:28.997639884 +0200
@@ -21,13 +21,17 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:           ksnakeduel
-Version:        19.04.3
+Version:        19.08.0
 Release:        0
 Summary:        Simple snake duel game
 License:        GPL-2.0-or-later
 Group:          Amusements/Games/Board/Puzzle
-URL:            http://www.kde.org
-Source0:        ksnakeduel-%{version}.tar.xz
+URL:            https://www.kde.org
+Source:         
https://download.kde.org/stable/applications/%{version}/src/%{name}-%{version}.tar.xz
+%if %{with lang}
+Source1:        
https://download.kde.org/stable/applications/%{version}/src/%{name}-%{version}.tar.xz.sig
+Source2:        applications.keyring
+%endif
 BuildRequires:  extra-cmake-modules
 BuildRequires:  kcompletion-devel
 BuildRequires:  kconfig-devel

++++++ ksnakeduel-19.04.3.tar.xz -> ksnakeduel-19.08.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/CMakeLists.txt 
new/ksnakeduel-19.08.0/CMakeLists.txt
--- old/ksnakeduel-19.04.3/CMakeLists.txt       2019-07-09 02:13:15.000000000 
+0200
+++ new/ksnakeduel-19.08.0/CMakeLists.txt       2019-08-09 02:30:10.000000000 
+0200
@@ -1,8 +1,8 @@
+cmake_minimum_required (VERSION 3.5 FATAL_ERROR)
 project(ksnakeduel)
 
-cmake_minimum_required (VERSION 2.8.12 FATAL_ERROR)
-set (QT_MIN_VERSION "5.7.0")
-set (KF5_MIN_VERSION "5.30.0")
+set (QT_MIN_VERSION "5.10.0")
+set (KF5_MIN_VERSION "5.40.0")
 
 find_package(ECM ${KF5_MIN_VERSION} REQUIRED CONFIG)
 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} 
${ECM_KDE_MODULE_DIR})
@@ -32,9 +32,11 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 include(ECMQtDeclareLoggingCategory)
-
-
-add_definitions(-DQT_USE_FAST_CONCATENATION -DQT_USE_FAST_OPERATOR_PLUS)
+if (${KF5Config_VERSION} STRGREATER "5.56.0")
+        add_definitions(-DQT_NO_FOREACH)
+        MESSAGE(STATUS "compile without foreach")
+endif()
+add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000)
 
 add_subdirectory(pics)
 add_subdirectory(themes)
@@ -90,7 +92,11 @@
 install(FILES  ksnakeduel.knsrc DESTINATION ${KDE_INSTALL_CONFDIR})
 install(FILES  org.kde.ksnakeduel.appdata.xml DESTINATION 
${KDE_INSTALL_METAINFODIR})
 
-install( FILES ksnakeduel.categories DESTINATION ${KDE_INSTALL_CONFDIR} )
+if (${ECM_VERSION} STRGREATER "5.58.0")
+    install(FILES ksnakeduel.categories  DESTINATION  
${KDE_INSTALL_LOGGINGCATEGORIESDIR})
+else()
+    install(FILES ksnakeduel.categories  DESTINATION ${KDE_INSTALL_CONFDIR})
+endif()
 
 
 feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/ktron.h 
new/ksnakeduel-19.08.0/ktron.h
--- old/ksnakeduel-19.04.3/ktron.h      2019-05-31 08:28:53.000000000 +0200
+++ new/ksnakeduel-19.08.0/ktron.h      2019-06-13 13:33:08.000000000 +0200
@@ -44,7 +44,7 @@
        Q_OBJECT
 
        public:
-               KTron(QWidget *parent=0);
+               KTron(QWidget *parent=nullptr);
                ~KTron();
 
        private:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/main.cpp 
new/ksnakeduel-19.08.0/main.cpp
--- old/ksnakeduel-19.04.3/main.cpp     2019-05-31 08:28:53.000000000 +0200
+++ new/ksnakeduel-19.08.0/main.cpp     2019-06-13 13:33:08.000000000 +0200
@@ -57,7 +57,7 @@
     migrate.migrate();
 
     KAboutData aboutData( QStringLiteral("ksnakeduel"), i18n("KSnakeDuel"),
-            QLatin1String(KTRON_VERSION), i18n(description), 
KAboutLicense::GPL, i18n(notice));
+            QStringLiteral(KTRON_VERSION), i18n(description), 
KAboutLicense::GPL, i18n(notice));
     aboutData.addAuthor(i18n("Matthias Kiefer"), i18n("Original author"), 
QStringLiteral("matthias.kie...@gmx.de"));
     aboutData.addAuthor(i18n("Benjamin Meyer"), i18n("Various improvements"), 
QStringLiteral("ben+kt...@meyerhome.net"));
     aboutData.addAuthor(i18n("Stas Verberkt"), i18n("KDE 4 Port, interface 
revision and KSnake mode"), QStringLiteral("lego...@legolasweb.nl"));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/bs/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/bs/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/bs/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/bs/ksnakeduel.po  2019-08-09 02:30:04.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kdegames\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2013-10-18 20:26+0000\n"
 "Last-Translator: Samir Ribić <Unknown>\n"
 "Language-Team: Bosnian <lo...@lugbih.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/ca/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/ca/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/ca/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/ca/ksnakeduel.po  2019-08-09 02:30:04.000000000 
+0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: ksnakeduel\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2016-05-16 12:07+0200\n"
 "Last-Translator: Josep Ma. Ferrer <txe...@gmail.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/ca@valencia/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/ca@valencia/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/ca@valencia/ksnakeduel.po 2019-07-09 
02:13:14.000000000 +0200
+++ new/ksnakeduel-19.08.0/po/ca@valencia/ksnakeduel.po 2019-08-09 
02:30:04.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: ksnakeduel\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2016-05-16 12:07+0200\n"
 "Last-Translator: Josep Ma. Ferrer <txe...@gmail.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/cs/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/cs/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/cs/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/cs/ksnakeduel.po  2019-08-09 02:30:04.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2013-04-09 16:49+0200\n"
 "Last-Translator: Vit Pelcak <v...@pelcak.org>\n"
 "Language-Team: Czech <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/da/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/da/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/da/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/da/ksnakeduel.po  2019-08-09 02:30:04.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2010-12-04 19:49+0100\n"
 "Last-Translator: Martin Schlander <mschlan...@opensuse.org>\n"
 "Language-Team: Danish <da...@dansk-gruppen.dk>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/de/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/de/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/de/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/de/ksnakeduel.po  2019-08-09 02:30:05.000000000 
+0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2010-11-26 18:30+0100\n"
 "Last-Translator: Johannes Obermayr <johannesoberm...@gmx.de>\n"
 "Language-Team: German <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/el/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/el/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/el/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/el/ksnakeduel.po  2019-08-09 02:30:05.000000000 
+0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2013-07-08 06:24+0200\n"
 "Last-Translator: Dimitrios Glentadakis <dgl...@gmail.com>\n"
 "Language-Team: Greek <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/en_GB/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/en_GB/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/en_GB/ksnakeduel.po       2019-07-09 
02:13:14.000000000 +0200
+++ new/ksnakeduel-19.08.0/po/en_GB/ksnakeduel.po       2019-08-09 
02:30:05.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2018-01-01 15:23+0000\n"
 "Last-Translator: Steve Allewell <steve.allew...@gmail.com>\n"
 "Language-Team: British English <kde-l10n-en...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/eo/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/eo/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/eo/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/eo/ksnakeduel.po  2019-08-09 02:30:05.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2009-11-15 12:06+0100\n"
 "Last-Translator: Axel Rousseau <a...@esperanto-jeunes.org>\n"
 "Language-Team: esperanto <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/es/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/es/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/es/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/es/ksnakeduel.po  2019-08-09 02:30:05.000000000 
+0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2010-11-17 13:07+0100\n"
 "Last-Translator: Kira J. Fernandez <kirajf...@gmail.com>\n"
 "Language-Team: Español <kde-l10n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/et/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/et/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/et/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/et/ksnakeduel.po  2019-08-09 02:30:05.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2010-11-16 04:21+0200\n"
 "Last-Translator: Marek Laane <b...@smail.ee>\n"
 "Language-Team: Estonian <kde...@linux.ee>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/eu/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/eu/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/eu/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/eu/ksnakeduel.po  2019-08-09 02:30:05.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2010-08-26 22:46+0200\n"
 "Last-Translator: Ignigo Salvador Azurmendi <xa...@euskalnet.net>\n"
 "Language-Team: Basque <itzulp...@euskalgnu.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/fi/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/fi/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/fi/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/fi/ksnakeduel.po  2019-08-09 02:30:05.000000000 
+0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2014-11-08 02:34+0200\n"
 "Last-Translator: Lasse Liehu <lasse.li...@gmail.com>\n"
 "Language-Team: Finnish <lokalisoi...@lists.coss.fi>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/fr/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/fr/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/fr/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/fr/ksnakeduel.po  2019-08-09 02:30:05.000000000 
+0200
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2013-06-11 21:45+0200\n"
 "Last-Translator: xavier <xavier.besn...@neuf.fr>\n"
 "Language-Team: French <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/ga/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/ga/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/ga/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/ga/ksnakeduel.po  2019-08-09 02:30:06.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2009-02-26 08:28-0500\n"
 "Last-Translator: Kevin Scannell <ksca...@gmail.com>\n"
 "Language-Team: Irish <gaeilge-gnuli...@lists.sourceforge.net>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/gl/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/gl/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/gl/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/gl/ksnakeduel.po  2019-08-09 02:30:06.000000000 
+0200
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2017-08-12 09:34+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) <adr...@chaves.io>\n"
 "Language-Team: Galician <kde-i18n-...@kde.org>\n"
@@ -20,11 +20,7 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 2.0\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Environment: kde, informal\n"
-"X-Accelerator-Marker: &\n"
-"X-Text-Markup: kde4\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/hr/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/hr/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/hr/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/hr/ksnakeduel.po  2019-08-09 02:30:06.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2010-01-24 17:09+0100\n"
 "Last-Translator: Andrej Dundovic <adund...@gmail.com>\n"
 "Language-Team: Croatian <kde-croatia-l...@lists.sourceforge.net>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/hu/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/hu/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/hu/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/hu/ksnakeduel.po  2019-08-09 02:30:06.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2011-04-17 17:06+0200\n"
 "Last-Translator: Kristóf Kiszel <ulys...@kubuntu.org>\n"
 "Language-Team: Hungarian <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/is/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/is/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/is/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/is/ksnakeduel.po  2019-08-09 02:30:06.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2015-01-29 09:07+0000\n"
 "Last-Translator: Sveinn í Felli <s...@fellsnet.is>\n"
 "Language-Team: Icelandic <kde-...@molar.is>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ksnakeduel-19.04.3/po/it/docs/ksnakeduel/index.docbook 
new/ksnakeduel-19.08.0/po/it/docs/ksnakeduel/index.docbook
--- old/ksnakeduel-19.04.3/po/it/docs/ksnakeduel/index.docbook  2019-07-09 
02:13:15.000000000 +0200
+++ new/ksnakeduel-19.08.0/po/it/docs/ksnakeduel/index.docbook  2019-08-09 
02:30:09.000000000 +0200
@@ -819,8 +819,7 @@
 >Traduzioni italiane: Enrico Morra<email
 >enriquez...@tiscalinet.it</email
 ></para
-> 
-&underFDL;&underGPL; </chapter>
+> &underFDL;&underGPL; </chapter>
 
 <!-- appendix finished -->
 
@@ -830,8 +829,8 @@
 
 <sect1 id="getting-ktron">
 <title
->Come procurarsi &kappname;</title>
-&install.intro.documentation; </sect1>
+>Come procurarsi &kappname;</title
+>&install.intro.documentation; </sect1>
 
 <sect1 id="requirements">
 <title
@@ -843,8 +842,8 @@
 
 <sect1 id="compilation">
 <title
->Compilazione ed installazione</title>
-&install.compile.documentation; </sect1>
+>Compilazione ed installazione</title
+>&install.compile.documentation; </sect1>
 </appendix>
 
 </book>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/it/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/it/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/it/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/it/ksnakeduel.po  2019-08-09 02:30:06.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2011-01-17 11:42+0100\n"
 "Last-Translator: Nicola Ruggero <nic...@nxnt.org>\n"
 "Language-Team: Italian <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/ja/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/ja/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/ja/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/ja/ksnakeduel.po  2019-08-09 02:30:07.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2010-09-26 12:44-0700\n"
 "Last-Translator: Fumiaki Okushi <oku...@kde.gr.jp>\n"
 "Language-Team: Japanese <kde...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/kk/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/kk/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/kk/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/kk/ksnakeduel.po  2019-08-09 02:30:07.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2012-04-07 04:57+0600\n"
 "Last-Translator: Sairan Kikkarin <sai...@computer.org>\n"
 "Language-Team: Kazakh <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/km/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/km/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/km/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/km/ksnakeduel.po  2019-08-09 02:30:07.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2009-10-23 22:04+0700\n"
 "Last-Translator: Morn Met\n"
 "Language-Team: Khmer <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/ko/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/ko/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/ko/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/ko/ksnakeduel.po  2019-08-09 02:30:07.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2013-01-22 02:37+0900\n"
 "Last-Translator: Shinjo Park <k...@peremen.name>\n"
 "Language-Team: Korean <kde...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/lt/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/lt/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/lt/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/lt/ksnakeduel.po  2019-08-09 02:30:07.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2011-08-09 23:32+0300\n"
 "Last-Translator: Remigijus Jarmalavičius <remigi...@jarmalavicius.lt>\n"
 "Language-Team: Lithuanian <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/lv/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/lv/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/lv/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/lv/ksnakeduel.po  2019-08-09 02:30:07.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2010-03-20 19:59+0200\n"
 "Last-Translator: Maris Nartiss <maris....@gmail.com>\n"
 "Language-Team: Latvian\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/mr/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/mr/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/mr/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/mr/ksnakeduel.po  2019-08-09 02:30:07.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2013-03-13 13:50+0530\n"
 "Last-Translator: Chetan Khona <che...@kompkin.com>\n"
 "Language-Team: Marathi <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/nb/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/nb/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/nb/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/nb/ksnakeduel.po  2019-08-09 02:30:07.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2010-11-15 08:48+0100\n"
 "Last-Translator: Bjørn Steensrud <bjor...@skogkatt.homelinux.org>\n"
 "Language-Team: Norwegian Bokmål <i18n...@lister.ping.uio.no>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/nds/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/nds/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/nds/ksnakeduel.po 2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/nds/ksnakeduel.po 2019-08-09 02:30:07.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2011-01-23 07:53+0100\n"
 "Last-Translator: Manfred Wiese <m.j.wi...@web.de>\n"
 "Language-Team: Low Saxon <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/nl/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/nl/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/nl/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/nl/ksnakeduel.po  2019-08-09 02:30:07.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2010-11-15 21:14+0100\n"
 "Last-Translator: Freek de Kruijf <freekdekru...@kde.nl>\n"
 "Language-Team: Dutch <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/nn/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/nn/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/nn/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/nn/ksnakeduel.po  2019-08-09 02:30:07.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2016-01-08 22:10+0100\n"
 "Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
 "Language-Team: Norwegian Nynorsk <i18n...@lister.ping.uio.no>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/pl/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/pl/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/pl/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/pl/ksnakeduel.po  2019-08-09 02:30:07.000000000 
+0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2014-12-29 10:16+0100\n"
 "Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilow...@gmail.com>\n"
 "Language-Team: Polish <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/pt/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/pt/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/pt/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/pt/ksnakeduel.po  2019-08-09 02:30:07.000000000 
+0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2010-11-12 10:26+0000\n"
 "Last-Translator: José Nuno Coelho Pires <zepi...@gmail.com>\n"
 "Language-Team: Portuguese <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/pt_BR/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/pt_BR/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/pt_BR/ksnakeduel.po       2019-07-09 
02:13:14.000000000 +0200
+++ new/ksnakeduel-19.08.0/po/pt_BR/ksnakeduel.po       2019-08-09 
02:30:07.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2012-07-31 00:31-0300\n"
 "Last-Translator: André Marcelo Alvarenga <alvare...@kde.org>\n"
 "Language-Team: Brazilian Portuguese <kde-i18n-pt...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/ro/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/ro/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/ro/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/ro/ksnakeduel.po  2019-08-09 02:30:08.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2010-01-18 15:27+0200\n"
 "Last-Translator: Sergiu Bivol <sergiu.bi...@jurnaltv.md>\n"
 "Language-Team: Română <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/ru/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/ru/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/ru/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/ru/ksnakeduel.po  2019-08-09 02:30:08.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2010-12-05 22:06+0200\n"
 "Last-Translator: Artem Sereda <overmin...@gmail.com>\n"
 "Language-Team: Russian <kde-russ...@lists.kde.ru>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/sk/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/sk/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/sk/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/sk/ksnakeduel.po  2019-08-09 02:30:08.000000000 
+0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: ksnakeduel\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2011-01-15 18:10+0100\n"
 "Last-Translator: Michal Sulek <misu...@gmail.com>\n"
 "Language-Team: Slovak <kde...@linux.sk>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/sl/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/sl/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/sl/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/sl/ksnakeduel.po  2019-08-09 02:30:08.000000000 
+0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2013-11-26 18:28+0100\n"
 "Last-Translator: Andrej Mernik <andr...@ubuntu.si>\n"
 "Language-Team: Slovenian <lugos-...@lugos.si>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/sv/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/sv/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/sv/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/sv/ksnakeduel.po  2019-08-09 02:30:08.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2010-11-12 23:22+0100\n"
 "Last-Translator: Stefan Asserhall <stefan.asserh...@bredband.net>\n"
 "Language-Team: Swedish <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/tr/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/tr/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/tr/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/tr/ksnakeduel.po  2019-08-09 02:30:08.000000000 
+0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: kdegames-kde4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2014-06-08 13:55+0000\n"
 "Last-Translator: Volkan Gezer <volkange...@gmail.com>\n"
 "Language-Team: Turkish (http://www.transifex.com/projects/p/kdegames-k-tr/";
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/ug/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/ug/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/ug/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/ug/ksnakeduel.po  2019-08-09 02:30:08.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2013-09-08 07:05+0900\n"
 "Last-Translator: Gheyret Kenji <ghey...@gmail.com>\n"
 "Language-Team: Uyghur Computer Science Association <u...@yahoogroups.com>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/uk/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/uk/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/uk/ksnakeduel.po  2019-07-09 02:13:14.000000000 
+0200
+++ new/ksnakeduel-19.08.0/po/uk/ksnakeduel.po  2019-08-09 02:30:08.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ksnakeduel\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2010-11-12 17:53+0200\n"
 "Last-Translator: Yuri Chornoivan <yurc...@ukr.net>\n"
 "Language-Team: Ukrainian <translat...@linux.org.ua>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/po/zh_CN/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/zh_CN/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/zh_CN/ksnakeduel.po       2019-07-09 
02:13:15.000000000 +0200
+++ new/ksnakeduel-19.08.0/po/zh_CN/ksnakeduel.po       2019-08-09 
02:30:08.000000000 +0200
@@ -8,8 +8,8 @@
 msgstr ""
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
-"PO-Revision-Date: 2019-06-02 13:17\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
+"PO-Revision-Date: 2019-07-18 15:12\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/ksnakeduel-19.04.3/po/zh_TW/ksnakeduel.po 
new/ksnakeduel-19.08.0/po/zh_TW/ksnakeduel.po
--- old/ksnakeduel-19.04.3/po/zh_TW/ksnakeduel.po       2019-07-09 
02:13:15.000000000 +0200
+++ new/ksnakeduel-19.08.0/po/zh_TW/ksnakeduel.po       2019-08-09 
02:30:09.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: ktron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-05-20 07:39+0200\n"
+"POT-Creation-Date: 2019-05-20 03:06+0200\n"
 "PO-Revision-Date: 2010-11-15 12:49+0800\n"
 "Last-Translator: Franklin Weng <frank...@mail.everfocus.com.tw>\n"
 "Language-Team: Chinese Traditional <zh-l...@linux.org.tw>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/renderer.cpp 
new/ksnakeduel-19.08.0/renderer.cpp
--- old/ksnakeduel-19.04.3/renderer.cpp 2019-05-31 08:28:53.000000000 +0200
+++ new/ksnakeduel-19.08.0/renderer.cpp 2019-06-13 13:33:08.000000000 +0200
@@ -122,7 +122,7 @@
 {
        QString framePixName = frameSvgName + 
sizeSuffix.arg(partSize.width()).arg(partSize.height());
        QPixmap pix;
-       if (!QPixmapCache::find(framePixName, pix))
+        if (!QPixmapCache::find(framePixName, &pix))
        {
                pix = QPixmap(partSize);
                pix.fill(Qt::transparent);
@@ -143,7 +143,7 @@
     QPixmap pix;
     QString pixName = svgName + 
sizeSuffix.arg(size.width()).arg(size.height());
 
-    if (!QPixmapCache::find(pixName, pix))
+    if (!QPixmapCache::find(pixName, &pix))
     {
         pix = QPixmap(size);
         pix.fill(Qt::transparent);
@@ -160,7 +160,7 @@
 {
     QPixmap pix;
     QString pixName = QLatin1String( "bgtile" ) + 
sizeSuffix.arg(p->m_sceneSize.width()).arg(p->m_sceneSize.height());
-       if (!QPixmapCache::find(pixName, pix))
+        if (!QPixmapCache::find(pixName, &pix))
        {
                pix = QPixmap(p->m_sceneSize);
                pix.fill(Qt::white);
@@ -258,7 +258,7 @@
        return (y * p->m_partSize.height()) + (p->m_sceneSize.height() - 
(TRON_PLAYFIELD_HEIGHT + 2) * p->m_partSize.height()) / 2;
 }
 
-void Renderer::drawPart(QPainter & painter, int x, int y, QString svgName)
+void Renderer::drawPart(QPainter & painter, int x, int y, const QString 
&svgName)
 {
        //qCDebug(KSNAKEDUEL_LOG) << "Drawing part: " << svgName;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/renderer.h 
new/ksnakeduel-19.08.0/renderer.h
--- old/ksnakeduel-19.04.3/renderer.h   2019-05-31 08:28:53.000000000 +0200
+++ new/ksnakeduel-19.08.0/renderer.h   2019-06-13 13:33:08.000000000 +0200
@@ -53,7 +53,7 @@
                QPixmap messageBox(const QString &message);
 
                void resetPlayField();
-               void drawPart(QPainter & painter, int x, int y, QString 
svgName);
+               void drawPart(QPainter & painter, int x, int y, const QString 
&svgName);
                void updatePlayField(PlayField &playfield);
                QPixmap *getPlayField();
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ksnakeduel-19.04.3/tron.cpp 
new/ksnakeduel-19.08.0/tron.cpp
--- old/ksnakeduel-19.04.3/tron.cpp     2019-05-31 08:28:53.000000000 +0200
+++ new/ksnakeduel-19.08.0/tron.cpp     2019-06-13 13:33:08.000000000 +0200
@@ -180,7 +180,7 @@
        if (playerNr != 0 && playerNr != 1)
        {
                qCDebug(KSNAKEDUEL_LOG) << "Inexistent player requested: " << 
playerNr;
-               return 0;
+               return nullptr;
        }
 
        return players[playerNr];


Reply via email to