Update version number and changelog
Signed-off-by: Claudio Matsuoka <cmatsuoka@gmail.com>
This commit is contained in:
parent
934c450250
commit
f4f94eacd4
14
CHANGES
14
CHANGES
@ -1,13 +1,19 @@
|
||||
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
|
||||
UTF-8 encoded Unicode characters.
|
||||
o Add infocode 5 to list supported font formats
|
||||
|
||||
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
|
||||
-----------------------
|
||||
|
2
FAQ
2
FAQ
@ -5,7 +5,7 @@
|
||||
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
|
||||
===========================================================================
|
||||
|
||||
|
7
Makefile
7
Makefile
@ -52,7 +52,7 @@ DEFAULTFONTFILE = standard
|
||||
## END OF CONFIGURATION SECTION
|
||||
##
|
||||
|
||||
VERSION = 2.2.3
|
||||
VERSION = 2.2.4
|
||||
DIST = figlet-$(VERSION)
|
||||
OBJS = figlet.o zipio.o crc.o inflate.o utf8.o
|
||||
BINS = figlet chkfont figlist showfigfonts
|
||||
@ -95,6 +95,11 @@ dist:
|
||||
rm -Rf $(DIST)
|
||||
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
|
||||
chkfont.o: chkfont.c
|
||||
crc.o: crc.c crc.h
|
||||
|
2
README
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
|
||||
screen characters
|
||||
|
@ -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 "12 January 2011" "v2.2.3"
|
||||
.TH CHKFONT 6 "26 January 2011" "v2.2.4"
|
||||
|
||||
.SH NAME
|
||||
chkfont \- checks figlet 2.0 and up font files for format errors
|
||||
|
2
figlet.6
2
figlet.6
@ -9,7 +9,7 @@
|
||||
.\" If you use FIGlet, please send an e-mail message to
|
||||
.\" <info@figlet.org>
|
||||
.\"
|
||||
.TH FIGLET 6 "12 January 2011" "v2.2.3"
|
||||
.TH FIGLET 6 "26 January 2011" "v2.2.4"
|
||||
|
||||
.SH NAME
|
||||
FIGlet \- display large characters made up of ordinary screen characters
|
||||
|
9
figlet.c
9
figlet.c
@ -11,9 +11,9 @@
|
||||
(as listed in the file "LICENSE" which is included in this package)
|
||||
****************************************************************************/
|
||||
|
||||
#define DATE "12 January 2011"
|
||||
#define VERSION "2.2.4-pre"
|
||||
#define VERSION_INT 20203
|
||||
#define DATE "26 January 2011"
|
||||
#define VERSION "2.2.4"
|
||||
#define VERSION_INT 20204
|
||||
|
||||
/* FIGlet (Frank, Ian & Glenn's Letters) */
|
||||
/* by Glenn Chappell */
|
||||
@ -37,7 +37,8 @@
|
||||
http://www.figlet.org/ */
|
||||
/* Release 2.2.2 by Christiaan Keet: License changed from "Artistic License"
|
||||
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.
|
||||
|
@ -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 "12 January 2011" "v2.2.3"
|
||||
.TH FIGLIST 6 "26 January 2011" "v2.2.4"
|
||||
|
||||
.SH NAME
|
||||
figlist \- lists figlet fonts and control files
|
||||
|
@ -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 "12 January 2011" "v2.2.3"
|
||||
.TH SHOWFIGFONTS 6 "26 January 2011" "v2.2.4"
|
||||
|
||||
.SH NAME
|
||||
showfigfonts \- prints a list of available figlet fonts
|
||||
|
Loading…
x
Reference in New Issue
Block a user