dashboard
repositories
filestore
activity
search
login
crazy-macs
/
private-voice
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
fix: treat right alt flags as key state
Ariver
2026-05-18
4ffa57abab0370b5bd8485a51bb333b369682aea
[crazy-macs/private-voice.git]
/
VoiceSnapGo
/
frontend
/
src
/
lib
/
stores
/
update.ts
1
2
3
4
5
6
7
8
9
10
import { writable } from "svelte/store";
export interface UpdateInfo {
version: string;
releaseNotes: string;
downloadUrl: string;
}
export const updateAvailable = writable<UpdateInfo | null>(null);
export const updateDownloading = writable<boolean>(false);