Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidKinder committed May 29, 2011
1 parent 984993b commit a6002cc
Show file tree
Hide file tree
Showing 20 changed files with 40 additions and 29 deletions.
6 changes: 3 additions & 3 deletions Amiga/amiga.c
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions Dos/dos.c
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions Dos32/allegro.c
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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");
Expand Down Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions Glk/Makefile.glk
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ IFPHDRTOOL = /usr/bin/ifphdr
IFPHDR = level9.hdr

# Level9 version.
VERSION = 5.0
VERSION = 5.1

# Common definitions.
CC = gcc
Expand Down Expand Up @@ -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 \
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Glk/glk.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down Expand Up @@ -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");

Expand Down
4 changes: 2 additions & 2 deletions Glk/glk_readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]> for the Mac code, which, if
I have transcribed it correctly from earlier work with AGiliTy, should permit
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Glk/level9.hdr
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Gtk/main.c
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion Gtk/main.h
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion Unix/unix-curses.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion Win/Compile.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions Win/Help/history.htm
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@
<body>
<h1>History</h1>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td width=60 valign=top><b>v5.1</b></td>
<td>
The bitmap graphics from the US Macintosh release of Lancelot now
display correctly.
</td>
</tr>
<tr><td height=16></td></tr>
<tr>
<td width=60 valign=top><b>v5.0</b></td>
<td>
Expand Down
2 changes: 1 addition & 1 deletion Win/Help/introduction.htm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<link rel="stylesheet" type="text/css" href="Level9.css">
</head>
<body>
<h1>Level 9 Interpreter v5.0</h1>
<h1>Level 9 Interpreter v5.1</h1>
An interpreter for Level 9 games in any format, including Spectrum snapshots.
<p>
Copyright (c) 1996-2011 Glen Summers and contributors.<br>
Expand Down
2 changes: 1 addition & 1 deletion Win/Level9.rc
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion bitmap.c
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion generic.c
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion level9.c
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion level9.h
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 4 additions & 1 deletion level9.txt
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion porting.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

Level 9 interpreter
Version 5.0
Version 5.1

This guide is by David Kinder.

Expand Down

0 comments on commit a6002cc

Please sign in to comment.