Desktop app updates

Use a hosted release manifest to check for new packaged desktop builds and apply them after a restart.

{{ statusLabel() }}
@if (!isElectron) {

Automatic updates are only available in the packaged Electron desktop app.

} @else {

Installed

{{ state().currentVersion }}

Latest in manifest

{{ state().latestVersion || 'Unknown' }}

Target version

{{ state().targetVersion || 'Automatic' }}

Last checked

{{ state().lastCheckedAt ? (state().lastCheckedAt | date: 'medium') : 'Not checked yet' }}

Update policy

Choose whether the app tracks the newest release, stays on a specific release, or turns updates off entirely.

Status

{{ state().statusMessage || 'Waiting for release information from the active server.' }}

@if (state().restartRequired) { }
Manifest URL priority

Add one manifest URL per line. The app tries them from top to bottom and falls back to the next URL when a manifest cannot be loaded or is invalid.

{{ isUsingConnectedServerDefaults() ? 'Using connected server defaults' : 'Using saved manifest URLs' }}

When this list is empty, the app automatically uses manifest URLs reported by your configured servers.

@if (!state().defaultManifestUrls.length && isUsingConnectedServerDefaults()) {

None of your configured servers currently report a manifest URL.

}
@if (state().serverBlocked) {
Server update required

{{ state().serverBlockMessage }}

Connected server

{{ state().serverVersion || 'Not reported' }}

Required minimum

{{ state().minimumServerVersion || 'Unknown' }}

}

Resolved manifest URL

{{ state().manifestUrl || 'No working manifest URL has been resolved yet.' }}

}