mirror of https://github.com/freetype/freetype
* builds/unix/configure.ac (version_info): Set to 9:4:3.
* builds/unix/configure: Updated. * docs/CHANGES, docs/VERSION.DLL: Updated. * include/freetype/freetype.h (FT_GlyphSlot): Change 2003-06-16 also breaks binary compatibility. Reintroduce an unsigned integer at the old position of `flags' called `reserved'.
This commit is contained in:
parent
f1c7814718
commit
42284f98f2
12
ChangeLog
12
ChangeLog
|
@ -1,6 +1,16 @@
|
|||
2003-07-26 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* builds/unix/configure.ac (version_info): Set to 9:4:3.
|
||||
* builds/unix/configure: Updated.
|
||||
* docs/CHANGES, docs/VERSION.DLL: Updated.
|
||||
|
||||
* include/freetype/freetype.h (FT_GlyphSlot): Change 2003-06-16
|
||||
also breaks binary compatibility. Reintroduce an unsigned integer
|
||||
at the old position of `flags' called `reserved'.
|
||||
|
||||
2003-07-25 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
Make reference valid HTML 4.01 transitional.
|
||||
Make API reference valid HTML 4.01 transitional.
|
||||
|
||||
* src/tools/docmaker/tohtml.py (html_header_1): Add doctype
|
||||
and charset.
|
||||
|
|
|
@ -1403,7 +1403,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|||
ac_config_headers="$ac_config_headers ftconfig.h:ftconfig.in"
|
||||
|
||||
|
||||
version_info='10:0:3'
|
||||
version_info='9:4:3'
|
||||
|
||||
ft_version=`echo $version_info | tr : .`
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ dnl configuration file -- stay in 8.3 limit
|
|||
AC_CONFIG_HEADER(ftconfig.h:ftconfig.in)
|
||||
|
||||
dnl Don't forget to update VERSION.DLL!
|
||||
version_info='10:0:3'
|
||||
version_info='9:4:3'
|
||||
AC_SUBST(version_info)
|
||||
ft_version=`echo $version_info | tr : .`
|
||||
AC_SUBST(ft_version)
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
LATEST CHANGES BETWEEN 2.1.5 and 2.1.4
|
||||
|
||||
|
||||
ATTENTION! Version 2.1.5 is not binary compatible with 2.1.4.
|
||||
|
||||
|
||||
I. IMPORTANT BUG FIXES
|
||||
|
||||
- Parsing the /CIDFontName field now removes the leading slash to
|
||||
|
@ -18,9 +15,7 @@ ATTENTION! Version 2.1.5 is not binary compatible with 2.1.4.
|
|||
partially.
|
||||
|
||||
- Numeric font dictionary entries for synthetic fonts are no longer
|
||||
overwritten. To support this properly the PS_FontInfo structure
|
||||
has been changed: `italic_angle', `is_fixed_pitch',
|
||||
`underline_position', and `underline_thickness' are now pointers.
|
||||
overwritten.
|
||||
|
||||
- The test for the charset registry in BDF and PCF fonts is now
|
||||
case-insensitive.
|
||||
|
|
|
@ -52,7 +52,7 @@ systems, but not all of them:
|
|||
|
||||
release libtool so
|
||||
--------------------------------------------------------------------
|
||||
2.1.5 10.0.3 7.3.0 (not binary compatible with 2.1.4)
|
||||
2.1.5 9.4.3 6.3.4
|
||||
2.1.4 9.3.3 6.3.3
|
||||
2.1.3 9.2.3 6.3.2
|
||||
2.1.2 9.1.3 6.3.1
|
||||
|
|
|
@ -1421,6 +1421,7 @@ FT_BEGIN_HEADER
|
|||
FT_Library library;
|
||||
FT_Face face;
|
||||
FT_GlyphSlot next;
|
||||
FT_UInt reserved; /* retained for binary compatibility */
|
||||
FT_Generic generic;
|
||||
|
||||
FT_Glyph_Metrics metrics;
|
||||
|
|
Loading…
Reference in New Issue