Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package qterminal for openSUSE:Factory checked in at 2025-05-07 19:22:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qterminal (Old) and /work/SRC/openSUSE:Factory/.qterminal.new.30101 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qterminal" Wed May 7 19:22:15 2025 rev:25 rq:1275303 version:2.2.1 Changes: -------- --- /work/SRC/openSUSE:Factory/qterminal/qterminal.changes 2025-04-22 17:26:54.023599586 +0200 +++ /work/SRC/openSUSE:Factory/.qterminal.new.30101/qterminal.changes 2025-05-07 19:22:28.942288032 +0200 @@ -1,0 +2,8 @@ +Mon May 5 23:25:15 UTC 2025 - Shawn Dunn <sfal...@opensuse.org> + +- Update to version 2.2.1: + * Removed the workaround for problems that some X11 WMs had with + the drop-down mode because (1) it prevented exiting on closing + and (2) didn't let the terminal be focused on showing. + +------------------------------------------------------------------- Old: ---- qterminal-2.2.0.tar.xz qterminal-2.2.0.tar.xz.asc New: ---- qterminal-2.2.1.tar.xz qterminal-2.2.1.tar.xz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qterminal.spec ++++++ --- /var/tmp/diff_new_pack.P06Cwq/_old 2025-05-07 19:22:29.402307243 +0200 +++ /var/tmp/diff_new_pack.P06Cwq/_new 2025-05-07 19:22:29.406307409 +0200 @@ -17,7 +17,7 @@ Name: qterminal -Version: 2.2.0 +Version: 2.2.1 Release: 0 Summary: A Qt-based terminal emulator License: BSD-3-Clause AND GPL-2.0-or-later @@ -39,7 +39,7 @@ BuildRequires: cmake(Qt6Test) BuildRequires: cmake(Qt6Widgets) BuildRequires: cmake(lxqt2-build-tools) -BuildRequires: cmake(qtermwidget6) >= %{version} +BuildRequires: cmake(qtermwidget6) >= 2.2.0 Recommends: %{name}-lang = %{version}-%{release} %description ++++++ qterminal-2.2.0.tar.xz -> qterminal-2.2.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qterminal-2.2.0/CHANGELOG new/qterminal-2.2.1/CHANGELOG --- old/qterminal-2.2.0/CHANGELOG 2025-04-17 11:43:12.000000000 +0200 +++ new/qterminal-2.2.1/CHANGELOG 2025-05-05 21:40:35.000000000 +0200 @@ -1,3 +1,7 @@ +qterminal-2.2.1 / 2025-05-05 +============================= + * Removed the workaround for problems that some X11 WMs had with the drop-down mode because (1) it prevented exiting on closing and (2) didn't let the terminal be focused on showing. + qterminal-2.2.0 / 2025-04-17 ============================= * Prompt on closing with a running process. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qterminal-2.2.0/CMakeLists.txt new/qterminal-2.2.1/CMakeLists.txt --- old/qterminal-2.2.0/CMakeLists.txt 2025-04-17 11:43:12.000000000 +0200 +++ new/qterminal-2.2.1/CMakeLists.txt 2025-05-05 21:40:35.000000000 +0200 @@ -9,7 +9,7 @@ include(GNUInstallDirs) # qterminal version -set(QTERMINAL_VERSION "2.2.0") +set(QTERMINAL_VERSION "2.2.1") option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" OFF) option(BUILD_TESTS "Builds tests" ON) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qterminal-2.2.0/src/mainwindow.cpp new/qterminal-2.2.1/src/mainwindow.cpp --- old/qterminal-2.2.0/src/mainwindow.cpp 2025-04-17 11:43:12.000000000 +0200 +++ new/qterminal-2.2.1/src/mainwindow.cpp 2025-05-05 21:40:35.000000000 +0200 @@ -190,10 +190,6 @@ } setWindowFlags(Qt::Dialog | Qt::WindowStaysOnTopHint | Qt::CustomizeWindowHint); - if (QGuiApplication::platformName() != QStringLiteral("wayland")) - { // some X11 WMs may need this - setWindowFlags(windowFlags() | Qt::Popup); - } m_dropLockButton = new QToolButton(this); m_dropLockButton->setToolTip(tr("Keep window open when it loses focus"));