Add "Jetzt entpacken" context menu, fix start freeze on large queues
Build and Release / build (push) Has been cancelled
Build and Release / build (push) Has been cancelled
- New "Jetzt entpacken" right-click option: triggers extraction for completed packages regardless of paused/stopped state - Fix 5-10s freeze when pressing Start after Pause: recoverRetryableItems was calling fs.stat on every item (474+); now only checks failed/completed - Full IPC pipeline: extractNow in manager, controller, preload, renderer Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.6
parent
e013c63c59
commit
0b73ea1386
+2
-1
@@ -32,5 +32,6 @@ export const IPC_CHANNELS = {
|
||||
EXPORT_BACKUP: "app:export-backup",
|
||||
IMPORT_BACKUP: "app:import-backup",
|
||||
OPEN_LOG: "app:open-log",
|
||||
RETRY_EXTRACTION: "queue:retry-extraction"
|
||||
RETRY_EXTRACTION: "queue:retry-extraction",
|
||||
EXTRACT_NOW: "queue:extract-now"
|
||||
} as const;
|
||||
|
||||
@@ -43,6 +43,7 @@ export interface ElectronApi {
|
||||
importBackup: () => Promise<{ restored: boolean; message: string }>;
|
||||
openLog: () => Promise<void>;
|
||||
retryExtraction: (packageId: string) => Promise<void>;
|
||||
extractNow: (packageId: string) => Promise<void>;
|
||||
onStateUpdate: (callback: (snapshot: UiSnapshot) => void) => () => void;
|
||||
onClipboardDetected: (callback: (links: string[]) => void) => () => void;
|
||||
onUpdateInstallProgress: (callback: (progress: UpdateInstallProgress) => void) => () => void;
|
||||
|
||||
Reference in New Issue
Block a user