Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package systemsettings6 for openSUSE:Factory
checked in at 2026-02-27 17:00:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/systemsettings6 (Old)
and /work/SRC/openSUSE:Factory/.systemsettings6.new.29461 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "systemsettings6"
Fri Feb 27 17:00:52 2026 rev:37 rq:1334994 version:6.6.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/systemsettings6/systemsettings6.changes
2026-02-16 13:11:47.860220153 +0100
+++
/work/SRC/openSUSE:Factory/.systemsettings6.new.29461/systemsettings6.changes
2026-02-27 17:02:11.912940724 +0100
@@ -1,0 +2,10 @@
+Tue Feb 24 17:23:58 UTC 2026 - Fabian Vogt <[email protected]>
+
+- Update to 6.6.1:
+ * New bugfix release
+ * For more details see https://kde.org/announcements/plasma/6/6.6.1
+- Changes since 6.6.0:
+ * Update version for new release 6.6.1
+ * MenuProxyModel: For categories also check whether any children are relevant
+
+-------------------------------------------------------------------
Old:
----
systemsettings-6.6.0.tar.xz
systemsettings-6.6.0.tar.xz.sig
New:
----
systemsettings-6.6.1.tar.xz
systemsettings-6.6.1.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ systemsettings6.spec ++++++
--- /var/tmp/diff_new_pack.CfBB0E/_old 2026-02-27 17:02:12.856979753 +0100
+++ /var/tmp/diff_new_pack.CfBB0E/_new 2026-02-27 17:02:12.860979918 +0100
@@ -28,14 +28,14 @@
%{!?_plasma6_version: %define _plasma6_version %(echo %{_plasma6_bugfix} | awk
-F. '{print $1"."$2}')}
%bcond_without released
Name: systemsettings6
-Version: 6.6.0
+Version: 6.6.1
Release: 0
Summary: KDE's control center
License: GPL-2.0-or-later
URL: https://www.kde.org/
-Source: %{rname}-%{version}.tar.xz
+Source:
https://download.kde.org/stable/plasma/%{version}/%{rname}-%{version}.tar.xz
%if %{with released}
-Source1: %{rname}-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/%{rname}-%{version}.tar.xz.sig
Source2: plasma.keyring
%endif
BuildRequires: kf6-extra-cmake-modules >= %{kf6_version}
++++++ systemsettings-6.6.0.tar.xz -> systemsettings-6.6.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/systemsettings-6.6.0/CMakeLists.txt
new/systemsettings-6.6.1/CMakeLists.txt
--- old/systemsettings-6.6.0/CMakeLists.txt 2026-02-12 11:13:36.000000000
+0100
+++ new/systemsettings-6.6.1/CMakeLists.txt 2026-02-24 10:47:15.000000000
+0100
@@ -1,9 +1,9 @@
cmake_minimum_required(VERSION 3.16)
-set(PROJECT_VERSION "6.6.0")
+set(PROJECT_VERSION "6.6.1")
project(systemsettings VERSION ${PROJECT_VERSION})
-set(PROJECT_DEP_VERSION "6.6.0")
+set(PROJECT_DEP_VERSION "6.6.1")
set(QT_MIN_VERSION "6.10.0")
set(KF6_MIN_VERSION "6.22.0")
set(KDE_COMPILERSETTINGS_LEVEL "5.82")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/systemsettings-6.6.0/app/MenuModel.cpp
new/systemsettings-6.6.1/app/MenuModel.cpp
--- old/systemsettings-6.6.0/app/MenuModel.cpp 2026-02-12 11:13:36.000000000
+0100
+++ new/systemsettings-6.6.1/app/MenuModel.cpp 2026-02-24 10:47:15.000000000
+0100
@@ -45,6 +45,9 @@
QObject::connect(moduleData, &KCModuleData::relevantChanged, q,
[this, item] {
if (QModelIndex index = q->indexForItem(item);
index.isValid()) {
Q_EMIT q->dataChanged(index, index,
{MenuModel::IsRelevantRole});
+ if (const QModelIndex parentIndex = index.parent();
parentIndex.isValid()) {
+ Q_EMIT q->dataChanged(parentIndex, parentIndex,
{MenuModel::IsRelevantRole});
+ }
}
});
QObject::connect(moduleData,
&KCModuleData::auxiliaryActionChanged, q, [this, item] {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/systemsettings-6.6.0/app/MenuProxyModel.cpp
new/systemsettings-6.6.1/app/MenuProxyModel.cpp
--- old/systemsettings-6.6.0/app/MenuProxyModel.cpp 2026-02-12
11:13:36.000000000 +0100
+++ new/systemsettings-6.6.1/app/MenuProxyModel.cpp 2026-02-24
10:47:15.000000000 +0100
@@ -88,12 +88,27 @@
auto mItem = index.data(Qt::UserRole).value<MenuItem *>();
- // accept only systemsettings categories that have children
- if (mItem->children().isEmpty() && mItem->isSystemsettingsCategory()) {
- return false;
- } else {
- return true; // Items matching the regexp are disabled, not hidden
+ // accept only systemsettings categories that have (relevant) children
+ if (mItem->isSystemsettingsCategory()) {
+ if (mItem->children().isEmpty()) {
+ return false;
+ }
+
+ if (!m_showIrrelevantModules) {
+ bool hasRelevantChildren = false;
+ for (int i = 0; i < sourceModel()->rowCount(index); ++i) {
+ const QModelIndex childIndex = sourceModel()->index(i, 0,
index);
+ if (childIndex.data(MenuModel::IsRelevantRole).toBool()) {
+ hasRelevantChildren = true;
+ break;
+ }
+ }
+
+ return hasRelevantChildren;
+ }
}
+
+ return true;
}
void MenuProxyModel::setFilterHighlightsEntries(bool highlight)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/systemsettings-6.6.0/app/org.kde.systemsettings.metainfo.xml
new/systemsettings-6.6.1/app/org.kde.systemsettings.metainfo.xml
--- old/systemsettings-6.6.0/app/org.kde.systemsettings.metainfo.xml
2026-02-12 11:13:36.000000000 +0100
+++ new/systemsettings-6.6.1/app/org.kde.systemsettings.metainfo.xml
2026-02-24 10:47:15.000000000 +0100
@@ -173,9 +173,9 @@
<url type="homepage">https://kde.org/plasma-desktop</url>
<url
type="donation">https://www.kde.org/donate.php?app=org.kde.systemsettings</url>
<releases>
+ <release version="6.6.1" date="2026-02-24"/>
<release version="6.6.0" date="2026-02-17"/>
<release version="6.3.90" date="2025-05-15"/>
<release version="6.2.0" date="2024-10-08"/>
- <release version="6.1.0" date="2024-06-18"/>
</releases>
</component>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/systemsettings-6.6.0/po/ga/systemsettings.po
new/systemsettings-6.6.1/po/ga/systemsettings.po
--- old/systemsettings-6.6.0/po/ga/systemsettings.po 2026-02-12
11:13:36.000000000 +0100
+++ new/systemsettings-6.6.1/po/ga/systemsettings.po 2026-02-24
10:47:15.000000000 +0100
@@ -2,14 +2,14 @@
# Copyright (C) 2009 This_file_is_part_of_KDE
# This file is distributed under the same license as the systemsettings
package.
# Kevin Scannell <[email protected]>, 2009.
-# SPDX-FileCopyrightText: 2025 Charlotte <[email protected]>
+# SPDX-FileCopyrightText: 2025, 2026 Charlotte <[email protected]>
msgid ""
msgstr ""
"Project-Id-Version: kdebase/systemsettings.po\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2026-01-12 00:46+0000\n"
-"PO-Revision-Date: 2025-12-23 21:28+0000\n"
-"Last-Translator: Charlotte <[email protected]>\n"
+"PO-Revision-Date: 2026-02-18 12:44+0000\n"
+"Last-Translator: charlotte <[email protected]>\n"
"Language-Team: Irish\n"
"Language: ga\n"
"MIME-Version: 1.0\n"
@@ -47,7 +47,7 @@
#: app/main.cpp:54 app/SettingsBase.cpp:53
#, kde-format
msgid "Info Center"
-msgstr ""
+msgstr "Lárionad Eolais"
#: app/main.cpp:56
#, kde-format
@@ -113,27 +113,27 @@
#: app/main.cpp:91
#, kde-format
msgid "List all possible modules"
-msgstr ""
+msgstr "Liostáil na modúil go léir"
#: app/main.cpp:92 app/main.cpp:153
#, kde-format
msgid "Configuration module to open"
-msgstr ""
+msgstr "Modúl cumraíochta le hoscailt"
#: app/main.cpp:93 app/main.cpp:154
#, kde-format
msgid "Arguments for the module"
-msgstr ""
+msgstr "Argóintí don mhodúl"
#: app/main.cpp:101
#, kde-format
msgid "The following modules are available:"
-msgstr ""
+msgstr "Tá na modúil seo a leanas ar fáil:"
#: app/main.cpp:119
#, kde-format
msgid "No description available"
-msgstr ""
+msgstr "Níl cur síos ar fáil"
#: app/ModuleView.cpp:185
#, kde-format
@@ -147,16 +147,11 @@
msgstr ""
#: app/ModuleView.cpp:368
-#, fuzzy, kde-format
-#| msgid ""
-#| "The settings of the current module have changed.\n"
-#| "Do you want to apply the changes or discard them?"
+#, kde-format
msgid ""
"The current page has unsaved changes.\n"
"Apply the changes or discard them?"
msgstr ""
-"Athraíodh socruithe an mhodúil reatha.\n"
-"An bhfuil fonn ort na hathruithe a chur i bhfeidhm?"
#: app/ModuleView.cpp:373
#, kde-format
@@ -167,7 +162,7 @@
#, kde-format
msgctxt "A search yielded no results"
msgid "No items matching your search"
-msgstr ""
+msgstr "Níl aon mhíreanna a mheaitseálann do chuardach"
#: app/qml/HamburgerMenuButton.qml:25
#, kde-format
@@ -182,7 +177,7 @@
#: app/SettingsBase.cpp:144
#, kde-format
msgid "Highlight Changed Settings"
-msgstr ""
+msgstr "Aibhsigh na Socruithe athraithe"
#: app/SettingsBase.cpp:152
#, kde-format
@@ -199,12 +194,12 @@
#: app/SidebarMode.cpp:600
#, kde-format
msgid "Sidebar"
-msgstr ""
+msgstr "Barra Taoibh"
#: app/SidebarMode.cpp:669
#, kde-format
msgid "Most Used"
-msgstr ""
+msgstr "Úsáidte Is Minice"
#: runner/systemsettingsrunner.cpp:32
#, kde-format
@@ -212,220 +207,6 @@
msgstr ""
#: runner/systemsettingsrunner.cpp:110
-#, fuzzy, kde-format
-#| msgid "System Settings"
+#, kde-format
msgid "System Information"
-msgstr "Socruithe an Chórais"
-
-#~ msgid "Help"
-#~ msgstr "Cabhair"
-
-#~ msgid "About System Settings"
-#~ msgstr "Maidir le Socruithe an Chórais"
-
-#, fuzzy
-#~| msgid "<i>Contains 1 item</i>"
-#~| msgid_plural "<i>Contains %1 items</i>"
-#~ msgid "Contains 1 item"
-#~ msgid_plural "Contains %1 items"
-#~ msgstr[0] "<i>1 mhír ann</i>"
-#~ msgstr[1] "<i>%1 mhír ann</i>"
-#~ msgstr[2] "<i>%1 mhír ann</i>"
-#~ msgstr[3] "<i>%1 mír ann</i>"
-#~ msgstr[4] "<i>%1 mír ann</i>"
-
-#~ msgctxt "Search through a list of control modules"
-#~ msgid "Search"
-#~ msgstr "Cuardaigh"
-
-#~ msgid "About Active View"
-#~ msgstr "Maidir leis an Amharc Gníomhach"
-
-#~ msgid "About %1"
-#~ msgstr "Maidir le %1"
-
-#~ msgid ""
-#~ "System Settings was unable to find any views, and hence has nothing to "
-#~ "display."
-#~ msgstr ""
-#~ "Níorbh fhéidir le Socruithe an Chórais aon amhairc a aimsiú, agus mar sin "
-#~ "níl aon rud le taispeáint aige."
-
-#~ msgid "No views found"
-#~ msgstr "Níor aimsíodh aon amhairc"
-
-#~ msgid "Internal name for the view used"
-#~ msgstr "Ainm inmheánach ar an amharc úsáidte"
-
-#, fuzzy
-#~| msgid "Icon View"
-#~ msgid "Switch to Icon View"
-#~ msgstr "Amharc le Deilbhíní"
-
-#~ msgid "Icon View"
-#~ msgstr "Amharc le Deilbhíní"
-
-#~ msgid "Provides a categorized icons view of control modules."
-#~ msgstr ""
-#~ "Soláthraíonn sé amharc le deilbhíní catagóirithe ar mhodúil rialaithe."
-
-#, fuzzy
-#~| msgid "Apply Settings"
-#~ msgid "All Settings"
-#~ msgstr "Cuir na Socruithe i bhFeidhm"
-
-#~ msgid "Keyboard Shortcut: %1"
-#~ msgstr "Aicearra Méarchláir: %1"
-
-#, fuzzy
-#~| msgid "Provides a categorized icons view of control modules."
-#~ msgid "Provides a categorized sidebar for control modules."
-#~ msgstr ""
-#~ "Soláthraíonn sé amharc le deilbhíní catagóirithe ar mhodúil rialaithe."
-
-#~ msgid "<i>Contains 1 item</i>"
-#~ msgid_plural "<i>Contains %1 items</i>"
-#~ msgstr[0] "<i>1 mhír ann</i>"
-#~ msgstr[1] "<i>%1 mhír ann</i>"
-#~ msgstr[2] "<i>%1 mhír ann</i>"
-#~ msgstr[3] "<i>%1 mír ann</i>"
-#~ msgstr[4] "<i>%1 mír ann</i>"
-
-#~ msgid "View Style"
-#~ msgstr "Stíl an Amhairc"
-
-#~ msgid "Show detailed tooltips"
-#~ msgstr "Taispeáin leideanna mionsonraithe"
-
-#, fuzzy
-#~| msgid "Configure"
-#~ msgid "Configure…"
-#~ msgstr "Cumraigh"
-
-#~ msgctxt "General config for System Settings"
-#~ msgid "General"
-#~ msgstr "Ginearálta"
-
-#~ msgid ""
-#~ "System Settings was unable to find any views, and hence nothing is "
-#~ "available to configure."
-#~ msgstr ""
-#~ "Níorbh fhéidir le Socruithe an Chórais aon amhairc a aimsiú, agus mar sin "
-#~ "níl aon rud le cumrú aige."
-
-#~ msgid "Determines whether detailed tooltips should be used"
-#~ msgstr "Úsáid leideanna uirlisí mionsonraithe nó ná húsáid"
-
-#~ msgid "About Active Module"
-#~ msgstr "Maidir leis an Modúl Gníomhach"
-
-#~ msgid "Configure your system"
-#~ msgstr "Cumraigh do chóras"
-
-#~ msgid ""
-#~ "Welcome to \"System Settings\", a central place to configure your "
-#~ "computer system."
-#~ msgstr ""
-#~ "Fáilte romhat! Seo é Lárionad Socruithe an Chórais, áit lárnach inar "
-#~ "féidir leat do ríomhaire a chumrú."
-
-#~ msgid "Tree View"
-#~ msgstr "Amharc Crainn"
-
-#~ msgid "Provides a classic tree-based view of control modules."
-#~ msgstr "Soláthraíonn sé amharc clasaiceach crainn ar mhodúil rialaithe."
-
-#~ msgid "Expand the first level automatically"
-#~ msgstr "Leathnaigh an chéad leibhéal go huathoibríoch"
-
-#, fuzzy
-#~| msgctxt "Search through a list of control modules"
-#~| msgid "Search"
-#~ msgid "Search..."
-#~ msgstr "Cuardaigh"
-
-#, fuzzy
-#~| msgid "System Settings"
-#~ msgid "System Settings Handbook"
-#~ msgstr "Socruithe an Chórais"
-
-#, fuzzy
-#~| msgid "About"
-#~ msgid "About KDE"
-#~ msgstr "Maidir Leis"
-
-#~ msgid "Overview"
-#~ msgstr "Foramharc"
-
-#~ msgid "Control Center Icons View"
-#~ msgstr "Lárionad Rialaithe: Amharc Deilbhíní"
-
-#~ msgid "Control Center Tree View"
-#~ msgstr "Lárionad Rialaithe: Amharc Crainn"
-
-#~ msgid "(c) 2005, Benjamin C. Meyer; (c) 2007, Canonical Ltd"
-#~ msgstr "© 2005, Benjamin C. Meyer; © 2007, Canonical Ltd"
-
-#~ msgid "Benjamin C. Meyer"
-#~ msgstr "Benjamin C. Meyer"
-
-#~ msgid "Jonathan Riddell"
-#~ msgstr "Jonathan Riddell"
-
-#~ msgid "Contributor"
-#~ msgstr "Cuiditheoir"
-
-#~ msgid "Michael D. Stemle"
-#~ msgstr "Michael D. Stemle"
-
-#~ msgid "Simon Edwards"
-#~ msgstr "Simon Edwards"
-
-#~ msgid "Ellen Reitmayr"
-#~ msgstr "Ellen Reitmayr"
-
-#~ msgid "Usability"
-#~ msgstr "Inúsáidteacht"
-
-#~ msgid "Overview (%1)"
-#~ msgstr "Foramharc (%1)"
-
-#~ msgid "S&earch:"
-#~ msgstr "C&uardaigh:"
-
-#~ msgid "Search Bar<p>Enter a search term.</p>"
-#~ msgstr "Barra Cuardaigh<p>Iontráil téarma cuardaigh.</p>"
-
-#~ msgid "%1 hit in General"
-#~ msgid_plural "%1 hits in General"
-#~ msgstr[0] "%1 amas faoi \"Ginearálta\""
-#~ msgstr[1] "%1 amas faoi \"Ginearálta\""
-#~ msgstr[2] "%1 amas faoi \"Ginearálta\""
-#~ msgstr[3] "%1 n-amas faoi \"Ginearálta\""
-#~ msgstr[4] "%1 amas faoi \"Ginearálta\""
-
-#~ msgid "%1 hit in Advanced"
-#~ msgid_plural "%1 hits in Advanced"
-#~ msgstr[0] "%1 amas faoi \"Casta\""
-#~ msgstr[1] "%1 amas faoi \"Casta\""
-#~ msgstr[2] "%1 amas faoi \"Casta\""
-#~ msgstr[3] "%1 n-amas faoi \"Casta\""
-#~ msgstr[4] "%1 amas faoi \"Casta\""
-
-#~ msgid "Unsaved Changes"
-#~ msgstr "Athruithe gan sábháil"
-
-#~ msgid "Undo Changes"
-#~ msgstr "Cealaigh na hAthruithe"
-
-#~ msgid "Ctrl+O"
-#~ msgstr "Ctrl+O"
-
-#~ msgid "&File"
-#~ msgstr "&Comhad"
-
-#~ msgid "&View"
-#~ msgstr "&Amharc"
-
-#~ msgid "Menu file"
-#~ msgstr "Comhad roghchláir"
+msgstr "Eolas an Chórais"