Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package lxqt-qtplugin for openSUSE:Factory checked in at 2023-11-07 21:25:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lxqt-qtplugin (Old) and /work/SRC/openSUSE:Factory/.lxqt-qtplugin.new.17445 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lxqt-qtplugin" Tue Nov 7 21:25:43 2023 rev:20 rq:1123542 version:1.4.0 Changes: -------- --- /work/SRC/openSUSE:Factory/lxqt-qtplugin/lxqt-qtplugin.changes 2023-04-20 15:14:53.342071124 +0200 +++ /work/SRC/openSUSE:Factory/.lxqt-qtplugin.new.17445/lxqt-qtplugin.changes 2023-11-07 21:26:07.643003003 +0100 @@ -1,0 +2,7 @@ +Sun Nov 5 21:42:14 UTC 2023 - Shawn Dunn <[email protected]> + +- Update to 1.4.0: + * Just corrected a case of code readability + * Bumped the Version + +------------------------------------------------------------------- Old: ---- lxqt-qtplugin-1.3.0.tar.xz lxqt-qtplugin-1.3.0.tar.xz.asc New: ---- lxqt-qtplugin-1.4.0.tar.xz lxqt-qtplugin-1.4.0.tar.xz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lxqt-qtplugin.spec ++++++ --- /var/tmp/diff_new_pack.vcW1RU/_old 2023-11-07 21:26:08.211023920 +0100 +++ /var/tmp/diff_new_pack.vcW1RU/_new 2023-11-07 21:26:08.215024067 +0100 @@ -17,7 +17,7 @@ Name: lxqt-qtplugin -Version: 1.3.0 +Version: 1.4.0 Release: 0 Summary: LXQt platform integration plugin for Qt 5 License: LGPL-2.1-or-later ++++++ lxqt-qtplugin-1.3.0.tar.xz -> lxqt-qtplugin-1.4.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lxqt-qtplugin-1.3.0/CHANGELOG new/lxqt-qtplugin-1.4.0/CHANGELOG --- old/lxqt-qtplugin-1.3.0/CHANGELOG 2023-04-15 17:15:00.000000000 +0200 +++ new/lxqt-qtplugin-1.4.0/CHANGELOG 2023-11-05 12:24:04.000000000 +0100 @@ -1,3 +1,7 @@ +lxqt-qtplugin-1.4.0 / 2023-11-05 +================================= + * Just corrected a case of code readability and bumped the version. + lxqt-qtplugin-1.3.0 / 2023-04-15 ================================= * Bumped the version to 1.3.0 and updated the dependencies. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lxqt-qtplugin-1.3.0/CMakeLists.txt new/lxqt-qtplugin-1.4.0/CMakeLists.txt --- old/lxqt-qtplugin-1.3.0/CMakeLists.txt 2023-04-15 17:15:00.000000000 +0200 +++ new/lxqt-qtplugin-1.4.0/CMakeLists.txt 2023-11-05 12:24:04.000000000 +0100 @@ -15,8 +15,8 @@ # Minimum Versions set(LXQTBT_MINIMUM_VERSION "0.13.0") set(QT_MINIMUM_VERSION "5.15.0") -set(QTXDG_MINIMUM_VERSION "3.11.0") -set(FMQT_MINIMUM_VERSION "1.3.0") +set(QTXDG_MINIMUM_VERSION "3.12.0") +set(FMQT_MINIMUM_VERSION "1.4.0") find_package(Qt5DBus ${QT_MINIMUM_VERSION} REQUIRED) find_package(Qt5LinguistTools ${QT_MINIMUM_VERSION} REQUIRED) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lxqt-qtplugin-1.3.0/src/lxqtplatformtheme.cpp new/lxqt-qtplugin-1.4.0/src/lxqtplatformtheme.cpp --- old/lxqt-qtplugin-1.3.0/src/lxqtplatformtheme.cpp 2023-04-15 17:15:00.000000000 +0200 +++ new/lxqt-qtplugin-1.4.0/src/lxqtplatformtheme.cpp 2023-11-05 12:24:04.000000000 +0100 @@ -288,7 +288,7 @@ if(style_ != oldStyle || paletteChanged_) // the widget style or palette is changed { // ask Qt5 to apply the new style - if(auto app = qobject_cast<QApplication *>(QCoreApplication::instance())) + if(auto *app = qobject_cast<QApplication *>(QCoreApplication::instance())) { QApplication::setStyle(style_); // Qt 5.15 needs this and it's safe otherwise diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lxqt-qtplugin-1.3.0/src/lxqtplatformtheme.h new/lxqt-qtplugin-1.4.0/src/lxqtplatformtheme.h --- old/lxqt-qtplugin-1.3.0/src/lxqtplatformtheme.h 2023-04-15 17:15:00.000000000 +0200 +++ new/lxqt-qtplugin-1.4.0/src/lxqtplatformtheme.h 2023-11-05 12:24:04.000000000 +0100 @@ -58,7 +58,7 @@ QPlatformSystemTrayIcon *createPlatformSystemTrayIcon() const override { - auto trayIcon = new LXQtSystemTrayIcon; + auto *trayIcon = new LXQtSystemTrayIcon; if (trayIcon->isSystemTrayAvailable()) return trayIcon; else
