feat: adding recursive automatic extraction

This commit is contained in:
Chubby Granny Chaser
2025-04-02 11:25:56 +01:00
parent d15ef33a86
commit 5fa4d128c3
14 changed files with 120 additions and 59 deletions

View File

@@ -178,6 +178,8 @@ contextBridge.exposeInMainWorld("electron", {
ipcRenderer.invoke("getGameByObjectId", shop, objectId),
resetGameAchievements: (shop: GameShop, objectId: string) =>
ipcRenderer.invoke("resetGameAchievements", shop, objectId),
extractGameDownload: (shop: GameShop, objectId: string) =>
ipcRenderer.invoke("extractGameDownload", shop, objectId),
onGamesRunning: (
cb: (
gamesRunning: Pick<GameRunning, "id" | "sessionDurationInMillis">[]