Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package xdg-desktop-portal-hyprland for
openSUSE:Factory checked in at 2023-08-17 19:44:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-hyprland (Old)
and /work/SRC/openSUSE:Factory/.xdg-desktop-portal-hyprland.new.1766 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xdg-desktop-portal-hyprland"
Thu Aug 17 19:44:13 2023 rev:3 rq:1104275 version:unknown
Changes:
--------
---
/work/SRC/openSUSE:Factory/xdg-desktop-portal-hyprland/xdg-desktop-portal-hyprland.changes
2023-05-31 21:54:26.312984511 +0200
+++
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-hyprland.new.1766/xdg-desktop-portal-hyprland.changes
2023-08-17 19:44:32.150900514 +0200
@@ -1,0 +2,8 @@
+Thu Aug 17 02:45:01 UTC 2023 - Soc Virnyl Estela <[email protected]>
+
+- Update to version 0.5.0:
+ * pw: guard output in transform checks
+ * toplevelexport: remove _done call from _buffer
+ * screencast: correct array size
+
+-------------------------------------------------------------------
Old:
----
xdg-desktop-portal-hyprland-0.4.0.tar.gz
New:
----
xdg-desktop-portal-hyprland-0.5.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ xdg-desktop-portal-hyprland.spec ++++++
--- /var/tmp/diff_new_pack.8RUpFP/_old 2023-08-17 19:44:32.958902025 +0200
+++ /var/tmp/diff_new_pack.8RUpFP/_new 2023-08-17 19:44:32.970902048 +0200
@@ -18,7 +18,7 @@
%define _protocol_version 0.2
Name: xdg-desktop-portal-hyprland
-Version: 0.4.0
+Version: 0.5.0
Release: 0
Summary: Extended xdg-desktop-portal backend for Hyprland
License: MIT
++++++ xdg-desktop-portal-hyprland-0.4.0.tar.gz ->
xdg-desktop-portal-hyprland-0.5.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/xdg-desktop-portal-hyprland-0.4.0/meson.build
new/xdg-desktop-portal-hyprland-0.5.0/meson.build
--- old/xdg-desktop-portal-hyprland-0.4.0/meson.build 2023-05-29
20:42:44.000000000 +0200
+++ new/xdg-desktop-portal-hyprland-0.5.0/meson.build 2023-08-03
19:08:45.000000000 +0200
@@ -1,7 +1,7 @@
project(
'xdg-desktop-portal-hyprland',
'c',
- version: '0.4.0',
+ version: '0.5.0',
license: 'MIT',
meson_version: '>=0.58.0',
default_options: ['c_std=c11', 'warning_level=2', 'werror=false'],
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/xdg-desktop-portal-hyprland-0.4.0/src/screencast/pipewire_screencast.c
new/xdg-desktop-portal-hyprland-0.5.0/src/screencast/pipewire_screencast.c
--- old/xdg-desktop-portal-hyprland-0.4.0/src/screencast/pipewire_screencast.c
2023-05-29 20:42:44.000000000 +0200
+++ new/xdg-desktop-portal-hyprland-0.5.0/src/screencast/pipewire_screencast.c
2023-08-03 19:08:45.000000000 +0200
@@ -203,7 +203,7 @@
struct pw_stream *stream = cast->stream;
uint8_t params_buffer[3][1024];
struct spa_pod_dynamic_builder b[3];
- const struct spa_pod *params[3];
+ const struct spa_pod *params[4];
uint32_t blocks;
uint32_t data_type;
@@ -457,7 +457,7 @@
struct spa_meta_videotransform *vt;
if ((vt = spa_buffer_find_meta_data(spa_buf, SPA_META_VideoTransform,
sizeof(*vt)))) {
- vt->transform = cast->target.output->transform;
+ vt->transform = cast->target.output ?
cast->target.output->transform : 0;
logprint(TRACE, "pipewire: transform %u", vt->transform);
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/xdg-desktop-portal-hyprland-0.4.0/src/screencast/wlr_screencast.c
new/xdg-desktop-portal-hyprland-0.5.0/src/screencast/wlr_screencast.c
--- old/xdg-desktop-portal-hyprland-0.4.0/src/screencast/wlr_screencast.c
2023-05-29 20:42:44.000000000 +0200
+++ new/xdg-desktop-portal-hyprland-0.5.0/src/screencast/wlr_screencast.c
2023-08-03 19:08:45.000000000 +0200
@@ -375,9 +375,6 @@
cast->screencopy_frame_info[WL_SHM].stride = stride;
cast->screencopy_frame_info[WL_SHM].size = stride * height;
cast->screencopy_frame_info[WL_SHM].format =
xdpw_format_drm_fourcc_from_wl_shm(format);
-
- // TODO: am I sure this should be here
- hyprland_frame_buffer_done(cast, frame);
}
static void hyprland_frame_linux_dmabuf(void *data, struct
hyprland_toplevel_export_frame_v1 *frame, uint32_t format, uint32_t width,