Sync Stats & History window, headless --sync-cli, and Windows remote support (#160)

This commit is contained in:
2026-07-13 18:56:51 -07:00
committed by GitHub
parent 66f8ca4f80
commit 49b926e08c
111 changed files with 6983 additions and 1130 deletions
+2
View File
@@ -158,6 +158,8 @@ export function shouldForwardStartupArgvViaAppControl(
const args = parseCliArgs(argv);
if (args.help || args.appPing || args.launchMpv || args.generateConfig) return false;
if (resolveStatsDaemonCommandAction(argv) !== null) return false;
// Sync CLI argv is handled headless at entry, never forwarded to a running app.
if (argv.includes('--sync-cli')) return false;
return hasExplicitCommand(args);
}