Skip to content

Commit

Permalink
gb0.05 release imminent
Browse files Browse the repository at this point in the history
  • Loading branch information
pinobatch committed May 31, 2018
1 parent 84922a9 commit e013ec1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 4 additions & 1 deletion gameboy/CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 7 additions & 1 deletion gameboy/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.)" > $@

Expand Down

0 comments on commit e013ec1

Please sign in to comment.