Hello community,

here is the log from the commit of package milou5 for openSUSE:Factory checked 
in at 2020-06-08 23:54:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/milou5 (Old)
 and      /work/SRC/openSUSE:Factory/.milou5.new.3606 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "milou5"

Mon Jun  8 23:54:26 2020 rev:99 rq:812324 version:5.19.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/milou5/milou5.changes    2020-05-07 
15:10:28.292368653 +0200
+++ /work/SRC/openSUSE:Factory/.milou5.new.3606/milou5.changes  2020-06-08 
23:56:57.763757725 +0200
@@ -1,0 +2,22 @@
+Thu Jun  4 13:27:13 UTC 2020 - Fabian Vogt <fab...@ritter-vogt.de>
+
+- Update to 5.19.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.19.0.php
+- No code changes since 5.18.90
+
+-------------------------------------------------------------------
+Thu May 14 14:33:05 UTC 2020 - Fabian Vogt <fab...@ritter-vogt.de>
+
+- Update to 5.18.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.90.php
+- Changes since 5.18.5:
+  * Remove too strict Qt/KF5 deprecation rule
+  * bump to require Qt 5.14
+  * Port deprecated method
+  * Fix minor EBN issues (http -> https)
+
+-------------------------------------------------------------------

Old:
----
  milou-5.18.5.tar.xz
  milou-5.18.5.tar.xz.sig

New:
----
  milou-5.19.0.tar.xz
  milou-5.19.0.tar.xz.sig

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

Other differences:
------------------
++++++ milou5.spec ++++++
--- /var/tmp/diff_new_pack.JLcIIy/_old  2020-06-08 23:56:58.639760427 +0200
+++ /var/tmp/diff_new_pack.JLcIIy/_new  2020-06-08 23:56:58.643760439 +0200
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:           milou5
-Version:        5.18.5
+Version:        5.19.0
 Release:        0
 Summary:        Dedicated search application built on top of Baloo
 License:        GPL-2.0-or-later AND LGPL-2.1-or-later
 Group:          System/GUI/KDE
 URL:            https://projects.kde.org/milou
-Source:         
https://download.kde.org/stable/plasma/%{version}/milou-%{version}.tar.xz
+Source:         milou-%{version}.tar.xz
 %if %{with lang}
-Source1:        
https://download.kde.org/stable/plasma/%{version}/milou-%{version}.tar.xz.sig
+Source1:        milou-%{version}.tar.xz.sig
 Source2:        plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= 1.2.0

++++++ milou-5.18.5.tar.xz -> milou-5.19.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.18.5/CMakeLists.txt 
new/milou-5.19.0/CMakeLists.txt
--- old/milou-5.18.5/CMakeLists.txt     2020-05-05 16:49:16.000000000 +0200
+++ new/milou-5.19.0/CMakeLists.txt     2020-06-04 13:20:46.000000000 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(Milou)
-set(PROJECT_VERSION "5.18.5")
+set(PROJECT_VERSION "5.19.0")
 set(PROJECT_VERSION_MAJOR 5)
 
-set(QT_MIN_VERSION "5.12.0")
+set(QT_MIN_VERSION "5.14.0")
 set(KF5_MIN_VERSION "5.66.0")
 
 find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE)
@@ -20,9 +20,12 @@
 include(ECMAddTests)
 include(GenerateExportHeader)
 include(KDEClangFormat)
+if (EXISTS "${CMAKE_SOURCE_DIR}/.git")
+   add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000)
+endif()
 # find_package(KdepimLibs)
 # set_package_properties(KdepimLibs PROPERTIES DESCRIPTION "KDE PIM Libraries"
-#                        URL "http://www.kde.org";
+#                        URL "https://www.kde.org";
 #                        TYPE REQUIRED PURPOSE "Support for Email previews")
 
 add_subdirectory(lib)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.18.5/lib/previewplugin.cpp 
new/milou-5.19.0/lib/previewplugin.cpp
--- old/milou-5.18.5/lib/previewplugin.cpp      2020-05-05 16:48:27.000000000 
+0200
+++ new/milou-5.19.0/lib/previewplugin.cpp      2020-06-04 13:20:05.000000000 
+0200
@@ -82,7 +82,11 @@
 void PreviewPlugin::highlight(const QTextDocument* doc) const
 {
     QTextCursor cursor;
+#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
     Q_FOREACH (const QString& text, highlight().split(QLatin1Char(' '), 
QString::SkipEmptyParts)) {
+#else
+    Q_FOREACH (const QString& text, highlight().split(QLatin1Char(' '), 
Qt::SkipEmptyParts)) {
+#endif
         while (1) {
             cursor = doc->find(text, cursor);
             if (cursor.isNull())
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.18.5/lib/resultsmodel.cpp 
new/milou-5.19.0/lib/resultsmodel.cpp
--- old/milou-5.18.5/lib/resultsmodel.cpp       2020-05-05 16:48:27.000000000 
+0200
+++ new/milou-5.19.0/lib/resultsmodel.cpp       2020-06-04 13:20:05.000000000 
+0200
@@ -52,7 +52,11 @@
     ~SortProxyModel() override = default;
 
     void setQueryString(const QString &queryString) {
+#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
         const QStringList words = queryString.split(QLatin1Char(' '), 
QString::SkipEmptyParts);
+#else
+        const QStringList words = queryString.split(QLatin1Char(' '), 
Qt::SkipEmptyParts);
+#endif
         if (m_words != words) {
             m_words = words;
             invalidate();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.18.5/lib/sourcesmodel.cpp 
new/milou-5.19.0/lib/sourcesmodel.cpp
--- old/milou-5.18.5/lib/sourcesmodel.cpp       2020-05-05 16:48:27.000000000 
+0200
+++ new/milou-5.19.0/lib/sourcesmodel.cpp       2020-06-04 13:20:05.000000000 
+0200
@@ -272,7 +272,11 @@
     // that do not
     // The rest are given the same preference as given by the runners.
     const QString simplifiedQuery = m_queryString.simplified();
+#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
     const auto words = simplifiedQuery.splitRef(QLatin1Char(' '), 
QString::SkipEmptyParts);
+#else
+    const auto words = simplifiedQuery.splitRef(QLatin1Char(' '), 
Qt::SkipEmptyParts);
+#endif
 
     QSet<QString> higherTypes;
     foreach (const QString &type, m_types) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.18.5/lib/test/modeltest.cpp 
new/milou-5.19.0/lib/test/modeltest.cpp
--- old/milou-5.18.5/lib/test/modeltest.cpp     2020-05-05 16:48:27.000000000 
+0200
+++ new/milou-5.19.0/lib/test/modeltest.cpp     2020-06-04 13:20:05.000000000 
+0200
@@ -11,8 +11,8 @@
 ** accordance with the commercial license agreement provided with the
 ** Software or, alternatively, in accordance with the terms contained in
 ** a written agreement between you and Digia.  For licensing terms and
-** conditions see http://qt.digia.com/licensing.  For further information
-** use the contact form at http://qt.digia.com/contact-us.
+** conditions see https://qt.io/licensing.  For further information
+** use the contact form at https://qt.io/contact-us.
 **
 ** GNU Lesser General Public License Usage
 ** Alternatively, this file may be used under the terms of the GNU Lesser
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.18.5/lib/test/modeltest.h 
new/milou-5.19.0/lib/test/modeltest.h
--- old/milou-5.18.5/lib/test/modeltest.h       2020-05-05 16:48:27.000000000 
+0200
+++ new/milou-5.19.0/lib/test/modeltest.h       2020-06-04 13:20:05.000000000 
+0200
@@ -11,8 +11,8 @@
 ** accordance with the commercial license agreement provided with the
 ** Software or, alternatively, in accordance with the terms contained in
 ** a written agreement between you and Digia.  For licensing terms and
-** conditions see http://qt.digia.com/licensing.  For further information
-** use the contact form at http://qt.digia.com/contact-us.
+** conditions see https://qt.io/licensing.  For further information
+** use the contact form at https://qt.io/contact-us.
 **
 ** GNU Lesser General Public License Usage
 ** Alternatively, this file may be used under the terms of the GNU Lesser
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.18.5/plasmoid/package/metadata.desktop 
new/milou-5.19.0/plasmoid/package/metadata.desktop
--- old/milou-5.18.5/plasmoid/package/metadata.desktop  2020-05-05 
16:48:27.000000000 +0200
+++ new/milou-5.19.0/plasmoid/package/metadata.desktop  2020-06-04 
13:20:05.000000000 +0200
@@ -100,7 +100,7 @@
 X-KDE-PluginInfo-Author=Vishesh Handa
 X-KDE-PluginInfo-Email=m...@vhanda.in
 X-KDE-PluginInfo-Version=0.1
-X-KDE-PluginInfo-Website=http://kde.org
+X-KDE-PluginInfo-Website=https://kde.org
 X-KDE-PluginInfo-License=LGPL 2.1+
 
 X-KDE-PluginInfo-Depends=
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.18.5/po/ia/milou.po 
new/milou-5.19.0/po/ia/milou.po
--- old/milou-5.18.5/po/ia/milou.po     2020-05-05 16:48:53.000000000 +0200
+++ new/milou-5.19.0/po/ia/milou.po     2020-06-04 13:20:29.000000000 +0200
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Giovanni Sora <g.s...@tiscali.it>, 2014.
+# Giovanni Sora <g.s...@tiscali.it>, 2014, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-10-30 03:38+0100\n"
-"PO-Revision-Date: 2014-07-25 14:46+0200\n"
+"PO-Revision-Date: 2020-02-16 21:33+0100\n"
 "Last-Translator: Giovanni Sora <g.s...@tiscali.it>\n"
 "Language-Team: Interlingua <kde-i18n-...@kde.org>\n"
 "Language: ia\n"
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 
 #: previews/audioplugin.cpp:59
 #, kde-format
@@ -59,6 +59,9 @@
 "Attachments:\n"
 "\n"
 msgstr ""
+"\n"
+"Attachamentos:\n"
+"\n"
 
 #: previews/fileplugin.cpp:54
 #, kde-format
@@ -73,16 +76,16 @@
 #: qml/ResultDelegate.qml:56
 #, kde-format
 msgid "%1, in category %2"
-msgstr ""
+msgstr "%1, in categoria %2"
 
 #: qml/ResultDelegate.qml:58
 #, kde-format
 msgid "in category %1"
-msgstr ""
+msgstr "in categoria %1"
 
 #: qml/ResultDelegate.qml:259
 #, kde-format
 msgctxt ""
 "placeholder is action e.g. run in terminal, in parenthesis is shortcut"
 msgid "%1 (Shift+Return)"
-msgstr ""
\ No newline at end of file
+msgstr "%1 (Shift+Return)"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.18.5/po/sl/plasma_applet_org.kde.milou.po 
new/milou-5.19.0/po/sl/plasma_applet_org.kde.milou.po
--- old/milou-5.18.5/po/sl/plasma_applet_org.kde.milou.po       2020-05-05 
16:49:06.000000000 +0200
+++ new/milou-5.19.0/po/sl/plasma_applet_org.kde.milou.po       2020-06-04 
13:20:40.000000000 +0200
@@ -2,21 +2,23 @@
 # This file is distributed under the same license as the PACKAGE package.
 #
 # Andrej Mernik <andr...@ubuntu.si>, 2014.
+# Matjaž Jeran <matjaz.je...@amis.net>, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 03:25+0200\n"
-"PO-Revision-Date: 2014-07-23 10:21+0200\n"
-"Last-Translator: Andrej Mernik <andr...@ubuntu.si>\n"
+"PO-Revision-Date: 2020-01-23 16:06+0100\n"
+"Last-Translator: Matjaž Jeran <matjaz.je...@amis.net>\n"
 "Language-Team: Slovenian <lugos-...@lugos.si>\n"
 "Language: sl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Translator: Andrej Mernik <andr...@ubuntu.si>\n"
 "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n"
 "%100==4 ? 3 : 0);\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Poedit 2.2.4\n"
 
 #: applet.cpp:69
 #, kde-format
@@ -34,7 +36,6 @@
 msgstr "Povlecite kategorije, da spremenite vrstni red prikaza rezultatov"
 
 #: package/contents/ui/SearchField.qml:43
-#, fuzzy, kde-format
-#| msgid "Search"
+#, kde-format
 msgid "Search..."
-msgstr "Poišči"
\ No newline at end of file
+msgstr "Poišči..."
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.18.5/po/zh_CN/milou.po 
new/milou-5.19.0/po/zh_CN/milou.po
--- old/milou-5.18.5/po/zh_CN/milou.po  2020-05-05 16:49:14.000000000 +0200
+++ new/milou-5.19.0/po/zh_CN/milou.po  2020-06-04 13:20:45.000000000 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-10-30 03:38+0100\n"
-"PO-Revision-Date: 2020-03-25 19:56\n"
+"PO-Revision-Date: 2020-05-09 13:50\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
@@ -18,7 +18,7 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Crowdin-Project: kdeorg\n"
 "X-Crowdin-Language: zh-CN\n"
-"X-Crowdin-File: /kf5-stable/messages/kde-workspace/milou.pot\n"
+"X-Crowdin-File: /kf5-trunk/messages/kde-workspace/milou.pot\n"
 
 #: previews/audioplugin.cpp:59
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.18.5/po/zh_CN/plasma_applet_org.kde.milou.po 
new/milou-5.19.0/po/zh_CN/plasma_applet_org.kde.milou.po
--- old/milou-5.18.5/po/zh_CN/plasma_applet_org.kde.milou.po    2020-05-05 
16:49:14.000000000 +0200
+++ new/milou-5.19.0/po/zh_CN/plasma_applet_org.kde.milou.po    2020-06-04 
13:20:45.000000000 +0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 03:25+0200\n"
-"PO-Revision-Date: 2020-03-25 19:56\n"
+"PO-Revision-Date: 2020-05-09 13:50\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
@@ -17,7 +17,7 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Crowdin-Project: kdeorg\n"
 "X-Crowdin-Language: zh-CN\n"
-"X-Crowdin-File: /kf5-stable/messages/kde-workspace/plasma_applet_org.kde."
+"X-Crowdin-File: /kf5-trunk/messages/kde-workspace/plasma_applet_org.kde."
 "milou.pot\n"
 
 #: applet.cpp:69



Reply via email to