Hello community, here is the log from the commit of package grantleetheme for openSUSE:Factory checked in at 2019-04-26 22:46:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/grantleetheme (Old) and /work/SRC/openSUSE:Factory/.grantleetheme.new.5536 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "grantleetheme" Fri Apr 26 22:46:45 2019 rev:36 rq:696196 version:19.04.0 Changes: -------- --- /work/SRC/openSUSE:Factory/grantleetheme/grantleetheme.changes 2019-03-11 11:08:43.713519478 +0100 +++ /work/SRC/openSUSE:Factory/.grantleetheme.new.5536/grantleetheme.changes 2019-04-26 22:46:48.161571311 +0200 @@ -1,0 +2,29 @@ +Sat Apr 20 06:51:52 UTC 2019 - [email protected] + +- Update to 19.04.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-19.04.0.php +- No code changes since 19.03.90 + +------------------------------------------------------------------- +Tue Apr 09 20:54:38 UTC 2019 - [email protected] + +- Update to 19.03.90 + * New feature release + * For more details please see: + * https://kde.org/announcements/announce-applications-19.04-rc.php +- Changes since 19.03.80: + * Workaround qt5.13 bug + +------------------------------------------------------------------- +Wed Mar 27 06:40:56 UTC 2019 - [email protected] + +- Update to 19.03.80 + * New feature release + * For more details please see: + * https://kde.org/announcements/announce-applications-19.04-beta.php +- Changes since 18.12.3: + * No code changes since 18.12.3 + +------------------------------------------------------------------- Old: ---- grantleetheme-18.12.3.tar.xz New: ---- grantleetheme-19.04.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ grantleetheme.spec ++++++ --- /var/tmp/diff_new_pack.COzEhQ/_old 2019-04-26 22:46:49.577570587 +0200 +++ /var/tmp/diff_new_pack.COzEhQ/_new 2019-04-26 22:46:49.581570585 +0200 @@ -21,7 +21,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: grantleetheme -Version: 18.12.3 +Version: 19.04.0 Release: 0 Summary: Grantlee theme support License: GPL-2.0-only ++++++ grantleetheme-18.12.3.tar.xz -> grantleetheme-19.04.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/.gitignore new/grantleetheme-19.04.0/.gitignore --- old/grantleetheme-18.12.3/.gitignore 2019-02-08 07:53:31.000000000 +0100 +++ new/grantleetheme-19.04.0/.gitignore 2019-04-05 21:10:56.000000000 +0200 @@ -16,6 +16,6 @@ Makefile avail random_seed -/build/ +/build*/ CMakeLists.txt.user* *.unc-backup* diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/CMakeLists.txt new/grantleetheme-19.04.0/CMakeLists.txt --- old/grantleetheme-18.12.3/CMakeLists.txt 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/CMakeLists.txt 2019-04-12 02:16:19.000000000 +0200 @@ -1,12 +1,12 @@ -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.5) -set(KF5_VERSION "5.51.0") -set(PIM_VERSION "5.10.3") +set(KF5_MIN_VERSION "5.56.0") +set(PIM_VERSION "5.11.0") project(GrantleeTheme VERSION ${PIM_VERSION}) -find_package(ECM ${KF5_VERSION} CONFIG REQUIRED) +find_package(ECM ${KF5_MIN_VERSION} CONFIG REQUIRED) set(CMAKE_MODULE_PATH ${GrantleeTheme_SOURCE_DIR}/cmake ${ECM_MODULE_PATH}) set(LIBRARY_NAMELINK) include(GenerateExportHeader) @@ -30,13 +30,13 @@ set(GRANTLEETHEME_LIB_VERSION ${PIM_VERSION}) -set(QT_REQUIRED_VERSION "5.9.0") +set(QT_REQUIRED_VERSION "5.10.0") set(GRANTLEE_VERSION "5.1") find_package(Qt5 ${QT_REQUIRED_VERSION} CONFIG REQUIRED Widgets Network) -find_package(KF5I18n ${KF5_VERSION} CONFIG REQUIRED) -find_package(KF5IconThemes ${KF5_VERSION} CONFIG REQUIRED) -find_package(KF5NewStuff ${KF5_VERSION} CONFIG REQUIRED) +find_package(KF5I18n ${KF5_MIN_VERSION} CONFIG REQUIRED) +find_package(KF5IconThemes ${KF5_MIN_VERSION} CONFIG REQUIRED) +find_package(KF5NewStuff ${KF5_MIN_VERSION} CONFIG REQUIRED) find_package(Grantlee5 ${GRANTLEE_VERSION} CONFIG REQUIRED) @@ -48,7 +48,12 @@ ########### Targets ########### -add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000) +# workaround for https://bugreports.qt.io/browse/QTBUG-74665 (bug in qt5.13 reevaluate it) +if (${Qt5Widgets_VERSION} STRGREATER "5.13") + MESSAGE(STATUS "Qt version: ${Qt5Widgets_VERSION} DISABLE compile without deprecated methods. bug QTBUG-74665") +else() + add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000) +endif() ########### CMake Config Files ########### diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/autotest/grantleethemetest.cpp new/grantleetheme-19.04.0/autotest/grantleethemetest.cpp --- old/grantleetheme-18.12.3/autotest/grantleethemetest.cpp 2019-02-08 07:53:31.000000000 +0100 +++ new/grantleetheme-19.04.0/autotest/grantleethemetest.cpp 2019-04-05 21:10:56.000000000 +0200 @@ -1,5 +1,5 @@ /* - Copyright (c) 2014-2018 Montel Laurent <[email protected]> + Copyright (c) 2014-2019 Montel Laurent <[email protected]> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/autotest/grantleethemetest.h new/grantleetheme-19.04.0/autotest/grantleethemetest.h --- old/grantleetheme-18.12.3/autotest/grantleethemetest.h 2019-02-08 07:53:31.000000000 +0100 +++ new/grantleetheme-19.04.0/autotest/grantleethemetest.h 2019-04-05 21:10:56.000000000 +0200 @@ -1,5 +1,5 @@ /* - Copyright (c) 2014-2018 Montel Laurent <[email protected]> + Copyright (c) 2014-2019 Montel Laurent <[email protected]> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/ar/libgrantleetheme.po new/grantleetheme-19.04.0/po/ar/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/ar/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/ar/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: ٢٠١٦-٠٩-١٦ ٢٠:٣٠+0300\n" "Last-Translator: Safa Alfulaij <[email protected]>\n" "Language-Team: Arabic <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/bg/libgrantleetheme.po new/grantleetheme-19.04.0/po/bg/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/bg/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/bg/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2013-08-05 12:13+0300\n" "Last-Translator: Yasen Pramatarov <[email protected]>\n" "Language-Team: Bulgarian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/bs/libgrantleetheme.po new/grantleetheme-19.04.0/po/bs/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/bs/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/bs/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: grantle\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2013-10-19 10:52+0000\n" "Last-Translator: Samir Ribić <Unknown>\n" "Language-Team: bosanski <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/ca/libgrantleetheme.po new/grantleetheme-19.04.0/po/ca/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/ca/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/ca/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: libgrantleetheme\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2017-04-19 14:22+0100\n" "Last-Translator: Antoni Bella Pérez <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/ca@valencia/libgrantleetheme.po new/grantleetheme-19.04.0/po/ca@valencia/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/ca@valencia/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/ca@valencia/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: libgrantleetheme\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2017-04-19 14:22+0100\n" "Last-Translator: Antoni Bella Pérez <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/cs/libgrantleetheme.po new/grantleetheme-19.04.0/po/cs/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/cs/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/cs/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2017-04-25 14:47+0100\n" "Last-Translator: Vít Pelčák <[email protected]>\n" "Language-Team: Czech <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/da/libgrantleetheme.po new/grantleetheme-19.04.0/po/da/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/da/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/da/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2016-07-11 21:54+0100\n" "Last-Translator: Martin Schlander <[email protected]>\n" "Language-Team: Danish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/de/libgrantleetheme.po new/grantleetheme-19.04.0/po/de/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/de/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/de/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2017-07-17 20:06+0100\n" "Last-Translator: Burkhard Lück <[email protected]>\n" "Language-Team: German <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/el/libgrantleetheme.po new/grantleetheme-19.04.0/po/el/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/el/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/el/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2014-11-04 14:28+0200\n" "Last-Translator: Dimitris Kardarakos <[email protected]>\n" "Language-Team: Greek <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/en_GB/libgrantleetheme.po new/grantleetheme-19.04.0/po/en_GB/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/en_GB/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/en_GB/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2017-05-21 16:36+0000\n" "Last-Translator: Steve Allewell <[email protected]>\n" "Language-Team: English <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/es/libgrantleetheme.po new/grantleetheme-19.04.0/po/es/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/es/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/es/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2017-04-29 23:03+0100\n" "Last-Translator: Javier Vinal <[email protected]>\n" "Language-Team: Spanish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/et/libgrantleetheme.po new/grantleetheme-19.04.0/po/et/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/et/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/et/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2016-07-26 20:43+0300\n" "Last-Translator: Marek Laane <[email protected]>\n" "Language-Team: Estonian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/fi/libgrantleetheme.po new/grantleetheme-19.04.0/po/fi/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/fi/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/fi/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2018-08-15 13:46+0200\n" "Last-Translator: Tommi Nieminen <[email protected]>\n" "Language-Team: Finnish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/fr/libgrantleetheme.po new/grantleetheme-19.04.0/po/fr/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/fr/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/fr/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2017-06-12 22:27+0100\n" "Last-Translator: Vincent Pinon <[email protected]>\n" "Language-Team: French <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/gl/libgrantleetheme.po new/grantleetheme-19.04.0/po/gl/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/gl/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/gl/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2018-04-22 10:53+0100\n" "Last-Translator: Adrian Chaves <[email protected]>\n" "Language-Team: Galician <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/hu/libgrantleetheme.po new/grantleetheme-19.04.0/po/hu/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/hu/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/hu/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2013-07-30 18:19+0200\n" "Last-Translator: Balázs Úr <[email protected]>\n" "Language-Team: Hungarian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/ia/libgrantleetheme.po new/grantleetheme-19.04.0/po/ia/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/ia/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/ia/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2013-10-22 12:31+0200\n" "Last-Translator: G.Sora <[email protected]>\n" "Language-Team: Interlingua <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/it/libgrantleetheme.po new/grantleetheme-19.04.0/po/it/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/it/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/it/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: libgrantleetheme\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2017-04-22 22:18+0100\n" "Last-Translator: Luigi Toscano <[email protected]>\n" "Language-Team: Italian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/ja/libgrantleetheme.po new/grantleetheme-19.04.0/po/ja/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/ja/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/ja/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: libgrantleetheme\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2013-08-19 00:13-0700\n" "Last-Translator: Japanese KDE translation team <[email protected]>\n" "Language-Team: Japanese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/kk/libgrantleetheme.po new/grantleetheme-19.04.0/po/kk/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/kk/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/kk/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2013-09-17 03:57+0600\n" "Last-Translator: Sairan Kikkarin <[email protected]>\n" "Language-Team: Kazakh <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/ko/libgrantleetheme.po new/grantleetheme-19.04.0/po/ko/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/ko/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/ko/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2017-12-03 22:14+0100\n" "Last-Translator: Shinjo Park <[email protected]>\n" "Language-Team: Korean <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/lt/libgrantleetheme.po new/grantleetheme-19.04.0/po/lt/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/lt/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/lt/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: l 10n\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2013-09-04 01:41+0000\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/nb/libgrantleetheme.po new/grantleetheme-19.04.0/po/nb/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/nb/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/nb/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2013-10-01 23:22+0200\n" "Last-Translator: Bjørn Steensrud <[email protected]>\n" "Language-Team: Norwegian Bokmål <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/nds/libgrantleetheme.po new/grantleetheme-19.04.0/po/nds/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/nds/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/nds/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2014-03-13 00:47+0100\n" "Last-Translator: Sönke Dibbern <[email protected]>\n" "Language-Team: Low Saxon <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/nl/libgrantleetheme.po new/grantleetheme-19.04.0/po/nl/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/nl/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/nl/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2017-04-19 10:37+0100\n" "Last-Translator: Freek de Kruijf <[email protected]>\n" "Language-Team: Dutch <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/pl/libgrantleetheme.po new/grantleetheme-19.04.0/po/pl/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/pl/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/pl/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2017-04-22 07:26+0100\n" "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n" "Language-Team: Polish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/pt/libgrantleetheme.po new/grantleetheme-19.04.0/po/pt/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/pt/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/pt/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: libgrantleetheme\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2017-04-19 10:22+0100\n" "Last-Translator: José Nuno Coelho Pires <[email protected]>\n" "Language-Team: Portuguese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/pt_BR/libgrantleetheme.po new/grantleetheme-19.04.0/po/pt_BR/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/pt_BR/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/pt_BR/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libgrantleetheme\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2018-08-04 23:26-0300\n" "Last-Translator: André Marcelo Alvarenga <[email protected]>\n" "Language-Team: Brazilian Portuguese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/ro/libgrantleetheme.po new/grantleetheme-19.04.0/po/ro/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/ro/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/ro/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2014-08-18 09:42+0300\n" "Last-Translator: Sergiu Bivol <[email protected]>\n" "Language-Team: Romanian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/ru/libgrantleetheme.po new/grantleetheme-19.04.0/po/ru/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/ru/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/ru/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2018-10-02 20:54+0300\n" "Last-Translator: Alexander Yavorsky <[email protected]>\n" "Language-Team: Russian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/sk/libgrantleetheme.po new/grantleetheme-19.04.0/po/sk/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/sk/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/sk/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: libgrantleetheme\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2017-04-26 21:17+0100\n" "Last-Translator: Roman Paholik <[email protected]>\n" "Language-Team: Slovak <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/sl/libgrantleetheme.po new/grantleetheme-19.04.0/po/sl/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/sl/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/sl/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2017-07-16 11:58+0100\n" "Last-Translator: Andrej Mernik <[email protected]>\n" "Language-Team: Slovenian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/sr/libgrantleetheme.po new/grantleetheme-19.04.0/po/sr/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/sr/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/sr/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: libgrantleetheme\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2017-05-07 21:01+0200\n" "Last-Translator: Chusslove Illich <[email protected]>\n" "Language-Team: Serbian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/sv/libgrantleetheme.po new/grantleetheme-19.04.0/po/sv/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/sv/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/sv/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2017-04-19 19:37+0100\n" "Last-Translator: Stefan Asserhäll <[email protected]>\n" "Language-Team: Swedish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/tr/libgrantleetheme.po new/grantleetheme-19.04.0/po/tr/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/tr/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/tr/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdepim-kde4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2017-06-05 11:52+0000\n" "Last-Translator: Kaan <[email protected]>\n" "Language-Team: Turkish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/ug/libgrantleetheme.po new/grantleetheme-19.04.0/po/ug/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/ug/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/ug/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libgrantleetheme\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2013-09-08 07:05+0900\n" "Last-Translator: Gheyret Kenji <[email protected]>\n" "Language-Team: Uyghur <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/uk/libgrantleetheme.po new/grantleetheme-19.04.0/po/uk/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/uk/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/uk/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: libgrantleetheme\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" "PO-Revision-Date: 2017-04-19 08:51+0300\n" "Last-Translator: Yuri Chornoivan <[email protected]>\n" "Language-Team: Ukrainian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/zh_CN/libgrantleetheme.po new/grantleetheme-19.04.0/po/zh_CN/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/zh_CN/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/zh_CN/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -6,8 +6,8 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" -"PO-Revision-Date: 2019-02-20 23:29\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" +"PO-Revision-Date: 2019-04-09 18:52\n" "Last-Translator: guoyunhe <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/po/zh_TW/libgrantleetheme.po new/grantleetheme-19.04.0/po/zh_TW/libgrantleetheme.po --- old/grantleetheme-18.12.3/po/zh_TW/libgrantleetheme.po 2019-03-05 01:26:17.000000000 +0100 +++ new/grantleetheme-19.04.0/po/zh_TW/libgrantleetheme.po 2019-04-12 02:16:19.000000000 +0200 @@ -2,47 +2,48 @@ # This file is distributed under the same license as the PACKAGE package. # # Franklin Weng <franklin at goodhorse dot idv dot tw>, 2013. +# pan93412 <[email protected]>, 2019. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:57+0100\n" -"PO-Revision-Date: 2013-11-01 13:03+0800\n" -"Last-Translator: Franklin Weng <franklin at goodhorse dot idv dot tw>\n" -"Language-Team: Chinese Traditional <[email protected]>\n" +"POT-Creation-Date: 2018-10-20 03:52+0200\n" +"PO-Revision-Date: 2019-03-22 00:42+0800\n" +"Last-Translator: pan93412 <[email protected]>\n" +"Language-Team: Chinese <[email protected]>\n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 18.12.3\n" #: grantleetheme.cpp:99 #, kde-format msgid "Template" -msgstr "" +msgstr "模板" #: grantleetheme.cpp:99 #, kde-format msgid "Error message" -msgstr "" +msgstr "錯誤訊息" #: grantleetheme.cpp:107 #, kde-format msgid "(null template)" -msgstr "" +msgstr "(空模板)" #: grantleetheme.cpp:215 #, kde-format msgid "Template parsing error" -msgstr "" +msgstr "解析模板時發生錯誤" #: grantleetheme.cpp:221 #, kde-format msgid "Template rendering error" -msgstr "" +msgstr "繪製模板時發生錯誤" #: grantleethememanager.cpp:56 #, kde-format msgid "Download New Themes..." -msgstr "下載新主題..." +msgstr "下載新主題…" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/src/grantleetheme.cpp new/grantleetheme-19.04.0/src/grantleetheme.cpp --- old/grantleetheme-18.12.3/src/grantleetheme.cpp 2019-02-08 07:53:31.000000000 +0100 +++ new/grantleetheme-19.04.0/src/grantleetheme.cpp 2019-04-05 21:10:56.000000000 +0200 @@ -1,5 +1,5 @@ /* - Copyright (c) 2013-2018 Montel Laurent <[email protected]> + Copyright (c) 2013-2019 Montel Laurent <[email protected]> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/src/grantleetheme.h new/grantleetheme-19.04.0/src/grantleetheme.h --- old/grantleetheme-18.12.3/src/grantleetheme.h 2019-02-08 07:53:31.000000000 +0100 +++ new/grantleetheme-19.04.0/src/grantleetheme.h 2019-04-05 21:10:56.000000000 +0200 @@ -1,5 +1,5 @@ /* - Copyright (c) 2013-2018 Montel Laurent <[email protected]> + Copyright (c) 2013-2019 Montel Laurent <[email protected]> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/src/grantleetheme_p.h new/grantleetheme-19.04.0/src/grantleetheme_p.h --- old/grantleetheme-18.12.3/src/grantleetheme_p.h 2019-02-08 07:53:31.000000000 +0100 +++ new/grantleetheme-19.04.0/src/grantleetheme_p.h 2019-04-05 21:10:56.000000000 +0200 @@ -1,5 +1,5 @@ /* - Copyright (c) 2013-2018 Montel Laurent <[email protected]> + Copyright (c) 2013-2019 Montel Laurent <[email protected]> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/src/grantleethememanager.cpp new/grantleetheme-19.04.0/src/grantleethememanager.cpp --- old/grantleetheme-18.12.3/src/grantleethememanager.cpp 2019-02-08 07:53:31.000000000 +0100 +++ new/grantleetheme-19.04.0/src/grantleethememanager.cpp 2019-04-05 21:10:56.000000000 +0200 @@ -1,5 +1,5 @@ /* - Copyright (c) 2013-2018 Montel Laurent <[email protected]> + Copyright (c) 2013-2019 Montel Laurent <[email protected]> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/src/grantleethememanager.h new/grantleetheme-19.04.0/src/grantleethememanager.h --- old/grantleetheme-18.12.3/src/grantleethememanager.h 2019-02-08 07:53:31.000000000 +0100 +++ new/grantleetheme-19.04.0/src/grantleethememanager.h 2019-04-05 21:10:56.000000000 +0200 @@ -1,5 +1,5 @@ /* - Copyright (c) 2013-2018 Montel Laurent <[email protected]> + Copyright (c) 2013-2019 Montel Laurent <[email protected]> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/src/qtresourcetemplateloader.cpp new/grantleetheme-19.04.0/src/qtresourcetemplateloader.cpp --- old/grantleetheme-18.12.3/src/qtresourcetemplateloader.cpp 2019-02-08 07:53:31.000000000 +0100 +++ new/grantleetheme-19.04.0/src/qtresourcetemplateloader.cpp 2019-04-05 21:10:56.000000000 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016-2018 Laurent Montel <[email protected]> + * Copyright (C) 2016-2019 Laurent Montel <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/grantleetheme-18.12.3/src/qtresourcetemplateloader.h new/grantleetheme-19.04.0/src/qtresourcetemplateloader.h --- old/grantleetheme-18.12.3/src/qtresourcetemplateloader.h 2019-02-08 07:53:31.000000000 +0100 +++ new/grantleetheme-19.04.0/src/qtresourcetemplateloader.h 2019-04-05 21:10:56.000000000 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016-2018 Laurent Montel <[email protected]> + * Copyright (C) 2016-2019 Laurent Montel <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public
