From 5972a8e69893415318055f1a186d69d026428571 Mon Sep 17 00:00:00 2001 From: Thomas Perl Date: Thu, 20 Mar 2008 14:28:55 +0100 Subject: [PATCH] Tennix 0.6.0 and documentation updates Update README and manpage to reflect changes for the new version. Update copyright notices (add 2008). Push version number in makefile. --- README | 5 ++++- game.c | 2 +- game.h | 2 +- graphics.c | 2 +- graphics.h | 2 +- input.c | 2 +- input.h | 2 +- makefile | 2 +- sound.c | 2 +- sound.h | 2 +- tennix.6 | 7 +++++-- tennix.c | 2 +- tennix.h | 4 ++-- 13 files changed, 21 insertions(+), 15 deletions(-) diff --git a/README b/README index 2fb5296..bcc47e5 100644 --- a/README +++ b/README @@ -9,7 +9,7 @@ SDL Port - Copyright (C) 2003, 2007 Thomas Perl + Copyright (C) 2003, 2007, 2008 Thomas Perl @@ -78,6 +78,9 @@ PLAYING TENNIX Swing racket D K --------------------------- + See the manpage, tennix(6) for more controls (especially alternative + keyboard controls and mouse control, which is new since 0.6.0). + FUNCTION KEYS Y .... Make screenshot (save as screenshot.bmp) diff --git a/game.c b/game.c index 8dae3be..ced5867 100644 --- a/game.c +++ b/game.c @@ -2,7 +2,7 @@ /** * * Tennix! SDL Port - * Copyright (C) 2003, 2007 Thomas Perl + * Copyright (C) 2003, 2007, 2008 Thomas Perl * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/game.h b/game.h index 4272c61..463865c 100644 --- a/game.h +++ b/game.h @@ -2,7 +2,7 @@ /** * * Tennix! SDL Port - * Copyright (C) 2003, 2007 Thomas Perl + * Copyright (C) 2003, 2007, 2008 Thomas Perl * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/graphics.c b/graphics.c index 452a158..dbb1fa1 100644 --- a/graphics.c +++ b/graphics.c @@ -2,7 +2,7 @@ /** * * Tennix! SDL Port - * Copyright (C) 2003, 2007 Thomas Perl + * Copyright (C) 2003, 2007, 2008 Thomas Perl * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/graphics.h b/graphics.h index 3d77393..8394f12 100644 --- a/graphics.h +++ b/graphics.h @@ -2,7 +2,7 @@ /** * * Tennix! SDL Port - * Copyright (C) 2003, 2007 Thomas Perl + * Copyright (C) 2003, 2007, 2008 Thomas Perl * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/input.c b/input.c index 3fd3c55..ae9e867 100644 --- a/input.c +++ b/input.c @@ -2,7 +2,7 @@ /** * * Tennix! SDL Port - * Copyright (C) 2003, 2007 Thomas Perl + * Copyright (C) 2003, 2007, 2008 Thomas Perl * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/input.h b/input.h index 3e877fe..53b8462 100644 --- a/input.h +++ b/input.h @@ -2,7 +2,7 @@ /** * * Tennix! SDL Port - * Copyright (C) 2003, 2007 Thomas Perl + * Copyright (C) 2003, 2007, 2008 Thomas Perl * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/makefile b/makefile index a25644f..8dfc6f0 100644 --- a/makefile +++ b/makefile @@ -20,7 +20,7 @@ # CC = gcc -RELEASE = 0.5.0 +RELEASE = 0.6.0 TARGET ?= default diff --git a/sound.c b/sound.c index c80008d..e550384 100644 --- a/sound.c +++ b/sound.c @@ -2,7 +2,7 @@ /** * * Tennix! SDL Port - * Copyright (C) 2003, 2007 Thomas Perl + * Copyright (C) 2003, 2007, 2008 Thomas Perl * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/sound.h b/sound.h index 9757f51..75c160f 100644 --- a/sound.h +++ b/sound.h @@ -2,7 +2,7 @@ /** * * Tennix! SDL Port - * Copyright (C) 2003, 2007 Thomas Perl + * Copyright (C) 2003, 2007, 2008 Thomas Perl * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/tennix.6 b/tennix.6 index c3c2b50..ed447ad 100644 --- a/tennix.6 +++ b/tennix.6 @@ -1,4 +1,4 @@ -.TH "TENNIX" "6" "December 2007" "tennix 0.5.0" +.TH "TENNIX" "6" "March 2008" "tennix 0.6.0" .SH "NAME" tennix \(em A funny 2D tennis game @@ -19,7 +19,7 @@ set up the game for joysticks. This is the SDL port of a DOS game written in 2003. The original game can still be found on the web at http://thpinfo.com/2003/tennix/ -.SH "KEYBOARD CONTROLS" +.SH "CONTROLS" .TP .I W, S, D Player 1: Move up, down and swing the racket @@ -27,6 +27,9 @@ Player 1: Move up, down and swing the racket .I Up, Down, Spacebar Player 1 (alternative): Move up, down and swing the racket .TP +.I Mouse, Left mouse button +Player 1 (alternative): Move while left button pressed, swing racket when left button released +.TP .I O, L, K Player 2: Move up, down and swing the racket .TP diff --git a/tennix.c b/tennix.c index c54a637..16503d5 100644 --- a/tennix.c +++ b/tennix.c @@ -2,7 +2,7 @@ /** * * Tennix! SDL Port - * Copyright (C) 2003, 2007 Thomas Perl + * Copyright (C) 2003, 2007, 2008 Thomas Perl * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/tennix.h b/tennix.h index a55186b..2baf37c 100644 --- a/tennix.h +++ b/tennix.h @@ -2,7 +2,7 @@ /** * * Tennix! SDL Port - * Copyright (C) 2003, 2007 Thomas Perl + * Copyright (C) 2003, 2007, 2008 Thomas Perl * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -29,7 +29,7 @@ #include "SDL.h" -#define COPYRIGHT "Copyright 2003, 2007 Thomas Perl" +#define COPYRIGHT "Copyright 2003, 2007, 2008 Thomas Perl" #define URL "http://icculus.org/tennix/" #define WIDTH 640 -- 2.11.4.GIT