diff --git a/milou-5.7.4.tar.xz b/milou-5.7.4.tar.xz deleted file mode 100644 index e175602..0000000 --- a/milou-5.7.4.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d83c8c30c730909674ed5d96340d7b499d72dfad608a7e9ea1e4f1a81b3b21ec -size 53748 diff --git a/milou-5.8.0.tar.xz b/milou-5.8.0.tar.xz new file mode 100644 index 0000000..e9767fc --- /dev/null +++ b/milou-5.8.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b700557933466f3d75c5d8973246b747197c2113589641024d7b6fa9160122a +size 54320 diff --git a/milou5.changes b/milou5.changes index b614847..47c908d 100644 --- a/milou5.changes +++ b/milou5.changes @@ -1,3 +1,28 @@ +------------------------------------------------------------------- +Thu Sep 29 16:36:28 UTC 2016 - fabian@ritter-vogt.de + +- Update to 5.8.0 + * New LTS feature release + * For more details please see: + https://www.kde.org/announcements/plasma-5.8.0.php + +------------------------------------------------------------------- +Thu Sep 15 15:53:55 UTC 2016 - fabian@ritter-vogt.de + +- Update to 5.7.95 (Plasma 5.8 Beta) + * New LTS feature release + * For more details please see: + https://www.kde.org/announcements/plasma-5.7.95.php +- Removed patch use-iconName.patch + +------------------------------------------------------------------- +Tue Sep 13 17:42:09 UTC 2016 - fabian@ritter-vogt.de + +- Update to 5.7.5 + * New bugfix release + * For more details please see: + https://www.kde.org/announcements/plasma-5.7.5.php + ------------------------------------------------------------------- Fri Aug 26 20:36:41 UTC 2016 - fabian@ritter-vogt.de diff --git a/milou5.spec b/milou5.spec index 2810a1f..bd314b8 100644 --- a/milou5.spec +++ b/milou5.spec @@ -18,15 +18,13 @@ %bcond_without lang Name: milou5 -Version: 5.7.4 +Version: 5.8.0 Release: 0 Summary: Dedicated search application built on top of Baloo License: GPL-2.0+ and LGPL-2.1+ Group: System/GUI/KDE Url: https://projects.kde.org/milou Source: milou-%{version}.tar.xz -# PATCH-FIX-UPSTREAM use-iconName.patch boo#994983 -- use iconName for the results if it is set, that's preferred since having each runner set an icon for the results can lead to threading issues -Patch: use-iconName.patch BuildRequires: extra-cmake-modules >= 1.2.0 BuildRequires: fdupes BuildRequires: kf5-filesystem @@ -52,7 +50,6 @@ A dedicated search application built on top of Baloo %lang_package %prep %setup -q -n milou-%{version} -%patch -p1 %build %cmake_kf5 -d build -- -DCMAKE_INSTALL_LOCALEDIR=%{_kf5_localedir} @@ -63,7 +60,6 @@ A dedicated search application built on top of Baloo %if %{with lang} %kf5_find_lang %endif - %fdupes -s %{buildroot}%{_kf5_localedir}/ %post diff --git a/use-iconName.patch b/use-iconName.patch deleted file mode 100644 index 7d9d471..0000000 --- a/use-iconName.patch +++ /dev/null @@ -1,46 +0,0 @@ -From: Kai Uwe Broulik -Date: Fri, 17 Jun 2016 11:45:46 +0000 -Subject: Make use of new QueryMatch::iconName() and use a PlasmaCore.IconItem instead of QIconItem -X-Git-Url: http://quickgit.kde.org/?p=milou.git&a=commitdiff&h=5e0d799f63796741efff3ff3d780df81f03dd66f ---- -Make use of new QueryMatch::iconName() and use a PlasmaCore.IconItem instead of QIconItem ---- - - ---- a/lib/qml/ResultDelegate.qml -+++ b/lib/qml/ResultDelegate.qml -@@ -163,13 +163,13 @@ - rightMargin: units.smallSpacing - } - -- QtExtra.QIconItem { -+ PlasmaCore.IconItem { - id: typePixmap -- width: Globals.IconSize -- height: Globals.IconSize -- -- icon: model.decoration -- smooth: true -+ Layout.preferredWidth: Globals.IconSize -+ Layout.fillHeight: true -+ source: model.decoration -+ usesPlasmaTheme: false -+ animated: false - } - - PlasmaComponents.Label { - ---- a/lib/sourcesmodel.cpp -+++ b/lib/sourcesmodel.cpp -@@ -103,6 +103,10 @@ - return m.text(); - - case Qt::DecorationRole: -+ if (!m.iconName().isEmpty()) { -+ return m.iconName(); -+ } -+ - return m.icon(); - - case TypeRole: -