Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package gpu-screen-recorder-gtk for
openSUSE:Factory checked in at 2026-01-07 16:02:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gpu-screen-recorder-gtk (Old)
and /work/SRC/openSUSE:Factory/.gpu-screen-recorder-gtk.new.1928 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gpu-screen-recorder-gtk"
Wed Jan 7 16:02:10 2026 rev:22 rq:1325704 version:20251223
Changes:
--------
---
/work/SRC/openSUSE:Factory/gpu-screen-recorder-gtk/gpu-screen-recorder-gtk.changes
2025-11-03 18:55:20.186149075 +0100
+++
/work/SRC/openSUSE:Factory/.gpu-screen-recorder-gtk.new.1928/gpu-screen-recorder-gtk.changes
2026-01-07 16:02:59.815068476 +0100
@@ -1,0 +2,6 @@
+Wed Jan 07 05:48:23 UTC 2026 - Muhammad Akbar Yanuar Mantari <[email protected]>
+
+- Update to version 20251223:
+ * Ignore camera devices
+
+-------------------------------------------------------------------
Old:
----
gpu-screen-recorder-gtk-20251002.tar.zst
New:
----
gpu-screen-recorder-gtk-20251223.tar.zst
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gpu-screen-recorder-gtk.spec ++++++
--- /var/tmp/diff_new_pack.pZGKc8/_old 2026-01-07 16:03:00.663103772 +0100
+++ /var/tmp/diff_new_pack.pZGKc8/_new 2026-01-07 16:03:00.667103938 +0100
@@ -1,7 +1,7 @@
#
# spec file for package gpu-screen-recorder-gtk
#
-# Copyright (c) 2025 mantarimay
+# Copyright (c) 2026 mantarimay
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
%bcond_with test
%define appid com.dec05eba.gpu_screen_recorder
Name: gpu-screen-recorder-gtk
-Version: 20251002
+Version: 20251223
Release: 0
Summary: GTK frontend for GPU Screen Recorder
License: GPL-3.0-only
++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.pZGKc8/_old 2026-01-07 16:03:00.743107102 +0100
+++ /var/tmp/diff_new_pack.pZGKc8/_new 2026-01-07 16:03:00.747107268 +0100
@@ -1,6 +1,6 @@
<servicedata>
<service name="tar_scm">
<param
name="url">https://repo.dec05eba.com/gpu-screen-recorder-gtk.git</param>
- <param
name="changesrevision">b207b3b831430d136d708776605ddf4540b51191</param></service></servicedata>
+ <param
name="changesrevision">e57fd42289dac1787ac7fcb565adde0066894bd7</param></service></servicedata>
(No newline at EOF)
++++++ gpu-screen-recorder-gtk-20251002.tar.zst ->
gpu-screen-recorder-gtk-20251223.tar.zst ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/gpu-screen-recorder-gtk-20251002/meson.build
new/gpu-screen-recorder-gtk-20251223/meson.build
--- old/gpu-screen-recorder-gtk-20251002/meson.build 2025-10-02
19:22:00.000000000 +0200
+++ new/gpu-screen-recorder-gtk-20251223/meson.build 2025-12-23
18:44:03.000000000 +0100
@@ -1,4 +1,4 @@
-project('gpu-screen-recorder-gtk', ['c', 'cpp'], version : '5.7.8',
default_options : ['warning_level=2'])
+project('gpu-screen-recorder-gtk', ['c', 'cpp'], version : '5.7.9',
default_options : ['warning_level=2'])
add_project_arguments('-Wshadow', language : ['c', 'cpp'])
if get_option('buildtype') == 'debug'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/gpu-screen-recorder-gtk-20251002/project.conf
new/gpu-screen-recorder-gtk-20251223/project.conf
--- old/gpu-screen-recorder-gtk-20251002/project.conf 2025-10-02
19:22:00.000000000 +0200
+++ new/gpu-screen-recorder-gtk-20251223/project.conf 2025-12-23
18:44:03.000000000 +0100
@@ -1,7 +1,7 @@
[package]
name = "gpu-screen-recorder-gtk"
type = "executable"
-version = "5.7.8"
+version = "5.7.9"
platforms = ["posix"]
[config]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/gpu-screen-recorder-gtk-20251002/src/main.cpp
new/gpu-screen-recorder-gtk-20251223/src/main.cpp
--- old/gpu-screen-recorder-gtk-20251002/src/main.cpp 2025-10-02
19:22:00.000000000 +0200
+++ new/gpu-screen-recorder-gtk-20251223/src/main.cpp 2025-12-23
18:44:03.000000000 +0100
@@ -2708,7 +2708,7 @@
_gsr_info->supported_capture_options.focused = true;
else if(line == "portal")
_gsr_info->supported_capture_options.portal = true;
- else if(line != "region") // We dont support region capture in the gtk
application
+ else if(line != "region" && !line.empty() && line[0] != '/') // We dont
support region capture in the gtk application
_gsr_info->supported_capture_options.monitors.push_back(capture_option_line_to_monitor(line));
}
@@ -3369,7 +3369,7 @@
GtkGrid *fps_grid = GTK_GRID(gtk_grid_new());
gtk_grid_attach(video_grid, GTK_WIDGET(fps_grid), 0,
video_input_area_row++, 2, 1);
gtk_grid_attach(fps_grid, gtk_label_new("Frame rate: "), 0, 0, 1, 1);
- fps_entry = GTK_SPIN_BUTTON(gtk_spin_button_new_with_range(1.0, 5000.0,
1.0));
+ fps_entry = GTK_SPIN_BUTTON(gtk_spin_button_new_with_range(1.0, 500.0,
1.0));
g_signal_connect(fps_entry, "scroll-event",
G_CALLBACK(scroll_event_ignore), NULL);
gtk_spin_button_set_value(fps_entry, 60.0);
gtk_widget_set_hexpand(GTK_WIDGET(fps_entry), true);