Squashed commit for update 1.3.7

This commit is contained in:
2024-04-21 13:45:17 -05:00
parent 5d02c6fc3f
commit 03524c9360
188 changed files with 7039 additions and 2873 deletions

19
build_patch/patch.py Normal file
View File

@ -0,0 +1,19 @@
class PatchTask:
def __init__(self, config, input_dir, output_dir):
self.config = config
self.input_dir = input_dir
self.output_dir = output_dir
def pre_build(self):
import subprocess
print("================Initiating patching==================")
try:
subprocess.run(["patch", f"/tmp/cache/{self.config['ver']}/renpy.py", "./build_patch/patch.diff"])
except Exception as e:
print(e)
raise e
print("================File Patched==================")
def post_build(self):
pass