diff options
-rw-r--r-- | com.dec05eba.gpu_screen_recorder.appdata.xml | 7 | ||||
-rw-r--r-- | src/main.cpp | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/com.dec05eba.gpu_screen_recorder.appdata.xml b/com.dec05eba.gpu_screen_recorder.appdata.xml index 20f384b..0a8fe82 100644 --- a/com.dec05eba.gpu_screen_recorder.appdata.xml +++ b/com.dec05eba.gpu_screen_recorder.appdata.xml @@ -85,6 +85,13 @@ </screenshots> <releases> + <release version="5.4.0" date="2025-04-20"> + <description> + <ul> + <li>Redesign audio settings in the new UI to allow more complex audio setup (allow configuring each audio track separately)</li> + </ul> + </description> + </release> <release version="5.3.0" date="2025-04-05"> <description> <ul> diff --git a/src/main.cpp b/src/main.cpp index f971136..b0efe68 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2632,7 +2632,7 @@ static void parse_capture_options_line(GsrInfo *_gsr_info, const std::string &li _gsr_info->supported_capture_options.focused = true; else if(line == "portal") _gsr_info->supported_capture_options.portal = true; - else + else if(line != "region") // We dont support region capture in the gtk application _gsr_info->supported_capture_options.monitors.push_back(capture_option_line_to_monitor(line)); } |