Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package qt6gtk2 for openSUSE:Factory checked in at 2025-06-11 16:24:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qt6gtk2 (Old) and /work/SRC/openSUSE:Factory/.qt6gtk2.new.19631 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qt6gtk2" Wed Jun 11 16:24:17 2025 rev:4 rq:1284584 version:0.5 Changes: -------- --- /work/SRC/openSUSE:Factory/qt6gtk2/qt6gtk2.changes 2025-03-11 20:46:49.917987689 +0100 +++ /work/SRC/openSUSE:Factory/.qt6gtk2.new.19631/qt6gtk2.changes 2025-06-11 16:26:13.747730284 +0200 @@ -1,0 +2,6 @@ +Tue Jun 10 20:23:04 UTC 2025 - Christophe Marin <christo...@krop.fr> + +- Update to 0.5 + * Fixed placeholder text color + +------------------------------------------------------------------- Old: ---- qt6gtk2-0.4.tar.bz2 New: ---- qt6gtk2-0.5.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qt6gtk2.spec ++++++ --- /var/tmp/diff_new_pack.vwQU33/_old 2025-06-11 16:26:14.555764003 +0200 +++ /var/tmp/diff_new_pack.vwQU33/_new 2025-06-11 16:26:14.555764003 +0200 @@ -17,7 +17,7 @@ %define qt_version 6.0.0 Name: qt6gtk2 -Version: 0.4 +Version: 0.5 Release: 0 Summary: Qt6 Gtk2 Style Plugin License: GPL-2.0-or-later ++++++ qt6gtk2-0.4.tar.bz2 -> qt6gtk2-0.5.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qt6gtk2-0.4/ChangeLog new/qt6gtk2-0.5/ChangeLog --- old/qt6gtk2-0.4/ChangeLog 2025-03-04 17:25:32.000000000 +0100 +++ new/qt6gtk2-0.5/ChangeLog 2025-06-08 16:04:30.000000000 +0200 @@ -1,7 +1,9 @@ Changelog of Qt6Gtk2 - ---------- +Version 0.5 +* Fixed placeholder text color + Version 0.4 * Added Qt 6.9 support * Moved home page to opencode.net diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qt6gtk2-0.4/README.md new/qt6gtk2-0.5/README.md --- old/qt6gtk2-0.4/README.md 2025-03-04 17:25:32.000000000 +0100 +++ new/qt6gtk2-0.5/README.md 2025-06-08 16:04:30.000000000 +0200 @@ -37,9 +37,9 @@ Now restart X11 server to take the changes effect. Files and directories: - -`libqt6gtk2.so` - GTK+2.0 platform plugin -`libqt6gtk2-style.so` - GTK+2.0 style plugin - +``` +libqt6gtk2.so - GTK+2.0 platform plugin +libqt6gtk2-style.so - GTK+2.0 style plugin +``` Attention! Environment variable `QT_STYLE_OVERRIDE` should be removed before usage. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qt6gtk2-0.4/src/qt6gtk2-style/qgtkstyle.cpp new/qt6gtk2-0.5/src/qt6gtk2-style/qgtkstyle.cpp --- old/qt6gtk2-0.4/src/qt6gtk2-style/qgtkstyle.cpp 2025-03-04 17:25:32.000000000 +0100 +++ new/qt6gtk2-0.5/src/qt6gtk2-style/qgtkstyle.cpp 2025-06-08 16:04:30.000000000 +0200 @@ -327,7 +327,7 @@ GtkWidget *gtkButton = d->gtkWidget("GtkButton"); GtkWidget *gtkEntry = d->getTextColorWidget(); GdkColor gdkBg, gdkBase, gdkText, gdkForeground, gdkSbg, gdkSfg, gdkaSbg, gdkaSfg; - QColor bg, base, text, fg, highlight, highlightText, inactiveHighlight, inactiveHighlightedTExt; + QColor bg, base, text, plText, fg, highlight, highlightText, inactiveHighlight, inactiveHighlightedTExt; gdkBg = style->bg[GTK_STATE_NORMAL]; gdkForeground = gtk_widget_get_style(gtkButton)->fg[GTK_STATE_NORMAL]; @@ -345,6 +345,7 @@ bg = QColor(gdkBg.red>>8, gdkBg.green>>8, gdkBg.blue>>8); text = QColor(gdkText.red>>8, gdkText.green>>8, gdkText.blue>>8); + plText = QColor(gdkText.red>>8, gdkText.green>>8, gdkText.blue>>8, 128); fg = QColor(gdkForeground.red>>8, gdkForeground.green>>8, gdkForeground.blue>>8); base = QColor(gdkBase.red>>8, gdkBase.green>>8, gdkBase.blue>>8); highlight = QColor(gdkSbg.red>>8, gdkSbg.green>>8, gdkSbg.blue>>8); @@ -362,6 +363,7 @@ palette.setColor(QPalette::WindowText, fg); palette.setColor(QPalette::ButtonText, fg); palette.setColor(QPalette::Base, base); + palette.setColor(QPalette::PlaceholderText, plText); QColor alternateRowColor = palette.base().color().lighter(93); // ref gtkstyle.c draw_flat_box GtkWidget *gtkTreeView = d->gtkWidget("GtkTreeView");