Skip to content

Commit

Permalink
Adds full report exports, includes more playerData
Browse files Browse the repository at this point in the history
- Appearance data & various totals now included
- Supports report exports
- `gameSaveDirectoryPath` should now be the only required config option, app should gracefully handle other defaults.
  • Loading branch information
adefee committed Jan 29, 2024
1 parent 9653cb7 commit 097b931
Show file tree
Hide file tree
Showing 6 changed files with 310 additions and 22 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
run: |
cp LICENSE bin/
cp README.md bin/
cp config.example.json bin/config.example.json
echo '{"gameSaveDirectoryPath": ""}' > bin/config.json
cd bin
zip -r ./palworld-save-editor-${{steps.ghd.outputs.describe}}-all.zip *
- uses: actions/upload-artifact@v4
Expand Down
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -132,3 +132,9 @@ config.json
bin/
bin/*
.vscode/numbered-bookmarks.json
palworld-save-tools-cheahjs/
palworld-save-tools-cheahjs/*
reports/
reports/*
report/
report/*
16 changes: 11 additions & 5 deletions config.example.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,19 @@
"enable": true,
"repoUrl": "https://github.com/cheahjs/palworld-save-tools.git",
"relativeInstallPath": "./palworld-save-tools-cheahjs",
"convertFreshEveryRun": true
"convertFreshEveryRun": false
},
"gameSaveDirectoryPath": "E:\\Palword\\Saved\\SaveGames\\0\\MyWorldSaveId",
"reporting": {
"export": true,
"exportPath": "E:\\Palword\\SaveReports",
"showCapturedPals": true,
"showPlayerStats": true,
"showPlayerUnlockedRecipes": true,
"showPlayerAppearance": true
},
"gameSaveDirectoryPath": "E:\\Personal\\save\\raw-files",
"changesToMake": {
"world": {

},
"world": {},
"players": [
{
"name": "Lent",
Expand Down
Loading

0 comments on commit 097b931

Please sign in to comment.