Hello community, here is the log from the commit of package kdeclarative for openSUSE:Leap:15.2 checked in at 2020-05-12 11:38:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/kdeclarative (Old) and /work/SRC/openSUSE:Leap:15.2/.kdeclarative.new.2738 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdeclarative" Tue May 12 11:38:11 2020 rev:74 rq:802160 version:5.70.0 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/kdeclarative/kdeclarative.changes 2020-04-21 19:04:47.283654788 +0200 +++ /work/SRC/openSUSE:Leap:15.2/.kdeclarative.new.2738/kdeclarative.changes 2020-05-12 11:38:56.984569846 +0200 @@ -1,0 +2,21 @@ +Thu May 7 11:24:52 UTC 2020 - Christophe Giboudeaux <[email protected]> + +- Add upstream patch: + * 0001-Pixel-align-children-of-GridViewInternal.patch + +------------------------------------------------------------------- +Sun May 3 09:39:50 UTC 2020 - Christophe Giboudeaux <[email protected]> + +- Update to 5.70.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/kde-frameworks-5.70.0 +- Changes since 5.69.0: + * Introduce SettingState* elements to ease KCM writing + * Properly name the content of the kcmcontrols project + * Tweak kcmcontrols docs + * Add startCapture method + * [KeySequenceHelper] Work around Meta modifier behavior + * Also relase the window in the destructor + +------------------------------------------------------------------- Old: ---- kdeclarative-5.69.0.tar.xz kdeclarative-5.69.0.tar.xz.sig New: ---- 0001-Pixel-align-children-of-GridViewInternal.patch kdeclarative-5.70.0.tar.xz kdeclarative-5.70.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdeclarative.spec ++++++ --- /var/tmp/diff_new_pack.vc3mzX/_old 2020-05-12 11:38:57.424570770 +0200 +++ /var/tmp/diff_new_pack.vc3mzX/_new 2020-05-12 11:38:57.424570770 +0200 @@ -17,14 +17,14 @@ %define lname libKF5Declarative5 -%define _tar_path 5.69 +%define _tar_path 5.70 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | awk -F. '{print $1"."$2}')} %bcond_without lang Name: kdeclarative -Version: 5.69.0 +Version: 5.70.0 Release: 0 Summary: Integration of QML and KDE workspaces License: LGPL-2.1-or-later @@ -36,6 +36,8 @@ Source2: frameworks.keyring %endif Source99: baselibs.conf +# PATCH-FIX-UPSTREAM +Patch0: 0001-Pixel-align-children-of-GridViewInternal.patch BuildRequires: cmake >= 3.0 BuildRequires: extra-cmake-modules >= %{_kf5_bugfix_version} BuildRequires: fdupes @@ -122,7 +124,7 @@ %lang_package -n %{lname} %prep -%setup -q +%autosetup -p1 %build %cmake_kf5 -d build ++++++ 0001-Pixel-align-children-of-GridViewInternal.patch ++++++ >From 9725a21bcd0ee07c48be5077a735710c5658cf59 Mon Sep 17 00:00:00 2001 From: Fabian Vogt <[email protected]> Date: Thu, 7 May 2020 11:41:04 +0200 Subject: [PATCH] Pixel align children of GridViewInternal Summary: The scroll bar size can be odd (for breeze it's 21), which causes leftMargin to be 12.5. This causes every delegate inside to be blurred. Test Plan: Monkeypatched, now kcm_style is no longer blurred. Reviewers: #frameworks, broulik, mart, davidedmundson Reviewed By: broulik, davidedmundson Subscribers: kde-frameworks-devel Tags: #frameworks Differential Revision: https://phabricator.kde.org/D29503 --- src/qmlcontrols/kcmcontrols/qml/private/GridViewInternal.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qmlcontrols/kcmcontrols/qml/private/GridViewInternal.qml b/src/qmlcontrols/kcmcontrols/qml/private/GridViewInternal.qml index b55dea3..5d09a3d 100644 --- a/src/qmlcontrols/kcmcontrols/qml/private/GridViewInternal.qml +++ b/src/qmlcontrols/kcmcontrols/qml/private/GridViewInternal.qml @@ -37,7 +37,7 @@ GridView { anchors { fill: parent margins: 2 - leftMargin: scroll.QtControls.ScrollBar.vertical.visible ? 2 : internal.scrollBarSpace/2 + 2 + leftMargin: scroll.QtControls.ScrollBar.vertical.visible ? 2 : Math.round(internal.scrollBarSpace/2) + 2 } clip: true activeFocusOnTab: true -- 2.26.2 ++++++ kdeclarative-5.69.0.tar.xz -> kdeclarative-5.70.0.tar.xz ++++++ ++++ 8322 lines of diff (skipped)
