(feat): add mobile notifications
(feat): improve mobile ui & ux
This commit is contained in:
parent
4cb38264d0
commit
13fa3d8db7
29 changed files with 6638 additions and 6094 deletions
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue