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-05-11 16:52:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kf6-qqc2-desktop-style (Old)
and /work/SRC/openSUSE:Factory/.kf6-qqc2-desktop-style.new.1966 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-qqc2-desktop-style"
Mon May 11 16:52:04 2026 rev:28 rq:1352121 version:6.26.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/kf6-qqc2-desktop-style/kf6-qqc2-desktop-style.changes
2026-04-11 22:29:05.983078959 +0200
+++
/work/SRC/openSUSE:Factory/.kf6-qqc2-desktop-style.new.1966/kf6-qqc2-desktop-style.changes
2026-05-11 16:58:25.847503782 +0200
@@ -1,0 +2,13 @@
+Sat May 2 07:52:53 UTC 2026 - Christophe Marin <[email protected]>
+
+- Update to 6.26.0
+ * New feature release
+ * For more details please see:
+ * https://kde.org/announcements/frameworks/6/6.26.0
+- Changes since 6.25.0:
+ * Update dependency version to 6.26.0
+ * Ignore inner Labels for accessibility
+ * MenuItem: Use opaque background when pressed
+ * Update version to 6.26.0
+
+-------------------------------------------------------------------
Old:
----
qqc2-desktop-style-6.25.0.tar.xz
qqc2-desktop-style-6.25.0.tar.xz.sig
New:
----
qqc2-desktop-style-6.26.0.tar.xz
qqc2-desktop-style-6.26.0.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kf6-qqc2-desktop-style.spec ++++++
--- /var/tmp/diff_new_pack.0wOyHZ/_old 2026-05-11 16:58:26.651536963 +0200
+++ /var/tmp/diff_new_pack.0wOyHZ/_new 2026-05-11 16:58:26.655537128 +0200
@@ -16,14 +16,14 @@
#
-%define qt6_version 6.8.0
+%define qt6_version 6.9.0
%define rname qqc2-desktop-style
-# Full KF6 version (e.g. 6.25.0)
+# Full KF6 version (e.g. 6.26.0)
%{!?_kf6_version: %global _kf6_version %{version}}
%bcond_without released
Name: kf6-qqc2-desktop-style
-Version: 6.25.0
+Version: 6.26.0
Release: 0
Summary: A Qt Quick Controls 2 Style for Desktop UIs
License: GPL-2.0-or-later
++++++ qqc2-desktop-style-6.25.0.tar.xz -> qqc2-desktop-style-6.26.0.tar.xz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qqc2-desktop-style-6.25.0/CMakeLists.txt
new/qqc2-desktop-style-6.26.0/CMakeLists.txt
--- old/qqc2-desktop-style-6.25.0/CMakeLists.txt 2026-04-03
19:12:36.000000000 +0200
+++ new/qqc2-desktop-style-6.26.0/CMakeLists.txt 2026-05-01
13:56:35.000000000 +0200
@@ -1,13 +1,13 @@
cmake_minimum_required(VERSION 3.29)
-set(KF_VERSION "6.25.0") # handled by release scripts
-set(KF_DEP_VERSION "6.25.0") # handled by release scripts
+set(KF_VERSION "6.26.0") # handled by release scripts
+set(KF_DEP_VERSION "6.26.0") # handled by release scripts
project(qqc2-desktop-style VERSION ${KF_VERSION})
set(REQUIRED_QT_VERSION 6.9.0)
-find_package(ECM 6.25.0 REQUIRED NO_MODULE)
+find_package(ECM 6.26.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.25.0/org.kde.desktop/CheckBox.qml
new/qqc2-desktop-style-6.26.0/org.kde.desktop/CheckBox.qml
--- old/qqc2-desktop-style-6.25.0/org.kde.desktop/CheckBox.qml 2026-04-03
19:12:36.000000000 +0200
+++ new/qqc2-desktop-style-6.26.0/org.kde.desktop/CheckBox.qml 2026-05-01
13:56:35.000000000 +0200
@@ -87,6 +87,8 @@
verticalAlignment: Text.AlignVCenter
wrapMode: Text.Wrap
+ Accessible.ignored: true
+
Private.FocusRect {
control: controlRoot
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qqc2-desktop-style-6.25.0/org.kde.desktop/CheckDelegate.qml
new/qqc2-desktop-style-6.26.0/org.kde.desktop/CheckDelegate.qml
--- old/qqc2-desktop-style-6.25.0/org.kde.desktop/CheckDelegate.qml
2026-04-03 19:12:36.000000000 +0200
+++ new/qqc2-desktop-style-6.26.0/org.kde.desktop/CheckDelegate.qml
2026-05-01 13:56:35.000000000 +0200
@@ -73,6 +73,8 @@
Layout.fillWidth: true
Layout.fillHeight: true
+ Accessible.ignored: true
+
text: controlRoot.text
font: controlRoot.font
color: (((controlRoot.pressed && !controlRoot.checked) ||
controlRoot.highlighted) && !controlRoot.sectionDelegate) ?
Kirigami.Theme.highlightedTextColor : Kirigami.Theme.textColor
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qqc2-desktop-style-6.25.0/org.kde.desktop/ItemDelegate.qml
new/qqc2-desktop-style-6.26.0/org.kde.desktop/ItemDelegate.qml
--- old/qqc2-desktop-style-6.25.0/org.kde.desktop/ItemDelegate.qml
2026-04-03 19:12:36.000000000 +0200
+++ new/qqc2-desktop-style-6.26.0/org.kde.desktop/ItemDelegate.qml
2026-05-01 13:56:35.000000000 +0200
@@ -75,6 +75,8 @@
Layout.fillWidth: true
Layout.fillHeight: true
+ Accessible.ignored: true
+
text: controlRoot.text
font: controlRoot.font
color: controlRoot.highlighted || controlRoot.down
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qqc2-desktop-style-6.25.0/org.kde.desktop/MenuItem.qml
new/qqc2-desktop-style-6.26.0/org.kde.desktop/MenuItem.qml
--- old/qqc2-desktop-style-6.25.0/org.kde.desktop/MenuItem.qml 2026-04-03
19:12:36.000000000 +0200
+++ new/qqc2-desktop-style-6.26.0/org.kde.desktop/MenuItem.qml 2026-05-01
13:56:35.000000000 +0200
@@ -60,6 +60,7 @@
|| (controlRoot.icon.name !== "" ||
controlRoot.icon.source.toString() !== "")
source: controlRoot.icon.name !== "" ? controlRoot.icon.name :
controlRoot.icon.source
color: controlRoot.icon.color
+ selected: controlRoot.pressed
Layout.preferredHeight: Kirigami.Settings.hasTransientTouchInput ?
Kirigami.Units.iconSizes.smallMedium : Kirigami.Units.iconSizes.small
Layout.preferredWidth: Layout.preferredHeight
}
@@ -70,7 +71,7 @@
text: controlRoot.Kirigami.MnemonicData.richTextLabel
font: controlRoot.font
- color: Kirigami.Theme.textColor
+ color: controlRoot.pressed ? Kirigami.Theme.highlightedTextColor :
Kirigami.Theme.textColor
elide: Text.ElideRight
visible: controlRoot.text
horizontalAlignment: Text.AlignLeft
@@ -120,7 +121,7 @@
background: Rectangle {
implicitWidth: Kirigami.Units.gridUnit * 8
opacity: (controlRoot.highlighted || controlRoot.down) ? 1 : 0
- color: Qt.alpha(Kirigami.Theme.focusColor, 0.3)
+ color: controlRoot.pressed ? Kirigami.Theme.focusColor :
Qt.alpha(Kirigami.Theme.focusColor, 0.3);
border.color: Kirigami.Theme.focusColor
border.width: 1
radius: Kirigami.Units.cornerRadius
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qqc2-desktop-style-6.25.0/org.kde.desktop/RadioButton.qml
new/qqc2-desktop-style-6.26.0/org.kde.desktop/RadioButton.qml
--- old/qqc2-desktop-style-6.25.0/org.kde.desktop/RadioButton.qml
2026-04-03 19:12:36.000000000 +0200
+++ new/qqc2-desktop-style-6.26.0/org.kde.desktop/RadioButton.qml
2026-05-01 13:56:35.000000000 +0200
@@ -64,6 +64,9 @@
contentItem: Label {
id: contentLabel
+
+ Accessible.ignored: true
+
readonly property int indicatorEffectiveWidth: (
controlRoot.indicator
&& typeof controlRoot.indicator.pixelMetric === "function"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qqc2-desktop-style-6.25.0/org.kde.desktop/RadioDelegate.qml
new/qqc2-desktop-style-6.26.0/org.kde.desktop/RadioDelegate.qml
--- old/qqc2-desktop-style-6.25.0/org.kde.desktop/RadioDelegate.qml
2026-04-03 19:12:36.000000000 +0200
+++ new/qqc2-desktop-style-6.26.0/org.kde.desktop/RadioDelegate.qml
2026-05-01 13:56:35.000000000 +0200
@@ -73,6 +73,8 @@
Layout.fillWidth: true
Layout.fillHeight: true
+ Accessible.ignored: true
+
text: controlRoot.text
font: controlRoot.font
color: (controlRoot.pressed && !controlRoot.checked &&
!controlRoot.sectionDelegate) ? Kirigami.Theme.highlightedTextColor :
Kirigami.Theme.textColor
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qqc2-desktop-style-6.25.0/org.kde.desktop/SwipeDelegate.qml
new/qqc2-desktop-style-6.26.0/org.kde.desktop/SwipeDelegate.qml
--- old/qqc2-desktop-style-6.25.0/org.kde.desktop/SwipeDelegate.qml
2026-04-03 19:12:36.000000000 +0200
+++ new/qqc2-desktop-style-6.26.0/org.kde.desktop/SwipeDelegate.qml
2026-05-01 13:56:35.000000000 +0200
@@ -85,6 +85,8 @@
visible: controlRoot.text
horizontalAlignment: Text.AlignLeft
verticalAlignment: Text.AlignVCenter
+
+ Accessible.ignored: true
}
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qqc2-desktop-style-6.25.0/org.kde.desktop/Switch.qml
new/qqc2-desktop-style-6.26.0/org.kde.desktop/Switch.qml
--- old/qqc2-desktop-style-6.25.0/org.kde.desktop/Switch.qml 2026-04-03
19:12:36.000000000 +0200
+++ new/qqc2-desktop-style-6.26.0/org.kde.desktop/Switch.qml 2026-05-01
13:56:35.000000000 +0200
@@ -78,5 +78,7 @@
visible: control.text
horizontalAlignment: Text.AlignLeft
verticalAlignment: Text.AlignVCenter
+
+ Accessible.ignored: true
}
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qqc2-desktop-style-6.25.0/org.kde.desktop/SwitchDelegate.qml
new/qqc2-desktop-style-6.26.0/org.kde.desktop/SwitchDelegate.qml
--- old/qqc2-desktop-style-6.25.0/org.kde.desktop/SwitchDelegate.qml
2026-04-03 19:12:36.000000000 +0200
+++ new/qqc2-desktop-style-6.26.0/org.kde.desktop/SwitchDelegate.qml
2026-05-01 13:56:35.000000000 +0200
@@ -72,6 +72,8 @@
Layout.alignment: Qt.AlignLeft
Layout.fillWidth: true
+ Accessible.ignored: true
+
text: controlRoot.text
font: controlRoot.font
color: (controlRoot.pressed && !controlRoot.checked &&
!controlRoot.sectionDelegate) ? Kirigami.Theme.highlightedTextColor :
Kirigami.Theme.textColor
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/qqc2-desktop-style-6.25.0/poqm/sk/qqc2desktopstyle_qt.po
new/qqc2-desktop-style-6.26.0/poqm/sk/qqc2desktopstyle_qt.po
--- old/qqc2-desktop-style-6.25.0/poqm/sk/qqc2desktopstyle_qt.po
2026-04-03 19:12:36.000000000 +0200
+++ new/qqc2-desktop-style-6.26.0/poqm/sk/qqc2desktopstyle_qt.po
2026-05-01 13:56:35.000000000 +0200
@@ -12,8 +12,8 @@
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 24.08.3\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+"X-Generator: Lokalize 24.08.3\n"
"X-Qt-Contexts: true\n"
#: org.kde.desktop/private/MobileTextActionsToolBarImpl.qml:59
@@ -35,13 +35,13 @@
#, qt-format
msgctxt "TextFieldContextMenu|"
msgid "No Suggestions for \"%1\""
-msgstr ""
+msgstr "Žiadne návrhy pre %1"
#: org.kde.desktop/private/TextFieldContextMenu.qml:211
#, qt-format
msgctxt "TextFieldContextMenu|"
msgid "Add \"%1\" to Dictionary"
-msgstr ""
+msgstr "Add \"%1\" to Dictionary"
#: org.kde.desktop/private/TextFieldContextMenu.qml:227
msgctxt "TextFieldContextMenu|"
@@ -51,32 +51,32 @@
#: org.kde.desktop/private/TextFieldContextMenu.qml:242
msgctxt "TextFieldContextMenu|"
msgid "Spell Check"
-msgstr ""
+msgstr "Kontrola pravopisu"
#: org.kde.desktop/private/TextFieldContextMenu.qml:259
msgctxt "TextFieldContextMenu|"
msgid "Undo"
-msgstr ""
+msgstr "Späť"
#: org.kde.desktop/private/TextFieldContextMenu.qml:274
msgctxt "TextFieldContextMenu|"
msgid "Redo"
-msgstr ""
+msgstr "Znovu"
#: org.kde.desktop/private/TextFieldContextMenu.qml:292
msgctxt "TextFieldContextMenu|"
msgid "Cut"
-msgstr ""
+msgstr "Vystrihnúť"
#: org.kde.desktop/private/TextFieldContextMenu.qml:307
msgctxt "TextFieldContextMenu|"
msgid "Copy"
-msgstr ""
+msgstr "Kopírovať"
#: org.kde.desktop/private/TextFieldContextMenu.qml:322
msgctxt "TextFieldContextMenu|"
msgid "Paste"
-msgstr ""
+msgstr "Vložiť"
#: org.kde.desktop/private/TextFieldContextMenu.qml:337
msgctxt "TextFieldContextMenu|"
@@ -86,9 +86,9 @@
#: org.kde.desktop/private/TextFieldContextMenu.qml:356
msgctxt "TextFieldContextMenu|"
msgid "Select All"
-msgstr ""
+msgstr "Vybrať všetko"
#: org.kde.desktop/SearchField.qml:80
msgctxt "SearchField|"
msgid "Clear search"
-msgstr ""
+msgstr "Vymazať hľadanie"