dashboard
repositories
filestore
activity
search
login
crazy-macs
/
private-voice
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Fix X-ASR release tail capture
Ariver
2026-06-14
d14fa75079de570cb9c4dbf63f6b5bd65f959b09
[crazy-macs/private-voice.git]
/
privatevoice.src
/
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);