feat: add network interface binding to settings dialog and update save_settings function

This commit is contained in:
Vxrtrauter
2026-02-06 23:50:18 +01:00
parent 0686c7aec2
commit 7b2522438c
4 changed files with 46 additions and 40 deletions
+2 -2
View File
@@ -54,9 +54,9 @@ if __name__ == "__main__":
init_interfaces()
consoleLog(f"Current Bound: {state.bound_interface}")
run_thread(threading.Thread(target=send_notification, args=(shutdown_event,), daemon=True))
consoleLog("Started send_notification thread")
consoleLog("Started Thread: send_notification")
run_thread(threading.Thread(target=update_log, args=(shutdown_event,), daemon=True))
consoleLog("Started update_log thread")
consoleLog("Started Thread: update_log")
run_thread(threading.Thread(target=check_completed, args=(downloads, state.autoresume)))
consoleLog("Launching GUI")
run_gui()