Skip to content

Commit 2c8bb4e

Browse files
committed
version 0.1.24
closes #75 Improved: * It is now possible to have a worker zombie of any efficiency * Utility functions can now be collapsed and expanded Fixed: * When saving new indexed strings now, they get added correctly to the save file (Unless you used the application to export your save to JSON and then edit yourself and then reimported it, this problem doesn't matter for you)
1 parent 3aec957 commit 2c8bb4e

11 files changed

Lines changed: 2344 additions & 114 deletions

File tree

README.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ This is a save editor for [Graveyard Keeper](https://store.steampowered.com/app/
77
The python version works on Windows, Linux and macOS.
88
For Windows a .exe version available too.
99

10-
It can load and save *.dat files.
11-
Additionally you can export the loaded save to JSON, which has a similar structure to the original .json save files.
10+
It can load and save `*.dat` files.
11+
Additionally you can export the loaded save to JSON, which has a similar structure to the original `.json` save files.
1212
(The difference is, that information about types of variables is saved in the file, meaning every value is wrapped in an object).
13-
When exporting to JSON you can also choose .html to have a website where you can relatively easily edit the save in the browser console and then export it again.
13+
When exporting to JSON you can also choose `.html` to have a website where you can relatively easily edit the save in the browser console and then export it again.
1414

1515
**The Application uses a webbrowser as a GUI** (by default Chrome in App Mode, but during development FireFox was tried too - f.e. Opera should work too, but watch out for your Opera version - see [Issue #54](https://github.com/NetroScript/Graveyard-Keeper-Savefile-Editor/issues/54)).
1616

@@ -20,7 +20,7 @@ That is why you always should **backup your save files**. (In the settings of th
2020

2121
But I want to mention the last time someone asked for help due to a save broken by the save editor was in september 2018 and since then I also took additional measures.
2222

23-
**This Editor supports the DLCs (Stranger Sins + Game Of Crone) - in the editor you have toggles to enable or disable DLC Support**
23+
**This Editor supports the DLCs (Stranger Sins + Game Of Crone + Better Save Soul) - in the editor you have toggles to enable or disable DLC Support**
2424

2525
## Currently Editable
2626

@@ -35,7 +35,7 @@ But I want to mention the last time someone asked for help due to a save broken
3535
* Your relationships with NPC's (only if you interacted with them before and have more than 0)
3636
* Additionally utilities like:
3737
* Removing all drops
38-
* Setting the worker efficiency 40%
38+
* Setting the worker efficiency to any value you want
3939
* Turning the graves into perfect graves
4040
* Complete the entire tech tree (state is pre DLC)
4141
* Fix if the donkey is stuck
@@ -85,35 +85,36 @@ If a red border appears around an item, it means the save editor doesn't have th
8585
Same if an item doesn't have a preview image.
8686

8787
If you want to manually edit save files, when you change values, watch out if you change the type of the variable. F.e. if you would change a value from 0 to 1, the type would change and you would need to manually change the type to the correct one.
88-
For information about the possible types, check types.py in the data folder.
88+
For information about the possible types, check `types.py` in the `data` folder.
8989

9090

9191
## Changelog
9292

9393
Check it [here](https://github.com/NetroScript/Graveyard-Keeper-Savefile-Editor/blob/master/changelog.md).
9494

9595

96-
## Thanks to
96+
## Additional Thanks go to
9797

98-
* Reddit user [aMannus](https://www.reddit.com/user/aMannus) for supplying me a save to implement worker efficiency
98+
* Reddit user [aMannus](https://www.reddit.com/user/aMannus) for supplying me a save to implement worker efficiency (40%)
99+
* GitHub user [DeadElle](https://github.com/DeadElle) for supplying me a save with 65% worker efficiency
99100
* All contributers to this repository
100101

101-
## Misc
102+
## Manually editing saves
102103

103-
If you want to know about some stuff which you could do if you export the savefile to json check this file [here](https://github.com/NetroScript/Graveyard-Keeper-Savefile-Editor/blob/master/saves.md).
104+
If you want to know how to manually edit saves or see some additional infos about the saves you can check out the following document [here](https://github.com/NetroScript/Graveyard-Keeper-Savefile-Editor/blob/master/saves.md).
104105

105106

106107
## The application is not working?
107108

108109
Supply me a screenshot with the console output (or the copied text).
109110
If you are using the compiled windows version and a black window appears and then disappears it means the application crashes because of some error.
110111
To view the error code to be able to send it to me:
111-
In the folder where you have the .exe file, Shift + Rightclick in a free space and in the context menu there should be an option like "Open Command Prompt here" or "Open Powershell here", click that, begin writing "Graveyard" and then press tab to autocomplete and enter to execute - now you should start the application using that console window. This time the window won't close after execution, meaning you have time to make a screenshot of the error.
112+
In the folder where you have the .exe file, `Shift + Rightclick` in a free space and in the context menu there should be an option like `Open Command Prompt here` or `Open Powershell here`, click that, begin writing `Graveyard` and then press tab to autocomplete and enter to execute - now you should start the application using that console window. This time the window won't close after execution, meaning you have time to make a screenshot of the error.
112113

113114
## Notice
114115

115116
This repository contains content which I do not own.
116-
Notably all the image files in the /data/html/rsc folder. These are by [Lazy Bear Games](http://lazybeargames.com/).
117+
Notably all the image files in the `/data/html/rsc` folder. These are by [Lazy Bear Games](http://lazybeargames.com/).
117118
Additionally [jQuery](https://jquery.com/) and [Materialize](https://materializecss.com/) are also used. Their original licenses are still included.
118119
This application uses extracted strings like f.e. localisation files. These are also by [Lazy Bear Games](http://lazybeargames.com/).
119120
If you find any bugs / mistakes, feel free to open issues, or if you know how to fix it yourself, feel free to create a pull request.

changelog.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
0.1.24
2+
=====
3+
4+
Improved:
5+
6+
* It is now possible to have a worker zombie of any efficiency
7+
* Utility functions can now be collapsed and expanded
8+
9+
Fixed:
10+
11+
* When saving new indexed strings now, they get added correctly to the save file (Unless you used the application to export your save to JSON and then edit yourself and then reimported it, this problem doesn't matter for you)
12+
113
0.1.23
214
=====
315

0 commit comments

Comments
 (0)