feat: improve background startup and launcher control

Detach --background launches from terminals with quieter runtime output, make wrapper/plugin overlay start explicit, and allow trailing commas in JSONC configs for safer hot-reload edits. Includes pending Anki/docs/backlog updates in this unreleased batch.
This commit is contained in:
2026-02-18 02:22:01 -08:00
parent 4703b995da
commit ebaed49f76
34 changed files with 515 additions and 48 deletions

View File

@@ -194,6 +194,7 @@ export interface AnkiConnectConfig {
enabled?: boolean;
url?: string;
pollingRate?: number;
tags?: string[];
fields?: {
audio?: string;
image?: string;
@@ -423,6 +424,7 @@ export interface ResolvedConfig {
enabled: boolean;
url: string;
pollingRate: number;
tags: string[];
fields: {
audio: string;
image: string;