feat: check and download updates at startup

This commit is contained in:
reaper
2026-08-14 13:50:34 -05:00
parent 55715d9fa4
commit 7b59a1cd90
6 changed files with 158 additions and 5 deletions
+2
View File
@@ -11,6 +11,7 @@ import { registerCreateIpc } from './ipc/create'
import { registerWindowIpc } from './ipc/window'
import { registerSecretsIpc } from './ipc/secrets'
import { killAllRunningCommands, powerOffAllProjects } from './commandRunner'
import { startAutomaticUpdates } from './updater'
function createWindow(): void {
// Create the browser window.
@@ -69,6 +70,7 @@ app.whenReady().then(() => {
registerSecretsIpc()
createWindow()
startAutomaticUpdates()
app.on('activate', function () {
// On macOS it's common to re-create a window in the app when the
+10
View File
@@ -0,0 +1,10 @@
import { describe, expect, it } from 'vitest'
import { compareVersions } from './updater'
describe('update version comparison', () => {
it('detects newer module versions', () => {
expect(compareVersions('1.2.0', '1.1.0')).toBeGreaterThan(0)
expect(compareVersions('1.2.0', '1.2.0')).toBe(0)
expect(compareVersions('1.1.9', '1.2.0')).toBeLessThan(0)
})
})
+58
View File
@@ -0,0 +1,58 @@
import { app } from 'electron'
import electronUpdater, { type AppUpdater } from 'electron-updater'
import {
getAvailableModulePackages,
getModuleRegistry,
installModulePackage
} from './moduleRegistry'
function updater(): AppUpdater {
// electron-updater is CommonJS; destructuring its default import keeps the
// production bundle compatible with Electron's ESM interop.
return electronUpdater.autoUpdater
}
export function compareVersions(left: string, right: string): number {
const a = left.split(/[.-]/).map((part) => Number(part) || 0)
const b = right.split(/[.-]/).map((part) => Number(part) || 0)
for (let index = 0; index < Math.max(a.length, b.length); index += 1) {
if ((a[index] ?? 0) !== (b[index] ?? 0)) return (a[index] ?? 0) - (b[index] ?? 0)
}
return 0
}
export async function updateInstalledModulesFromCatalog(): Promise<string[]> {
const installed = new Map((await getModuleRegistry()).map((module) => [module.id, module]))
const available = await getAvailableModulePackages()
const updated: string[] = []
for (const candidate of available) {
const current = installed.get(candidate.manifest.id)
if (!current || compareVersions(candidate.manifest.version, current.version) <= 0) continue
await installModulePackage(candidate.sourcePath)
updated.push(`${candidate.manifest.name} ${candidate.manifest.version}`)
}
return updated
}
export function startAutomaticUpdates(): void {
void updateInstalledModulesFromCatalog()
.then((updated) => {
if (updated.length) console.info(`Updated Aurora modules: ${updated.join(', ')}`)
})
.catch((error) => console.warn('Aurora module update check failed:', error))
// electron-updater needs a packaged application and release metadata. The
// extracted development build intentionally skips the remote app check.
if (!app.isPackaged || process.env.AURORA_DISABLE_AUTO_UPDATE === '1') return
const autoUpdater = updater()
autoUpdater.autoDownload = true
autoUpdater.autoInstallOnAppQuit = true
autoUpdater.allowPrerelease = true
autoUpdater.logger = console
void autoUpdater.checkForUpdatesAndNotify().catch((error) =>
console.warn('Aurora application update check failed:', error)
)
}