Update version number and changelog

Signed-off-by: Claudio Matsuoka <cmatsuoka@gmail.com>
This commit is contained in:
Claudio Matsuoka 2011-01-24 17:39:09 -02:00
parent 934c450250
commit f4f94eacd4
9 changed files with 27 additions and 15 deletions

14
CHANGES

@ -1,13 +1,19 @@
Changes in FIGlet 2.2.4 (in progress) Changes in FIGlet 2.2.4 (in progress)
----------------------- -----------------------
FIGlet 2.2.4 is a revision of FIGlet 2.2.3 featuring FIGlet 2.2.4 is a revision of FIGlet 2.2.3 featuring bugfixes and support
to tlf2 fonts. The full list of changes is:
The full list of changes is: o Add support to Sam Hocevar's TOIlet TLF fonts containing UTF-8
encoded Unicode characters.
o Add support to Sam Hocevar's TOIlet TLF fonts containing o Add infocode 5 to list supported font formats
UTF-8 encoded Unicode characters.
o Fix rendering error caused by the previous attempt to fix invalid
memory accesses when smushing at start of line
These changes were made by Claudio Matsuoka <cmatsuoka@gmail.com>
26 January 2011
Changes in FIGlet 2.2.3 Changes in FIGlet 2.2.3
----------------------- -----------------------

2
FAQ

@ -5,7 +5,7 @@
info@figlet.org http://www.figlet.org/ |__| [FIGlet FAQ v0.91] info@figlet.org http://www.figlet.org/ |__| [FIGlet FAQ v0.91]
=========================================================================== ===========================================================================
The latest version of FIGlet is 2.2.3 and can be downloaded from The latest version of FIGlet is 2.2.4 and can be downloaded from
ftp://ftp.figlet.org/pub/figlet/program ftp://ftp.figlet.org/pub/figlet/program
=========================================================================== ===========================================================================

@ -52,7 +52,7 @@ DEFAULTFONTFILE = standard
## END OF CONFIGURATION SECTION ## END OF CONFIGURATION SECTION
## ##
VERSION = 2.2.3 VERSION = 2.2.4
DIST = figlet-$(VERSION) DIST = figlet-$(VERSION)
OBJS = figlet.o zipio.o crc.o inflate.o utf8.o OBJS = figlet.o zipio.o crc.o inflate.o utf8.o
BINS = figlet chkfont figlist showfigfonts BINS = figlet chkfont figlist showfigfonts
@ -95,6 +95,11 @@ dist:
rm -Rf $(DIST) rm -Rf $(DIST)
ls -l $(DIST).tar.gz ls -l $(DIST).tar.gz
test:
tar xf $(DIST).tar.gz
(cd $(DIST); make; ../tests.sh)
rm -Rf $(DIST)
$(OBJS) chkfont.o getopt.o: Makefile $(OBJS) chkfont.o getopt.o: Makefile
chkfont.o: chkfont.c chkfont.o: chkfont.c
crc.o: crc.c crc.h crc.o: crc.c crc.h

2
README

@ -1,4 +1,4 @@
About FIGlet (Frank, Ian & Glenn's Letters) release 2.2.3, 12 January 2011 About FIGlet (Frank, Ian & Glenn's Letters) release 2.2.4, 26 January 2011
-------------------------------------------------------------------------- --------------------------------------------------------------------------
FIGlet is a program that creates large characters out of ordinary FIGlet is a program that creates large characters out of ordinary
screen characters screen characters

@ -12,7 +12,7 @@
.\" .\"
.\" Manual page by Jonathon Abbott, for the Debian Project .\" Manual page by Jonathon Abbott, for the Debian Project
.\" slightly modified by Francesco Tapparo, for the Debian Project .\" slightly modified by Francesco Tapparo, for the Debian Project
.TH CHKFONT 6 "12 January 2011" "v2.2.3" .TH CHKFONT 6 "26 January 2011" "v2.2.4"
.SH NAME .SH NAME
chkfont \- checks figlet 2.0 and up font files for format errors chkfont \- checks figlet 2.0 and up font files for format errors

@ -9,7 +9,7 @@
.\" If you use FIGlet, please send an e-mail message to .\" If you use FIGlet, please send an e-mail message to
.\" <info@figlet.org> .\" <info@figlet.org>
.\" .\"
.TH FIGLET 6 "12 January 2011" "v2.2.3" .TH FIGLET 6 "26 January 2011" "v2.2.4"
.SH NAME .SH NAME
FIGlet \- display large characters made up of ordinary screen characters FIGlet \- display large characters made up of ordinary screen characters

@ -11,9 +11,9 @@
(as listed in the file "LICENSE" which is included in this package) (as listed in the file "LICENSE" which is included in this package)
****************************************************************************/ ****************************************************************************/
#define DATE "12 January 2011" #define DATE "26 January 2011"
#define VERSION "2.2.4-pre" #define VERSION "2.2.4"
#define VERSION_INT 20203 #define VERSION_INT 20204
/* FIGlet (Frank, Ian & Glenn's Letters) */ /* FIGlet (Frank, Ian & Glenn's Letters) */
/* by Glenn Chappell */ /* by Glenn Chappell */
@ -37,7 +37,8 @@
http://www.figlet.org/ */ http://www.figlet.org/ */
/* Release 2.2.2 by Christiaan Keet: License changed from "Artistic License" /* Release 2.2.2 by Christiaan Keet: License changed from "Artistic License"
to "Academic Free License" as agreed by FIGlet authors. 05 July 2005 */ to "Academic Free License" as agreed by FIGlet authors. 05 July 2005 */
/* Release 2.2.3 by Claudio Matsuoka, 12 January 2011 */ /* 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 */
/*--------------------------------------------------------------------------- /*---------------------------------------------------------------------------
DEFAULTFONTDIR and DEFAULTFONTFILE should be defined in the Makefile. DEFAULTFONTDIR and DEFAULTFONTFILE should be defined in the Makefile.

@ -8,7 +8,7 @@
.\" .\"
.\" Manual page by Jonathon Abbott, for the Debian Project .\" Manual page by Jonathon Abbott, for the Debian Project
.\" slightly modified by Francesco Tapparo, for the Debian Project .\" slightly modified by Francesco Tapparo, for the Debian Project
.TH FIGLIST 6 "12 January 2011" "v2.2.3" .TH FIGLIST 6 "26 January 2011" "v2.2.4"
.SH NAME .SH NAME
figlist \- lists figlet fonts and control files figlist \- lists figlet fonts and control files

@ -11,7 +11,7 @@
.\" .\"
.\" Manual page by Jonathon Abbott, for the Debian Project .\" Manual page by Jonathon Abbott, for the Debian Project
.\" slightly modified by Francesco Tapparo, for the Debian Project .\" slightly modified by Francesco Tapparo, for the Debian Project
.TH SHOWFIGFONTS 6 "12 January 2011" "v2.2.3" .TH SHOWFIGFONTS 6 "26 January 2011" "v2.2.4"
.SH NAME .SH NAME
showfigfonts \- prints a list of available figlet fonts showfigfonts \- prints a list of available figlet fonts