Skip to content

Commit

Permalink
Updated CHANGELOG (1.43 release)
Browse files Browse the repository at this point in the history
  • Loading branch information
ducalex committed Sep 2, 2024
1 parent e5eec87 commit d47519f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Retro-Go 1.43 (2024-??-??)
# Retro-Go 1.43 (2024-09-02)
- All: Added ZIP support (large 4MB+ GBC roms not supported unfortunately)
- Launcher: Added menu option to pre-compute all CRC32s (for cover art)
- Launcher: Officially support name-based cover art (eg: `/covers/nes/game name.png`)
Expand Down
6 changes: 3 additions & 3 deletions tools/mkrelease.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#!/usr/bin/env python3
import glob
import os
import shutil

OUTPUT_DIR = "build/release"
TARGETS = [os.path.basename(t[0:-1]) for t in glob.glob("components/retro-go/targets/*/")]

if os.path.exists(OUTPUT_DIR):
os.removedirs(OUTPUT_DIR)
os.makedirs(OUTPUT_DIR)
shutil.rmtree(OUTPUT_DIR, ignore_errors=True)
os.makedirs(OUTPUT_DIR, exist_ok=True)

for target in TARGETS:
print(f"Building {target}")
Expand Down

0 comments on commit d47519f

Please sign in to comment.