Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package kwayland-server for openSUSE:Factory
checked in at 2021-03-19 16:41:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kwayland-server (Old)
and /work/SRC/openSUSE:Factory/.kwayland-server.new.2401 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kwayland-server"
Fri Mar 19 16:41:26 2021 rev:16 rq:879614 version:5.21.3
Changes:
--------
--- /work/SRC/openSUSE:Factory/kwayland-server/kwayland-server.changes
2021-03-10 08:52:40.302605115 +0100
+++
/work/SRC/openSUSE:Factory/.kwayland-server.new.2401/kwayland-server.changes
2021-03-19 16:41:27.593976646 +0100
@@ -1,0 +2,10 @@
+Tue Mar 16 13:55:24 UTC 2021 - Fabian Vogt <[email protected]>
+
+- Update to 5.21.3
+ * New bugfix release
+ * For more details please see:
+ * https://kde.org/announcements/plasma/5/5.21.3
+- Changes since 5.21.2:
+ * Update pressed keys even if there is no focused surface
+
+-------------------------------------------------------------------
Old:
----
kwayland-server-5.21.2.tar.xz
kwayland-server-5.21.2.tar.xz.sig
New:
----
kwayland-server-5.21.3.tar.xz
kwayland-server-5.21.3.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kwayland-server.spec ++++++
--- /var/tmp/diff_new_pack.UJijzT/_old 2021-03-19 16:41:28.153977402 +0100
+++ /var/tmp/diff_new_pack.UJijzT/_new 2021-03-19 16:41:28.157977407 +0100
@@ -24,15 +24,15 @@
%bcond_without lang
Name: kwayland-server
-Version: 5.21.2
+Version: 5.21.3
Release: 0
Summary: KDE Wayland server library
License: LGPL-2.1-or-later
Group: Development/Libraries/KDE
URL: https://www.kde.org
-Source: kwayland-server-%{version}.tar.xz
+Source:
https://download.kde.org/stable/plasma/%{version}/kwayland-server-%{version}.tar.xz
%if %{with lang}
-Source1: kwayland-server-%{version}.tar.xz.sig
+Source1:
https://download.kde.org/stable/plasma/%{version}/kwayland-server-%{version}.tar.xz.sig
Source2: plasma.keyring
%endif
BuildRequires: cmake >= 3.5
++++++ kwayland-server-5.21.2.tar.xz -> kwayland-server-5.21.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kwayland-server-5.21.2/CMakeLists.txt
new/kwayland-server-5.21.3/CMakeLists.txt
--- old/kwayland-server-5.21.2/CMakeLists.txt 2021-03-02 13:41:50.000000000
+0100
+++ new/kwayland-server-5.21.3/CMakeLists.txt 2021-03-16 13:27:14.000000000
+0100
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.5)
-set(PROJECT_VERSION "5.21.2")
+set(PROJECT_VERSION "5.21.3")
set(PROJECT_VERSION_MAJOR 5)
set(QT_MIN_VERSION "5.15.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/kwayland-server-5.21.2/src/server/keyboard_interface.cpp
new/kwayland-server-5.21.3/src/server/keyboard_interface.cpp
--- old/kwayland-server-5.21.2/src/server/keyboard_interface.cpp
2021-03-02 13:41:50.000000000 +0100
+++ new/kwayland-server-5.21.3/src/server/keyboard_interface.cpp
2021-03-16 13:27:14.000000000 +0100
@@ -186,11 +186,11 @@
void KeyboardInterface::keyPressed(quint32 key)
{
- if (!d->focusedSurface) {
+ if (!d->updateKey(key, KeyboardInterfacePrivate::State::Pressed)) {
return;
}
- if (!d->updateKey(key, KeyboardInterfacePrivate::State::Pressed)) {
+ if (!d->focusedSurface) {
return;
}
@@ -203,11 +203,11 @@
void KeyboardInterface::keyReleased(quint32 key)
{
- if (!d->focusedSurface) {
+ if (!d->updateKey(key, KeyboardInterfacePrivate::State::Released)) {
return;
}
- if (!d->updateKey(key, KeyboardInterfacePrivate::State::Released)) {
+ if (!d->focusedSurface) {
return;
}