diff options
-rw-r--r-- | ChangeLog | 25 | ||||
-rwxr-xr-x | configure.ac | 3 | ||||
-rw-r--r-- | data/graphics/images/Makefile.am | 1 |
3 files changed, 19 insertions, 10 deletions
@@ -1,21 +1,28 @@ +2006-08-22 Bjørn Lindeijer <bjorn@lindeijer.nl> + + * configure.ac, data/graphics/images/ambient, + data/graphics/images/ambient/Makefile.am, + data/graphics/images/Makefile.am: Updated makefiles to account for new + ambient images and changed the version from 0.0.20.1 to 0.0.21. + 2006-08-21 Eugenio Favalli <elvenprogrammer@gmail.com> * The Mana World.dev, tmw.cbp: Updated project files. 2006-08-21 Philipp Sehmisch <tmw@crushnet.org> - * src/mapreader.cpp: added logic for initialisation of the overlays - * src/map.cpp, src/map.h: code for updating and drawing the overlays - * src/engine.cpp, src/engine.h: added smooth scrolling and the call - to draw the overlays - * data/maps/new_1-1.tmx.gz, data/graphics/new_7-1.tmx.gz, + * src/mapreader.cpp: Added logic for initialisation of the overlays. + * src/map.cpp, src/map.h: Code for updating and drawing the overlays. + * src/engine.cpp, src/engine.h: Added smooth scrolling and the call + to draw the overlays. + * data/maps/new_1-1.tmx.gz, data/graphics/new_7-1.tmx.gz, data/graphics/images/ambient/sandstorm.png: Added sandstorm effect - to the desert maps outside of the city (feedback, please) - * data/maps/new_2-1.tmx.gz, data/maps/new_4-1.tmx.gz, + to the desert maps outside of the city (feedback, please). + * data/maps/new_2-1.tmx.gz, data/maps/new_4-1.tmx.gz, data/maps/new_5-1.tmx.gz, data/graphics/images/ambient/spotlight.png Added spotlight effect to the cave maps (feedback, please) - * data/graphics/maps/new_9-1.tmx.gz, - data/graphics/images/ambient/clouds.png + * data/graphics/maps/new_9-1.tmx.gz, + data/graphics/images/ambient/clouds.png: Added cloudshadow effect to the woodland map (feedback, please) 2006-08-20 Bjørn Lindeijer <bjorn@lindeijer.nl> diff --git a/configure.ac b/configure.ac index c0816aa7..e33341ad 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([The Mana World], [0.0.20.1], [elvenprogrammer@gmail.com], [tmw]) +AC_INIT([The Mana World], [0.0.21], [elvenprogrammer@gmail.com], [tmw]) AC_CONFIG_HEADERS([config.h:config.h.in]) AC_LANG_CPLUSPLUS @@ -109,6 +109,7 @@ data/Makefile data/graphics/Makefile data/graphics/gui/Makefile data/graphics/images/Makefile +data/graphics/images/ambient/Makefile data/graphics/sprites/Makefile data/graphics/tiles/Makefile data/help/Makefile diff --git a/data/graphics/images/Makefile.am b/data/graphics/images/Makefile.am index 8fbe3694..e0707698 100644 --- a/data/graphics/images/Makefile.am +++ b/data/graphics/images/Makefile.am @@ -1,3 +1,4 @@ +SUBDIRS = ambient imagesdir = $(pkgdatadir)/data/graphics/images |