Show update UI on backup version mismatch

This commit is contained in:
Fedor Indutny
2024-11-12 15:56:20 -08:00
committed by GitHub
parent 8557de20c2
commit 230ecdf7c9
15 changed files with 344 additions and 66 deletions

View File

@@ -6,3 +6,7 @@ import { ipcRenderer } from 'electron';
export function startUpdate(): Promise<void> {
return ipcRenderer.invoke('start-update');
}
export function forceUpdate(): Promise<void> {
return ipcRenderer.invoke('updater/force-update');
}