small updates to the documentation and the configure scripts to
prepare the 2.0.1 release
This commit is contained in:
parent
4c80f0c9ca
commit
aaac8133dc
40
CHANGES
40
CHANGES
|
@ -1,4 +1,42 @@
|
||||||
LATEST CHANGES
|
LATEST CHANGES BETWEEN 2.0.1 and 2.0:
|
||||||
|
|
||||||
|
2.0.1 introduces a few changes:
|
||||||
|
|
||||||
|
- fixed many bugs related to the support of CFF / OpenType fonts.
|
||||||
|
These formats are now much better supported though there is still
|
||||||
|
work planned to deal with Charset tables and PDF-embedded CFF
|
||||||
|
files that use the old "seac" command.
|
||||||
|
|
||||||
|
- the library could not be compiled in debug mode with a very small
|
||||||
|
number of C compilers whose pre-processors didn't implement the
|
||||||
|
"##" directive correctly (i.e. per se the ANSI C specification !!)
|
||||||
|
An elegant fix was found.
|
||||||
|
|
||||||
|
- added support for the free Borland command-line C++ Builder compiler
|
||||||
|
use "make setup bcc32" to use it. Also fixed a few source lines that
|
||||||
|
generated new warnings with BCC32.
|
||||||
|
|
||||||
|
- fixed a bug in FT_Outline_Get_BBox when computing the extrema of
|
||||||
|
a conic bezier arc.
|
||||||
|
|
||||||
|
- updated the INSTALL file to add IDE compilation.
|
||||||
|
|
||||||
|
- other minor bug fixes, from invalid Type 1 style flags to correct
|
||||||
|
support of synthetic (obliqued) fonts in the auto-hinter, better
|
||||||
|
support for embedded bitmaps in a SFNT font.
|
||||||
|
|
||||||
|
- fixed some problems with "freetype-config"
|
||||||
|
|
||||||
|
|
||||||
|
Finally, the "standard" scheme for including FreeType headers is now
|
||||||
|
gradually changing, but this will be explained in a later release..
|
||||||
|
(probably 2.0.2)
|
||||||
|
|
||||||
|
And very special thanks to Tom Kackvinsky and YAMANO-UCHI Hidetoshi for
|
||||||
|
their contributions !!
|
||||||
|
|
||||||
|
=========================================================================
|
||||||
|
CHANGES BETWEEN beta8 and 2.0
|
||||||
|
|
||||||
- changed the default installation path for public headers from
|
- changed the default installation path for public headers from
|
||||||
"include/freetype" to "include/freetype2".
|
"include/freetype" to "include/freetype2".
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
|
2000-12-01 David Turner <david.turner@freetype.org>
|
||||||
|
|
||||||
|
* builds/unix/configure.in, builds/unix/configure,
|
||||||
|
builds/cygwin/configure.in, builds/cygwin/configure: setting
|
||||||
|
"version_info" to 6:1:0 for the 2.0.1 release
|
||||||
|
|
||||||
|
* CHANGES: added a summary of changes between 2.0.1 and 2.0
|
||||||
|
|
||||||
2000-12-01 Werner Lemberg <wl@gnu.org>
|
2000-12-01 Werner Lemberg <wl@gnu.org>
|
||||||
|
|
||||||
* INSTALL: Revised.
|
* INSTALL: Revised.
|
||||||
|
|
|
@ -534,7 +534,7 @@ fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
version_info='6:0:0'
|
version_info='6:1:0'
|
||||||
|
|
||||||
|
|
||||||
ac_aux_dir=
|
ac_aux_dir=
|
||||||
|
|
|
@ -8,7 +8,7 @@ AC_INIT(ftconfig.in)
|
||||||
dnl configuration file -- stay in 8.3 limit
|
dnl configuration file -- stay in 8.3 limit
|
||||||
AC_CONFIG_HEADER(ftconfig.h:ftconfig.in)
|
AC_CONFIG_HEADER(ftconfig.h:ftconfig.in)
|
||||||
|
|
||||||
version_info='6:0:0'
|
version_info='6:1:0'
|
||||||
AC_SUBST(version_info)
|
AC_SUBST(version_info)
|
||||||
|
|
||||||
dnl checks for system type
|
dnl checks for system type
|
||||||
|
|
|
@ -534,7 +534,7 @@ fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
version_info='6:0:0'
|
version_info='6:1:0'
|
||||||
|
|
||||||
|
|
||||||
ac_aux_dir=
|
ac_aux_dir=
|
||||||
|
|
|
@ -8,7 +8,7 @@ AC_INIT(ftconfig.in)
|
||||||
dnl configuration file -- stay in 8.3 limit
|
dnl configuration file -- stay in 8.3 limit
|
||||||
AC_CONFIG_HEADER(ftconfig.h:ftconfig.in)
|
AC_CONFIG_HEADER(ftconfig.h:ftconfig.in)
|
||||||
|
|
||||||
version_info='6:0:0'
|
version_info='6:1:0'
|
||||||
AC_SUBST(version_info)
|
AC_SUBST(version_info)
|
||||||
|
|
||||||
dnl checks for system type
|
dnl checks for system type
|
||||||
|
|
Loading…
Reference in New Issue