diff options
-rw-r--r-- | com.dec05eba.gpu_screen_recorder.appdata.xml | 13 | ||||
-rw-r--r-- | meson.build | 2 | ||||
-rw-r--r-- | project.conf | 2 |
3 files changed, 14 insertions, 3 deletions
diff --git a/com.dec05eba.gpu_screen_recorder.appdata.xml b/com.dec05eba.gpu_screen_recorder.appdata.xml index 21bac36..9ebd782 100644 --- a/com.dec05eba.gpu_screen_recorder.appdata.xml +++ b/com.dec05eba.gpu_screen_recorder.appdata.xml @@ -25,7 +25,7 @@ This is a screen recorder that has minimal impact on system performance by recording a monitor using the GPU only, similar to shadowplay on windows. This is the fastest screen recording tool for Linux. This screen recorder works on X11 and Wayland on AMD, Intel and NVIDIA. </p> <p> - This screen recorder can be used for recording your desktop offline, for live streaming and for nvidia-like instant replay, where only the last few minutes are saved. Replay data is stored in RAM, not disk. + This screen recorder can be used for recording your desktop offline, for live streaming and for nvidia-like instant replay, where only the last few minutes are saved. </p> <p>Supported video codecs:</p> <ul> @@ -85,6 +85,17 @@ </screenshots> <releases> + <release version="5.6.0" date="2025-05-05"> + <description> + <ul> + <li>Add option to store temporary replay data on disk instead of ram (in the new UI)</li> + <li>Fix UI opening on the wrong monitor/incorrect size and focused monitor capture using the wrong monitor if vrr is enabled on kde plasma wayland</li> + <li>Fix h264 software encoding option not working</li> + <li>Fix capture not working if multiple audio devices have been selected in one audio track and one of them is a noise torch audio that has forward slash in its name (id)</li> + <li>Redesign audio in the new UI to separate audio output and input, to make it clear which device is an output/input device</li> + </ul> + </description> + </release> <release version="5.5.0" date="2025-04-26"> <description> <ul> diff --git a/meson.build b/meson.build index fba7874..2ebf566 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('gpu-screen-recorder-gtk', ['c', 'cpp'], version : '5.5.0', default_options : ['warning_level=2']) +project('gpu-screen-recorder-gtk', ['c', 'cpp'], version : '5.6.0', default_options : ['warning_level=2']) add_project_arguments('-Wshadow', language : ['c', 'cpp']) if get_option('buildtype') == 'debug' diff --git a/project.conf b/project.conf index 21b0a17..32ba00f 100644 --- a/project.conf +++ b/project.conf @@ -1,7 +1,7 @@ [package] name = "gpu-screen-recorder-gtk" type = "executable" -version = "5.5.0" +version = "5.6.0" platforms = ["posix"] [config] |