Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kde-gtk-config6 for openSUSE:Factory 
checked in at 2025-11-20 14:47:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kde-gtk-config6 (Old)
 and      /work/SRC/openSUSE:Factory/.kde-gtk-config6.new.2061 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kde-gtk-config6"

Thu Nov 20 14:47:48 2025 rev:33 rq:1318628 version:6.5.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/kde-gtk-config6/kde-gtk-config6.changes  
2025-11-06 18:12:04.316539766 +0100
+++ 
/work/SRC/openSUSE:Factory/.kde-gtk-config6.new.2061/kde-gtk-config6.changes    
    2025-11-20 14:48:13.488916529 +0100
@@ -1,0 +2,10 @@
+Tue Nov 18 10:26:55 UTC 2025 - Fabian Vogt <[email protected]>
+
+- Update to 6.5.3:
+  * New bugfix release
+  * For more details see https://kde.org/announcements/plasma/6/6.5.3
+- Changes since 6.5.2:
+  * Update version for new release 6.5.3
+  * Fix formatting for gsettings font configurations
+
+-------------------------------------------------------------------

Old:
----
  kde-gtk-config-6.5.2.tar.xz
  kde-gtk-config-6.5.2.tar.xz.sig

New:
----
  kde-gtk-config-6.5.3.tar.xz
  kde-gtk-config-6.5.3.tar.xz.sig

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

Other differences:
------------------
++++++ kde-gtk-config6.spec ++++++
--- /var/tmp/diff_new_pack.RPh59C/_old  2025-11-20 14:48:14.280950031 +0100
+++ /var/tmp/diff_new_pack.RPh59C/_new  2025-11-20 14:48:14.280950031 +0100
@@ -25,7 +25,7 @@
 %{!?_plasma6_version: %define _plasma6_version %(echo %{_plasma6_bugfix} | awk 
-F. '{print $1"."$2}')}
 %bcond_without released
 Name:           kde-gtk-config6
-Version:        6.5.2
+Version:        6.5.3
 Release:        0
 Summary:        Daemon for GTK2 and GTK3 Applications Appearance Under KDE
 License:        GPL-3.0-or-later AND LGPL-3.0-or-later

++++++ kde-gtk-config-6.5.2.tar.xz -> kde-gtk-config-6.5.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-gtk-config-6.5.2/CMakeLists.txt 
new/kde-gtk-config-6.5.3/CMakeLists.txt
--- old/kde-gtk-config-6.5.2/CMakeLists.txt     2025-11-04 15:59:11.000000000 
+0100
+++ new/kde-gtk-config-6.5.3/CMakeLists.txt     2025-11-18 09:00:22.000000000 
+0100
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.16)
 
 project(kde-gtk-config)
-set(PROJECT_VERSION "6.5.2")
+set(PROJECT_VERSION "6.5.3")
 
 set(QT_MIN_VERSION "6.9.0")
 set(KF6_MIN_VERSION "6.18.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-gtk-config-6.5.2/kded/configvalueprovider.cpp 
new/kde-gtk-config-6.5.3/kded/configvalueprovider.cpp
--- old/kde-gtk-config-6.5.2/kded/configvalueprovider.cpp       2025-11-04 
15:59:11.000000000 +0100
+++ new/kde-gtk-config-6.5.3/kded/configvalueprovider.cpp       2025-11-18 
09:00:22.000000000 +0100
@@ -40,7 +40,7 @@
 {
 }
 
-QString ConfigValueProvider::fixedName() const
+QString ConfigValueProvider::fixedName(const bool isGsettingsFormat) const
 {
     static const QFont defaultFixed(QStringLiteral("Hack"), 10);
 
@@ -49,10 +49,10 @@
     static QFont font;
     font.fromString(fixedAsString);
     const QString fontStyle = fontStyleHelper(font);
-    return font.family() + QStringLiteral(", ") + fontStyle + ' ' + 
QString::number(font.pointSize());
+    return font.family() + (isGsettingsFormat ? " " : QStringLiteral(", ")) + 
fontStyle + ' ' + QString::number(font.pointSize());
 }
 
-QString ConfigValueProvider::fontName() const
+QString ConfigValueProvider::fontName(const bool isGsettingsFormat) const
 {
     static const QFont defaultFont(QStringLiteral("Noto Sans"), 10);
 
@@ -61,7 +61,7 @@
     static QFont font;
     font.fromString(fontAsString);
     const QString fontStyle = fontStyleHelper(font);
-    return font.family() + QStringLiteral(", ") + fontStyle + ' ' + 
QString::number(font.pointSize());
+    return font.family() + (isGsettingsFormat ? " " : QStringLiteral(", ")) + 
fontStyle + ' ' + QString::number(font.pointSize());
 }
 
 QString ConfigValueProvider::fontStyleHelper(const QFont &font) const
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-gtk-config-6.5.2/kded/configvalueprovider.h 
new/kde-gtk-config-6.5.3/kded/configvalueprovider.h
--- old/kde-gtk-config-6.5.2/kded/configvalueprovider.h 2025-11-04 
15:59:11.000000000 +0100
+++ new/kde-gtk-config-6.5.3/kded/configvalueprovider.h 2025-11-18 
09:00:22.000000000 +0100
@@ -18,8 +18,8 @@
 public:
     ConfigValueProvider();
 
-    QString fixedName() const;
-    QString fontName() const;
+    QString fixedName(const bool isGsettingsFormat) const;
+    QString fontName(const bool isGsettingsFormat) const;
     QString iconThemeName() const;
     QString cursorThemeName() const;
     QString soundThemeName() const;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kde-gtk-config-6.5.2/kded/gtkconfig.cpp 
new/kde-gtk-config-6.5.3/kded/gtkconfig.cpp
--- old/kde-gtk-config-6.5.2/kded/gtkconfig.cpp 2025-11-04 15:59:11.000000000 
+0100
+++ new/kde-gtk-config-6.5.3/kded/gtkconfig.cpp 2025-11-18 09:00:22.000000000 
+0100
@@ -98,16 +98,17 @@
 
 void GtkConfig::setFixed() const
 {
-    const QString configfixedName = configValueProvider->fixedName();
+    const QString configfixedName = configValueProvider->fixedName(true);
     GSettingsEditor::setValue("monospace-font-name", configfixedName);
 }
 
 void GtkConfig::setFont() const
 {
-    const QString configFontName = configValueProvider->fontName();
+    const QString configFontName = configValueProvider->fontName(false);
+    const QString configFontNameGsettings = 
configValueProvider->fontName(true);
     Gtk2ConfigEditor::setValue(QStringLiteral("gtk-font-name"), 
configFontName);
-    GSettingsEditor::setValue("document-font-name", configFontName);
-    GSettingsEditor::setValue("font-name", configFontName);
+    GSettingsEditor::setValue("document-font-name", configFontNameGsettings);
+    GSettingsEditor::setValue("font-name", configFontNameGsettings);
     SettingsIniEditor::setValue(QStringLiteral("gtk-font-name"), 
configFontName);
     XSettingsEditor::setValue(QStringLiteral("Gtk/FontName"), configFontName);
 }

Reply via email to