From a6002ccd53f256dbc722f8283c4ee94410622c87 Mon Sep 17 00:00:00 2001 From: DavidKinder Date: Sun, 29 May 2011 08:47:29 +0100 Subject: [PATCH] Bump version number --- Amiga/amiga.c | 6 +++--- Dos/dos.c | 4 ++-- Dos32/allegro.c | 6 +++--- Glk/Makefile.glk | 6 +++--- Glk/glk.c | 4 ++-- Glk/glk_readme.txt | 4 ++-- Glk/level9.hdr | 2 +- Gtk/main.c | 4 ++-- Gtk/main.h | 2 +- Unix/unix-curses.c | 2 +- Win/Compile.txt | 2 +- Win/Help/history.htm | 8 ++++++++ Win/Help/introduction.htm | 2 +- Win/Level9.rc | 2 +- bitmap.c | 2 +- generic.c | 2 +- level9.c | 2 +- level9.h | 2 +- level9.txt | 5 ++++- porting.txt | 2 +- 20 files changed, 40 insertions(+), 29 deletions(-) diff --git a/Amiga/amiga.c b/Amiga/amiga.c index f3d9d27..e101e47 100644 --- a/Amiga/amiga.c +++ b/Amiga/amiga.c @@ -1,7 +1,7 @@ /***********************************************************************\ * * Level 9 interpreter -* Version 5.0 +* Version 5.1 * Copyright (c) 1996-2011 Glen Summers and contributors. * Contributions from David Kinder, Alan Staniforth, Simon Baldwin, * Dieter Baron and Andreas Scherrer. @@ -60,7 +60,7 @@ struct NewMenu NewMenus[] = {NM_ITEM, "Quit", "Q", 0, 0, 0}, {NM_END, 0, 0, 0, 0, 0}}; -char Version[] = "$VER:Level9 5.0 (12.01.2011)"; +char Version[] = "$VER:Level9 5.1 (29.05.2011)"; char TitleBar[] = "Level 9"; #define TEXTBUFFER_SIZE 1024 @@ -1026,7 +1026,7 @@ void help (void) void about (void) { - req ("Level 9 Interpreter v5.0\n" + req ("Level 9 Interpreter v5.1\n" "Copyright (c) 1996-2011 Glen Summers and contributors.\n" "Contributions from David Kinder, Alan Staniforth,\n" "Simon Baldwin, Dieter Baron and Andreas Scherrer.\n\n" diff --git a/Dos/dos.c b/Dos/dos.c index a2ed5b3..e853f5a 100644 --- a/Dos/dos.c +++ b/Dos/dos.c @@ -1,7 +1,7 @@ /***********************************************************************\ * * Level 9 interpreter -* Version 5.0 +* Version 5.1 * Copyright (c) 1996-2011 Glen Summers and contributors. * Contributions from David Kinder, Alan Staniforth, Simon Baldwin, * Dieter Baron and Andreas Scherrer. @@ -361,7 +361,7 @@ int i; if (argc != 2) { cprintf( - "Level 9 Interpreter v5.0\r\n" + "Level 9 Interpreter v5.1\r\n" "Copyright (c) 1996-2011 Glen Summers and contributors.\r\n" "Contributions from David Kinder, Alan Staniforth, Simon Baldwin,\r\n" "Dieter Baron and Andreas Scherrer.\r\n" diff --git a/Dos32/allegro.c b/Dos32/allegro.c index 4de9e6d..35ab064 100644 --- a/Dos32/allegro.c +++ b/Dos32/allegro.c @@ -1,7 +1,7 @@ /***********************************************************************\ * * Level 9 interpreter -* Version 5.0 +* Version 5.1 * Copyright (c) 1996-2011 Glen Summers and contributors. * Contributions from David Kinder, Alan Staniforth, Simon Baldwin, * Dieter Baron and Andreas Scherrer. @@ -752,7 +752,7 @@ void hotkey_info(void) { screen_string("\nHot key -- Copyright and License Information\n"); - screen_string("\nLevel 9 Interpreter v5.0\n"); + screen_string("\nLevel 9 Interpreter v5.1\n"); screen_string("Copyright (c) 1996-2011 Glen Summers and contributors.\n"); screen_string("Contributions from David Kinder, Alan Staniforth, Simon Baldwin,\n"); screen_string("Dieter Baron and Andreas Scherrer.\n\n"); @@ -1375,7 +1375,7 @@ int main(int argc, char** argv) { /* Print help information and exit. */ puts( - "Level 9 Interpreter v5.0\n" + "Level 9 Interpreter v5.1\n" "Copyright (c) 1996-2011 Glen Summers and contributors.\n" "Contributions from David Kinder, Alan Staniforth, Simon Baldwin,\n" "Dieter Baron and Andreas Scherrer.\n" diff --git a/Glk/Makefile.glk b/Glk/Makefile.glk index 3c1d027..10cb390 100644 --- a/Glk/Makefile.glk +++ b/Glk/Makefile.glk @@ -27,7 +27,7 @@ IFPHDRTOOL = /usr/bin/ifphdr IFPHDR = level9.hdr # Level9 version. -VERSION = 5.0 +VERSION = 5.1 # Common definitions. CC = gcc @@ -94,7 +94,7 @@ distclean: clean maintainer-clean: clean dist: distclean mkdir distribution binaries - cd ..; zip -r Glk/distribution/Level9_5.0_Source.zip \ + cd ..; zip -r Glk/distribution/Level9_5.1_Source.zip \ * -x Glk/distribution/\* Glk/binaries/ cp ../COPYING glk_readme.txt binaries $(MAKE) -f Makefile.glk \ @@ -113,7 +113,7 @@ dist: distclean GLKLIBDIR=../../cheapglk GLKINCDIR=../../cheapglk \ GLKMAKEINC=../../cheapglk/Make.cheapglk glklevel9 mv glklevel9 binaries/cheaplevel9 - cd binaries; tar zcvf ../distribution/Level9_5.0_Linux.tgz * + cd binaries; tar zcvf ../distribution/Level9_5.1_Linux.tgz * # Dependencies. glk.o: glk.c level9.h diff --git a/Glk/glk.c b/Glk/glk.c index 9b7f3ad..d15c22d 100644 --- a/Glk/glk.c +++ b/Glk/glk.c @@ -3574,7 +3574,7 @@ gln_status_update (void) */ game_name = gln_gameid_get_game_name (); glk_put_string (game_name ? (char *) game_name - : "Glk Level 9 version 5.0"); + : "Glk Level 9 version 5.1"); glk_set_window (gln_main_window); } @@ -6431,7 +6431,7 @@ gln_main (void) } /* Print out a short banner. */ - gln_header_string ("\nLevel 9 Interpreter, version 5.0\n"); + gln_header_string ("\nLevel 9 Interpreter, version 5.1\n"); gln_banner_string ("Written by Glen Summers and David Kinder\n" "Glk interface by Simon Baldwin\n\n"); diff --git a/Glk/glk_readme.txt b/Glk/glk_readme.txt index 2f14a32..e6427f1 100644 --- a/Glk/glk_readme.txt +++ b/Glk/glk_readme.txt @@ -20,7 +20,7 @@ Acknowledgements Thanks to Alan Staniforth for considerable help with getting the some of the source for the base interpreter together, and for his hints on how to cover the porting requirements, and to David Kinder for a complete reality check on -the port progress, and also for the v5.0 Level 9 interpreter. +the port progress, and also for the Level 9 interpreter. Thanks also to Ben Hines for the Mac code, which, if I have transcribed it correctly from earlier work with AGiliTy, should permit @@ -84,7 +84,7 @@ To build standalone binary version of Glk Level 9, use To build the IFP plugin, use - make -f Makefile.glk level9-5.0.so + make -f Makefile.glk level9-5.1.so To clean up and delete everything in the case of a build error, use diff --git a/Glk/level9.hdr b/Glk/level9.hdr index 8f4fb26..cb34746 100644 --- a/Glk/level9.hdr +++ b/Glk/level9.hdr @@ -33,7 +33,7 @@ # IFP_ENGINE_TYPE="Level9" IFP_ENGINE_NAME="Level9" -IFP_ENGINE_VERSION="5.0" +IFP_ENGINE_VERSION="5.1" IFP_ACCEPTOR_OFFSET=0 IFP_ACCEPTOR_LENGTH=5 diff --git a/Gtk/main.c b/Gtk/main.c index 6a227c1..ff63997 100644 --- a/Gtk/main.c +++ b/Gtk/main.c @@ -1,5 +1,5 @@ /* - * main.c - GTK+ 2.x interface for Level9 5.0 + * main.c - GTK+ 2.x interface for Level9 5.1 * Copyright (c) 2005 Torbjörn Andersson * * This program is free software; you can redistribute it and/or modify @@ -176,7 +176,7 @@ void do_about () "Level 9 Interpreter", "version", - "v5.0", + "v5.1", "copyright", "Copyright (c) 1996-2011 Glen Summers and contributors.\n" diff --git a/Gtk/main.h b/Gtk/main.h index 804cbd9..2661cf8 100644 --- a/Gtk/main.h +++ b/Gtk/main.h @@ -1,5 +1,5 @@ /* - * main.h - GTK+ 2.x interface for Level9 5.0 + * main.h - GTK+ 2.x interface for Level9 5.1 * Copyright (c) 2005 Torbjörn Andersson * * This program is free software; you can redistribute it and/or modify diff --git a/Unix/unix-curses.c b/Unix/unix-curses.c index 78735b7..00e1ac4 100644 --- a/Unix/unix-curses.c +++ b/Unix/unix-curses.c @@ -799,7 +799,7 @@ int main (int argc, char *argv []) exit (1); } - printf ("Level 9 Interpreter v5.0\n" + printf ("Level 9 Interpreter v5.1\n" "Copyright (c) 1996-2011 Glen Summers and contributors.\n" "Contributions from David Kinder, Alan Staniforth, Simon Baldwin,\n" "Dieter Baron and Andreas Scherrer.\n" diff --git a/Win/Compile.txt b/Win/Compile.txt index 0356ce7..823a6e1 100644 --- a/Win/Compile.txt +++ b/Win/Compile.txt @@ -3,7 +3,7 @@ Source Code for Windows Version of the Level 9 Interpreter ---------------------------------------------------------- Included in this archive is complete source code to rebuild the Windows version of -the Level 9 interpreter, version 5.0. This source has been tested with Microsoft +the Level 9 interpreter, version 5.1. This source has been tested with Microsoft Visual C++. However, it should be relatively easy to get it to compile with others. If using Visual C++, just load the project and build it. To compile with other diff --git a/Win/Help/history.htm b/Win/Help/history.htm index c8d0a58..ce52388 100644 --- a/Win/Help/history.htm +++ b/Win/Help/history.htm @@ -6,6 +6,14 @@

History

+ + + + +
v5.1 +The bitmap graphics from the US Macintosh release of Lancelot now +display correctly. +
v5.0 diff --git a/Win/Help/introduction.htm b/Win/Help/introduction.htm index 9effaf0..73bf95d 100644 --- a/Win/Help/introduction.htm +++ b/Win/Help/introduction.htm @@ -4,7 +4,7 @@ -

Level 9 Interpreter v5.0

+

Level 9 Interpreter v5.1

An interpreter for Level 9 games in any format, including Spectrum snapshots.

Copyright (c) 1996-2011 Glen Summers and contributors.
diff --git a/Win/Level9.rc b/Win/Level9.rc index 880a012..53cf785 100644 --- a/Win/Level9.rc +++ b/Win/Level9.rc @@ -33,7 +33,7 @@ CAPTION "About" FONT 8, "MS Shell Dlg", 0, 0, 0x1 BEGIN DEFPUSHBUTTON "OK",1,94,94,48,13 - LTEXT "Level 9 Interpreter v5.0",-1,40,9,90,8 + LTEXT "Level 9 Interpreter v5.1",-1,40,9,90,8 LTEXT "Copyright (c) 1996-2011 Glen Summers and contributors.", -1,40,19,163,17 ICON IDI_ICON,IDC_LOGO,5,7,20,20,SS_REALSIZEIMAGE | WS_BORDER, diff --git a/bitmap.c b/bitmap.c index f8c5eba..e3d7d55 100644 --- a/bitmap.c +++ b/bitmap.c @@ -1,7 +1,7 @@ /***********************************************************************\ * * Level 9 interpreter -* Version 5.0 +* Version 5.1 * Copyright (c) 1996-2011 Glen Summers and contributors. * Contributions from David Kinder, Alan Staniforth, Simon Baldwin, * Dieter Baron and Andreas Scherrer. diff --git a/generic.c b/generic.c index 7fc2f25..02e11fd 100644 --- a/generic.c +++ b/generic.c @@ -1,7 +1,7 @@ /***********************************************************************\ * * Level 9 interpreter -* Version 5.0 +* Version 5.1 * Copyright (c) 1996-2011 Glen Summers and contributors. * Contributions from David Kinder, Alan Staniforth, Simon Baldwin, * Dieter Baron and Andreas Scherrer. diff --git a/level9.c b/level9.c index d1af1c9..790cf3c 100644 --- a/level9.c +++ b/level9.c @@ -1,7 +1,7 @@ /***********************************************************************\ * * Level 9 interpreter -* Version 5.0 +* Version 5.1 * Copyright (c) 1996-2011 Glen Summers and contributors. * Contributions from David Kinder, Alan Staniforth, Simon Baldwin, * Dieter Baron and Andreas Scherrer. diff --git a/level9.h b/level9.h index 895085f..b9cc623 100644 --- a/level9.h +++ b/level9.h @@ -1,7 +1,7 @@ /***********************************************************************\ * * Level 9 interpreter -* Version 5.0 +* Version 5.1 * Copyright (c) 1996-2011 Glen Summers and contributors. * Contributions from David Kinder, Alan Staniforth, Simon Baldwin, * Dieter Baron and Andreas Scherrer. diff --git a/level9.txt b/level9.txt index 4460afc..a923967 100644 --- a/level9.txt +++ b/level9.txt @@ -1,5 +1,5 @@ - Level 9 Interpreter v5.0 + Level 9 Interpreter v5.1 An interpreter for Level 9 games in any format, including Spectrum snapshots. @@ -232,6 +232,9 @@ Alt-H when playing a game to view a list of the available hotkeys. History ------- + v5.1 The bitmap graphics from the US Macintosh release of Lancelot + now display correctly. + v5.0 V1 games are also now supported. The input logic now correctly handles commas and full stops in the user's input for v3 or later games. diff --git a/porting.txt b/porting.txt index fdfae6e..fe1736c 100644 --- a/porting.txt +++ b/porting.txt @@ -1,6 +1,6 @@ Level 9 interpreter -Version 5.0 +Version 5.1 This guide is by David Kinder.