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 2026-09-11 18:00:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kf6-qqc2-desktop-style (Old)
and /work/SRC/openSUSE:Factory/.kf6-qqc2-desktop-style.new.1265 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-qqc2-desktop-style"
Fri Sep 11 18:00:50 2026 rev:32 rq:1376734 version:6.30.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/kf6-qqc2-desktop-style/kf6-qqc2-desktop-style.changes
2026-08-17 17:01:11.282685831 +0200
+++
/work/SRC/openSUSE:Factory/.kf6-qqc2-desktop-style.new.1265/kf6-qqc2-desktop-style.changes
2026-09-11 18:03:54.399292773 +0200
@@ -1,0 +2,13 @@
+Tue Sep 8 09:22:45 UTC 2026 - Christophe Marin <[email protected]>
+
+- Update to 6.30.0
+ * New feature release
+ * For more details please see:
+ * https://kde.org/announcements/frameworks/6/6.30.0
+- Changes since 6.29.0:
+ * Update dependency version to 6.30.0
+ * SwipeDelegate: remove workarounds for inset
+ * TableHeaderViews: account for the margins of the root control
+ * Update version to 6.30.0
+
+-------------------------------------------------------------------
Old:
----
qqc2-desktop-style-6.29.0.tar.xz
qqc2-desktop-style-6.29.0.tar.xz.sig
New:
----
qqc2-desktop-style-6.30.0.tar.xz
qqc2-desktop-style-6.30.0.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kf6-qqc2-desktop-style.spec ++++++
--- /var/tmp/diff_new_pack.kJufqZ/_old 2026-09-11 18:03:56.705389180 +0200
+++ /var/tmp/diff_new_pack.kJufqZ/_new 2026-09-11 18:03:56.708389305 +0200
@@ -19,11 +19,11 @@
%define qt6_version 6.9.0
%define rname qqc2-desktop-style
-# Full KF6 version (e.g. 6.29.0)
+# Full KF6 version (e.g. 6.30.0)
%{!?_kf6_version: %global _kf6_version %{version}}
%bcond_without released
Name: kf6-qqc2-desktop-style
-Version: 6.29.0
+Version: 6.30.0
Release: 0
Summary: A Qt Quick Controls 2 Style for Desktop UIs
License: GPL-2.0-or-later
++++++ qqc2-desktop-style-6.29.0.tar.xz -> qqc2-desktop-style-6.30.0.tar.xz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qqc2-desktop-style-6.29.0/CMakeLists.txt
new/qqc2-desktop-style-6.30.0/CMakeLists.txt
--- old/qqc2-desktop-style-6.29.0/CMakeLists.txt 2026-08-07
22:45:43.000000000 +0200
+++ new/qqc2-desktop-style-6.30.0/CMakeLists.txt 2026-09-04
13:43:58.000000000 +0200
@@ -1,13 +1,13 @@
cmake_minimum_required(VERSION 3.29)
-set(KF_VERSION "6.29.0") # handled by release scripts
-set(KF_DEP_VERSION "6.29.0") # handled by release scripts
+set(KF_VERSION "6.30.0") # handled by release scripts
+set(KF_DEP_VERSION "6.30.0") # handled by release scripts
project(qqc2-desktop-style VERSION ${KF_VERSION})
set(REQUIRED_QT_VERSION 6.9.0)
-find_package(ECM 6.29.0 REQUIRED NO_MODULE)
+find_package(ECM 6.30.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})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qqc2-desktop-style-6.29.0/org.kde.desktop/HorizontalHeaderView.qml
new/qqc2-desktop-style-6.30.0/org.kde.desktop/HorizontalHeaderView.qml
--- old/qqc2-desktop-style-6.29.0/org.kde.desktop/HorizontalHeaderView.qml
2026-08-07 22:45:43.000000000 +0200
+++ new/qqc2-desktop-style-6.30.0/org.kde.desktop/HorizontalHeaderView.qml
2026-09-04 13:43:58.000000000 +0200
@@ -70,7 +70,8 @@
StylePrivate.StyleItem {
parent: controlRoot
anchors.fill: parent
- anchors.leftMargin: controlRoot.contentWidth
+ anchors.leftMargin: controlRoot.contentWidth + controlRoot.leftMargin
+ anchors.rightMargin: controlRoot.rightMargin
z: -1
elementType: "header"
properties: {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qqc2-desktop-style-6.29.0/org.kde.desktop/SwipeDelegate.qml
new/qqc2-desktop-style-6.30.0/org.kde.desktop/SwipeDelegate.qml
--- old/qqc2-desktop-style-6.29.0/org.kde.desktop/SwipeDelegate.qml
2026-08-07 22:45:43.000000000 +0200
+++ new/qqc2-desktop-style-6.30.0/org.kde.desktop/SwipeDelegate.qml
2026-09-04 13:43:58.000000000 +0200
@@ -38,12 +38,6 @@
T.ToolTip.text: action instanceof Kirigami.Action ? action.tooltip : text
T.ToolTip.delay: Kirigami.Settings.tabletMode ?
Qt.styleHints.mousePressAndHoldInterval : Kirigami.Units.toolTipDelay
- // inset is padding minus a small spacing
- leftInset: TableView.view ? 0 : Math.max(0, leftPadding -
Kirigami.Units.smallSpacing)
- rightInset: TableView.view ? 0 : Math.max(0, rightPadding -
Kirigami.Units.smallSpacing)
- topInset: TableView.view ? 0 : Math.max(0, topPadding -
Kirigami.Units.smallSpacing)
- bottomInset: TableView.view ? 0 : Math.max(0, bottomPadding -
Kirigami.Units.smallSpacing)
-
// This kind of long animation is one we don't want a duration, but a
velocity otherwise
// a close animation from the edge is too fast, while if it just has to
cover few pixels, is too slow
swipe.transition: Transition {
@@ -90,18 +84,8 @@
}
}
- background: Item {
- // SwipeDelegate doesn't apply correctly left/right insets so apply
them manually
- Private.DefaultListItemBackground {
- visible: swipe.position === 0
- anchors {
- left: parent.left
- top: parent.top
- bottom: parent.bottom
- leftMargin: controlRoot.leftInset
- }
- width: controlRoot.width - controlRoot.leftInset -
controlRoot.rightInset
- control: controlRoot
- }
+ background: Private.DefaultListItemBackground {
+ visible: controlRoot.swipe.position === 0
+ control: controlRoot
}
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qqc2-desktop-style-6.29.0/org.kde.desktop/VerticalHeaderView.qml
new/qqc2-desktop-style-6.30.0/org.kde.desktop/VerticalHeaderView.qml
--- old/qqc2-desktop-style-6.29.0/org.kde.desktop/VerticalHeaderView.qml
2026-08-07 22:45:43.000000000 +0200
+++ new/qqc2-desktop-style-6.30.0/org.kde.desktop/VerticalHeaderView.qml
2026-09-04 13:43:58.000000000 +0200
@@ -62,7 +62,8 @@
StylePrivate.StyleItem {
parent: controlRoot
anchors.fill: parent
- anchors.topMargin: controlRoot.contentHeight
+ anchors.topMargin: controlRoot.contentHeight + controlRoot.topMargin
+ anchors.bottomMargin: controlRoot.bottomMargin
z: -1
elementType: "header"
properties: {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qqc2-desktop-style-6.29.0/poqm/fi/qqc2desktopstyle_qt.po
new/qqc2-desktop-style-6.30.0/poqm/fi/qqc2desktopstyle_qt.po
--- old/qqc2-desktop-style-6.29.0/poqm/fi/qqc2desktopstyle_qt.po
2026-08-07 22:45:43.000000000 +0200
+++ new/qqc2-desktop-style-6.30.0/poqm/fi/qqc2desktopstyle_qt.po
2026-09-04 13:43:58.000000000 +0200
@@ -1,8 +1,8 @@
-# SPDX-FileCopyrightText: 2024 Tommi Nieminen <[email protected]>
+# SPDX-FileCopyrightText: 2024, 2026 Tommi Nieminen <[email protected]>
msgid ""
msgstr ""
"Project-Id-Version: \n"
-"PO-Revision-Date: 2024-10-16 17:28+0300\n"
+"PO-Revision-Date: 2026-03-03 17:07+0200\n"
"Last-Translator: Tommi Nieminen <[email protected]>\n"
"Language-Team: Finnish <[email protected]>\n"
"Language: fi\n"
@@ -10,7 +10,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 24.08.2\n"
+"X-Generator: Lokalize 25.04.0\n"
"X-Qt-Contexts: true\n"
#: org.kde.desktop/private/MobileTextActionsToolBarImpl.qml:59
@@ -88,4 +88,4 @@
#: org.kde.desktop/SearchField.qml:80
msgctxt "SearchField|"
msgid "Clear search"
-msgstr ""
+msgstr "Tyhjennä haku"