mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 17:06:01 +00:00
checking for update
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user