Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package plasma-wayland-protocols for openSUSE:Factory checked in at 2025-03-24 13:25:32 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/plasma-wayland-protocols (Old) and /work/SRC/openSUSE:Factory/.plasma-wayland-protocols.new.2696 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plasma-wayland-protocols" Mon Mar 24 13:25:32 2025 rev:17 rq:1255096 version:1.17.0 Changes: -------- --- /work/SRC/openSUSE:Factory/plasma-wayland-protocols/plasma-wayland-protocols.changes 2025-01-14 16:21:29.207126375 +0100 +++ /work/SRC/openSUSE:Factory/.plasma-wayland-protocols.new.2696/plasma-wayland-protocols.changes 2025-03-24 13:25:33.843078531 +0100 @@ -1,0 +2,11 @@ +Fri Mar 21 14:20:04 UTC 2025 - Fabian Vogt <fab...@ritter-vogt.de> + +- Update to 1.17.0: + * screencast: Allow compositor to choose scale factor for region screencasts + * Bump version to 1.17.0 + * plasma-window-management: Add no border and can set no border states + * CI: Add linux-qt6-next build + * output device: add a capability for built in color profile + * CI: Extend dependency requires to Linux/Qt6Next + +------------------------------------------------------------------- Old: ---- plasma-wayland-protocols-1.16.0.tar.xz plasma-wayland-protocols-1.16.0.tar.xz.sig New: ---- plasma-wayland-protocols-1.17.0.tar.xz plasma-wayland-protocols-1.17.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ plasma-wayland-protocols.spec ++++++ --- /var/tmp/diff_new_pack.gha7Qo/_old 2025-03-24 13:25:34.575109032 +0100 +++ /var/tmp/diff_new_pack.gha7Qo/_new 2025-03-24 13:25:34.587109532 +0100 @@ -18,7 +18,7 @@ %bcond_without released Name: plasma-wayland-protocols -Version: 1.16.0 +Version: 1.17.0 Release: 0 Summary: Wayland protocols used by Plasma License: BSD-3-Clause AND LGPL-2.1-only AND LGPL-2.1-or-later AND MIT ++++++ plasma-wayland-protocols-1.16.0.tar.xz -> plasma-wayland-protocols-1.17.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-wayland-protocols-1.16.0/.gitlab-ci.yml new/plasma-wayland-protocols-1.17.0/.gitlab-ci.yml --- old/plasma-wayland-protocols-1.16.0/.gitlab-ci.yml 2025-01-09 12:10:03.000000000 +0100 +++ new/plasma-wayland-protocols-1.17.0/.gitlab-ci.yml 2025-03-21 15:00:48.000000000 +0100 @@ -5,8 +5,9 @@ - project: sysadmin/ci-utilities file: - /gitlab-templates/linux.yml - - /gitlab-templates/linux-static.yml + - /gitlab-templates/linux-static.yml - /gitlab-templates/linux-qt6.yml + - /gitlab-templates/linux-qt6-next.yml - /gitlab-templates/linux-qt6-static.yml - /gitlab-templates/freebsd.yml - /gitlab-templates/freebsd-qt6.yml diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-wayland-protocols-1.16.0/.kde-ci.yml new/plasma-wayland-protocols-1.17.0/.kde-ci.yml --- old/plasma-wayland-protocols-1.16.0/.kde-ci.yml 2025-01-09 12:10:03.000000000 +0100 +++ new/plasma-wayland-protocols-1.17.0/.kde-ci.yml 2025-03-21 15:00:48.000000000 +0100 @@ -3,7 +3,7 @@ 'require': 'frameworks/extra-cmake-modules': '@stable' 'third-party/wayland': '@latest' -- 'on': ['Linux/Qt6', 'FreeBSD/Qt6'] +- 'on': ['Linux/Qt6', 'Linux/Qt6Next', 'FreeBSD/Qt6'] 'require': 'frameworks/extra-cmake-modules': '@latest-kf6' 'third-party/wayland': '@latest' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-wayland-protocols-1.16.0/CMakeLists.txt new/plasma-wayland-protocols-1.17.0/CMakeLists.txt --- old/plasma-wayland-protocols-1.16.0/CMakeLists.txt 2025-01-09 12:10:03.000000000 +0100 +++ new/plasma-wayland-protocols-1.17.0/CMakeLists.txt 2025-03-21 15:00:48.000000000 +0100 @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.5) -project(PlasmaWaylandProtocols VERSION 1.16.0) +project(PlasmaWaylandProtocols VERSION 1.17.0) include(FeatureSummary) include(CMakePackageConfigHelpers) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-wayland-protocols-1.16.0/src/protocols/kde-output-device-v2.xml new/plasma-wayland-protocols-1.17.0/src/protocols/kde-output-device-v2.xml --- old/plasma-wayland-protocols-1.16.0/src/protocols/kde-output-device-v2.xml 2025-01-09 12:10:03.000000000 +0100 +++ new/plasma-wayland-protocols-1.17.0/src/protocols/kde-output-device-v2.xml 2025-03-21 15:00:48.000000000 +0100 @@ -11,7 +11,7 @@ ]]></copyright> - <interface name="kde_output_device_v2" version="11"> + <interface name="kde_output_device_v2" version="12"> <description summary="output configuration representation"> An output device describes a display device available to the compositor. output_device is similar to wl_output, but focuses on output @@ -230,6 +230,8 @@ summary="if this outputdevice supports icc profiles"/> <entry name="brightness" value="0x80" since="9" summary="if this outputdevice supports the brightness setting"/> + <entry name="built_in_color" value="0x100" since="12" + summary="if this outputdevice supports the built-in color profile"/> </enum> <event name="capabilities"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-wayland-protocols-1.16.0/src/protocols/plasma-window-management.xml new/plasma-wayland-protocols-1.17.0/src/protocols/plasma-window-management.xml --- old/plasma-wayland-protocols-1.16.0/src/protocols/plasma-window-management.xml 2025-01-09 12:10:03.000000000 +0100 +++ new/plasma-wayland-protocols-1.17.0/src/protocols/plasma-window-management.xml 2025-03-21 15:00:48.000000000 +0100 @@ -6,7 +6,7 @@ SPDX-License-Identifier: LGPL-2.1-or-later ]]></copyright> - <interface name="org_kde_plasma_window_management" version="18"> + <interface name="org_kde_plasma_window_management" version="19"> <description summary="application windows management"> This interface manages application windows. It provides requests to show and hide the desktop and emits @@ -41,6 +41,8 @@ <entry name="resizable" value="0x10000" since="3"/> <entry name="virtual_desktop_changeable" value="0x20000" since="3"/> <entry name="skipswitcher" value="0x40000" since="9"/> + <entry name="no_border" value="0x80000" since="19"/> + <entry name="can_set_no_border" value="0x100000" since="19"/> </enum> <enum name="show_desktop"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-wayland-protocols-1.16.0/src/protocols/zkde-screencast-unstable-v1.xml new/plasma-wayland-protocols-1.17.0/src/protocols/zkde-screencast-unstable-v1.xml --- old/plasma-wayland-protocols-1.16.0/src/protocols/zkde-screencast-unstable-v1.xml 2025-01-09 12:10:03.000000000 +0100 +++ new/plasma-wayland-protocols-1.17.0/src/protocols/zkde-screencast-unstable-v1.xml 2025-03-21 15:00:48.000000000 +0100 @@ -5,7 +5,7 @@ SPDX-License-Identifier: LGPL-2.1-or-later ]]></copyright> - <interface name="zkde_screencast_unstable_v1" version="4"> + <interface name="zkde_screencast_unstable_v1" version="5"> <description summary="Protocol for managing PipeWire feeds of the different displays and windows"> Warning! The protocol described in this file is a desktop environment implementation detail. Regular clients must not use this protocol. @@ -50,7 +50,10 @@ </request> <request name="stream_region" since="3"> - <description summary="requests a feed from region in the workspace"/> + <description summary="requests a feed from region in the workspace"> + Since version 5, the compositor will choose the highest scale + factor for the region if the given scale is 0.0. + </description> <arg name="stream" type="new_id" interface="zkde_screencast_stream_unstable_v1"/> <arg name="x" type="int" summary="Logical left position"/> @@ -73,7 +76,7 @@ </request> </interface> - <interface name="zkde_screencast_stream_unstable_v1" version="4"> + <interface name="zkde_screencast_stream_unstable_v1" version="5"> <request name="close" type="destructor"> <description summary="Indicates we are done with the stream and the communication is over."/> </request>