Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package kde-gtk-config5 for openSUSE:Factory
checked in at 2023-09-14 16:24:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kde-gtk-config5 (Old)
and /work/SRC/openSUSE:Factory/.kde-gtk-config5.new.1766 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kde-gtk-config5"
Thu Sep 14 16:24:28 2023 rev:154 rq:1110707 version:5.27.8
Changes:
--------
--- /work/SRC/openSUSE:Factory/kde-gtk-config5/kde-gtk-config5.changes
2023-08-02 16:49:12.632901712 +0200
+++
/work/SRC/openSUSE:Factory/.kde-gtk-config5.new.1766/kde-gtk-config5.changes
2023-09-14 16:24:51.344846164 +0200
@@ -1,0 +2,10 @@
+Tue Sep 12 11:22:20 UTC 2023 - Fabian Vogt <[email protected]>
+
+- Update to 5.27.8
+ * New bugfix release
+ * For more details please see:
+ * https://kde.org/announcements/plasma/5/5.27.8
+- Changes since 5.27.7:
+ * Set GTK scale-factor value as a uint (kde#472305)
+
+-------------------------------------------------------------------
Old:
----
kde-gtk-config-5.27.7.tar.xz
kde-gtk-config-5.27.7.tar.xz.sig
New:
----
kde-gtk-config-5.27.8.tar.xz
kde-gtk-config-5.27.8.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kde-gtk-config5.spec ++++++
--- /var/tmp/diff_new_pack.eXn9MG/_old 2023-09-14 16:24:52.912902181 +0200
+++ /var/tmp/diff_new_pack.eXn9MG/_new 2023-09-14 16:24:52.912902181 +0200
@@ -18,7 +18,7 @@
%bcond_without released
Name: kde-gtk-config5
-Version: 5.27.7
+Version: 5.27.8
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-5.27.7.tar.xz -> kde-gtk-config-5.27.8.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kde-gtk-config-5.27.7/CMakeLists.txt
new/kde-gtk-config-5.27.8/CMakeLists.txt
--- old/kde-gtk-config-5.27.7/CMakeLists.txt 2023-08-01 11:24:52.000000000
+0200
+++ new/kde-gtk-config-5.27.8/CMakeLists.txt 2023-09-12 12:30:33.000000000
+0200
@@ -1,5 +1,5 @@
project(kde-gtk-config)
-set(PROJECT_VERSION "5.27.7")
+set(PROJECT_VERSION "5.27.8")
cmake_minimum_required(VERSION 3.16)
set(QT_MIN_VERSION "5.15.2")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kde-gtk-config-5.27.7/kded/config_editor/gsettings.cpp
new/kde-gtk-config-5.27.8/kded/config_editor/gsettings.cpp
--- old/kde-gtk-config-5.27.7/kded/config_editor/gsettings.cpp 2023-08-01
11:24:52.000000000 +0200
+++ new/kde-gtk-config-5.27.8/kded/config_editor/gsettings.cpp 2023-09-12
12:30:33.000000000 +0200
@@ -26,6 +26,8 @@
if (paramValue.type() == QVariant::Type::String) {
g_settings_set_string(gsettings, paramName,
paramValue.toString().toUtf8().constData());
+ } else if (paramValue.type() == QVariant::Type::UInt) {
+ g_settings_set_uint(gsettings, paramName, paramValue.toInt());
} else if (paramValue.type() == QVariant::Type::Int) {
g_settings_set_int(gsettings, paramName, paramValue.toInt());
} else if (paramValue.type() == QVariant::Type::Bool) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kde-gtk-config-5.27.7/kded/gtkconfig.cpp
new/kde-gtk-config-5.27.8/kded/gtkconfig.cpp
--- old/kde-gtk-config-5.27.7/kded/gtkconfig.cpp 2023-08-01
11:24:52.000000000 +0200
+++ new/kde-gtk-config-5.27.8/kded/gtkconfig.cpp 2023-09-12
12:30:33.000000000 +0200
@@ -199,7 +199,7 @@
void GtkConfig::setGlobalScale() const
{
- const int scaleFactor = configValueProvider->x11GlobalScaleFactor();
+ const unsigned scaleFactor = configValueProvider->x11GlobalScaleFactor();
XSettingsEditor::setValue(QStringLiteral("Gdk/WindowScalingFactor"),
scaleFactor);
GSettingsEditor::setValue("scaling-factor", scaleFactor); // For IntelliJ
IDEA
}