From: David Griffith Date: Thu, 14 May 2015 06:22:04 +0000 (-0700) Subject: Some preparations for 2.44 X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=4a49d4be58097bde2510ad0fd8cb5e34f9c84b87;p=liskon_frotz.git Some preparations for 2.44 --- diff --git a/ChangeLog b/ChangeLog index 843ac94..775d90b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,23 @@ +Summary of changes between Frotz 2.43 and Frotz 2.44: +===================================================== + +Frotz 2.44 was released on Thursday May 14, 2015. + +NEW FEATURES + +- Blorb support implemented. No support for audio in Blorb files yet. + +- Added an -m option for Dumb Frotz to suppress the [MORE] prompt. + +- Makefile and code for compiling for 16-bit DOS. + +BUG FIXES + +- Fixed a problem with saving and restoring in certain games. + +- Fixed assorted minor 64-bitness problems. + + Summary of changes between Unix Frotz 2.42 and Unix Frotz 2.43: =============================================================== diff --git a/Makefile b/Makefile index 78372a7..31f271f 100644 --- a/Makefile +++ b/Makefile @@ -107,7 +107,7 @@ SDL_LIBS = -ljpeg -lpng -lz -lSDL -lSDL_mixer SRCDIR = src -VERSION = 2.44pre +VERSION = 2.44 NAME = frotz BINNAME = $(NAME) diff --git a/src/common/frotz.h b/src/common/frotz.h index 6265d5d..405aeb8 100644 --- a/src/common/frotz.h +++ b/src/common/frotz.h @@ -10,7 +10,7 @@ this definition, but have the unix port see the curses version. */ #ifndef VERSION -#define VERSION "2.44pre" +#define VERSION "2.44" #endif #ifndef __UNIX_PORT_FILE