Skip to main content

max / goingson

526 B · 20 lines History Blame Raw
1 /**
2 * GoingsOn - OTA Update Notification
3 * Thin wrapper around shared Tauri updater UI.
4 */
5 (function() {
6 'use strict';
7 GoingsOn.updater = initUpdater({
8 ui: GoingsOn.ui,
9 escapeHtml: GoingsOn.utils.escapeHtml,
10 namespace: null,
11 cssVars: {
12 accent: 'var(--action)',
13 border: 'var(--border)',
14 textSecondary: 'var(--content-secondary)',
15 bgSecondary: 'var(--surface-overlay)',
16 fontBody: 'var(--font-sans)',
17 },
18 });
19 })();
20