Add updates page scaffold

This commit is contained in:
Zerebos
2026-05-21 00:52:26 +00:00
parent 3dad4bc729
commit f988641446
5 changed files with 435 additions and 6 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
export type NavPage =
| "home" | "library" | "sources" | "explore"
| "home" | "library" | "updates" | "sources" | "explore"
| "downloads" | "extensions" | "history" | "search" | "tracking";
class AppStore {
@@ -31,4 +31,4 @@ export function setSearchPrefill(next: string) { app.setSearchPrefill(next);
export function setSearchQuery(next: string) { app.setSearchQuery(next); }
export function setGenreFilter(next: string) { app.setGenreFilter(next); }
export function saveScroll(key: string, top: number) { app.saveScroll(key, top); }
export function getScroll(key: string): number { return app.getScroll(key); }
export function getScroll(key: string): number { return app.getScroll(key); }