From 9eb2c4e213e0bd75b12bbef9f90cf72853a3b2a3 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 17 Aug 2024 20:30:49 +0200 Subject: Update appdata --- com.dec05eba.gpu_screen_recorder.appdata.xml | 4 +++- src/main.cpp | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/com.dec05eba.gpu_screen_recorder.appdata.xml b/com.dec05eba.gpu_screen_recorder.appdata.xml index 2a7d3ed..da96762 100644 --- a/com.dec05eba.gpu_screen_recorder.appdata.xml +++ b/com.dec05eba.gpu_screen_recorder.appdata.xml @@ -80,10 +80,12 @@ - +
  • Allow capturing external monitors on a laptop with a dedicated gpu on X11 (for example an intel laptop with a nvidia gpu), where the monitor is connected to the dedicated gpu
  • +
  • Fix capture not working if audio device id has space in it (happens with virtual audio sources)
  • +
  • Add 10 bit color depth options for hevc and av1 to reduce banding
  • Fix cursor not visible when using multiple monitors in some wayland compositors
diff --git a/src/main.cpp b/src/main.cpp index 0c32eba..a5a5c16 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2789,11 +2789,11 @@ static GtkWidget* create_common_settings_page(GtkStack *stack, GtkApplication *a } gtk_list_store_append(store, &iter); - gtk_list_store_set(store, &iter, 0, gsr_info.supported_video_codecs.hevc ? "HEVC (10 bits)" : "HEVC (10 bits, not available on your system)", -1); + gtk_list_store_set(store, &iter, 0, gsr_info.supported_video_codecs.hevc ? "HEVC (10 bits, reduces banding)" : "HEVC (10 bits, not available on your system)", -1); gtk_list_store_set(store, &iter, 1, "hevc_10bit", -1); gtk_list_store_append(store, &iter); - gtk_list_store_set(store, &iter, 0, gsr_info.supported_video_codecs.av1 ? "AV1 (10 bits)" : "AV1 (10 bits, not available on your system)", -1); + gtk_list_store_set(store, &iter, 0, gsr_info.supported_video_codecs.av1 ? "AV1 (10 bits, reduces banding)" : "AV1 (10 bits, not available on your system)", -1); gtk_list_store_set(store, &iter, 1, "av1_10bit", -1); gtk_list_store_append(store, &iter); -- cgit v1.2.3