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 2025-08-08 15:11:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/layer-shell-qt6 (Old)
and /work/SRC/openSUSE:Factory/.layer-shell-qt6.new.1085 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "layer-shell-qt6"
Fri Aug 8 15:11:15 2025 rev:28 rq:1298307 version:6.4.4
Changes:
--------
--- /work/SRC/openSUSE:Factory/layer-shell-qt6/layer-shell-qt6.changes
2025-07-18 15:57:25.815713855 +0200
+++
/work/SRC/openSUSE:Factory/.layer-shell-qt6.new.1085/layer-shell-qt6.changes
2025-08-08 15:11:52.512169783 +0200
@@ -1,0 +2,10 @@
+Wed Aug 6 13:30:18 UTC 2025 - Fabian Vogt <[email protected]>
+
+- Update to 6.4.4:
+ * New bugfix release
+ * For more details see https://kde.org/announcements/plasma/6/6.4.4
+- Changes since 6.4.3:
+ * Update version for new release 6.4.4
+ * When activating, also try token from XDG_ACTIVATION_TOKEN
+
+-------------------------------------------------------------------
Old:
----
layer-shell-qt-6.4.3.tar.xz
layer-shell-qt-6.4.3.tar.xz.sig
New:
----
layer-shell-qt-6.4.4.tar.xz
layer-shell-qt-6.4.4.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ layer-shell-qt6.spec ++++++
--- /var/tmp/diff_new_pack.pWV7NQ/_old 2025-08-08 15:11:53.216199267 +0200
+++ /var/tmp/diff_new_pack.pWV7NQ/_new 2025-08-08 15:11:53.220199434 +0200
@@ -1,7 +1,7 @@
#
# spec file for package layer-shell-qt6
#
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2025 SUSE LLC and contributors
# Copyright (c) 2021 Fabian Vogt
#
# All modifications and additions to the file contributed by third parties
@@ -27,7 +27,7 @@
%define rname layer-shell-qt
%bcond_without released
Name: layer-shell-qt6
-Version: 6.4.3
+Version: 6.4.4
Release: 0
Summary: wlr-layer-shell integration for Qt
License: LGPL-3.0-or-later
++++++ layer-shell-qt-6.4.3.tar.xz -> layer-shell-qt-6.4.4.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/layer-shell-qt-6.4.3/CMakeLists.txt
new/layer-shell-qt-6.4.4/CMakeLists.txt
--- old/layer-shell-qt-6.4.3/CMakeLists.txt 2025-07-15 11:53:41.000000000
+0200
+++ new/layer-shell-qt-6.4.4/CMakeLists.txt 2025-08-05 12:51:53.000000000
+0200
@@ -4,7 +4,7 @@
cmake_minimum_required(VERSION 3.16)
project(layershellqt)
-set(PROJECT_VERSION "6.4.3")
+set(PROJECT_VERSION "6.4.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.4.3/src/qwaylandlayersurface.cpp
new/layer-shell-qt-6.4.4/src/qwaylandlayersurface.cpp
--- old/layer-shell-qt-6.4.3/src/qwaylandlayersurface.cpp 2025-07-15
11:53:41.000000000 +0200
+++ new/layer-shell-qt-6.4.4/src/qwaylandlayersurface.cpp 2025-08-05
12:51:53.000000000 +0200
@@ -211,6 +211,10 @@
activation->activate(m_activationToken, window()->wlSurface());
m_activationToken = {};
return true;
+ } else if (const auto token =
qEnvironmentVariable("XDG_ACTIVATION_TOKEN"); !token.isEmpty()) {
+ activation->activate(token, window()->wlSurface());
+ qunsetenv("XDG_ACTIVATION_TOKEN");
+ return true;
} else {
const auto focusWindow = QGuiApplication::focusWindow();
const auto wlWindow = focusWindow ?
static_cast<QtWaylandClient::QWaylandWindow *>(focusWindow->handle()) :
window();