Compare commits

...

3 Commits
1.9.0 ... 1.9.1

Author SHA1 Message Date
dec05eba
45ae7c95cf 1.9.1 2025-12-27 13:04:19 +01:00
dec05eba
f1b6df4d56 Dont turn on led when using replay/streaming and then recording if not enabled 2025-12-27 13:03:30 +01:00
dec05eba
202c0b2415 Correct license identifier 2025-12-26 16:17:05 +01:00
4 changed files with 15 additions and 11 deletions

View File

@@ -44,7 +44,7 @@ as gpu screen recorder tries to grab keys and keyd grabs gpu screen recorder, le
If you are stuck in such a lock where you cant press and keyboard keys you can press (left) ctrl+shift+alt+esc to close gpu screen recorder and remove it from system startup.
# License
This software is licensed under GPL3.0-only. Files under `fonts/` directory belong to the Noto Sans Google fonts project and they are licensed under `SIL Open Font License`.\
This software is licensed under GPL-3.0-only, see the LICENSE file for more information. Files under `fonts/` directory belong to the Noto Sans Google fonts project and they are licensed under `SIL Open Font License`.\
`images/default.cur` it part of the [Adwaita icon theme](https://gitlab.gnome.org/GNOME/adwaita-icon-theme/-/tree/master) which is licensed under `CC BY-SA 3.0`.\
The controller buttons under `images/` were created by [Julio Cacko](https://juliocacko.itch.io/free-input-prompts) and they are licensed under `CC0 1.0 Universal`.\
The PlayStation logo under `images/` was created by [ArksDigital](https://arks.itch.io/ps4-buttons) and it's licensed under `CC BY 4.0`.

View File

@@ -1,4 +1,4 @@
project('gsr-ui', ['c', 'cpp'], version : '1.9.0', default_options : ['warning_level=2', 'cpp_std=c++17'], subproject_dir : 'depends')
project('gsr-ui', ['c', 'cpp'], version : '1.9.1', default_options : ['warning_level=2', 'cpp_std=c++17'], subproject_dir : 'depends')
add_project_arguments('-D_FILE_OFFSET_BITS=64', language : ['c', 'cpp'])

View File

@@ -1,7 +1,7 @@
[package]
name = "gsr-ui"
type = "executable"
version = "1.9.0"
version = "1.9.1"
platforms = ["posix"]
[lang.cpp]

View File

@@ -2936,10 +2936,12 @@ namespace gsr {
update_upause_status();
if(led_indicator) {
if(!current_recording_config.replay_config.record_options.use_led_indicator)
led_indicator->set_led(true);
else if(config.record_config.record_options.use_led_indicator)
led_indicator->blink();
if(config.record_config.record_options.use_led_indicator) {
if(!current_recording_config.replay_config.record_options.use_led_indicator)
led_indicator->set_led(true);
else
led_indicator->blink();
}
}
}
@@ -2966,10 +2968,12 @@ namespace gsr {
update_upause_status();
if(led_indicator) {
if(!current_recording_config.streaming_config.record_options.use_led_indicator)
led_indicator->set_led(true);
else if(config.record_config.record_options.use_led_indicator)
led_indicator->blink();
if(config.record_config.record_options.use_led_indicator) {
if(!current_recording_config.streaming_config.record_options.use_led_indicator)
led_indicator->set_led(true);
else
led_indicator->blink();
}
}
}