Hello community, here is the log from the commit of package filelight for openSUSE:Factory checked in at 2019-08-19 21:28:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/filelight (Old) and /work/SRC/openSUSE:Factory/.filelight.new.22127 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "filelight" Mon Aug 19 21:28:44 2019 rev:99 rq:723584 version:19.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/filelight/filelight.changes 2019-07-17 13:15:22.671815670 +0200 +++ /work/SRC/openSUSE:Factory/.filelight.new.22127/filelight.changes 2019-08-19 21:28:54.472627773 +0200 @@ -1,0 +2,34 @@ +Fri Aug 9 08:30:10 UTC 2019 - Christophe Giboudeaux <[email protected]> + +- 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:47 UTC 2019 - [email protected] + +- Update to 19.07.90 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-19.08-rc.php +- No code changes since 19.07.80 + +------------------------------------------------------------------- +Tue Jul 23 11:58:55 UTC 2019 - [email protected] + +- 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: + * CMake: fix version check and whitespace damage + * Install in new logging directory when we use kf5 5.59.0 + * Fix forward declaration + * It's time to increase version + * Fix cmake variable name + * It compiles fine without foreach + * Add gitignore + +------------------------------------------------------------------- Old: ---- filelight-19.04.3.tar.xz New: ---- applications.keyring filelight-19.08.0.tar.xz filelight-19.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ filelight.spec ++++++ --- /var/tmp/diff_new_pack.kqsCvv/_old 2019-08-19 21:28:55.296627606 +0200 +++ /var/tmp/diff_new_pack.kqsCvv/_new 2019-08-19 21:28:55.300627605 +0200 @@ -21,13 +21,17 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: filelight -Version: 19.04.3 +Version: 19.08.0 Release: 0 Summary: Graphical disk usage viewer License: GPL-2.0-only OR GPL-3.0-only Group: System/GUI/KDE -URL: http://www.kde.org -Source0: filelight-%{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: kconfig-devel BuildRequires: kcoreaddons-devel ++++++ filelight-19.04.3.tar.xz -> filelight-19.08.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/.gitignore new/filelight-19.08.0/.gitignore --- old/filelight-19.04.3/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/filelight-19.08.0/.gitignore 2019-08-09 02:02:53.000000000 +0200 @@ -0,0 +1,21 @@ +# Ignore the following files +*~ +*.[oa] +*.diff +*.kate-swp +*.kdev4 +.kdev_include_paths +*.kdevelop.pcs +*.moc +*.moc.cpp +*.orig +*.user +.*.swp +.swp.* +Doxyfile +Makefile +avail +random_seed +/build*/ +CMakeLists.txt.user* +*.unc-backup* diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/CMakeLists.txt new/filelight-19.08.0/CMakeLists.txt --- old/filelight-19.04.3/CMakeLists.txt 2019-07-09 02:09:42.000000000 +0200 +++ new/filelight-19.08.0/CMakeLists.txt 2019-08-09 02:21:22.000000000 +0200 @@ -21,18 +21,18 @@ # KDE Application Version, managed by release script set(KDE_APPLICATIONS_VERSION_MAJOR "19") -set(KDE_APPLICATIONS_VERSION_MINOR "04") -set(KDE_APPLICATIONS_VERSION_MICRO "3") +set(KDE_APPLICATIONS_VERSION_MINOR "08") +set(KDE_APPLICATIONS_VERSION_MICRO "0") set(KDE_APPLICATIONS_VERSION "${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}") -set(SPECTACLE_VERSION ${KDE_APPLICATIONS_VERSION}) +set(FILELIGHT_VERSION ${KDE_APPLICATIONS_VERSION}) # minimum requirements -cmake_minimum_required (VERSION 3.0 FATAL_ERROR) +cmake_minimum_required (VERSION 3.5 FATAL_ERROR) # Spectacle project -project(Filelight VERSION ${SPECTACLE_VERSION}) +project(Filelight VERSION ${FILELIGHT_VERSION}) set(PROJECT_VERSION ${KDE_APPLICATIONS_VERSION}) -set(KF5_MIN_VERSION "5.30.0") +set(KF5_MIN_VERSION "5.46.0") find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) @@ -58,6 +58,10 @@ find_package(KF5DocTools) # Optional, not needed on Windows for example. add_definitions(-DTRANSLATION_DOMAIN=\"filelight\") +if (KF5Config_VERSION VERSION_GREATER "5.56.0") + add_definitions(-DQT_NO_FOREACH) + MESSAGE(STATUS "compile without foreach") +endif() include_directories(src) @@ -67,7 +71,11 @@ add_subdirectory(doc) endif() -install( FILES filelight.categories DESTINATION ${KDE_INSTALL_CONFDIR} ) +if (ECM_VERSION VERSION_GREATER "5.58.0") + install(FILES filelight.categories DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR}) +else() + install(FILES filelight.categories DESTINATION ${KDE_INSTALL_CONFDIR}) +endif() feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES) ki18n_install(po) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/bg/filelight.po new/filelight-19.08.0/po/bg/filelight.po --- old/filelight-19.04.3/po/bg/filelight.po 2019-07-09 02:09:40.000000000 +0200 +++ new/filelight-19.08.0/po/bg/filelight.po 2019-08-09 02:21:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2011-07-15 21:34+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/filelight-19.04.3/po/bs/filelight.po new/filelight-19.08.0/po/bs/filelight.po --- old/filelight-19.04.3/po/bs/filelight.po 2019-07-09 02:09:40.000000000 +0200 +++ new/filelight-19.08.0/po/bs/filelight.po 2019-08-09 02:21:19.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdeutils\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2014-10-20 20:14+0000\n" "Last-Translator: Vedran Ljubovic <[email protected]>\n" "Language-Team: Bosnian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/ca/filelight.po new/filelight-19.08.0/po/ca/filelight.po --- old/filelight-19.04.3/po/ca/filelight.po 2019-07-09 02:09:40.000000000 +0200 +++ new/filelight-19.08.0/po/ca/filelight.po 2019-08-09 02:21:19.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-10-10 20:10+0100\n" "Last-Translator: Josep Ma. Ferrer <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/ca@valencia/filelight.po new/filelight-19.08.0/po/ca@valencia/filelight.po --- old/filelight-19.04.3/po/ca@valencia/filelight.po 2019-07-09 02:09:40.000000000 +0200 +++ new/filelight-19.08.0/po/ca@valencia/filelight.po 2019-08-09 02:21:19.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-10-10 20:10+0100\n" "Last-Translator: Josep Ma. Ferrer <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/cs/filelight.po new/filelight-19.08.0/po/cs/filelight.po --- old/filelight-19.04.3/po/cs/filelight.po 2019-07-09 02:09:40.000000000 +0200 +++ new/filelight-19.08.0/po/cs/filelight.po 2019-08-09 02:21:19.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:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-10-22 14:22+0100\n" "Last-Translator: Vit Pelcak <[email protected]>\n" "Language-Team: Czech <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/da/filelight.po new/filelight-19.08.0/po/da/filelight.po --- old/filelight-19.04.3/po/da/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/da/filelight.po 2019-08-09 02:21:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2017-11-06 15:30+0200\n" "Last-Translator: scootergrisen\n" "Language-Team: Danish\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/de/filelight.po new/filelight-19.08.0/po/de/filelight.po --- old/filelight-19.04.3/po/de/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/de/filelight.po 2019-08-09 02:21:20.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-10-16 06:11+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/filelight-19.04.3/po/el/filelight.po new/filelight-19.08.0/po/el/filelight.po --- old/filelight-19.04.3/po/el/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/el/filelight.po 2019-08-09 02:21:20.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-10-18 16:32+0300\n" "Last-Translator: Long Run <[email protected]>\n" "Language-Team: Greek <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/en_GB/filelight.po new/filelight-19.08.0/po/en_GB/filelight.po --- old/filelight-19.04.3/po/en_GB/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/en_GB/filelight.po 2019-08-09 02:21:20.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:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-10-27 18:04+0100\n" "Last-Translator: Steve Allewell <[email protected]>\n" "Language-Team: British English <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/eo/filelight.po new/filelight-19.08.0/po/eo/filelight.po --- old/filelight-19.04.3/po/eo/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/eo/filelight.po 2019-08-09 02:21:20.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2009-11-15 12:06+0100\n" "Last-Translator: Axel Rousseau <[email protected]>\n" "Language-Team: esperanto <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/es/docs/filelight/index.docbook new/filelight-19.08.0/po/es/docs/filelight/index.docbook --- old/filelight-19.04.3/po/es/docs/filelight/index.docbook 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/es/docs/filelight/index.docbook 2019-08-09 02:21:22.000000000 +0200 @@ -567,8 +567,8 @@ <para >Copyright del programa 2008-2013 Martin Sandsmark <email >[email protected]</email -></para> -&underGPL; </sect1> +></para +>&underGPL; </sect1> <sect1 id="Documentation"> <title >Documentación</title> @@ -584,8 +584,7 @@ >Traducido por Kira J. Fernández <email >[email protected]</email >. </para -> -&underFDL; </sect1> +> &underFDL; </sect1> </chapter> &documentation.index; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/es/filelight.po new/filelight-19.08.0/po/es/filelight.po --- old/filelight-19.04.3/po/es/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/es/filelight.po 2019-08-09 02:21:20.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-10-15 20:21+0100\n" "Last-Translator: Eloy Cuadra <[email protected]>\n" "Language-Team: Spanish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/et/filelight.po new/filelight-19.08.0/po/et/filelight.po --- old/filelight-19.04.3/po/et/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/et/filelight.po 2019-08-09 02:21:20.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2016-01-14 14:13+0200\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/filelight-19.04.3/po/eu/filelight.po new/filelight-19.08.0/po/eu/filelight.po --- old/filelight-19.04.3/po/eu/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/eu/filelight.po 2019-08-09 02:21:20.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2019-05-18 08:35+0100\n" "Last-Translator: Iñigo Salvador Azurmendi <[email protected]>\n" "Language-Team: Basque <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/fi/filelight.po new/filelight-19.08.0/po/fi/filelight.po --- old/filelight-19.04.3/po/fi/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/fi/filelight.po 2019-08-09 02:21:20.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-11-21 16:49+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/filelight-19.04.3/po/fr/filelight.po new/filelight-19.08.0/po/fr/filelight.po --- old/filelight-19.04.3/po/fr/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/fr/filelight.po 2019-08-09 02:21:20.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-10-12 13:34+0800\n" "Last-Translator: Simon Depiets <[email protected]>\n" "Language-Team: French <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/ga/filelight.po new/filelight-19.08.0/po/ga/filelight.po --- old/filelight-19.04.3/po/ga/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/ga/filelight.po 2019-08-09 02:21:20.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: filelight.po\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2009-02-19 07:06-0500\n" "Last-Translator: Kevin Scannell <[email protected]>\n" "Language-Team: Irish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/gl/filelight.po new/filelight-19.08.0/po/gl/filelight.po --- old/filelight-19.04.3/po/gl/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/gl/filelight.po 2019-08-09 02:21:20.000000000 +0200 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2019-03-03 20:01+0100\n" "Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n" "Language-Team: Galician <[email protected]>\n" @@ -21,10 +21,6 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 18.12.2\n" -"X-Environment: kde\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/filelight-19.04.3/po/hu/filelight.po new/filelight-19.08.0/po/hu/filelight.po --- old/filelight-19.04.3/po/hu/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/hu/filelight.po 2019-08-09 02:21:20.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:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2015-09-11 12:45+0200\n" "Last-Translator: Kristóf Kiszel <[email protected]>\n" "Language-Team: Hungarian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/ia/filelight.po new/filelight-19.08.0/po/ia/filelight.po --- old/filelight-19.04.3/po/ia/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/ia/filelight.po 2019-08-09 02:21:20.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:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-12-27 17:12+0100\n" "Last-Translator: giovanni <[email protected]>\n" "Language-Team: Interlingua <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/it/docs/filelight/index.docbook new/filelight-19.08.0/po/it/docs/filelight/index.docbook --- old/filelight-19.04.3/po/it/docs/filelight/index.docbook 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/it/docs/filelight/index.docbook 2019-08-09 02:21:22.000000000 +0200 @@ -569,8 +569,8 @@ <para >Copyright del programma 2008-2013 di Martin Sandsmark <email >[email protected]</email -></para> -&underGPL; </sect1> +></para +>&underGPL; </sect1> <sect1 id="Documentation"> <title >Documentazione</title> @@ -586,8 +586,7 @@ >Traduzione di Federico Zenith<email >[email protected]</email ></para -> -&underFDL; </sect1> +> &underFDL; </sect1> </chapter> &documentation.index; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/it/filelight.po new/filelight-19.08.0/po/it/filelight.po --- old/filelight-19.04.3/po/it/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/it/filelight.po 2019-08-09 02:21:20.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-10-14 12:08+0100\n" "Last-Translator: Paolo Zamponi <[email protected]>\n" "Language-Team: Italian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/ja/filelight.po new/filelight-19.08.0/po/ja/filelight.po --- old/filelight-19.04.3/po/ja/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/ja/filelight.po 2019-08-09 02:21:20.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2014-09-21 00:35-0700\n" "Last-Translator: Fumiaki Okushi <[email protected]>\n" "Language-Team: Japanese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/kk/filelight.po new/filelight-19.08.0/po/kk/filelight.po --- old/filelight-19.04.3/po/kk/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/kk/filelight.po 2019-08-09 02:21:21.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:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2013-06-27 03:35+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/filelight-19.04.3/po/ko/filelight.po new/filelight-19.08.0/po/ko/filelight.po --- old/filelight-19.04.3/po/ko/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/ko/filelight.po 2019-08-09 02:21:21.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:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2019-04-22 01:35+0200\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/filelight-19.04.3/po/lt/filelight.po new/filelight-19.08.0/po/lt/filelight.po --- old/filelight-19.04.3/po/lt/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/lt/filelight.po 2019-08-09 02:21:21.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2015-12-29 20:56+0200\n" "Last-Translator: Mindaugas Baranauskas <[email protected]>\n" "Language-Team: lt <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/mr/filelight.po new/filelight-19.08.0/po/mr/filelight.po --- old/filelight-19.04.3/po/mr/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/mr/filelight.po 2019-08-09 02:21:21.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:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2013-03-15 14:32+0530\n" "Last-Translator: Chetan Khona <[email protected]>\n" "Language-Team: Marathi <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/nb/filelight.po new/filelight-19.08.0/po/nb/filelight.po --- old/filelight-19.04.3/po/nb/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/nb/filelight.po 2019-08-09 02:21:21.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:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2013-01-19 20:23+0100\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/filelight-19.04.3/po/nds/filelight.po new/filelight-19.08.0/po/nds/filelight.po --- old/filelight-19.04.3/po/nds/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/nds/filelight.po 2019-08-09 02:21:21.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2014-02-20 11:39+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/filelight-19.04.3/po/nl/filelight.po new/filelight-19.08.0/po/nl/filelight.po --- old/filelight-19.04.3/po/nl/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/nl/filelight.po 2019-08-09 02:21:21.000000000 +0200 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-10-11 09:48+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/filelight-19.04.3/po/nn/filelight.po new/filelight-19.08.0/po/nn/filelight.po --- old/filelight-19.04.3/po/nn/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/nn/filelight.po 2019-08-09 02:21:21.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:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-10-13 15:36+0200\n" "Last-Translator: Karl Ove Hufthammer <[email protected]>\n" "Language-Team: Norwegian Nynorsk <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/pa/filelight.po new/filelight-19.08.0/po/pa/filelight.po --- old/filelight-19.04.3/po/pa/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/pa/filelight.po 2019-08-09 02:21:21.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:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2019-02-09 14:23-0800\n" "Last-Translator: A S Alam <[email protected]>\n" "Language-Team: Punjabi <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/pl/filelight.po new/filelight-19.08.0/po/pl/filelight.po --- old/filelight-19.04.3/po/pl/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/pl/filelight.po 2019-08-09 02:21:21.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:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-12-16 06:11+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/filelight-19.04.3/po/pt/filelight.po new/filelight-19.08.0/po/pt/filelight.po --- old/filelight-19.04.3/po/pt/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/pt/filelight.po 2019-08-09 02:21:21.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-10-10 09:17+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/filelight-19.04.3/po/pt_BR/filelight.po new/filelight-19.08.0/po/pt_BR/filelight.po --- old/filelight-19.04.3/po/pt_BR/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/pt_BR/filelight.po 2019-08-09 02:21:21.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-10-20 21:44-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/filelight-19.04.3/po/ro/filelight.po new/filelight-19.08.0/po/ro/filelight.po --- old/filelight-19.04.3/po/ro/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/ro/filelight.po 2019-08-09 02:21:21.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:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2013-10-27 11:35+0200\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/filelight-19.04.3/po/ru/filelight.po new/filelight-19.08.0/po/ru/filelight.po --- old/filelight-19.04.3/po/ru/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/ru/filelight.po 2019-08-09 02:21:21.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-11-25 14:15+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/filelight-19.04.3/po/sk/filelight.po new/filelight-19.08.0/po/sk/filelight.po --- old/filelight-19.04.3/po/sk/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/sk/filelight.po 2019-08-09 02:21:21.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2019-01-28 18:23+0100\n" "Last-Translator: Mthw <[email protected]>\n" "Language-Team: Slovak <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/sl/filelight.po new/filelight-19.08.0/po/sl/filelight.po --- old/filelight-19.04.3/po/sl/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/sl/filelight.po 2019-08-09 02:21:21.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:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2017-02-13 16:56+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/filelight-19.04.3/po/sv/filelight.po new/filelight-19.08.0/po/sv/filelight.po --- old/filelight-19.04.3/po/sv/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/sv/filelight.po 2019-08-09 02:21:21.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-10-10 17:50+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/filelight-19.04.3/po/tr/filelight.po new/filelight-19.08.0/po/tr/filelight.po --- old/filelight-19.04.3/po/tr/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/tr/filelight.po 2019-08-09 02:21:21.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kdeutils-kde4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2017-10-03 15:02+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/filelight-19.04.3/po/ug/filelight.po new/filelight-19.08.0/po/ug/filelight.po --- old/filelight-19.04.3/po/ug/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/ug/filelight.po 2019-08-09 02:21:21.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2013-09-08 07:05+0900\n" "Last-Translator: Gheyret Kenji <[email protected]>\n" "Language-Team: Uyghur Computer Science Association <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/po/uk/filelight.po new/filelight-19.08.0/po/uk/filelight.po --- old/filelight-19.04.3/po/uk/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/uk/filelight.po 2019-08-09 02:21:21.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-10-10 08:31+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/filelight-19.04.3/po/zh_CN/filelight.po new/filelight-19.08.0/po/zh_CN/filelight.po --- old/filelight-19.04.3/po/zh_CN/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/zh_CN/filelight.po 2019-08-09 02:21:21.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:41+0200\n" -"PO-Revision-Date: 2019-06-02 13:20\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" +"PO-Revision-Date: 2019-07-18 15:16\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/filelight-19.04.3/po/zh_TW/filelight.po new/filelight-19.08.0/po/zh_TW/filelight.po --- old/filelight-19.04.3/po/zh_TW/filelight.po 2019-07-09 02:09:41.000000000 +0200 +++ new/filelight-19.08.0/po/zh_TW/filelight.po 2019-08-09 02:21:21.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: filelight\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:41+0200\n" +"POT-Creation-Date: 2019-05-20 03:12+0200\n" "PO-Revision-Date: 2018-10-31 01:27+0800\n" "Last-Translator: pan93412 <[email protected]>\n" "Language-Team: Chinese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/src/localLister.cpp new/filelight-19.08.0/src/localLister.cpp --- old/filelight-19.04.3/src/localLister.cpp 2019-07-06 11:27:24.000000000 +0200 +++ new/filelight-19.08.0/src/localLister.cpp 2019-08-09 02:02:53.000000000 +0200 @@ -59,7 +59,7 @@ if (!Config::scanAcrossMounts) list += s_localMounts; if (!Config::scanRemoteMounts) list += s_remoteMounts; - foreach(const QString &ignorePath, list) { + for (const QString &ignorePath : qAsConst(list)) { if (ignorePath.startsWith(path)) { QString folderName = ignorePath; if (!folderName.endsWith(QLatin1Char('/'))) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/filelight-19.04.3/src/scan.h new/filelight-19.08.0/src/scan.h --- old/filelight-19.04.3/src/scan.h 2019-07-06 11:27:24.000000000 +0200 +++ new/filelight-19.08.0/src/scan.h 2019-08-09 02:02:53.000000000 +0200 @@ -27,7 +27,6 @@ #include <QMutex> #include <QList> -class QThread; class Folder; namespace Filelight
