(feat): add mobile notifications
Some checks failed
/ build-web (push) Successful in 8m31s
/ build-desktop (linux) (push) Successful in 14m5s
/ release (push) Has been cancelled
/ build-mobile (push) Has been cancelled

(feat): improve mobile ui & ux
This commit is contained in:
Alois 2026-08-05 16:19:46 +02:00
commit 13fa3d8db7
Signed by: alois
SSH key fingerprint: SHA256:GBzT2DXvAuGV9XIV5W3WrzVpjU54FThmxHXdbz95J24
29 changed files with 6638 additions and 6094 deletions

View file

@ -454,6 +454,7 @@ export interface Storage extends SettingsStorageDefaults {
mtp_keyring: string;
onboarding_done: boolean;
onboarding_started: boolean;
tauri_permissions_done: boolean;
ppandtos_done: boolean;
accepted_terms_of_service: boolean;
accepted_privacy_policy: boolean;
@ -496,6 +497,7 @@ export const storageDefaults: Storage = {
mtp_keyring: "",
onboarding_done: false,
onboarding_started: false,
tauri_permissions_done: false,
ppandtos_done: false,
accepted_terms_of_service: false,
accepted_privacy_policy: false,

View file

@ -15,6 +15,7 @@ export function log(
| "red"
| "green"
| "yellow"
| "orange"
| "purple"
| "blue"
| "cyan"
@ -32,6 +33,7 @@ export function log(
red: "\x1b[31m",
green: "\x1b[32m",
yellow: "\x1b[33m",
orange: "\x1b[38;5;208m",
purple: "\x1b[35m",
blue: "\x1b[34m",
cyan: "\x1b[36m",