From e013ec1bed037a4de8e69e652bc7ad6255b40cc3 Mon Sep 17 00:00:00 2001 From: Damian Yerrick Date: Wed, 30 May 2018 20:10:37 -0400 Subject: [PATCH] gb0.05 release imminent --- .gitignore | 3 +++ gameboy/CHANGES.txt | 5 ++++- gameboy/makefile | 8 +++++++- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0206a97..e117600 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,9 @@ /gba/obj/gba/*.h /gba/obj/gba/*.s /zip.in +/nes/zip.in +/gameboy/zip.in +/gba/zip.in *.nes.deb /nes/map.txt /nes/bnmap.txt diff --git a/gameboy/CHANGES.txt b/gameboy/CHANGES.txt index 1e16260..7791a6f 100644 --- a/gameboy/CHANGES.txt +++ b/gameboy/CHANGES.txt @@ -1,5 +1,8 @@ -0.05 (future) +0.05 (2018-05-30) * Fix Linearity corruption after closing help (0.04 regression) +* Add GBC enhancement for menu/help, Grid, Gray ramp, Solid screen, + Motion blur, Shadow sprite, Scroll test, Vertical scroll test, and + Lame boy demo (requested by calima) 0.04 (2018-04-29) * Skip logo fadeout and SGB detection on Game Boy Color/Advance diff --git a/gameboy/makefile b/gameboy/makefile index 9726205..0b15147 100644 --- a/gameboy/makefile +++ b/gameboy/makefile @@ -55,9 +55,15 @@ zip: $(title)-$(version).zip # mention only files on which the ROM doesn't itself depend. $(title)-$(version).zip: zip.in $(title).gb \ README.md CHANGES.txt obj/gb/index.txt - tools/zipup.py $< $(title)-$(version) -o $@ + $(PY) tools/zipup.py $< $(title)-$(version) -o $@ -advzip -z3 $@ +# Build zip.in from the list of files in the Git tree +zip.in: makefile + git ls-files | grep -e "^[^.]" > $@ + echo $(title).gb >> $@ + echo zip.in >> $@ + obj/gb/index.txt: makefile echo "Files produced by build tools go here. (This file's existence forces the unzip tool to create this folder.)" > $@