Accepting request 814349 from KDE:Frameworks5
KDE Frameworks 5.71.0 OBS-URL: https://build.opensuse.org/request/show/814349 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kdeclarative?expand=0&rev=81
This commit is contained in:
commit
6577ed289f
@ -1,40 +0,0 @@
|
||||
From 9725a21bcd0ee07c48be5077a735710c5658cf59 Mon Sep 17 00:00:00 2001
|
||||
From: Fabian Vogt <fabian@ritter-vogt.de>
|
||||
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
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8914c2266d7ea32f8028aee13ae5a7f39a3583f7ec74a74584577fb0f2bc09ef
|
||||
size 175644
|
@ -1,11 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQEzBAABCgAdFiEEU+a0e0XOo+DVt0V3WNDuZIpIs7sFAl6t9DIACgkQWNDuZIpI
|
||||
s7u5EAgApaSgcz+OrkhI/caRrm/4EATbPwi4XucorJ+snHDetTygMpPSKOtQ2Gdr
|
||||
kmbfCAIun2DYR9fhYvJZHZ9aIzuG/cw2ucDmz/HOF0MNak4f34b0+Vg2fozzD4PI
|
||||
7vlNVlhe7jcIcQX9VY3RQqIRCBF6G+PZ2VB9AVRige+T2hzyIbItu/X6msig9wbc
|
||||
OCCnJyA7mce1r1NbpCty7+0635l6BKtjG4IKaGCXOhEtDD5b0t/vGR+fe7g2x7Ih
|
||||
QguYgzE+iYWsStUmh4JSM2KiiW12NOMLZuplc/3gol4MJievH3qBhBkKmbjkL+ZL
|
||||
xj5x7K0xRCVE4wEfUN8WK84tHRhYbQ==
|
||||
=DnjP
|
||||
-----END PGP SIGNATURE-----
|
3
kdeclarative-5.71.0.tar.xz
Normal file
3
kdeclarative-5.71.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ace0e52f561a9cfba1de4b77144a0a68037a1229530fb39070dc837da80ac8f8
|
||||
size 176832
|
11
kdeclarative-5.71.0.tar.xz.sig
Normal file
11
kdeclarative-5.71.0.tar.xz.sig
Normal file
@ -0,0 +1,11 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQEzBAABCgAdFiEEU+a0e0XOo+DVt0V3WNDuZIpIs7sFAl7dOikACgkQWNDuZIpI
|
||||
s7tIUAf/YR7o5wHEnGfXw8WzjSZLo2IPXvHD7twdzgFflGP1Go6pX4ebjDIPmIJ4
|
||||
+rDXVw6OXplMjqTcMHwrKv3139XARIxPvY7365bpQbo0ZXXZr92K8L4bEByxtQuK
|
||||
Ac2J5vkI+S6IEPMu/85mkw6PmBY9VNH34JyB28910qWGCWP9z6nZKRb4Zv0HDoyq
|
||||
OsT6Ol/H3hE/R8JcpdGnBkaOdEKkhWUrNKalIBQZKEY4vMYJc61lMgNqSLbgOiwm
|
||||
mPvQLauErgPRVwdEHa4XqYZ3QRCJGJ4tSthzZ7aBqz9EeimQoicbe+BbWA+j01z6
|
||||
mjv5kcBa43kqciPhbOY/rQuRD8R5uw==
|
||||
=q372
|
||||
-----END PGP SIGNATURE-----
|
@ -1,3 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Jun 7 08:06:29 UTC 2020 - Christophe Giboudeaux <christophe@krop.fr>
|
||||
|
||||
- Update to 5.71.0
|
||||
* New feature release
|
||||
* For more details please see:
|
||||
* https://kde.org/announcements/kde-frameworks-5.71.0
|
||||
- Changes since 5.70.0:
|
||||
* Improve dox
|
||||
* Fix #include guards
|
||||
* Create kcmshell.openSystemSettings() and kcmshell.openInfoCenter() functions
|
||||
* Port KKeySequenceItem to QQC2
|
||||
* Pixel align children of GridViewInternal
|
||||
- Drop upstream patch:
|
||||
* 0001-Pixel-align-children-of-GridViewInternal.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 7 11:24:52 UTC 2020 - Christophe Giboudeaux <christophe@krop.fr>
|
||||
|
||||
|
@ -17,14 +17,14 @@
|
||||
|
||||
|
||||
%define lname libKF5Declarative5
|
||||
%define _tar_path 5.70
|
||||
%define _tar_path 5.71
|
||||
# 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.70.0
|
||||
Version: 5.71.0
|
||||
Release: 0
|
||||
Summary: Integration of QML and KDE workspaces
|
||||
License: LGPL-2.1-or-later
|
||||
@ -36,8 +36,6 @@ Source1: https://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user