Skip to content

Commit

Permalink
1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lifehackerhansol committed Nov 29, 2022
1 parent c299a32 commit 54972a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion generator/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def makeuniqueid(self):
return 0

def makecia(self):
makeromarg = f'{self.cmdarg}makerom -f cia -target t -exefslogo -rsf data/build-cia.rsf -elf data/forwarder.elf -banner data/banner.bin -icon data/output.smdh -DAPP_ROMFS=romfs -major 1 -minor 6 -micro 2 -DAPP_VERSION_MAJOR=1 -o "{self.output}" '
makeromarg = f'{self.cmdarg}makerom -f cia -target t -exefslogo -rsf data/build-cia.rsf -elf data/forwarder.elf -banner data/banner.bin -icon data/output.smdh -DAPP_ROMFS=romfs -major 1 -minor 6 -micro 3 -DAPP_VERSION_MAJOR=1 -o "{self.output}" '
makeromarg += f'-DAPP_PRODUCT_CODE=CTR-H-{self.gamecode} -DAPP_TITLE="{self.title["eng"][0]}" -DAPP_UNIQUE_ID={self.uniqueid}'
self.message(f"Using arguments: {makeromarg}")
makeromrun = subprocess.run(makeromarg, shell=True, capture_output=True, universal_newlines=True)
Expand Down
2 changes: 1 addition & 1 deletion generator/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name="generator",
version="1.6.2",
version="1.6.3",
description="YANBF Generator",
options={"build_exe": build_exe_options},
executables=[Executable("generator.py", base=base)],
Expand Down

0 comments on commit 54972a1

Please sign in to comment.