Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package qqc2-breeze-style for
openSUSE:Factory checked in at 2022-11-30 14:59:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qqc2-breeze-style (Old)
and /work/SRC/openSUSE:Factory/.qqc2-breeze-style.new.1597 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qqc2-breeze-style"
Wed Nov 30 14:59:52 2022 rev:35 rq:1039010 version:5.26.4
Changes:
--------
--- /work/SRC/openSUSE:Factory/qqc2-breeze-style/qqc2-breeze-style.changes
2022-11-10 14:22:11.226316618 +0100
+++
/work/SRC/openSUSE:Factory/.qqc2-breeze-style.new.1597/qqc2-breeze-style.changes
2022-11-30 15:00:51.829672834 +0100
@@ -1,0 +2,10 @@
+Tue Nov 29 14:47:29 UTC 2022 - Fabian Vogt <[email protected]>
+
+- Update to 5.26.4
+ * New bugfix release
+ * For more details please see:
+ * https://kde.org/announcements/plasma/5/5.26.4
+- Changes since 5.26.3:
+ * DialogButtonBox: Remove separator to be consistent with desktop style
Applications are drawing their own separators since they assume none is drawn,
so we end up with lots of double separators.
+
+-------------------------------------------------------------------
Old:
----
qqc2-breeze-style-5.26.3.tar.xz
qqc2-breeze-style-5.26.3.tar.xz.sig
New:
----
qqc2-breeze-style-5.26.4.tar.xz
qqc2-breeze-style-5.26.4.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ qqc2-breeze-style.spec ++++++
--- /var/tmp/diff_new_pack.0gi0DE/_old 2022-11-30 15:00:52.361675761 +0100
+++ /var/tmp/diff_new_pack.0gi0DE/_new 2022-11-30 15:00:52.365675784 +0100
@@ -18,7 +18,7 @@
%bcond_without released
Name: qqc2-breeze-style
-Version: 5.26.3
+Version: 5.26.4
Release: 0
Summary: Breeze Style for Qt Quick Controls 2
License: LGPL-2.1-only OR LGPL-3.0-only
++++++ qqc2-breeze-style-5.26.3.tar.xz -> qqc2-breeze-style-5.26.4.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qqc2-breeze-style-5.26.3/style/qtquickcontrols/DialogButtonBox.qml
new/qqc2-breeze-style-5.26.4/style/qtquickcontrols/DialogButtonBox.qml
--- old/qqc2-breeze-style-5.26.3/style/qtquickcontrols/DialogButtonBox.qml
2022-11-08 13:31:56.000000000 +0100
+++ new/qqc2-breeze-style-5.26.4/style/qtquickcontrols/DialogButtonBox.qml
2022-11-29 12:51:36.000000000 +0100
@@ -27,13 +27,6 @@
padding: Kirigami.Units.smallSpacing
- // Add space for the separator above the footer
- topPadding: __isFooter && background &&
background.hasOwnProperty("separator") ?
- background.separator.height + verticalPadding : verticalPadding
- // Add space for the separator below the header
- bottomPadding: __isHeader && background &&
background.hasOwnProperty("separator") ?
- background.separator.height + verticalPadding : verticalPadding
-
alignment: Qt.AlignRight
delegate: Button {
@@ -61,14 +54,8 @@
bottomRightRadius: bottomRadius
}
// Enough height for Buttons/ComboBoxes/TextFields with smallSpacing
padding on top and bottom
- implicitHeight: Impl.Units.mediumControlHeight +
(Kirigami.Units.smallSpacing * 2) + (separator.visible ? separator.height : 0)
+ implicitHeight: Impl.Units.mediumControlHeight +
(Kirigami.Units.smallSpacing * 2)
color: control.__isInPopup ? "transparent" :
Kirigami.Theme.backgroundColor
- property Item separator: Kirigami.Separator {
- parent: background
- visible: control.__isHeader || control.__isFooter
- width: parent.width
- y: control.__isFooter ? 0 : parent.height - height
- }
}
// Standard buttons are destroyed and then recreated every time