diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-04-20 01:33:40 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-04-20 01:33:40 +0200 |
commit | 3f2e8d0be8ff79b4df1ace1134ef934ff5377caf (patch) | |
tree | ea06ae3efa5d03cb4a30c545cfea01be4ae20f48 | |
parent | f1382e696665863033b056dedd0ef6ff625d57d4 (diff) |
5.4.0
-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)); } |