Skip to main content

max / goingson

532 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(--accent-color)',
13 border: 'var(--border-color)',
14 textSecondary: 'var(--text-secondary)',
15 bgSecondary: 'var(--bg-secondary)',
16 fontBody: 'var(--font-sans)',
17 },
18 });
19 })();
20