Skip to content

Commit

Permalink
Merge pull request #64 from EternalWraith/pre-0.5
Browse files Browse the repository at this point in the history
v0.5 release merge
  • Loading branch information
EternalWraith authored Feb 1, 2024
2 parents 4c13d44 + a17b0ed commit 0452390
Show file tree
Hide file tree
Showing 35 changed files with 6,305 additions and 845 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
__pycache__
current.pson
current.pson
build
data.txt
18 changes: 18 additions & 0 deletions CxFreezeCompile.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import sys, os
from cx_Freeze import setup, Executable

build_options = {
"excludes": [],
"zip_include_packages": [],
"include_files": ["resources/", "resources/data/"],
}

base = "Win32GUI" if sys.platform == "win32" else None

setup(
name = "PalEdit v0.5",
version = "0.5",
description = "A simple tool for editing PalWorld saves",
options={"build_exe": build_options},
executables=[Executable("PalEdit.py", base=base, icon="resources/MossandaIcon.ico")],
)
Loading

0 comments on commit 0452390

Please sign in to comment.