Skip to content

Commit

Permalink
v0.6.0 Copy Instance feature
Browse files Browse the repository at this point in the history
  • Loading branch information
magicbear committed Feb 12, 2024
1 parent 75e9c37 commit 2dd3a05
Show file tree
Hide file tree
Showing 6 changed files with 382 additions and 134 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ Changelog
Note that they these tags will not actually close the issue/PR until they
are merged into the "default" branch.

v0.6.0
-------

Feature:

- Copy Instance feature

v0.5.9
-------

Expand All @@ -22,6 +29,10 @@ Feature:
- Open GUI for drag file to the exe
- Add icons for release

Fix:

- Rename player cannot edit the local save file

v0.5.8
-------

Expand Down
9 changes: 4 additions & 5 deletions CxFreezeCompile.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
from cx_Freeze import setup, Executable

build_options = {
"includes": ["pyperclip"],
"includes": ["pyperclip", "palworld_save_tools"],
"excludes": [],
"packages": ["palworld_save_tools"],
"zip_include_packages": ["zip_includes"],
"replace_paths": [("save_tools/palworld_save_tools", "palworld_save_tools"), ("palworld_server_toolkit/resources", "resources")],
"include_files": ["palworld_server_toolkit/PalEdit", "save_tools/palworld_save_tools", "palworld_server_toolkit/resources"],
"zip_include_packages": ["zip_includes", "palworld_save_tools"],
"replace_paths": [("palworld_server_toolkit/resources", "resources")],
"include_files": ["palworld_server_toolkit/PalEdit", "palworld_server_toolkit/resources"],
"zip_includes": [],
}

Expand Down
Loading

0 comments on commit 2dd3a05

Please sign in to comment.