From 3cd070553d43e8cbd35146227f3e68223cbf8d74 Mon Sep 17 00:00:00 2001 From: Claudio Matsuoka Date: Wed, 30 May 2012 10:57:47 -0300 Subject: [PATCH] Update changelog, version number and release date Signed-off-by: Claudio Matsuoka --- CHANGES | 20 ++++++++++++++++++++ FAQ | 2 +- Makefile | 2 +- README | 2 +- chkfont.6 | 2 +- figlet.6 | 4 ++-- figlet.c | 11 ++++++----- figlist.6 | 2 +- showfigfonts.6 | 2 +- 9 files changed, 34 insertions(+), 13 deletions(-) diff --git a/CHANGES b/CHANGES index 0566d6c..131af51 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,23 @@ +Changes in FIGlet 2.2.5 +----------------------- + +FIGlet 2.2.5 is a revision of FIGlet 2.2.4 containing updated andproperly +licensed ISO8859 map files. The full list of changes is: + +o Add regression tests for uskata and jis0201 control files + +o Properly escape mins signs in figlist(6) man page (Jonathan + McCrohan) + +o Fix chkfont coredump on invalid input (Kenneth Davies and + Jonathan McCrohan) + +o Update ISO8859 map files to fix licensing issue raised in Debian + bugs 673096 and 674844 + +These changes were made by Claudio Matsuoka +31 May 2012 + Changes in FIGlet 2.2.4 ----------------------- diff --git a/FAQ b/FAQ index 0f7cc0c..8e8ca43 100644 --- a/FAQ +++ b/FAQ @@ -5,7 +5,7 @@ info@figlet.org http://www.figlet.org/ |__| [FIGlet FAQ v0.91] =========================================================================== -The latest version of FIGlet is 2.2.4 and can be downloaded from +The latest version of FIGlet is 2.2.5 and can be downloaded from ftp://ftp.figlet.org/pub/figlet/program =========================================================================== diff --git a/Makefile b/Makefile index 964235b..1ed0cc2 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,7 @@ DEFAULTFONTFILE = standard ## END OF CONFIGURATION SECTION ## -VERSION = 2.2.4 +VERSION = 2.2.5 DIST = figlet-$(VERSION) OBJS = figlet.o zipio.o crc.o inflate.o utf8.o BINS = figlet chkfont figlist showfigfonts diff --git a/README b/README index 44c11b6..f6f2c75 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -About FIGlet (Frank, Ian & Glenn's Letters) release 2.2.4, 26 January 2011 +About FIGlet (Frank, Ian & Glenn's Letters) release 2.2.5, 31 May 2012 -------------------------------------------------------------------------- FIGlet is a program that creates large characters out of ordinary screen characters diff --git a/chkfont.6 b/chkfont.6 index 44f16f6..681d6ad 100644 --- a/chkfont.6 +++ b/chkfont.6 @@ -12,7 +12,7 @@ .\" .\" Manual page by Jonathon Abbott, for the Debian Project .\" slightly modified by Francesco Tapparo, for the Debian Project -.TH CHKFONT 6 "26 January 2011" "v2.2.4" +.TH CHKFONT 6 "31 May 2012" "v2.2.5" .SH NAME chkfont \- checks figlet 2.0 and up font files for format errors diff --git a/figlet.6 b/figlet.6 index 1663134..ff22311 100644 --- a/figlet.6 +++ b/figlet.6 @@ -3,13 +3,13 @@ .\" Internet: .\" Portions Copyright 1996, 1997, 1998, 1999, 2000, 2001 by John Cowan .\" Portions Copyright 2002 by Christiaan Keet -.\" Portions Copyright 2011 by Claudio Matsuoka +.\" Portions Copyright 2011, 2012 by Claudio Matsuoka .\" FIGlet, along with the various FIGlet fonts and documentation, may .\" be freely copied and distributed. .\" If you use FIGlet, please send an e-mail message to .\" .\" -.TH FIGLET 6 "26 January 2011" "v2.2.4" +.TH FIGLET 6 "31 May 2012" "v2.2.5" .SH NAME FIGlet \- display large characters made up of ordinary screen characters diff --git a/figlet.c b/figlet.c index e53f36c..3de795a 100644 --- a/figlet.c +++ b/figlet.c @@ -3,7 +3,7 @@ FIGlet Copyright 1991, 1993, 1994 Glenn Chappell and Ian Chai FIGlet Copyright 1996, 1997, 1998, 1999, 2000, 2001 John Cowan FIGlet Copyright 2002 Christiaan Keet - FIGlet Copyright 2011 Claudio Matsuoka + FIGlet Copyright 2011, 2012 Claudio Matsuoka Portions written by Paul Burton and Christiaan Keet Internet: FIGlet, along with the various FIGlet fonts and documentation, is @@ -11,9 +11,9 @@ (as listed in the file "LICENSE" which is included in this package) ****************************************************************************/ -#define DATE "26 January 2011" -#define VERSION "2.2.4" -#define VERSION_INT 20204 +#define DATE "31 May 2012" +#define VERSION "2.2.5" +#define VERSION_INT 20205 /* FIGlet (Frank, Ian & Glenn's Letters) */ /* by Glenn Chappell */ @@ -39,6 +39,7 @@ to "Academic Free License" as agreed by FIGlet authors. 05 July 2005 */ /* Release 2.2.3 by Claudio Matsuoka, 12 Jan 2011: BSD license, fixes */ /* Release 2.2.4 by Claudio Matsuoka, 26 Jan 2011: tlf2 font support */ +/* Release 2.2.5 by Claudio Matsuoka, 31 May 2012: flc licensing, minor fixes */ /*--------------------------------------------------------------------------- DEFAULTFONTDIR and DEFAULTFONTFILE should be defined in the Makefile. @@ -431,7 +432,7 @@ int infonum; { switch (infonum) { case 0: /* Copyright message */ - printf("FIGlet Copyright (C) 1991-2011 Glenn Chappell, Ian Chai, "); + printf("FIGlet Copyright (C) 1991-2012 Glenn Chappell, Ian Chai, "); printf("John Cowan,\nChristiaan Keet and Claudio Matsuoka\n"); printf("Internet: "); printf("Version: %s, date: %s\n\n",VERSION,DATE); diff --git a/figlist.6 b/figlist.6 index e90a188..c8b7cae 100644 --- a/figlist.6 +++ b/figlist.6 @@ -8,7 +8,7 @@ .\" .\" Manual page by Jonathon Abbott, for the Debian Project .\" slightly modified by Francesco Tapparo, for the Debian Project -.TH FIGLIST 6 "26 January 2011" "v2.2.4" +.TH FIGLIST 6 "31 May 2012" "v2.2.5" .SH NAME figlist \- lists figlet fonts and control files diff --git a/showfigfonts.6 b/showfigfonts.6 index a4eee79..0ec5783 100644 --- a/showfigfonts.6 +++ b/showfigfonts.6 @@ -11,7 +11,7 @@ .\" .\" Manual page by Jonathon Abbott, for the Debian Project .\" slightly modified by Francesco Tapparo, for the Debian Project -.TH SHOWFIGFONTS 6 "26 January 2011" "v2.2.4" +.TH SHOWFIGFONTS 6 "31 May 2012" "v2.2.5" .SH NAME showfigfonts \- prints a list of available figlet fonts