Hello community,

here is the log from the commit of package milou5 for openSUSE:Factory checked 
in at 2019-06-27 16:21:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/milou5 (Old)
 and      /work/SRC/openSUSE:Factory/.milou5.new.4615 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "milou5"

Thu Jun 27 16:21:45 2019 rev:83 rq:711978 version:5.16.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/milou5/milou5.changes    2019-06-22 
11:19:08.641063176 +0200
+++ /work/SRC/openSUSE:Factory/.milou5.new.4615/milou5.changes  2019-06-27 
16:21:46.790201793 +0200
@@ -1,0 +2,12 @@
+Tue Jun 25 12:41:17 UTC 2019 - [email protected]
+
+- Update to 5.16.2
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.16.2.php
+- Changes since 5.16.1:
+  * Don't give up if no results arrive after 500ms (kde#389611)
+- Remove patches, now upstream:
+  * 0001-Don-t-give-up-if-no-results-arrive-after-500ms.patch
+
+-------------------------------------------------------------------

Old:
----
  0001-Don-t-give-up-if-no-results-arrive-after-500ms.patch
  milou-5.16.1.tar.xz
  milou-5.16.1.tar.xz.sig

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

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

Other differences:
------------------
++++++ milou5.spec ++++++
--- /var/tmp/diff_new_pack.pSLPNn/_old  2019-06-27 16:21:47.346202702 +0200
+++ /var/tmp/diff_new_pack.pSLPNn/_new  2019-06-27 16:21:47.346202702 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:           milou5
-Version:        5.16.1
+Version:        5.16.2
 Release:        0
 Summary:        Dedicated search application built on top of Baloo
 License:        GPL-2.0-or-later AND LGPL-2.1-or-later
@@ -29,8 +29,6 @@
 Source1:        
https://download.kde.org/stable/plasma/%{version}/milou-%{version}.tar.xz.sig
 Source2:        plasma.keyring
 %endif
-# PATCH-FIX-UPSTREAM (https://phabricator.kde.org/D21605)
-Patch1:         0001-Don-t-give-up-if-no-results-arrive-after-500ms.patch
 BuildRequires:  extra-cmake-modules >= 1.2.0
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem

++++++ milou-5.16.1.tar.xz -> milou-5.16.2.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.16.1/CMakeLists.txt 
new/milou-5.16.2/CMakeLists.txt
--- old/milou-5.16.1/CMakeLists.txt     2019-06-18 12:00:42.000000000 +0200
+++ new/milou-5.16.2/CMakeLists.txt     2019-06-25 13:47:30.000000000 +0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(Milou)
-set(PROJECT_VERSION "5.16.1")
+set(PROJECT_VERSION "5.16.2")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.16.1/lib/sourcesmodel.cpp 
new/milou-5.16.2/lib/sourcesmodel.cpp
--- old/milou-5.16.1/lib/sourcesmodel.cpp       2019-06-18 12:00:00.000000000 
+0200
+++ new/milou-5.16.2/lib/sourcesmodel.cpp       2019-06-25 13:46:38.000000000 
+0200
@@ -237,7 +237,12 @@
 void SourcesModel::slotResetTimeout()
 {
     if (!m_modelPopulated) {
-        clear();
+        // The old items are still shown, get rid of them
+        beginResetModel();
+        m_matches.clear();
+        m_size = 0;
+        m_duplicates.clear();
+        endResetModel();
     }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.16.1/lib/sourcesmodel.h 
new/milou-5.16.2/lib/sourcesmodel.h
--- old/milou-5.16.1/lib/sourcesmodel.h 2019-06-18 12:00:00.000000000 +0200
+++ new/milou-5.16.2/lib/sourcesmodel.h 2019-06-25 13:46:38.000000000 +0200
@@ -88,6 +88,9 @@
     void reloadConfiguration();
     void setQueryString(const QString& str);
     void setQueryLimit(int limit);
+    /**
+     * Clears the model content and resets the runner context, i.e. no new 
items will appear.
+     */
     void clear();
 
     bool run(int index);



Reply via email to