From ff101df4638c005412b9566adb90b0c3564c9a1c Mon Sep 17 00:00:00 2001 From: Thomas Perl Date: Sun, 17 Jun 2007 16:30:55 +0200 Subject: [PATCH] Tennix 0.3.1 Added ChangeLog file to keep track of Tennix' history, added some documentation about how to format and generate the changelog file, updated the README file and pushed version string to 0.3.1 in tennix.h. --- ChangeLog | 46 ++++++++++++++++++++++++++++++++++++++++++++ README | 15 +++++++-------- doc/generating_changelog.txt | 15 +++++++++++++++ tennix.h | 2 +- 4 files changed, 69 insertions(+), 9 deletions(-) create mode 100644 ChangeLog create mode 100644 doc/generating_changelog.txt diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..c28eac6 --- /dev/null +++ b/ChangeLog @@ -0,0 +1,46 @@ + +Tennix 0.3.1 (Sun, 17 Jun 2007 16:25:37 +0200) + + * Added tennis ball and its shadow to 3D test + * Fix ball direction gameplay bug + * First cut of single-player mode support (Player 2 = AI) + * Modularize human input and AI input (AI vs. AI testing) + * New main menu with highlight and elektron bling bling + * Removed powershot sound + * More elektron-based full screen menu bling bling + * Add fading effect for menu/game transitions + +############################################################################### + +Tennix 0.3.0 (Tue, 12 Jun 2007 22:39:07 +0200) + + * testing 3d-to-2d conversion with a pygame draft script + * First cut of gameplay updates, partly broken + * Merge branch 'gameplay' + * Bugfix for ball not moving completely off-screen + * Support for ball out with sound + * Compile-time debug mode, get_move_y gameplay fixes + * Line drawing methods and new gameplay fixes + +############################################################################### + +Tennix svn-r20 (Wed, 23 May 2007 09:35:27 +0200) + + * Removed DOS line endings + * Initial support for win32 + * Added sound support (needs SDL_mixer) + samples + * Make Tennix easier by reducing bouncing + * 640x480 version, graphics updated + * Proper graphics loading/caching, use IDs for images + * Support for SDL_mixer and SDL_image on win32 + * Also add PNG files to binary release + * Better handling of display format w/ surface formats + * Make Tennix buildable on the MacOSX platform (Tennix.app) + * High-quality Tennix icon + * removed images + * Added README + COPYING for release + * use pngs instead of bmps + * do not distribute bmp files + * Add README files as data files + * Updated Mac OS X icon + diff --git a/README b/README index 658189a..bae7c59 100644 --- a/README +++ b/README @@ -37,18 +37,17 @@ ABOUT This is the SDL (Simple DirectMedia Layer) port of Tennix!, a game written by Thomas Perl in 2003. This version has been up- - scaled to a resolution of 640x480 in comparison to the 220x200 + scaled to a resolution of 640x480 in comparison to the 320x200 format used in the original game. - Apart from the graphics and appearance, the gameplay has also - been re-written so that the game doesn't resemble a ping-pong- - like game (as before), but a rather interesting form of tennis. + Changes from the original Tennix to the first SDL release include + a new shadow, advanced alpha blending and the removal of the + previously-included pseudo-advertisements. - This also includes a shadow, advanced alpha blending and the - removal of the previously-included pseudo-advertisements. + For all changes, please see the ChangeLog file. - This port has been written on the 10th of May 2007 and has been - improved and updated up till the 23rd of May of the same year. + This port has been written on the 10th of May 2007 and is now + being improved and updated since then. INSTALLATION diff --git a/doc/generating_changelog.txt b/doc/generating_changelog.txt new file mode 100644 index 0000000..f4362e6 --- /dev/null +++ b/doc/generating_changelog.txt @@ -0,0 +1,15 @@ +First line should be like this: + +Tennix 0.x.y (DATE) + +Create commit summary information: + git log previousreleasetagname..thisreleasetagname | git shortlog + +Edit the commit summary information by formatting lines so that +they start with a tabulator, followed by an asterisk, followed by +a space character and then the commit message, like this: + + * asdf + +Add a "#######..." line as delimiter + diff --git a/tennix.h b/tennix.h index 4db763a..7cc57c0 100644 --- a/tennix.h +++ b/tennix.h @@ -29,7 +29,7 @@ #include "SDL.h" -#define VERSION "0.3.0" +#define VERSION "0.3.1" #define COPYRIGHT "Copyright (c) 2003, 2007 Thomas Perl" #define URL "http://thpinfo.com/2007/tennix/" -- 2.11.4.GIT