Updated CHANGELOG
This commit is contained in:
parent
a9dc374d40
commit
dfc6cc30fb
13
CHANGELOG
13
CHANGELOG
|
@ -1,5 +1,18 @@
|
|||
Changelog
|
||||
|
||||
0.3
|
||||
|
||||
* Added a few new missions.
|
||||
* Added new stats.
|
||||
* Flash health and shield bars when under 25%.
|
||||
* Show warning message and play sound when a missile is launched, targetting the player.
|
||||
* Added Boost and ECM abilities for player.
|
||||
* Fixed a bug which messed up the config file saving.
|
||||
* Added civilian rescue missions.
|
||||
* New craft: Tug and Shuttle.
|
||||
* Toned down the AI a bit, to make the battle less difficult and frantic.
|
||||
* Now showing mission data on the right-hand side of the screen, in place of the target armour and shield.
|
||||
|
||||
0.2
|
||||
|
||||
* Added Firefly, Nymph, Hyena, and Leopard fighters.
|
||||
|
|
4
makefile
4
makefile
|
@ -36,7 +36,7 @@ OBJS += testMission.o textures.o text.o title.o transition.o triggers.o
|
|||
OBJS += util.o
|
||||
OBJS += waypoints.o widgets.o
|
||||
|
||||
DIST_FILES = data gfx manual music sound src LICENSE makefile README.md
|
||||
DIST_FILES = data gfx manual music sound src LICENSE makefile README.md CHANGELOG
|
||||
|
||||
# top-level rule to create the program.
|
||||
all: $(PROG)
|
||||
|
@ -54,7 +54,7 @@ dist:
|
|||
$(RM) -rf $(PROG)-$(VERSION)
|
||||
mkdir $(PROG)-$(VERSION)
|
||||
cp -r $(DIST_FILES) $(PROG)-$(VERSION)
|
||||
git log --oneline master..develop >$(PROG)-$(VERSION)/CHANGELOG
|
||||
git log --oneline --decorate >$(PROG)-$(VERSION)/CHANGELOG.raw
|
||||
tar czf $(PROG)-$(VERSION).$(REVISION)-src.tar.gz $(PROG)-$(VERSION)
|
||||
mkdir -p dist
|
||||
mv $(PROG)-$(VERSION).$(REVISION)-src.tar.gz dist
|
||||
|
|
Loading…
Reference in New Issue