Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Legend: ✅ Confirmed working, ❔ Unconfirmed, - Not available in the store
| Final Fantasy XV | ✅ | - |
| Forza Horizon 5 | ✅ | - |
| Fuga: Melodies of Steel 2 | ❔ | ❔ |
| Galacticare | ✅ | ❔ |
| Hades | ❔ | ❔ |
| High on Life | ✅ | ❔ |
| Hi-Fi RUSH | ✅ | ❔ |
Expand Down
6 changes: 6 additions & 0 deletions games.json
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,12 @@
"name": "Cricket 24",
"package": "BigbenInteractiveSA.Cricket24Win10_tqjv3vrxr8ppw",
"handler": "cricket-24"
},
// Galacticare
{
"name": "Galacticare",
"package": "TheCultGamesLtd.Galacticare_vnassb3anythc",
"handler": "galacticare"
}
]
}
8 changes: 8 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,14 @@ def get_save_paths(
fname = f"Backup/{fname.removeprefix('Backup')}"
fpath = container["files"][0]["path"]
save_meta.append((fname, fpath))

elif handler_name == "galacticare":
for container in containers:
for file in container["files"]:
if file["name"] != "PlayerData":
continue
save_meta.append((container["name"], file["path"]))


else:
raise Exception('Unsupported XGP app "%s"' % store_pkg_name)
Expand Down