clearer session screen download warning, update check config option

This commit is contained in:
end-4
2026-02-08 20:33:53 +01:00
parent 09d5817f2e
commit 633afb54c9
4 changed files with 37 additions and 7 deletions
@@ -29,7 +29,7 @@ Singleton {
Timer {
interval: Config.options.updates.checkInterval * 60 * 1000
repeat: true
running: Config.ready
running: Config.ready && Config.options.updates.enableCheck
onTriggered: {
print("[Updates] Periodic update check due")
root.refresh();
@@ -38,7 +38,7 @@ Singleton {
Process {
id: checkAvailabilityProc
running: true
running: Config.ready && Config.options.updates.enableCheck
command: ["which", "checkupdates"]
onExited: (exitCode, exitStatus) => {
root.available = (exitCode === 0);