X-Git-Url: http://git.subgeniuskitty.com/pforth/.git/blobdiff_plain/b3651f38b79671793118de32512a8c0806cfdab5..259625078859cb06e6cf02ddb5567c8a130d3821:/releases.txt diff --git a/releases.txt b/releases.txt index f89773b..5c2e189 100644 --- a/releases.txt +++ b/releases.txt @@ -2,7 +2,30 @@ Release History for pForth - a Portable ANS-like Forth written in ANSI 'C' Documentation for pForth at http://www.softsynth.com/pforth/ -V?? +V28 - unreleased + - fixes for MinGW build + +V27 - 11/22/2010 + - Fixed REPOSITION-FILE FILE-SIZE and FILE-POSITION. + They used to use single precision offset. Now use double as specified. + - Delete object directories in Makefile clean. + - Fixed "Issue 4: Filehandle remains locked upon INCLUDE error". + http://code.google.com/p/pforth/issues/detail?id=4&can=1 + - Fixed scrambled HISTORY on 64-bit systems. Was using CELL+ but really needed 4 +. + - Fixed floating point input. Now accepts "1E" as 1.0. Was Issue #2. + - Fixed lots of warning and made code compatible with C89 and ANSI. Uses -pedantic. + - Use fseek and ftell on WIN32 instead of fseeko and ftello. + - Makefile is now more standard. Builds in same dir as Makefile. Uses CFLAGS etc. + - Add support for console IO with _WATCOMC_ + - Internal CStringToForth and ForthStringToC now take a destination size for safety. + - Run units tests for CStringToForth and ForthStringToC if PF_UNIT_TESTS is defined. + +V26 5/20/2010 + - 64-bit support for M* UM/MOD etc by Aleksej Saushev. Thanks Aleksej! + +V25 5/19/2010 + - Added 64-bit CELL support contributed by Aleksej Saushev. Thanks Aleksej! + - Added "-x c" to Makefile CCOPTS to prevent confusion with C++ - Allow space after -d command line option. - Restore normal tty mode if pForth dictionary loading fails. @@ -30,7 +53,7 @@ V22 (unreleased) - Fixed float evaluation in EVALUATE in "quit.fth". - Flush register cache for ffColon and ffSemiColon to prevent stack warnings from ; -V21 - 9/16/98 +V21 - 9/16/1998 - Fixed some compiler warnings. V20 @@ -55,7 +78,7 @@ V20 started with "-i" option. It used to always consider numeric input as HEX. Initial BASE is decimal. -V19 4/98 +V19 4/1998 - Warn if local var name matches dictionary, : foo { count -- } ; - TO -> and +-> now parse input stream. No longer use to-flag.