Skip to content

Commit fa5b9f7

Browse files
committed
Removing intermediate title screen images during release.
Also, compressed source images (via jpegoptim & pngout).
1 parent 1158b69 commit fa5b9f7

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

CHANGES.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ http://www.newbreedsoftware.com/firefighter/
1111
FujiNet device's App Key storage
1212
* Added 2019-era design doc scribbles.
1313
* Added some documentation to the "fonts" folder.
14+
* Building:
15+
* Removing intermediate title screen images during release.
1416

1517
0.1-beta-7 (2023-09-21):
1618
* Gameplay:

img-src/232353.png

-22.5 KB
Loading

img-src/Makefile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
# Bill Kendrick <[email protected]>
55
# http://www.newbreedsoftware.com/firefight/
66
#
7-
# 2023-08-13 - 2023-09-15
7+
# 2023-08-13 - 2023-09-25
88

99
all: title.pgm
1010

11-
clean:
12-
-rm title.png
11+
clean: clean-intermediate
12+
-rm title.pgm
13+
14+
clean-intermediate:
1315
-rm title-scaled.png
1416
-rm title-fullsize1.png
1517
-rm title-fullsize2.png
-12.1 KB
Loading

tools/release.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Bill Kendrick <[email protected]>
1010
# http://www.newbreedsoftware.com/firefight/
1111

12-
# Last updated 2023-09-19
12+
# Last updated 2023-09-25
1313

1414
# Confirm that we've tagged with the same version
1515
# number we're bulding it as. (Makefile "VERSION"
@@ -50,6 +50,7 @@ fi
5050
# only the source code and the files end-users care about
5151
# (the stand alone XEX executable and the ATR disk image).
5252

53+
cd img-src ; make clean-intermediate ; cd ..
5354
make clean
5455
make
5556
make clean-intermediate

0 commit comments

Comments
 (0)