diff options
-rw-r--r-- | com.dec05eba.gpu_screen_recorder.appdata.xml | 4 | ||||
-rw-r--r-- | 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 @@ </screenshots> <releases> - <release version="4.1.2" date="2024-08-16"> + <release version="4.1.2" date="2024-08-17"> <description> <ul> <li>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</li> + <li>Fix capture not working if audio device id has space in it (happens with virtual audio sources)</li> + <li>Add 10 bit color depth options for hevc and av1 to reduce banding</li> <li>Fix cursor not visible when using multiple monitors in some wayland compositors</li> </ul> </description> 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); |