- Timestamp:
- Mar 2, 2008, 8:42:24 PM (15 years ago)
- Location:
- abuse/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/ChangeLog
r65 r68 1 ------------------------------------------------------------------------ 2 r67 | sam | 2008-03-02 19:17:29 +0000 (Sun, 02 Mar 2008) | 2 lines 3 Changed paths: 4 M /abuse/trunk/src/dev.cpp 5 M /abuse/trunk/src/gui.cpp 6 7 * Fix uninitialised class members. 8 9 ------------------------------------------------------------------------ 10 r66 | sam | 2008-03-02 18:43:35 +0000 (Sun, 02 Mar 2008) | 3 lines 11 Changed paths: 12 M /abuse/trunk/osx/abuse_sdl.pbproj/project.pbxproj 13 M /abuse/trunk/src/Makefile.am 14 M /abuse/trunk/src/cache.hpp 15 M /abuse/trunk/src/chars.hpp 16 M /abuse/trunk/src/clisp.cpp 17 M /abuse/trunk/src/config.cpp 18 A /abuse/trunk/src/exitproc.hpp (from /abuse/trunk/src/imlib/exitproc.hpp:64) 19 M /abuse/trunk/src/game.cpp 20 M /abuse/trunk/src/game.hpp 21 M /abuse/trunk/src/imlib/Makefile.am 22 D /abuse/trunk/src/imlib/doscall.hpp 23 D /abuse/trunk/src/imlib/exitproc.hpp 24 D /abuse/trunk/src/imlib/jnet.hpp 25 D /abuse/trunk/src/imlib/joy.hpp 26 D /abuse/trunk/src/imlib/monoprnt.hpp 27 M /abuse/trunk/src/imlib/morph.cpp 28 M /abuse/trunk/src/imlib/morph.hpp 29 D /abuse/trunk/src/imlib/sdriver.hpp 30 D /abuse/trunk/src/imlib/sound.hpp 31 M /abuse/trunk/src/imlib/texture.cpp 32 D /abuse/trunk/src/imlib/timer.cpp 33 D /abuse/trunk/src/imlib/timer.hpp 34 D /abuse/trunk/src/isllist_bak.hpp 35 D /abuse/trunk/src/laser.hpp 36 D /abuse/trunk/src/lcaller.hpp 37 M /abuse/trunk/src/lisp 38 D /abuse/trunk/src/lmenu.hpp 39 M /abuse/trunk/src/loader2.cpp 40 M /abuse/trunk/src/loader2.hpp 41 M /abuse/trunk/src/net/Makefile.am 42 D /abuse/trunk/src/net/endian.hpp 43 M /abuse/trunk/src/objects.hpp 44 D /abuse/trunk/src/ramfile.hpp 45 M /abuse/trunk/src/sdlport/Makefile.am 46 M /abuse/trunk/src/sdlport/jnet.cpp 47 A /abuse/trunk/src/sdlport/jnet.hpp (from /abuse/trunk/src/imlib/jnet.hpp:64) 48 A /abuse/trunk/src/sdlport/joy.hpp (from /abuse/trunk/src/imlib/joy.hpp:64) 49 A /abuse/trunk/src/sdlport/sound.hpp (from /abuse/trunk/src/imlib/sound.hpp:64) 50 M /abuse/trunk/src/sdlport/video.cpp 51 M /abuse/trunk/src/seq.cpp 52 D /abuse/trunk/src/tiles.hpp 53 54 * Added the proper .h and .hpp files to _SOURCES variables. As a result, 55 "make dist" now generates a buildable tarball. 56 57 ------------------------------------------------------------------------ 58 r65 | sam | 2008-03-02 17:01:06 +0000 (Sun, 02 Mar 2008) | 2 lines 59 Changed paths: 60 A /abuse/trunk/ChangeLog 61 62 * Add a temporary ChangeLog file. 63 1 64 ------------------------------------------------------------------------ 2 65 r64 | sam | 2008-03-02 16:59:29 +0000 (Sun, 02 Mar 2008) | 2 lines -
abuse/trunk/NEWS
r64 r68 1 02-03-2008 2 - Abuse-SDL 0.7.1 released. 3 - Countless bugfixes (memory leaks, alignment issues, 64-bit 4 portability, buffer overflows, uninitialised data). 5 - New webpage. 6 1 7 15-12-2002 2 8 - Abuse-SDL 0.7.0 released. -
abuse/trunk/README
r2 r68 1 Abuse-SDL 0.7. 0README1 Abuse-SDL 0.7.1 README 2 2 ---------------------- 3 3 … … 61 61 If Abuse-SDL has been installed properly, the command: 62 62 63 abuse .sdl63 abuse 64 64 65 65 will start the game. … … 177 177 makes Abuse-SDL possible. 178 178 179 Also, thanks go to Jonathan Clark for allowing me to distribute the original180 datafiles with Abuse-SDL.179 Also, thanks go to Jonathan Clark for allowing Anthony to distribute the 180 original datafiles with Abuse-SDL. 181 181 182 182 Thanks also to everyone who has contributed ideas, bug reports and patches. … … 187 187 188 188 If you have any questions, comments or constructive criticism, 189 myemail address is:189 Anthony's email address is: 190 190 191 191 trandor@labyrinth.net.au … … 193 193 The Abuse-SDL webpage can be found at: 194 194 195 http:// www.labyrinth.net.au/~trandor/abuse195 http://abuse.zoy.org/ 196 196 197 197 ---- -
abuse/trunk/configure.ac
r62 r68 1 1 dnl Process this file with autoconf to produce a configure script. 2 AC_INIT(abuse, 0.7. 0)2 AC_INIT(abuse, 0.7.1) 3 3 AC_CONFIG_AUX_DIR(.auto) 4 4 AM_INIT_AUTOMAKE 5 5 AM_CONFIG_HEADER(config.h) 6 7 dnl Version information8 VERSION="0.7.0"9 6 10 7 dnl Checks for programs. -
abuse/trunk/src/sdlport/setup.cpp
r56 r68 359 359 360 360 // Display our name and version 361 printf( "%s %s\n", PACKAGE ,VERSION );361 printf( "%s %s\n", PACKAGE_NAME, PACKAGE_VERSION ); 362 362 363 363 // Initialize SDL with video and audio support
Note: See TracChangeset
for help on using the changeset viewer.