Merge branch 'feat/godot' into feat/godot

This commit is contained in:
WallK 2024-10-17 08:48:55 +03:00 committed by GitHub
commit 9be8bbac29
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 15 additions and 0 deletions

View file

@ -49,6 +49,7 @@ build_preset_list_options() {
current_disabled_systems=() current_disabled_systems=()
changed_systems=() changed_systems=()
changed_presets=() changed_presets=()
all_systems=()
local section_results=$(sed -n '/\['"$preset"'\]/, /\[/{ /\['"$preset"'\]/! { /\[/! p } }' $rd_conf | sed '/^$/d') local section_results=$(sed -n '/\['"$preset"'\]/, /\[/{ /\['"$preset"'\]/! { /\[/! p } }' $rd_conf | sed '/^$/d')
while IFS= read -r config_line while IFS= read -r config_line

View file

@ -98,6 +98,20 @@ func multi_state(section: String, state: String) -> String:
state = "mixed" state = "mixed"
return state return state
# func logger_bash(log_type: String, log_text: String) -> void:
# # Type of log messages:
# # log d - debug message: maybe in the future we can decide to hide them in main builds or if an option is toggled
# # log i - normal informational message
# # log w - waring: something is not expected but it's not a big deal
# # log e - error: something broke
# var log_header_text = "gdc_"
# log_header_text+=log_text
# log_parameters = ["log", log_type, log_header_text]
# log_result = await run_thread_command(wrapper_command,log_parameters, false)
# #log_result = await run_thread_command("find",["$HOME", "-name", "*.xml","-print"], false)
# #print (log_result["exit_code"])
# #print (log_result["output"])
func logger(log_type: String, log_text: String) -> void: func logger(log_type: String, log_text: String) -> void:
var log_dir_path: String = "/var/config/retrodeck/logs/" var log_dir_path: String = "/var/config/retrodeck/logs/"
var log_path: String = '/var/config/retrodeck/logs/gd_logs.log' var log_path: String = '/var/config/retrodeck/logs/gd_logs.log'