checking for update

This commit is contained in:
SPRINX0\prochazka
2024-09-09 15:44:34 +02:00
parent 3303fd1ee9
commit 703a4bdb57
7 changed files with 125 additions and 1 deletions

View File

@@ -123,6 +123,8 @@ export const commandsCustomized = derived([commands, commandsSettings], ([$comma
...$commandsSettings[k],
}))
);
export const appUpdateStatus = writable('');
export const appUpdaterActive = writable(false);
export const draggingTab = writable(null);
export const draggingTabTarget = writable(null);
@@ -303,3 +305,9 @@ currentArchive.subscribe(value => {
currentArchiveValue = value;
});
export const getCurrentArchive = () => currentArchiveValue;
let appUpdaterActiveValue = false;
appUpdaterActive.subscribe(value => {
appUpdaterActiveValue = value;
});
export const getAppUpdaterActive = () => appUpdaterActiveValue;