From 234b987ef62676a5580ce90628ae63b11cf0fb75 Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Fri, 26 Apr 2013 14:10:12 +0200 Subject: [PATCH] * docs/CHANGES: Updated. --- ChangeLog | 4 ++++ docs/CHANGES | 21 +++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/ChangeLog b/ChangeLog index f1acfd882..773e439b3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-04-26 Werner Lemberg + + * docs/CHANGES: Updated. + 2013-04-13 Werner Lemberg [cff] Add a new Type 2 interpreter and hinter. diff --git a/docs/CHANGES b/docs/CHANGES index 33a12baf3..82183fca1 100644 --- a/docs/CHANGES +++ b/docs/CHANGES @@ -3,6 +3,27 @@ CHANGES BETWEEN 2.4.11 and 2.4.12 I. IMPORTANT CHANGES + - We have another CFF parsing and hinting engine! Written by Dave + Arnold , this work has been contributed by + Adobe in collaboration with Google. It is vastly superior to + the old CFF engine, and it will replace it in the next release. + Right now, it is still off by default, and you have to + explicitly select it using the new `hinting-engine' property of + the cff driver: + + ... + #include FT_CFF_DRIVER_H + + FT_Library library; + int engine = FT_CFF_HINTING_ADOBE; + + + ... + FT_Property_Set( library, "cff", "hinting-engine", &engine ); + + Right now, the code has a (mature) beta status; we encourage all + users to test it and report any problems. + - The macro FT_CONFIG_OPTION_OLD_INTERNALS is no longer set by default. In the next release, we will completely remove the associated code. Please update your programs in case you are