feat: adding backup freezing

This commit is contained in:
Chubby Granny Chaser
2025-05-30 12:28:27 +01:00
parent 9e9adfcc07
commit dac29767bd
13 changed files with 406 additions and 127 deletions

View File

@@ -238,6 +238,8 @@ contextBridge.exposeInMainWorld("electron", {
ipcRenderer.invoke("uploadSaveGame", objectId, shop, downloadOptionTitle),
toggleArtifactFreeze: (gameArtifactId: string, freeze: boolean) =>
ipcRenderer.invoke("toggleArtifactFreeze", gameArtifactId, freeze),
renameGameArtifact: (gameArtifactId: string, label: string) =>
ipcRenderer.invoke("renameGameArtifact", gameArtifactId, label),
downloadGameArtifact: (
objectId: string,
shop: GameShop,