()
| 211 | } |
| 212 | |
| 213 | export function getResolvedUpdateChannel(): string { |
| 214 | return isDev() ? "dev" : (autoUpdater.channel ?? "latest"); |
| 215 | } |
| 216 | |
| 217 | ipcMain.on("install-app-update", () => fireAndForget(updater?.promptToInstallUpdate.bind(updater))); |
| 218 | ipcMain.on("get-app-update-status", (event) => { |
no test coverage detected