Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kf6-qqc2-desktop-style for 
openSUSE:Factory checked in at 2025-10-12 22:23:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kf6-qqc2-desktop-style (Old)
 and      /work/SRC/openSUSE:Factory/.kf6-qqc2-desktop-style.new.18484 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kf6-qqc2-desktop-style"

Sun Oct 12 22:23:05 2025 rev:21 rq:1310886 version:6.19.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/kf6-qqc2-desktop-style/kf6-qqc2-desktop-style.changes
    2025-09-15 19:54:01.709932757 +0200
+++ 
/work/SRC/openSUSE:Factory/.kf6-qqc2-desktop-style.new.18484/kf6-qqc2-desktop-style.changes
 2025-10-12 22:24:30.886100938 +0200
@@ -1,0 +2,12 @@
+Tue Oct  7 17:06:30 UTC 2025 - Christophe Marin <[email protected]>
+
+- Update to 6.19.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/6/6.19.0
+- Changes since 6.18.0:
+  * Update dependency version to 6.19.0
+  * SpinBox: Allow any sub-element layout
+  * Update version to 6.19.0
+
+-------------------------------------------------------------------

Old:
----
  qqc2-desktop-style-6.18.0.tar.xz
  qqc2-desktop-style-6.18.0.tar.xz.sig

New:
----
  qqc2-desktop-style-6.19.0.tar.xz
  qqc2-desktop-style-6.19.0.tar.xz.sig

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

Other differences:
------------------
++++++ kf6-qqc2-desktop-style.spec ++++++
--- /var/tmp/diff_new_pack.t6dNY5/_old  2025-10-12 22:24:32.750178989 +0200
+++ /var/tmp/diff_new_pack.t6dNY5/_new  2025-10-12 22:24:32.754179157 +0200
@@ -19,11 +19,11 @@
 %define qt6_version 6.8.0
 
 %define rname qqc2-desktop-style
-# Full KF6 version (e.g. 6.18.0)
+# Full KF6 version (e.g. 6.19.0)
 %{!?_kf6_version: %global _kf6_version %{version}}
 %bcond_without released
 Name:           kf6-qqc2-desktop-style
-Version:        6.18.0
+Version:        6.19.0
 Release:        0
 Summary:        A Qt Quick Controls 2 Style for Desktop UIs
 License:        GPL-2.0-or-later


++++++ qqc2-desktop-style-6.18.0.tar.xz -> qqc2-desktop-style-6.19.0.tar.xz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qqc2-desktop-style-6.18.0/CMakeLists.txt 
new/qqc2-desktop-style-6.19.0/CMakeLists.txt
--- old/qqc2-desktop-style-6.18.0/CMakeLists.txt        2025-09-08 
10:15:39.000000000 +0200
+++ new/qqc2-desktop-style-6.19.0/CMakeLists.txt        2025-10-05 
14:41:06.000000000 +0200
@@ -1,13 +1,13 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "6.18.0") # handled by release scripts
-set(KF_DEP_VERSION "6.18.0") # handled by release scripts
+set(KF_VERSION "6.19.0") # handled by release scripts
+set(KF_DEP_VERSION "6.19.0") # handled by release scripts
 
 project(qqc2-desktop-style VERSION ${KF_VERSION})
 
 set(REQUIRED_QT_VERSION 6.7.0)
 
-find_package(ECM 6.18.0 REQUIRED NO_MODULE)
+find_package(ECM 6.19.0 REQUIRED NO_MODULE)
 
 # where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is 
checked
 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH})
@@ -93,7 +93,7 @@
 
 ecm_set_disabled_deprecation_versions(
     QT 6.10.0
-    KF 6.16.0
+    KF 6.18.0
 )
 
 add_subdirectory(plugin)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qqc2-desktop-style-6.18.0/org.kde.desktop/SpinBox.qml 
new/qqc2-desktop-style-6.19.0/org.kde.desktop/SpinBox.qml
--- old/qqc2-desktop-style-6.18.0/org.kde.desktop/SpinBox.qml   2025-09-08 
10:15:39.000000000 +0200
+++ new/qqc2-desktop-style-6.19.0/org.kde.desktop/SpinBox.qml   2025-10-05 
14:41:06.000000000 +0200
@@ -18,18 +18,17 @@
     Kirigami.Theme.inherit: false
 
     implicitWidth: Math.max(styleitem.fullRectSizeHint.width,
-                            implicitBackgroundWidth + leftInset + rightInset,
-                            implicitContentWidth + leftPadding + rightPadding)
+                            implicitBackgroundWidth + leftInset + rightInset)
     implicitHeight: Math.max(styleitem.fullRectSizeHint.height,
-                             implicitBackgroundHeight + topInset + bottomInset,
-                             implicitContentHeight + topPadding + 
bottomPadding)
+                             implicitBackgroundHeight + topInset + bottomInset)
 
     padding: 6
-    leftPadding: controlRoot.mirrored ? ___rPadding : ___lPadding
-    rightPadding: controlRoot.mirrored ? ___lPadding : ___rPadding
 
-    readonly property int ___lPadding: styleitem.upRectSizeHint.x === 
styleitem.downRectSizeHint.x ? horizontalPadding : 
styleitem.downRectSizeHint.width
-    readonly property int ___rPadding: styleitem.upRectSizeHint.x === 
styleitem.downRectSizeHint.x ? styleitem.downRectSizeHint.width : 
styleitem.upRectSizeHint.width
+    leftPadding: Math.max(0, styleitem.editRect.left - styleitem.x)
+    rightPadding:  Math.max(0, styleitem.x + styleitem.width - 
styleitem.editRect.right)
+
+    onMirroredChanged: styleitem.recompute()
+    Component.onCompleted: styleitem.recompute()
 
     hoverEnabled: true
     wheelEnabled: true
@@ -101,6 +100,8 @@
         hover: controlRoot.hovered
         hasFocus: controlRoot.activeFocus
         enabled: controlRoot.enabled
+        contentWidth: controlRoot.implicitContentWidth
+        contentHeight: controlRoot.implicitContentHeight
 
         // static hints calculated once for minimum sizes
         property rect upRectSizeHint: styleitem.subControlRect("up")
@@ -111,10 +112,12 @@
         // dynamic hints calculated every resize to keep the buttons in place
         property rect upRect: upRectSizeHint
         property rect downRect: downRectSizeHint
+        property rect editRect: editRectSizeHint
 
         function recompute() {
             upRect = styleitem.subControlRect("up")
             downRect = styleitem.subControlRect("down")
+            editRect = styleitem.subControlRect("edit")
         }
 
         onWidthChanged: recompute()

Reply via email to