Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package layer-shell-qt6 for openSUSE:Factory
checked in at 2026-04-10 17:48:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/layer-shell-qt6 (Old)
and /work/SRC/openSUSE:Factory/.layer-shell-qt6.new.21863 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "layer-shell-qt6"
Fri Apr 10 17:48:19 2026 rev:41 rq:1345619 version:6.6.4
Changes:
--------
--- /work/SRC/openSUSE:Factory/layer-shell-qt6/layer-shell-qt6.changes
2026-03-19 17:35:17.248614400 +0100
+++
/work/SRC/openSUSE:Factory/.layer-shell-qt6.new.21863/layer-shell-qt6.changes
2026-04-10 17:50:25.015391219 +0200
@@ -1,0 +2,10 @@
+Tue Apr 7 14:59:29 UTC 2026 - Fabian Vogt <[email protected]>
+
+- Update to 6.6.4:
+ * New bugfix release
+ * For more details see https://kde.org/announcements/plasma/6/6.6.4
+- Changes since 6.6.3:
+ * Update version for new release 6.6.4
+ * Fix spectacle crash
+
+-------------------------------------------------------------------
Old:
----
layer-shell-qt-6.6.3.tar.xz
layer-shell-qt-6.6.3.tar.xz.sig
New:
----
layer-shell-qt-6.6.4.tar.xz
layer-shell-qt-6.6.4.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ layer-shell-qt6.spec ++++++
--- /var/tmp/diff_new_pack.uHHp8I/_old 2026-04-10 17:50:25.599415267 +0200
+++ /var/tmp/diff_new_pack.uHHp8I/_new 2026-04-10 17:50:25.599415267 +0200
@@ -27,7 +27,7 @@
%define rname layer-shell-qt
%bcond_without released
Name: layer-shell-qt6
-Version: 6.6.3
+Version: 6.6.4
Release: 0
Summary: wlr-layer-shell integration for Qt
License: LGPL-3.0-or-later
++++++ layer-shell-qt-6.6.3.tar.xz -> layer-shell-qt-6.6.4.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/layer-shell-qt-6.6.3/CMakeLists.txt
new/layer-shell-qt-6.6.4/CMakeLists.txt
--- old/layer-shell-qt-6.6.3/CMakeLists.txt 2026-03-17 12:04:17.000000000
+0100
+++ new/layer-shell-qt-6.6.4/CMakeLists.txt 2026-04-07 09:56:32.000000000
+0200
@@ -4,7 +4,7 @@
cmake_minimum_required(VERSION 3.16)
project(layershellqt)
-set(PROJECT_VERSION "6.6.3")
+set(PROJECT_VERSION "6.6.4")
set(PROJECT_VERSION_MAJOR 6)
set(CMAKE_C_STANDARD 99)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/layer-shell-qt-6.6.3/src/qwaylandlayersurface.cpp
new/layer-shell-qt-6.6.4/src/qwaylandlayersurface.cpp
--- old/layer-shell-qt-6.6.3/src/qwaylandlayersurface.cpp 2026-03-17
12:04:17.000000000 +0100
+++ new/layer-shell-qt-6.6.4/src/qwaylandlayersurface.cpp 2026-04-07
09:56:32.000000000 +0200
@@ -204,7 +204,7 @@
return true;
} else {
const auto focusWindow = QGuiApplication::focusWindow();
- const auto wlWindow = focusWindow ?
static_cast<QtWaylandClient::QWaylandWindow *>(focusWindow->handle()) :
window();
+ const auto wlWindow = focusWindow && focusWindow->handle() ?
static_cast<QtWaylandClient::QWaylandWindow *>(focusWindow->handle()) :
window();
if (const auto seat = wlWindow->display()->lastInputDevice()) {
const auto tokenProvider =
activation->requestXdgActivationToken(wlWindow->display(),
wlWindow->wlSurface(), seat->serial(), QString());
connect(tokenProvider, &QWaylandXdgActivationTokenV1::done, this,
[this](const QString &token) {