add getHaveBeenUpdated method

This commit is contained in:
Shidorien
2023-11-24 04:23:39 +01:00
parent cb0faad418
commit ba51e76691
@@ -35,11 +35,14 @@ export class AutoUpdaterService {
});
this.progressService.show(this.downloadProgress$, true);
return promise;
}
public quitAndInstall() {
this.ipcService.sendLazy("install-update");
}
public getHaveBeenUpdated(): Observable<boolean>{
return this.ipcService.sendV2<boolean>("have-been-updated");
}
}