diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-07-23 18:13:56 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-07-23 18:13:56 +0200 |
commit | 939323439665c2ec092ebb7cc0f5e13d2c91d2ca (patch) | |
tree | 9ac1d646cf6e677abf3330091abe2501f9ba4dd6 | |
parent | d987fb65a037fcc06633c6e18cd9653f4809a9fb (diff) |
Update appdata
-rw-r--r-- | com.dec05eba.gpu_screen_recorder.appdata.xml | 8 | ||||
-rw-r--r-- | src/main.cpp | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/com.dec05eba.gpu_screen_recorder.appdata.xml b/com.dec05eba.gpu_screen_recorder.appdata.xml index 832c9f9..66c0ce8 100644 --- a/com.dec05eba.gpu_screen_recorder.appdata.xml +++ b/com.dec05eba.gpu_screen_recorder.appdata.xml @@ -81,6 +81,14 @@ </screenshots> <releases> + <release version="4.0.1" date="2024-07-23"> + <description> + <ul> + <li>Fix capture broken on amd on wayland</li> + <li>Fix hdr capture causing crash when in replay mode</li> + </ul> + </description> + </release> <release version="4.0.0" date="2024-07-22"> <description> <ul> diff --git a/src/main.cpp b/src/main.cpp index 3491ac5..85a2050 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3276,7 +3276,7 @@ static void create_recording_hotkey_items(GtkGrid *parent_grid, int row, int num g_signal_connect(pause_unpause_hotkey_button, "button-press-event", G_CALLBACK(on_hotkey_entry_click), pause_unpause_hotkey_button); gtk_grid_attach(recording_hotkeys_grid, pause_unpause_hotkey_button, 3, hotkeys_row, 1, 1); - GtkWidget *pause_unpause_recording_label = gtk_label_new("to pause/unpause"); + GtkWidget *pause_unpause_recording_label = gtk_label_new("to pause/unpause recording"); gtk_widget_set_halign(pause_unpause_recording_label, GTK_ALIGN_START); gtk_widget_set_hexpand(pause_unpause_recording_label, true); gtk_grid_attach(recording_hotkeys_grid, pause_unpause_recording_label, 4, hotkeys_row, 1, 1); |