modules/freetype2/ChangeLog.20

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

michael@0 1 2002-02-09 Werner Lemberg <wl@gnu.org>
michael@0 2
michael@0 3 * README: Fix typo.
michael@0 4 * docs/CHANGES: Minor fixes.
michael@0 5
michael@0 6
michael@0 7 * Version 2.0.8 released.
michael@0 8 =========================
michael@0 9
michael@0 10
michael@0 11 2002-02-08 David Turner <david@freetype.org>
michael@0 12
michael@0 13 * docs/CHANGES: Updating for 2.0.8.
michael@0 14
michael@0 15 * include/freetype/freetype.h: Setting `PATCH_LEVEL' to 8 and
michael@0 16 removing `FT_Get_Next_Char' from the API (temporarily).
michael@0 17
michael@0 18 * include/freetype/freetype.h: Adding comments to FT_Get_Next_Char;
michael@0 19 note that this function might temporarily be removed for the 2.0.8
michael@0 20 release.
michael@0 21
michael@0 22 2002-02-07 David Turner <david@freetype.org>
michael@0 23
michael@0 24 * src/pcf/pcfread.c (pcf_load_font): Removed immature support of
michael@0 25 the AVERAGE_WIDTH property.
michael@0 26
michael@0 27 2002-02-06 David Turner <david@freetype.org>
michael@0 28
michael@0 29 * src/sfnt/sfobjs.c (SFNT_Load_Face): Since many fonts embedded in
michael@0 30 PDF documents do not include 'cmap', 'post' and 'name' tables, the
michael@0 31 SFNT face loader has been changed to not immediately report an
michael@0 32 error if these are not present.
michael@0 33
michael@0 34 Note that the specification _requires_ these tables, but Adobe
michael@0 35 seems to ignore it completely.
michael@0 36
michael@0 37 * src/sfnt/ttcmap.c: Removing compiler warnings.
michael@0 38
michael@0 39 * src/pcf/pcfread.c (pcf_read_TOC): Use FT_UInt.
michael@0 40 (pcf_parse_metric, pcf_parse_compressed_metric): Removed. Code
michael@0 41 is now in ...
michael@0 42 (pcf_get_metric): Here.
michael@0 43 (pcfSeekToType): Renamed to ...
michael@0 44 (pcf_seek_to_table_type): This.
michael@0 45 Use FT_Int.
michael@0 46 (pcfHasType): Renamed to ...
michael@0 47 (pcf_has_table_type): This.
michael@0 48 Use FT_Int.
michael@0 49 (find_property): Renamed to ...
michael@0 50 (pcf_find_property): This.
michael@0 51 Use FT_Int.
michael@0 52 (pcf_get_bitmaps, pcf_get_encodings): Handle invalid PCF fonts
michael@0 53 better (delaying format checks out of FT_Access_Frame ..
michael@0 54 FT_Forget_Frame blocks to avoid leaving the stream in an incorrect
michael@0 55 state when encountering an invalid PCF font).
michael@0 56
michael@0 57 * src/pcf/pcfdriver.c (PCF_Done_Face): Renamed to ...
michael@0 58 (PCF_Face_Done): This.
michael@0 59 (PCF_Init_Face): Renamed to ...
michael@0 60 (PCF_Face_Init): This.
michael@0 61 (PCF_Get_Char_Index): Renamed to ...
michael@0 62 (PCF_Char_Get_Index): This.
michael@0 63 (PCF_Get_Next_Char): Renamed to ...
michael@0 64 (PCF_Char_Get_Next): This.
michael@0 65 (pcf_driver_class): Updated.
michael@0 66
michael@0 67 * src/pcf/pcf.h (PCF_Done_Face): Removed.
michael@0 68
michael@0 69 2002-02-06 Detlef Würkner <TetiSoft@apg.lahn.de>
michael@0 70
michael@0 71 * src/pcf/pcfdriver.c (FT_Done_Face): Fixed small memory leak.
michael@0 72
michael@0 73 * src/pcf/pcfread.c (pcf_load_font): Now handles the `AVERAGE_WIDTH'
michael@0 74 property to return correct character pixel (width/height) pairs for
michael@0 75 embedded bitmaps.
michael@0 76
michael@0 77 2002-02-04 Keith Packard <keithp@keithp.com>
michael@0 78
michael@0 79 Adding the function `FT_Get_Next_Char', doing the obvious thing
michael@0 80 w.r.t. the selected charmap.
michael@0 81
michael@0 82 * include/freetype/freetype.h: Add prototype.
michael@0 83 * include/freetype/internal/ftdriver.h: Add `FTDriver_getNextChar'
michael@0 84 typedef.
michael@0 85 (FT_Driver_Class): Use it.
michael@0 86 * include/freetype/internal/psnames.h: Add `PS_Next_Unicode_Func'
michael@0 87 typedef.
michael@0 88 (PSNames_Interface): Use it.
michael@0 89 * include/freetype/internal/tttypes.h: Add `TT_CharNext_Func'
michael@0 90 typedef.
michael@0 91 (TT_CMapTable): Use it.
michael@0 92
michael@0 93 * src/base/ftobjs.c (FT_Get_Next_Char): New function, implementing
michael@0 94 high-level API.
michael@0 95 * src/cff/cffdrivr.c (cff_get_next_char): New function.
michael@0 96 (cff_driver_class): Add it.
michael@0 97 * src/cid/cidriver.c (Cid_Get_Next_Char): New function.
michael@0 98 (t1cid_driver_class): Add it.
michael@0 99 * src/pcf/pcfdriver.c (PCF_Get_Next_Char): New function.
michael@0 100 (pcf_driver_class): Add it.
michael@0 101 * src/psnames/psmodule.c (PS_Next_Unicode): New function.
michael@0 102 (psnames_interface): Add it.
michael@0 103 * src/sfnt/ttcmap.c (code_to_next0, code_to_next2, code_to_next4,
michael@0 104 code_to_next6, code_to_next_8_12, code_to_next_10): New auxiliary
michael@0 105 functions.
michael@0 106 (TT_CharMap_Load): Use them.
michael@0 107 * src/truetype/ttdriver.c (Get_Next_Char): New function.
michael@0 108 (tt_driver_class): Add it.
michael@0 109 * src/type1/t1driver.c (Get_Next_Char): New function.
michael@0 110 (t1_driver_class): Add it.
michael@0 111 * src/winfonts/winfnt.c (FNT_Get_Next_Char): New function.
michael@0 112 (winfnt_driver_class): Add it.
michael@0 113
michael@0 114 * src/pcf/pcfread.c (pcf_load_font): For now, report Unicode for
michael@0 115 Unicode and Latin 1 encodings.
michael@0 116
michael@0 117 2002-02-02 Keith Packard <keithp@keithp.com>
michael@0 118
michael@0 119 * builds/unix/freetype-config.in: Add missing `fi'.
michael@0 120
michael@0 121
michael@0 122 * Version 2.0.7 released.
michael@0 123 =========================
michael@0 124
michael@0 125
michael@0 126 2002-02-01 David Turner <david@freetype.org>
michael@0 127
michael@0 128 * include/freetype/freetype.h: Increasing FREETYPE_PATCH to 7
michael@0 129 for the new release.
michael@0 130
michael@0 131 2002-01-31 David Turner <david@freetype.org>
michael@0 132
michael@0 133 * README, README.UNX, docs/CHANGES: Updating documentation for the
michael@0 134 2.0.7 release.
michael@0 135
michael@0 136 2002-01-30 David Turner <david@freetype.org>
michael@0 137
michael@0 138 * INSTALL: Moved to ...
michael@0 139 * docs/INSTALL: Here to avoid conflicts with the `install' script on
michael@0 140 Windows, where the filesystem doesn't preserve case.
michael@0 141
michael@0 142 2002-01-29 David Turner <david@freetype.org>
michael@0 143
michael@0 144 * configure: Fixed the script. It previously didn't accept more
michael@0 145 than one argument correctly. For example, when typing:
michael@0 146
michael@0 147 ./configure --disable-shared --disable-nls
michael@0 148
michael@0 149 the `--disable-nls' was incorrectly sent to the `make' program.
michael@0 150
michael@0 151 2002-01-29 Werner Lemberg <wl@gnu.org>
michael@0 152
michael@0 153 * README.UNX: Fix typo.
michael@0 154 * builds/unix/install.mk (uninstall): Fix library name for libtool.
michael@0 155
michael@0 156 2002-01-28 Francesco Zappa Nardelli <Francesco.Zappa.Nardelli@ens.fr>
michael@0 157
michael@0 158 * src/pcf/pcfdriver.c (PCF_Done_Face): Fix incorrect destruction of
michael@0 159 the face object (face->toc.tables, face->root.family_name,
michael@0 160 face->root.available_size, face->charset_encoding,
michael@0 161 face->charset_registry are now freed). Thanks to Niels Moseley.
michael@0 162
michael@0 163 2002-01-28 Roberto Alameda <ojancano@geekmail.de>
michael@0 164
michael@0 165 * src/type1/t1load.c (parse_encoding): Set `loader->num_chars'.
michael@0 166
michael@0 167 2002-01-28 Werner Lemberg <wl@gnu.org>
michael@0 168
michael@0 169 * src/type1/t1load.c (parse_subrs, parse_charstrings): Use copy
michael@0 170 of `base' string for decrypting to not modify the original data.
michael@0 171 Based on a patch by Jakub Bogusz <qboosh@pld.org.pl>.
michael@0 172
michael@0 173 2002-01-27 Giuliano Pochini <pochini@shiny.it>
michael@0 174
michael@0 175 * src/smooth/ftgrays.c (gray_render_scanline): Fix bug which caused
michael@0 176 bad rendering of thin lines (less than one pixel thick).
michael@0 177
michael@0 178 2002-01-25 Werner Lemberg <wl@gnu.org>
michael@0 179
michael@0 180 * src/cff/cffdrivr.c (cff_get_name_index): Make last patch work
michael@0 181 actually.
michael@0 182
michael@0 183 2002-01-25 Martin Zinser <zinser@decus.de>
michael@0 184
michael@0 185 * src/cache/ftccache.c (ftc_node_done, ftc_node_destroy): Fix
michael@0 186 compilation warnings.
michael@0 187 * src/base/descrip.mms (OBJS): Add `ftmm.obj'.
michael@0 188 * src/cache/descrip.mms (ftcache.obj): Dependencies added.
michael@0 189
michael@0 190 2002-01-25 WANG Yi <wangyi@founder.com.cn>
michael@0 191
michael@0 192 * src/cff/cffdrivr.c (cff_get_name_index): Fix deallocation bug.
michael@0 193
michael@0 194 2002-01-21 Antoine Leca <Antoine-Freetype@Leca-Marti.org>
michael@0 195
michael@0 196 * docs/PATENTS: Typo fixed (thanks to Detlef `Hawkeye' Würkner) in
michael@0 197 the URL for the online resource.
michael@0 198
michael@0 199 2002-01-18 Ian Brown <ian.brown@printsoft.de>
michael@0 200
michael@0 201 * builds/win32/ftdebug.c: New file.
michael@0 202 * builds/win32/visualc/freetype.dsp: Updated.
michael@0 203
michael@0 204 2002-01-18 Detlef Würkner <TetiSoft@apg.lahn.de>
michael@0 205
michael@0 206 * builds/amiga/src/base/ftsystem.c: Updated for AmigaOS 3.9.
michael@0 207 * builds/amiga/README: Updated.
michael@0 208
michael@0 209 2002-01-18 Ian Brown <ian.brown@printsoft.de>
michael@0 210
michael@0 211 * builds/win32/visualc/freetype.dsp: Updated.
michael@0 212
michael@0 213 2002-01-13 Werner Lemberg <wl@gnu.org>
michael@0 214
michael@0 215 * builds/unix/freetype2.a4: The script was still buggy.
michael@0 216 * builds/unix/freetype-config.in: Make it really work for any install
michael@0 217 prefix.
michael@0 218
michael@0 219 2002-01-10 Werner Lemberg <wl@gnu.org>
michael@0 220
michael@0 221 * builds/unix/freetype2.a4: Fix some serious bugs.
michael@0 222
michael@0 223 2002-01-09 David Turner <david@freetype.org>
michael@0 224
michael@0 225 * builds/unix/configure.ac: Build top-level Jamfile.
michael@0 226
michael@0 227 2002-01-09 Maxim Shemanarev <mcseemagg@yahoo.com>
michael@0 228
michael@0 229 * src/smooth/ftgrays.c (gray_render_line): Small optimization to
michael@0 230 the smooth anti-aliased renderer that deals with vertical segments.
michael@0 231 This results in a 5-7% speedup in rendering speed.
michael@0 232
michael@0 233 2002-01-08 David Turner <david@freetype.org>
michael@0 234
michael@0 235 Added some wrapper scripts to make the installation more
michael@0 236 Unix-friendly.
michael@0 237
michael@0 238 * configure, install: New files.
michael@0 239
michael@0 240 * INSTALL, README.UNX: Updated installation documentation to use the
michael@0 241 new 'configure' and 'install' scripts.
michael@0 242
michael@0 243 2002-01-07 David Turner <david@freetype.org>
michael@0 244
michael@0 245
michael@0 246 * Version 2.0.6 released.
michael@0 247 =========================
michael@0 248
michael@0 249
michael@0 250 * docs/BUGS, docs/CHANGES: Updating documentation for 2.0.6 release.
michael@0 251
michael@0 252 * src/tools/docmaker.py: Fixed HTML quoting in sources.
michael@0 253 (html_format): Replaced with ...
michael@0 254 (html_quote): New function.
michael@0 255 (html_quote0): New function.
michael@0 256 (DocCode::dump_html): Small improvement.
michael@0 257 (DocParagraph::dump, DocBlock::html): Use html_quote0 and html_quote.
michael@0 258
michael@0 259 * include/freetype/config/ftoption.h: Setting default options for
michael@0 260 a release build (debugging off, bytecode interpreter off).
michael@0 261
michael@0 262 * src/base/ftobjs.c, src/base/ftoutln.c, src/cache/ftccmap.c,
michael@0 263 src/cff/cffload.c, src/cff/cffobjs.c, src/pshinter/pshalgo2.c,
michael@0 264 src/sfnt/ttload.c, src/sfnt/ttsbit.c: Removing small compiler
michael@0 265 warnings (in pedantic compilation modes).
michael@0 266
michael@0 267 2002-01-05 David Turner <david@freetype.org>
michael@0 268
michael@0 269 * src/autohint/ahhint.c (ah_align_linked_edge): Modified computation
michael@0 270 of auto-hinted stem widths; this avoids color fringes in
michael@0 271 `ClearType-like' rendering.
michael@0 272
michael@0 273 * src/truetype/ttgload.c (TT_Load_Glyph_Header,
michael@0 274 TT_Load_Simple_Glyph, TT_Load_Composite_Glyph, load_truetype_glyph):
michael@0 275 Modified the TrueType loader to make it more paranoid; this avoids
michael@0 276 nasty buffer overflows in the case of invalid glyph data (as
michael@0 277 encountered in the output of some buggy font converters).
michael@0 278
michael@0 279 2002-01-04 David Turner <david@freetype.org>
michael@0 280
michael@0 281 * README.UNX: Added special README file for Unix users.
michael@0 282
michael@0 283 * builds/unix/ftsystem.c (FT_New_Stream): Fixed typo.
michael@0 284
michael@0 285 * src/base/ftobjs.c: Added #include FT_OUTLINE_H to get rid
michael@0 286 of compiler warnings.
michael@0 287
michael@0 288 * src/base/ftoutln.c (FT_Outline_Check): Remove compiler warning.
michael@0 289
michael@0 290 2002-01-03 Werner Lemberg <wl@gnu.org>
michael@0 291
michael@0 292 * src/type1/t1objs.c (T1_Face_Init): Add cast to avoid compiler
michael@0 293 warning.
michael@0 294
michael@0 295 2002-01-03 Keith Packard <keithp@keithp.com>
michael@0 296
michael@0 297 * builds/unix/ftsystem.c (FT_New_Stream): Added a fix to ensure that
michael@0 298 all FreeType input streams are closed in child processes of a `fork'
michael@0 299 on Unix systems. This is important to avoid (potential) access
michael@0 300 control issues.
michael@0 301
michael@0 302 2002-01-03 David Turner <david@freetype.org>
michael@0 303
michael@0 304 * src/type1/t1objs.c (T1_Face_Init): Fixed a bug that crashed the
michael@0 305 library when dealing with certain weird fonts like `Stalingrad', in
michael@0 306 `sadn.pfb' (this font has no full font name entry).
michael@0 307
michael@0 308 * src/base/ftoutln.c, include/freetype/ftoutln.h (FT_Outline_Check):
michael@0 309 New function to check the consistency of outline data.
michael@0 310
michael@0 311 * src/base/ftobjs.c (FT_Load_Glyph): Use `FT_Outline_Check' to
michael@0 312 ensure that loaded glyphs are valid. This allows certain fonts like
michael@0 313 `tt1095m_.ttf' to be loaded even though it appears they contain
michael@0 314 really funky glyphs.
michael@0 315
michael@0 316 There still is a bug there, though.
michael@0 317
michael@0 318 * src/truetype/ttgload.c (load_truetype_glyph): Fix error condition.
michael@0 319
michael@0 320 2001-12-30 David Turner <david@freetype.org>
michael@0 321
michael@0 322 * src/autohint/ahhint.c (ah_hinter_load): Fix advance width
michael@0 323 computation of auto-hinted glyphs. This noticeably improves the
michael@0 324 spacing of letters in KDE and Gnome.
michael@0 325
michael@0 326 2001-12-25 Antoine Leca <Antoine-Freetype@Leca-Marti.org>
michael@0 327
michael@0 328 * builds/dos/detect.mk: Correcting the order for Borland compilers:
michael@0 329 16-bit bcc was never selected, always overridden by 32-bit bcc32.
michael@0 330
michael@0 331 2001-12-22 Francesco Zappa Nardelli <Francesco.Zappa.Nardelli@ens.fr>
michael@0 332
michael@0 333 * src/pfc/pcfread.c (pcf_load_font): Handle property `POINT_SIZE'
michael@0 334 and fix incorrect computation of `available_sizes'.
michael@0 335
michael@0 336 2001-12-22 David Turner <david@freetype.org>
michael@0 337
michael@0 338 * src/autohint/ahhint.c (ah_hinter_load): Auto-hinted glyphs had an
michael@0 339 incorrect glyph advance in the case of mono-width fonts (like
michael@0 340 Courier, Andale Mono, and others).
michael@0 341
michael@0 342 2001-12-22 Detlef Würkner <TetiSoft@apg.lahn.de>
michael@0 343
michael@0 344 * builds/amiga/*: Adaptations to latest changes.
michael@0 345 Support added for MorphOS.
michael@0 346
michael@0 347 2001-12-22 Werner Lemberg <wl@gnu.org>
michael@0 348
michael@0 349 * src/pshinter/pshrec.c (FT_COMPONENT): Redefine to `trace_pshrec'.
michael@0 350 (ps_mask_table_merge, ps_hints_open, ps_hints_stem,
michael@0 351 ps_hints_t1stem3, ps_hints_t2mask, ps_hints_t2counter): Fix
michael@0 352 FT_ERROR messages.
michael@0 353 * src/pshinter/pshalgo1.c (FT_COMPONENT): Define as
michael@0 354 `trace_pshalgo1'.
michael@0 355 * src/pshinter/pshalgo2.c (FT_COMPONENT): Define as
michael@0 356 `trace_pshalgo2'.
michael@0 357 * include/freetype/internal/ftdebug.h (FT_Trace): Updated.
michael@0 358
michael@0 359 * docs/modules.txt: New file.
michael@0 360
michael@0 361 2001-12-21 David Turner <david@freetype.org>
michael@0 362
michael@0 363 * src/pshinter/pshrec.c (ps_hints_t2mask, ps_hints_t2counter):
michael@0 364 Ignore invalid `hintmask' and `cntrmask' operators (instead of
michael@0 365 returning an error). Glyph 2028 of the CFF font `MSung-Light-Acro'
michael@0 366 couldn't be rendered otherwise (it seems its charstring is buggy,
michael@0 367 though this requires more analysis).
michael@0 368 (FT_COMPONENT): Define.
michael@0 369
michael@0 370 * src/cff/cffgload.c (CFF_Parse_CharStrings), src/psaux/t1decode.c
michael@0 371 (T1_Decoder_Parse_Charstrings), src/pshinter/pshalgo2.c (*), Fixed a
michael@0 372 bug where the X and Y axis where inverted in the postscript hinter.
michael@0 373 This caused problem when displaying on non-square surfaces.
michael@0 374
michael@0 375 * src/pshinter/pshalgo2.c: s/vertical/dimension/.
michael@0 376
michael@0 377 * src/pshinter/pshglob.c (psh_globals_new): Replaced a floating
michael@0 378 point constant with a fixed-float equivalent. For some reasons not
michael@0 379 all compilers are capable of directly computing a floating pointer
michael@0 380 constant casted to FT_Fixed, and will link a math library instead.
michael@0 381
michael@0 382 2001-12-20 Werner Lemberg <wl@gnu.org>
michael@0 383
michael@0 384 * src/cache/ftccache.c (ftc_node_destroy, ftc_cache_lookup): Fix
michael@0 385 tracing strings.
michael@0 386 * src/cache/ftccmap.c (ftc_cmap_family_init): Ditto.
michael@0 387 * src/cache/ftcmanag.c (ftc_family_table_alloc,
michael@0 388 ftc_family_table_free, FTC_Manager_Check): Ditto.
michael@0 389 * src/cache/ftcsbits.c (ftc_sbit_node_load): Ditto.
michael@0 390
michael@0 391 * src/base/ftobjs.c (FT_Done_Library): Remove compiler warning.
michael@0 392
michael@0 393 2001-12-20 David Turner <david@freetype.org>
michael@0 394
michael@0 395 Added PostScript hinter support to the CFF and CID drivers.
michael@0 396
michael@0 397 * include/freetype/internal/cfftypes.h (CFF_Font): New member
michael@0 398 `pshinter'.
michael@0 399 * src/cff/cffload.c (CFF_Get_Standard_Encoding): New function.
michael@0 400 * src/cff/cffload.h: Updated.
michael@0 401 * src/cff/cffgload.c (CFF_Init_Builder): Renamed to ...
michael@0 402 (CFF_Builder_Init): This.
michael@0 403 Added new argument `hinting'.
michael@0 404 (CFF_Done_Builder): Renamed to ...
michael@0 405 (CFF_Builder_Done): This.
michael@0 406 (CFF_Init_Decoder): Added new argument `hinting'.
michael@0 407 (CFF_Parse_CharStrings): Implement vstem support.
michael@0 408 (CFF_Load_Glyph): Updated.
michael@0 409 Add hinting support.
michael@0 410 (cff_lookup_glyph_by_stdcharcode): Use CFF_Get_Standard_Encoding().
michael@0 411 (cff_argument_counts): Updated.
michael@0 412 * src/cff/cffgload.h: Updated.
michael@0 413 * src/cff/cffobjs.c: Include FT_INTERNAL_POSTSCRIPT_HINTS_H.
michael@0 414 (CFF_Size_Get_Globals_Funcs, CFF_Size_Done, CFF_Size_Init,
michael@0 415 CFF_Size_Reset, CFF_GlyphSlot_Done, CFF_GLyphSlot_Init): New
michael@0 416 functions.
michael@0 417 (CFF_Init_Face): Renamed to ...
michael@0 418 (CFF_Face_Init): This.
michael@0 419 Add hinter support.
michael@0 420 (CFF_Done_Face): Renamed to ...
michael@0 421 (CFF_Face_Done): This.
michael@0 422 (CFF_Init_Driver): Renamed to ...
michael@0 423 (CFF_Driver_Init): This.
michael@0 424 (CFF_Done_Driver): Renamed to ...
michael@0 425 (CFF_Driver_Done): This.
michael@0 426 * src/cff/cffobjs.h: Updated.
michael@0 427 * src/cff/cffdrivr.c (cff_driver_class): Updated.
michael@0 428
michael@0 429 * include/freetype/internal/t1types.h (CID_FaceRec): New member
michael@0 430 `pshinter'.
michael@0 431 * src/cid/cidgload.c (CID_Load_Glyph): Add hinter support.
michael@0 432 * src/cid/cidobjs.c: Include FT_INTERNAL_POSTSCRIPT_HINTS_H.
michael@0 433 (CID_GlyphSlot_Done, CID_GlyphSlot_Init, CID_Size_Get_Globals_Funcs,
michael@0 434 CID_Size_Done, CID_Size_Init, CID_Size_Reset): New functions.
michael@0 435 (CID_Done_Face): Renamed to ...
michael@0 436 (CID_Face_Done): This.
michael@0 437 (CID_Init_Face): Renamed to ...
michael@0 438 (CID_Face_Init): This.
michael@0 439 Add hinting support.
michael@0 440 (CID_Init_Driver): Renamed to ...
michael@0 441 (CID_Driver_Init): This.
michael@0 442 (CID_Done_Driver): Renamed to ...
michael@0 443 (CID_Driver_Done): This.
michael@0 444 * src/cid/cidobjs.h: Updated.
michael@0 445 * src/cidriver.c: Updated.
michael@0 446
michael@0 447 * src/pshinter/pshrec.c (t2_hint_stems): Fixed.
michael@0 448
michael@0 449 * src/base/ftobjs.c (FT_Done_Library): Fixed a stupid bug that
michael@0 450 crashed the library on exit.
michael@0 451
michael@0 452 * src/type1/t1gload.c (T1_Load_Glyph): Enable font matrix
michael@0 453 transformation of hinted glyphs.
michael@0 454
michael@0 455 * src/cid/cidload.c (cid_read_subrs): Fix error condition.
michael@0 456
michael@0 457 * src/cid/cidobjs.c (CID_Face_Done): Fixed a memory leak; the subrs
michael@0 458 routines were never released when CID faces were destroyed.
michael@0 459
michael@0 460 * src/cff/cffload.h, src/cff/cffload.c, src/cff/cffgload.c: Updated
michael@0 461 to move the definition of encoding tables back within `cffload.c'
michael@0 462 instead of making them part of a shared header (causing problems in
michael@0 463 `multi' builds). This reverts change 2001-08-08.
michael@0 464
michael@0 465 * docs/CHANGES: Updated for 2.0.6 release.
michael@0 466 * docs/TODO: Added `stem3 and counter hints support' to the TODO
michael@0 467 list for the Postscript hinter.
michael@0 468 * docs/BUGS: Closed the AUTOHINT-NO-SBITS bug.
michael@0 469
michael@0 470 2001-12-19 David Turner <david@freetype.org>
michael@0 471
michael@0 472 * include/freetype/cache/ftcache.h: Added comments to indicate that
michael@0 473 some of the exported functions should only be used by applications
michael@0 474 that need to implement custom cache types.
michael@0 475
michael@0 476 * src/truetype/ttgload.c (cur_to_org, org_to_cur): Fixed a nasty bug
michael@0 477 that prevented composites from loading correctly, due to missing
michael@0 478 parentheses around macro parameters.
michael@0 479
michael@0 480 * src/sfnt/sfobjs.c (SFNT_Load_Face): Make the `post' and `name'
michael@0 481 tables optional to load PCL fonts properly.
michael@0 482
michael@0 483 * src/truetype/ttgload.c (TT_Load_Glyph), src/base/ftobjs.c
michael@0 484 (FT_Load_Glyph), include/freetype/freetype.h (FT_LOAD_SBITS_ONLY):
michael@0 485 `Fixed' the bug that prevented embedded bitmaps to be loaded when
michael@0 486 the auto-hinter is used. This actually is a hack but will be enough
michael@0 487 until the internal re-design scheduled for FreeType 2.1.
michael@0 488
michael@0 489 * src/raster/ftrend1.c (ft_raster1_render): Fixed a nasty outline
michael@0 490 shifting bug in the monochrome renderer.
michael@0 491
michael@0 492 * README: Updated version numbers to 2.0.6.
michael@0 493
michael@0 494 2001-12-17 Werner Lemberg <wl@gnu.org>
michael@0 495
michael@0 496 * src/truetype/ttgload.c (load_truetype_glyph): Fix test for invalid
michael@0 497 glyph header.
michael@0 498
michael@0 499 2001-12-15 Werner Lemberg <wl@gnu.org>
michael@0 500
michael@0 501 * src/base/ftglyph.c (FT_Glyph_To_Bitmap): Remove compiler warning.
michael@0 502 * include/freetype/ftcache.h (FTC_Node_Unref): Removed. It is
michael@0 503 already in ftcmanag.h.
michael@0 504 * src/cache/ftcsbits.c (ftc_sbit_node_load): Remove unused variable
michael@0 505 `gfam'.
michael@0 506 * src/cache/ftcmanag.c (ftc_family_table_alloc,
michael@0 507 * ftc_family_table_free): Use FT_EXPORT_DEF.
michael@0 508 * include/freetype/cache/ftcmanag.h: Updated.
michael@0 509 * src/cache/ftccache.c (ftc_node_destroy): Use FT_EXPORT_DEF.
michael@0 510 * src/cache/ftccmap.c (ftc_cmap_node_init): Remove unused variable
michael@0 511 `cfam'.
michael@0 512 Remove compiler warning.
michael@0 513 (FTC_CMapCache_Lookup): Remove compiler warnings.
michael@0 514 (ftc_cmap_family_init): Ditto.
michael@0 515 (FTC_CMapCache_Lookup): Ditto.
michael@0 516
michael@0 517 * builds/unix/configure.ac: Increase `version_info' to 8:0:2.
michael@0 518 * builds/unix/configure: Regenerated.
michael@0 519
michael@0 520 2001-12-14 Werner Lemberg <wl@gnu.org>
michael@0 521
michael@0 522 * builds/mac/README: Updated.
michael@0 523
michael@0 524 2001-12-14 Scott Long <scott@swiftview.com>
michael@0 525
michael@0 526 * src/truetype/ttgload.c (load_truetype_glyph): Fixing crash when
michael@0 527 dealing with invalid fonts (i.e. glyph size < 10 bytes).
michael@0 528
michael@0 529 2001-12-14 Sam Latinga <slouken@devolution.com>
michael@0 530
michael@0 531 * builds/mac/freetype.make: A new Makefile to build with MPW on
michael@0 532 MacOS classic.
michael@0 533
michael@0 534 2001-12-14 David Turner <david@freetype.org>
michael@0 535
michael@0 536 * src/truetype/ttgload.c (TT_Load_Glyph), src/type1/t1gload.c
michael@0 537 (T1_Load_Glyph), src/cid/cidgload.c (CID_Load_Glyph),
michael@0 538 src/cff/cffgload.c (CFF_Load_Glyph): Fixed a serious bug common to
michael@0 539 all font drivers (the advance width was never hinted when it
michael@0 540 should).
michael@0 541
michael@0 542 * include/freetype/freetype.h (FREETYPE_PATCH): New macro.
michael@0 543 * src/base/ftdbgmem.c (debug_mem_dummy) [!FT_DEBUG_MEMORY]: Don't
michael@0 544 use `extern' keyword.
michael@0 545
michael@0 546 2001-12-12 David Turner <david@freetype.org>
michael@0 547
michael@0 548 * src/pshinter/pshglob.c (psh_blues_scale_zones, psh_blues_snap_stem
michael@0 549 psh_globals_new): Adding correct BlueScale/BlueShift support, plus
michael@0 550 family blues processing.
michael@0 551 * src/pshinter/pshglob.h (PSH_BluesRec): Updated.
michael@0 552
michael@0 553 Started adding support for the Postscript hinter in the CFF module.
michael@0 554
michael@0 555 * src/cff/cffgload.c: Include FT_INTERNAL_POSTSCRIPT_HINTS_H.
michael@0 556 (CFF_Parse_CharStrings): Implement it.
michael@0 557 * src/cff/cffgload.h: Updated.
michael@0 558
michael@0 559 2001-12-12 Werner Lemberg <wl@gnu.org>
michael@0 560
michael@0 561 * builds/unix/freetype2.m4: Some portability fixes.
michael@0 562
michael@0 563 2001-12-11 Jouk Jansen <joukj@hrem.stm.tudelft.nl>
michael@0 564
michael@0 565 * src/base/descrip.mms (OBJS): Add ftdebug.obj.
michael@0 566
michael@0 567 2001-12-11 Werner Lemberg <wl@gnu.org>
michael@0 568
michael@0 569 * src/sfnt/ttload.c (TT_Load_Generic_Header): Typos.
michael@0 570
michael@0 571 2001-12-11 David Turner <david@freetype.org>
michael@0 572
michael@0 573 * builds/unix/freetype-config.in: Modified the script to prevent
michael@0 574 passing `-L/usr/lib' to gcc.
michael@0 575
michael@0 576 * docs/FTL.TXT: Simple fix (change `LICENSE.TXT' to `FTL.TXT').
michael@0 577
michael@0 578 * builds/unix/freetype2.m4: New file for checking configure paths.
michael@0 579 We need to install it in $(prefix)/share/aclocal/freetype2.m4 but I
michael@0 580 didn't modify builds/unix/install.mk yet.
michael@0 581
michael@0 582 * INSTALL: Updated the instructions to build shared libraries with
michael@0 583 Jam. They were simply wrong.
michael@0 584
michael@0 585 * src/base/fttrigon.c (FT_Cos): Fixed a small bug that caused
michael@0 586 slightly improper results for `FT_Cos' and `FT_Sin' (example:
michael@0 587 FT_Sin(0) == -1!).
michael@0 588
michael@0 589 2001-12-11 Detlef Würkner <TetiSoft@apg.lahn.de>
michael@0 590
michael@0 591 * include/freetype/internal/ftstream.h (GET_LongLE, GET_ULongLE):
michael@0 592 Fixed incorrect argument types.
michael@0 593
michael@0 594 2001-12-10 Francesco Zappa Nardelli <Francesco.Zappa.Nardelli@ens.fr>
michael@0 595
michael@0 596 * src/pcf/pcfdriver.c (PCF_Init_Face): Allow Xft to use PCF fonts
michael@0 597 by setting the `face->metrics.max_advance' correctly.
michael@0 598
michael@0 599 2001-12-07 David Turner <david@freetype.org>
michael@0 600
michael@0 601 * include/freetype/cache/ftccmap.h, src/cache/ftccmap.c: Added new
michael@0 602 charmap cache.
michael@0 603 * src/cache/ftcache.c: Updated.
michael@0 604
michael@0 605 * src/autohint/ahhint.c (ah_hinter_hint_edges): s/UNUSED/FT_UNUSED/.
michael@0 606
michael@0 607 2001-12-06 Leonard Rosenthol <leonardr@lazerware.com>
michael@0 608
michael@0 609 Added support for reading .dfont files on Mac OS X. Also added a
michael@0 610 new routine which looks up a given font by name in the Mac OS and
michael@0 611 returns the disk file where it resides.
michael@0 612
michael@0 613 * src/base/ftmac.c: Include <Files.h> and <TextUtils.h>.
michael@0 614 (is_dfont): New auxiliary function.
michael@0 615 (FT_New_Face_From_dfont): New function.
michael@0 616 (FT_GetFile_From_Mac_Name): New exported function.
michael@0 617 (FT_New_Face): Updated.
michael@0 618 * include/freetype/ftmac.h: Updated.
michael@0 619
michael@0 620 2001-12-06 David Turner <david@freetype.org>
michael@0 621
michael@0 622 * src/cache/Jamfile, src/cache/rules.mk: Updated.
michael@0 623
michael@0 624 2001-12-06 Werner Lemberg <wl@gnu.org>
michael@0 625
michael@0 626 * INSTALL: Small update.
michael@0 627
michael@0 628 2001-12-05 David Turner <david@freetype.org>
michael@0 629
michael@0 630 * src/base/ftglyph.c (FT_Glyph_To_Bitmap): Re-ordered code for
michael@0 631 debugging purposes.
michael@0 632 Comment out use of `origin'.
michael@0 633
michael@0 634 * src/smooth/ftsmooth.c (ft_smooth_render): Fixed a nasty hidden bug
michael@0 635 where outline shifting wasn't correctly undone after bitmap
michael@0 636 rasterization. This created problems with certain glyphs (like '"'
michael@0 637 of certain fonts) and the cache system.
michael@0 638
michael@0 639 * src/pshinter/pshalgo1.c (psh1_hint_table_init): Fix typo.
michael@0 640 * src/pshinter/pshalgo2.c (psh2_hint_table_init): Fix typo.
michael@0 641 (ps2_hints_apply): Small fix.
michael@0 642
michael@0 643 2001-12-05 David Turner <david@freetype.org>
michael@0 644
michael@0 645 * src/pshinter/pshalgo2.c (psh2_hint_table_init),
michael@0 646 src/pshinter/pshalgo1.c (psh1_hint_table_init): Removed compiler
michael@0 647 warnings.
michael@0 648
michael@0 649 * include/freetype/ftcache.h, include/freetype/cache/*, src/cache/*:
michael@0 650 Yet another massive rewrite of the caching sub-system in order to
michael@0 651 both increase performance and allow simpler cache sub-classing. As
michael@0 652 an example, the code for the image and sbit caches is now much
michael@0 653 simpler.
michael@0 654
michael@0 655 I still need to update the documentation in
michael@0 656 www/freetype2/docs/cache.html to reflect the new design though.
michael@0 657
michael@0 658 * include/freetype/config/ftheader.h (FT_CACHE_CHARMAP_H): New
michael@0 659 macro.
michael@0 660 (FT_CACHE_INTERNAL_CACHE_H): Updated.
michael@0 661
michael@0 662 2001-12-05 David Krause <freetype@davidkrause.com>
michael@0 663
michael@0 664 * docs/license.txt: s/X Windows/X Window System/.
michael@0 665
michael@0 666 2001-12-04 Werner Lemberg <wl@gnu.org>
michael@0 667
michael@0 668 * src/raster/ftraster.c: Fix definition condition of MEM_Set().
michael@0 669 * src/smooth/ftgrays.c (M_Y): Change value to 192.
michael@0 670 * src/base/ftdbgmem.c (ft_mem_table_destroy): Fix printf() parameter.
michael@0 671 Remove unused variable.
michael@0 672 * src/cache/ftcimage.c (ftc_image_node_init,
michael@0 673 ftc_image_node_compare): Remove unused variables.
michael@0 674 * src/cache/ftcsbits.c (ftc_sbit_node_weight): Remove unused
michael@0 675 variable.
michael@0 676 * src/raster/ftraster.c (MEM_Set): Move definition down to avoid
michael@0 677 compiler warning.
michael@0 678 * src/autohint/ahhint.c (ah_hinter_hint_edges): Use UNUSED() to
michael@0 679 avoid compiler warnings.
michael@0 680 * src/pcf/pcfread.c (tableNames): Use `const'.
michael@0 681 (pcf_read_TOC): Change counter name to avoid compiler warning.
michael@0 682 Use `const'.
michael@0 683 * src/pshinter/pshrec.c (ps_hints_close): Remove redundant
michael@0 684 declaration.
michael@0 685 * src/pshinter/pshalgo1.c (psh1_hint_table_init): Rename variables
michael@0 686 to avoid shadowing.
michael@0 687 * src/pshinter/pshalgo2.c (psh2_hint_table_activate_mask): Ditto.
michael@0 688 * src/type1/t1objs.h: Remove double declarations of `T1_Size_Init()'
michael@0 689 and `T1_Size_Done()'.
michael@0 690
michael@0 691 2001-11-20 Antoine Leca <antoineleca@multimania.com>
michael@0 692
michael@0 693 * include/freetype/ttnameid.h: Added some new Microsoft language
michael@0 694 codes and LCIDs as found in MSDN (Passport SDK). Also added
michael@0 695 comments about the meaning of bit 57 of the `OS/2' table
michael@0 696 (TT_UCR_SURROGATES) which (with OpenType v.1.3) now means `there is
michael@0 697 a character beyond 0xFFFF in this font'. Thanks to Detlef Würkner
michael@0 698 <TetiSoft@apg.lahn.de> for noticing this.
michael@0 699
michael@0 700 2001-11-20 David Turner <david@freetype.org>
michael@0 701
michael@0 702 * src/pshinter/{pshalgo2.c, pshalgo1.c}: Fixed stupid bug in sorting
michael@0 703 routine that created nasty alignment artefacts.
michael@0 704
michael@0 705 * src/pshinter/pshrec.c, tests/gview.c: Debugging updates.
michael@0 706
michael@0 707 * src/smooth/ftgrays.c: De-activated experimental gamma support.
michael@0 708 Apparently, `optimal' gamma tables depend on the monitor type,
michael@0 709 resolution and general karma, so it's better to compute them outside
michael@0 710 of the rasterizer itself.
michael@0 711 (gray_convert_glyph): Use `volatile' keyword.
michael@0 712
michael@0 713 2001-10-29 David Turner <david@freetype.org>
michael@0 714
michael@0 715 Adding experimental `gamma' support. This produces smoother glyphs
michael@0 716 at small sizes for very little cost.
michael@0 717
michael@0 718 * src/smooth/ftgrays.c (grays_init_gamma): New function.
michael@0 719 (gray_raster_new): Use it.
michael@0 720
michael@0 721 Various fixes to the auto-hinter. They merely improve the output of
michael@0 722 sans-serif fonts. Note that there are still problems with serifed
michael@0 723 fonts and composites (accented characters).
michael@0 724
michael@0 725 * src/autohint/ahglyph.c (ah_outline_load,
michael@0 726 ah_outline_link_segments): Implement it.
michael@0 727 Fix typos.
michael@0 728 (ah_outline_save, ah_outline_compute_segments): Fix typos.
michael@0 729 * src/autohint/ahhint.c (ah_align_serif_edge): New argument
michael@0 730 `vertical'. Implement improvement.
michael@0 731 (ah_hint_edges_3, ah_hinter_hint_edges): Implement it.
michael@0 732 Fix typos.
michael@0 733 (ah_hinter_align_strong_points, ah_hinter_align_weak_points): Fix
michael@0 734 typos.
michael@0 735 (ah_hinter_load): Set `ah_debug_hinter' if DEBUG_HINTER is defined.
michael@0 736 * src/autohint/ahmodule.c: Implement support for DEBUG_HINTER macro.
michael@0 737 * src/autohint/ahtypes.h: Ditto.
michael@0 738 (AH_Hinter): Remove `disable_horz_edges' and `disable_vert_edges'
michael@0 739 (making them global as `ah_debug_disable_horz' and
michael@0 740 `ah_debug_disable_vert').
michael@0 741 Fix typos.
michael@0 742
michael@0 743 * tests/gview.c: Updated the debugging glyph viewer to show the
michael@0 744 hints generated by the `autohint' module.
michael@0 745
michael@0 746 2001-10-27 David Turner <david@freetype.org>
michael@0 747
michael@0 748 * src/cache/ftcchunk.c (ftc_chunk_cache_lookup): Fixed a bug that
michael@0 749 considerably lowered the performance of the abstract chunk cache.
michael@0 750
michael@0 751 2001-10-26 David Turner <david@freetype.org>
michael@0 752
michael@0 753 * include/freetype/ftcache.h, include/freetype/cache/*.h,
michael@0 754 src/cache/*.c: Major re-design of the cache sub-system to provide
michael@0 755 better performance as well as an `Acquire'/`Release' API. Seems to
michael@0 756 work well here, but probably needs a bit more testing.
michael@0 757
michael@0 758 2001-10-26 Leonard Rosenthol <leonardr@lazerware.com>
michael@0 759
michael@0 760 * builds/mac/README: Updated to reflect my taking over the project
michael@0 761 and that is now being actively maintained.
michael@0 762
michael@0 763 * src/base/ftmac.c (parse_fond): Applied patches from Paul Miller
michael@0 764 <paulm@profoundeffects.com> to support loading a face other than the
michael@0 765 first from a FOND resource.
michael@0 766 (FT_New_Face_From_FOND): Updated.
michael@0 767
michael@0 768 2001-10-25 Leonard Rosenthol <leonardr@lazerware.com>
michael@0 769
michael@0 770 * builds/mac/ftlib.prj: Update of CodeWarrior project file for Mac
michael@0 771 OS for latest version (7) of CWPro and for recent changes to the FT
michael@0 772 source tree.
michael@0 773
michael@0 774 2001-10-25 David Turner <david@freetype.org>
michael@0 775
michael@0 776 * include/freetype/config/ftoption.h: Updated comments to explain
michael@0 777 precisely how to use project-specific macro definitions without
michael@0 778 modifying this file manually.
michael@0 779
michael@0 780 (FT_CONFIG_FORCE_INT64): Define.
michael@0 781
michael@0 782 (FT_DEBUG_MEMORY): New macro.
michael@0 783
michael@0 784 2001-10-24 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 785
michael@0 786 * builds/unix/ftsystem.c (FT_New_Memory): Added a missing `{'.
michael@0 787
michael@0 788 2001-10-23 David Turner <david@freetype.org>
michael@0 789
michael@0 790 * include/freetype/internal/ftmemory.h, src/base/ftdbgmem.c:
michael@0 791 Improvements to the memory debugger to report more information in
michael@0 792 case of errors. Also, some allocations that occurred through REALLOC
michael@0 793 couldn't be previously caught correctly.
michael@0 794
michael@0 795 * src/autohint/ahglyph.c (ah_outline_compute_segments,
michael@0 796 ah_outline_compute_edges), src/raster/ftraster.c (ft_black_new),
michael@0 797 src/smooth/ftgrays.c (gray_render_span, gray_raster_new): Replaced
michael@0 798 liberal uses of memset() by the MEM_Set() macro.
michael@0 799
michael@0 800 2001-10-23 David Turner <david@freetype.org>
michael@0 801
michael@0 802 * src/raster/ftraster.c (Update): Removed to be inlined in ...
michael@0 803 (Sort): Updated.
michael@0 804
michael@0 805 2001-10-22 David Turner <david@freetype.org>
michael@0 806
michael@0 807 * builds/unix/ftsystem.c (FT_New_Memory, FT_Done_Memory),
michael@0 808 builds/vms/ftsystem.c (FT_New_Memory, FT_Done_Memory),
michael@0 809 builds/amiga/ftsystem.c (FT_New_Memory, FT_Done_Memory),
michael@0 810 src/base/ftdbgmem.c: Updated the memory debugger and
michael@0 811 platform-specific implementations of `ftsystem' in order to be able
michael@0 812 to debug memory allocations on Unix, VMS and Amiga too!
michael@0 813
michael@0 814 * src/pshinter/pshalgo2.c (psh2_hint_table_record_mask): Removed
michael@0 815 some bogus warnings.
michael@0 816
michael@0 817 * include/freetype/internal/ftmemory.h, src/base/ftdbgmem.c:
michael@0 818 Modified the debugging memory manager to report the location (source
michael@0 819 file name + line number) where leaked memory blocks are allocated in
michael@0 820 the source file.
michael@0 821
michael@0 822 * src/base/ftdbgmem.c: New debugging memory manager. You must
michael@0 823 define the FT_DEBUG_MEMORY macro in `ftoption.h' to enable it. It
michael@0 824 will record every memory block allocated and report simple errors
michael@0 825 like memory leaks and double deletes.
michael@0 826
michael@0 827 * src/base/Jamfile: Include ftdbgmem.
michael@0 828 * src/base/rules.mk: Ditto.
michael@0 829 * src/base/ftbase.c: Include ftdbgmem.c.
michael@0 830
michael@0 831 * include/freetype/config/ftoption.h: Added the FT_DEBUG_MEMORY
michael@0 832 macro definition.
michael@0 833
michael@0 834 * src/base/ftsystem.c (FT_New_Memory, FT_Done_Memory): Modified the
michael@0 835 base component to use the debugging memory manager when the macro
michael@0 836 FT_DEBUG_MEMORY is defined.
michael@0 837
michael@0 838 2001-10-21 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 839
michael@0 840 * src/cff/cffload.c (CFF_Done_Font): Free subfonts array only if
michael@0 841 we are working with a CID keyed CFF font. Otherwise, a variable
michael@0 842 that was never allocated memory might freed. This is a correction
michael@0 843 to the previous patch for freeing subfonts.
michael@0 844
michael@0 845 2001-10-21 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 846
michael@0 847 * src/cff/cffload.c (CFF_Done_Font): Free the subfonts array to
michael@0 848 avoid a memory leak.
michael@0 849
michael@0 850 2001-10-21 David Turner <david@freetype.org>
michael@0 851
michael@0 852 * src/pshinter/pshalgo2.c, src/pshinter/pshalgo1.c,
michael@0 853 src/pshinter/pshglob.c: Removing compiler warnings in pedantic modes
michael@0 854 (in multi-object compilation mode, mainly).
michael@0 855
michael@0 856 2001-10-20 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 857
michael@0 858 * src/type1/t1load.c (parse_encoding): Add a test to make sure
michael@0 859 that custom encodings (i.e., neither StandardEncoding nor
michael@0 860 ExpertEncoding) are not loaded twice when the Type 1 font is
michael@0 861 synthetic.
michael@0 862
michael@0 863 * src/type1/t1load.c (parse_font_name, parse_subrs): Added a test
michael@0 864 for when loading synthetic fonts to make sure that the font name
michael@0 865 and subroutines are not loaded twice. This is to remove a memory
michael@0 866 leak that occurred because the original memory blocks for these
michael@0 867 objects were not deallocated when the objects were parsed the
michael@0 868 second time.
michael@0 869
michael@0 870 2001-10-19 David Turner <david@freetype.org>
michael@0 871
michael@0 872 * src/smooth/ftgrays.c, src/pshinter/pshglob.h,
michael@0 873 src/pshinter/pshrec.c, src/pshinter/pshalgo2.c: Getting rid of
michael@0 874 compiler warnings.
michael@0 875
michael@0 876 * src/pshinter/module.mk, src/pshinter/rules.mk: Adding control
michael@0 877 files to build the PostScript hinter with the `old' build system.
michael@0 878
michael@0 879 2001-10-19 Jacob Jansen <joukj@hrem.stm.tudelft.nl>
michael@0 880
michael@0 881 * descrip.mms, src/pshinter/descrip.mms: Updates to the VMS build
michael@0 882 files.
michael@0 883
michael@0 884 2001-10-18 David Turner <david@freetype.org>
michael@0 885
michael@0 886 * src/psnames/pstables.h, src/tools/glnames.py: Rewrote the
michael@0 887 `glnames.py' script used to generate the `pstables.h' header file.
michael@0 888 The old one contained a serious bug that made FreeType return
michael@0 889 incorrect glyph names for certain glyphs.
michael@0 890
michael@0 891 * src/truetype/ttdriver.c (Set_Char_Sizes): Changing computation of
michael@0 892 pixel size from character size to use rounding. This is an
michael@0 893 experiment to see whether this gives values similar to Windows for
michael@0 894 scaled ascent/descent/etc.
michael@0 895
michael@0 896 * src/base/ftcalc.c (FT_Div64by32): Changed the implementation
michael@0 897 slightly since the original code was mis-compiled on Mac machines
michael@0 898 using the MPW C compiler.
michael@0 899
michael@0 900 * src/base/ftobjs.c (FT_Realloc): When a memory block was grown
michael@0 901 through FT_Realloc(), the new bytes were not set to 0, which created
michael@0 902 some strange bugs in the PostScript hinter.
michael@0 903 (destroy_face): Don't deallocate unconditionally.
michael@0 904
michael@0 905 * src/cid/cidgload.c (CID_Compute_Max_Advance, CID_Load_Glyph):
michael@0 906 Adding support to new PostScript hinter.
michael@0 907
michael@0 908 * include/freetype/internal/psglobal.h,
michael@0 909 include/freetype/internal/pshints.h,
michael@0 910 include/freetype/config/ftmodule.h, src/pshinter/Jamfile,
michael@0 911 src/pshinter/pshalgo.h, src/pshinter/pshalgo1.h,
michael@0 912 src/pshinter/pshalgo1.c, src/pshinter/pshalgo2.h,
michael@0 913 src/pshinter/pshalgo2.c, src/pshinter/pshglob.h,
michael@0 914 src/pshinter/pshglob.c, src/pshinter/pshinter.c,
michael@0 915 src/pshinter/pshmod.c, src/pshinter/pshmod.h, src/pshinter/pshrec.c,
michael@0 916 src/pshinter/pshrec.h: Adding new PostScript hinter module.
michael@0 917
michael@0 918 * include/freetype/internal/ftobjs.h,
michael@0 919 include/freetype/internal/internal.h,
michael@0 920 include/freetype/internal/psaux.h,
michael@0 921 include/freetype/internal/t1types.h, src/psaux/psobjs.c,
michael@0 922 src/psaux/psobjs.h, src/psaux/t1decode.h, src/psaux/t1decode.c,
michael@0 923 src/type1/t1driver.c, src/type1/t1gload.c, src/type1/t1objs.c,
michael@0 924 src/type1/t1objs.h: Updates to use the new PostScript hinter.
michael@0 925
michael@0 926 * tests/Jamfile, tests/gview.c: Adding a new glyph hinting
michael@0 927 viewer/debugger to the source tree. Note that you will _not_ be
michael@0 928 able to compile it since it depends on an unavailable graphics
michael@0 929 library named `Nirvana' to render vector images.
michael@0 930
michael@0 931 2001-10-17 David Turner <david@freetype.org>
michael@0 932
michael@0 933
michael@0 934 * Version 2.0.5 released.
michael@0 935 =========================
michael@0 936
michael@0 937
michael@0 938 * include/freetype/freetype.h, include/internal/ftobjs.h,
michael@0 939 src/base/ftobjs.c, src/type1/t1driver.c: Adding a new function named
michael@0 940 'FT_Get_Postscript_Name' to retrieve the PostScript name of a given
michael@0 941 font. Should work with all formats except pure CFF/CEF fonts (this
michael@0 942 will be added soon).
michael@0 943
michael@0 944 * src/cid/cidriver (cid_get_postscript_name): New function.
michael@0 945 (CID_Get_Interface): Handle `postscript_name' interface.
michael@0 946
michael@0 947 * src/sfnt/sfdriver.c (get_sfnt_postscript_name): New function.
michael@0 948 (SFNT_Get_Interface): Handle `postscript_name' interface.
michael@0 949
michael@0 950 * src/type1/t1driver.c (t1_get_ps_name): New function.
michael@0 951 (Get_Interface): Handle `postscript_name' interface.
michael@0 952
michael@0 953 * README, docs/CHANGES: Updated for 2.0.5 release.
michael@0 954
michael@0 955 2001-10-08 David Turner <david@freetype.org>
michael@0 956
michael@0 957 Fixed a bug in `glnames.py' that prevented it from generating
michael@0 958 correct glyph names tables. This resulted in the unavailability of
michael@0 959 certain glyphs like `Cacute', `cacute' and `lslash' in Unicode
michael@0 960 charmaps, even if these were present in the font (causing problems
michael@0 961 for Polish users).
michael@0 962
michael@0 963 * src/tools/glnames.py (mac_standard_names): Fixed.
michael@0 964 (t1_standard_strings): Some fixes and renamed to ...
michael@0 965 (sid_standard_names): This.
michael@0 966 (t1_expert_encoding): Fixed.
michael@0 967 (the_adobe_glyph_list): Renamed to ...
michael@0 968 (adobe_glyph_names): This.
michael@0 969 (the_adobe_glyphs): Renamed to ...
michael@0 970 (adobe_glyph_values): This.
michael@0 971 (dump_mac_indices, dump_glyph_list, dump_unicode_values, main):
michael@0 972 Updated.
michael@0 973 * src/psnames/pstables.h: Regenerated.
michael@0 974 * src/psnames/psmodule.c (PS_Unicode_Value): Fix offset.
michael@0 975 Fix return value.
michael@0 976 Use `sid_standard_table' and `ps_names_to_unicode' instead of
michael@0 977 `t1_standard_glyphs' and `names_to_unicode'.
michael@0 978 (PS_Macintosh_Name): Use `ps_glyph_names' instead of
michael@0 979 `standard_glyph_names'.
michael@0 980 (PS_Standard_Strings): Use `sid_standard_names' instead of
michael@0 981 `t1_standard_glyphs'.
michael@0 982
michael@0 983 * doc/BUGS, doc/TODO: New documents.
michael@0 984
michael@0 985 2001-10-07 Richard Barber <rich@solutionuk.com>
michael@0 986
michael@0 987 * src/cache/ftlru.c (FT_Lru_Lookup_Node): Fixed a bug that prevented
michael@0 988 correct LRU behaviour.
michael@0 989
michael@0 990 2001-10-07 David Turner <david@freetype.org>
michael@0 991
michael@0 992 setjmp() and longjmp() are now used for rollback (i.e. when memory
michael@0 993 pool overflow occurs).
michael@0 994
michael@0 995 Function names are now all uniformly prefixed with `gray_'.
michael@0 996
michael@0 997 * src/smooth/ftgrays.c: Include <setjmp.h>.
michael@0 998 (ErrRaster_MemoryOverflow): New macro.
michael@0 999 (TArea): New type to store area values in each cell (using `int' was
michael@0 1000 too small on 16-bit systems). <limits.h> is included to properly
michael@0 1001 get the needed data type.
michael@0 1002 (TCell, TRaster): Use it.
michael@0 1003 (TRaster): New element `jump_buffer'.
michael@0 1004 (gray_compute_cbox): Use `RAS_ARG' as the only parameter and get
michael@0 1005 `outline' from it.
michael@0 1006 (gray_record_cell): Use longjmp().
michael@0 1007 (gray_set_cell): Use gray_record_cell() for error handling.
michael@0 1008 (gray_render_line, gray_render_conic, gray_render_cubic): Simplify.
michael@0 1009 (gray_convert_glyph_inner): New function, using setjmp().
michael@0 1010 (gray_convert_glyph): Use it.
michael@0 1011
michael@0 1012 2001-10-07 David Turner <david@freetype.org>
michael@0 1013
michael@0 1014 Provide a public API to manage multiple size objects for a given
michael@0 1015 FT_Face in the new header file `ftsizes.h'.
michael@0 1016
michael@0 1017 * include/freetype/ftsizes.h: New header file,
michael@0 1018 * include/freetype/internal/ftobjs.h: Use it.
michael@0 1019 Remove declarations of FT_New_Size and FT_Done_Size (moved to
michael@0 1020 ftsizes.h).
michael@0 1021 * include/freetype/config/ftheader.h (FT_SIZES_H): New macro.
michael@0 1022 * src/base/ftobjs.c (FT_Activate_Size): New function.
michael@0 1023 * src/cache/ftcmanag.c: Include ftsizes.h.
michael@0 1024 (ftc_manager_init_size, ftc_manager_flush_size): Use
michael@0 1025 FT_Activate_Size.
michael@0 1026
michael@0 1027 2001-09-20 Detlef Würkner <TetiSoft@apg.lahn.de>
michael@0 1028
michael@0 1029 * builds/amiga/*: Added port to Amiga with the SAS/C compiler.
michael@0 1030
michael@0 1031 2001-09-15 Detlef Würkner <TetiSoft@apg.lahn.de>
michael@0 1032
michael@0 1033 * src/type1/t1afm.c (T1_Done_AFM): Free `afm'.
michael@0 1034
michael@0 1035 2001-09-10 Yao Zhang <yzhang@sharemedia.com>
michael@0 1036
michael@0 1037 * src/sfnt/ttcmap.c (code_to_index2): Handle code values with
michael@0 1038 hi-byte == 0 correctly.
michael@0 1039
michael@0 1040 2001-09-10 Werner Lemberg <wl@gnu.org>
michael@0 1041
michael@0 1042 * builds/link-std.mk ($(PROJECT_LIBRARY)): Fix typo.
michael@0 1043
michael@0 1044 2001-08-30 Martin Muskens <mmuskens@aurelon.com>
michael@0 1045
michael@0 1046 * src/type1/t1load.c (parse_font_matrix): A new way to compute the
michael@0 1047 units per EM with greater accuracy (important for embedded T1 fonts
michael@0 1048 in PDF documents that were automatically generated from TrueType
michael@0 1049 ones).
michael@0 1050
michael@0 1051 * src/type1/t1load.c (is_alpha): Now supports `+' in font names;
michael@0 1052 this is used in embedded fonts.
michael@0 1053
michael@0 1054 * src/psaux/psobjs.c (PS_Table_Add): Fixed a reallocation bug that
michael@0 1055 generated a dangling pointer reference.
michael@0 1056
michael@0 1057 2001-08-30 Anthony Feik <afeick@hotmail.com>
michael@0 1058
michael@0 1059 * src/type1/t1afm.c (T1_Read_Afm): Now correctly sets the flag
michael@0 1060 FT_FACE_FLAG_KERNING when appropriate for Type1 + AFM files.
michael@0 1061
michael@0 1062 2001-08-25 Werner Lemberg <wl@gnu.org>
michael@0 1063
michael@0 1064 * src/sfnt/ttload.c (TT_Load_CMap): Fix frame length of
michael@0 1065 `cmap_rec_fields'.
michael@0 1066
michael@0 1067 * include/freetype/fterrors.h [!FT_CONFIG_OPTION_USE_MODULE_ERRORS]:
michael@0 1068 Undefine FT_ERR_BASE before defining again.
michael@0 1069
michael@0 1070 2001-08-22 Werner Lemberg <wl@gnu.org>
michael@0 1071
michael@0 1072 * src/truetype/ttinterp.h: Fix prototype of TT_Move_Func.
michael@0 1073
michael@0 1074 2001-08-21 Werner Lemberg <wl@gnu.org>
michael@0 1075
michael@0 1076 * builds/dos/dos-def.mk (NO_OUTPUT): Don't use `&>' but `>'.
michael@0 1077
michael@0 1078 2001-08-21 David Turner <david@freetype.org>
michael@0 1079
michael@0 1080 * include/freetype/config/ftoption.h: Changed the default setting
michael@0 1081 for FT_CONFIG_OPTION_USE_MODULE_ERRORS to undefined, since it breaks
michael@0 1082 source compatibility in a few cases. Updated the comment to explain
michael@0 1083 that too.
michael@0 1084
michael@0 1085 2001-08-17 Martin Muskens <mmuskens@aurelon.com>
michael@0 1086
michael@0 1087 * src/base/ftcalc.c (FT_MulDiv): Fixed serious typo.
michael@0 1088
michael@0 1089 2001-08-12 Werner Lemberg <wl@gnu.org>
michael@0 1090
michael@0 1091 Updating to OpenType 1.3.
michael@0 1092
michael@0 1093 * include/freetype/internal/tttypes.h (TT_CMap0, TT_CMap2, TT_CMap4,
michael@0 1094 TT_CMap6): Adding field `language'.
michael@0 1095 (TT_CMapTable): Removing field `language'.
michael@0 1096 Type of `length' field changed to FT_ULong.
michael@0 1097 Adding fields for cmaps format 8, 10, and 12.
michael@0 1098 (TT_CMapGroup): New auxiliary structure.
michael@0 1099 (TT_CMap8_12, TT_CMap10): New structures.
michael@0 1100 * include/freetype/tttables.h (TT_HoriHeader, TT_VertHeader):
michael@0 1101 Removed last element of `Reserved' array.
michael@0 1102 * include/freetype/ttnameid.h (TT_PLATFORM_CUSTOM, TT_MS_ID_UCS_4,
michael@0 1103 TT_NAME_ID_CID_FINDFONT_NAME): New macros.
michael@0 1104
michael@0 1105 * src/sfnt/ttcmap.c (TT_CharMap_Load): Updated loading of `language'
michael@0 1106 field to the new structures.
michael@0 1107 Fixed freeing of arrays in case of unsuccessful loads.
michael@0 1108 Added support for loading format 8, 10, and 12 cmaps.
michael@0 1109 (TT_CharMap_Free): Added support for freeing format 8, 10, and 12
michael@0 1110 cmaps.
michael@0 1111 (code_to_index4): Small improvement.
michael@0 1112 (code_to_index6): Ditto.
michael@0 1113 (code_to_index8_12, code_to_index10): New functions.
michael@0 1114 * src/sfnt/ttload.c (TT_Load_Metrics_Header): Updated to new
michael@0 1115 structure.
michael@0 1116 (TT_Load_CMap): Ditto.
michael@0 1117
michael@0 1118 * src/sfnt/sfobjs.c (tt_encodings): Add MS UCS4 table (before MS
michael@0 1119 Unicode).
michael@0 1120
michael@0 1121 2001-08-11 Werner Lemberg <wl@gnu.org>
michael@0 1122
michael@0 1123 * src/type1/t1driver.c (t1_get_name_index): Fix compiler warning.
michael@0 1124
michael@0 1125 2001-08-09 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 1126
michael@0 1127 * src/cff/cffdrivr.c (get_cff_glyph_name): Renamed to
michael@0 1128 cff_get_glyph_name for consistency.
michael@0 1129
michael@0 1130 (cff_get_glyph_index): Minor documentation change.
michael@0 1131
michael@0 1132 * src/type1/t1driver.c (t1_get_name_index): New function used in
michael@0 1133 Get_Interface as the function returned when the `name_index'
michael@0 1134 function is requested.
michael@0 1135
michael@0 1136 (get_t1_glyph_name): Renamed to t1_get_glyph_name for consistency.
michael@0 1137
michael@0 1138 2001-08-08 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 1139
michael@0 1140 * src/cff/cffload.c: Removed definitions of cff_isoadobe_charset,
michael@0 1141 cff_expert_charset, cff_expertsubset_charset, cff_standard_encoding,
michael@0 1142 and cff_expert_encoding arrays to cffload.h.
michael@0 1143
michael@0 1144 * src/cff/cffload.h: Added definitions of cff_isoadobe_charset,
michael@0 1145 cff_expert_charset, cff_expertsubset_charset, cff_standard_encoding,
michael@0 1146 and cff_expert_encoding arrays.
michael@0 1147
michael@0 1148 * src/cff/cffdrivr.c (cff_get_name_index): New function, returned
michael@0 1149 when `cff_get_interface' is called with a request for the
michael@0 1150 `name_index' function.
michael@0 1151
michael@0 1152 (cff_get_interface): Modified so that it returns the function
michael@0 1153 `cff_get_name_index' when the `name_index' function is requested.
michael@0 1154
michael@0 1155 * src/base/ftobjs.c (FT_Get_Name_Index): New function, used to
michael@0 1156 return a glyph index for a given glyph name only if the driver
michael@0 1157 supports glyph names.
michael@0 1158
michael@0 1159 * include/freetype/internal/ftobjs.h (FT_Name_Index_Requester):
michael@0 1160 New function pointer type definition used in the function
michael@0 1161 FT_Get_Name_Index.
michael@0 1162
michael@0 1163 * include/freetype/freetype.h (FT_Get_Name_Index): Added
michael@0 1164 documentation and prototype.
michael@0 1165
michael@0 1166 2001-07-26 Werner Lemberg <wl@gnu.org>
michael@0 1167
michael@0 1168 * builds/cygwin/*: Removed. Use the unix stuff instead.
michael@0 1169
michael@0 1170 2001-07-26 Jouk Jansen <joukj@hrem.stm.tudelft.nl>
michael@0 1171
michael@0 1172 * builds/vms/ftconfig.h (FT_CALLBACK_DEF): Updated to change dated
michael@0 1173 2001-06-27.
michael@0 1174
michael@0 1175 2001-07-17 Werner Lemberg <wl@gnu.org>
michael@0 1176
michael@0 1177 * include/freetype/internal/psaux.h (PS_Table): Use FT_Offset for
michael@0 1178 `cursor' and `capacity'.
michael@0 1179 * src/psaux/psobjc.c (reallocate_t1_table): Use FT_Long for second
michael@0 1180 parameter.
michael@0 1181 (PS_Table_Add): Use FT_Offset for `new_size'.
michael@0 1182
michael@0 1183 Add support for version 0.5 maxp tables.
michael@0 1184
michael@0 1185 * src/sfnt/ttload.c (TT_Load_MaxProfile): Implement it.
michael@0 1186 (TT_Load_OS2): Initialize some values.
michael@0 1187
michael@0 1188 2001-07-13 Werner Lemberg <wl@gnu.org>
michael@0 1189
michael@0 1190 * src/base/ftsynth.c: Include ftcalc.h unconditionally.
michael@0 1191
michael@0 1192 2001-07-07 David Turner <david@freetype.org>
michael@0 1193
michael@0 1194 * src/truetype/ttgload.c, src/truetype/ttinterp.c, src/pcf/pcfread:
michael@0 1195 Removed pedantic compiler warnings when the bytecode interpreter is
michael@0 1196 compiled in.
michael@0 1197
michael@0 1198 2001-07-03 Werner Lemberg <wl@gnu.org>
michael@0 1199
michael@0 1200 * src/autohint/ahhint.c (ah_hinter_align_weak_points): Remove
michael@0 1201 unused variable `edges'.
michael@0 1202 (ah_hinter_load): Remove unused variables `old_width' and
michael@0 1203 `new_width'.
michael@0 1204 * src/cid/cidload.c (cid_decrypt): Use `U' for constant (again).
michael@0 1205 * src/psaux/psobjs.c (T1_Decrypt): Ditto.
michael@0 1206 * src/type1/t1parse.c (T1_Get_Private_Dict): Ditto.
michael@0 1207
michael@0 1208 2001-06-28 David Turner <david@freetype.org>
michael@0 1209
michael@0 1210 * include/internal/ftstream.h: Modified the definitions
michael@0 1211 of the FT_GET_XXXX and NEXT_XXXX macros for 16-bit correctness.
michael@0 1212
michael@0 1213 2001-06-26 Werner Lemberg <wl@gnu.org>
michael@0 1214
michael@0 1215 * src/cid/cidload.c, src/cid/cidload.h (cid_decrypt): Use FT_Offset
michael@0 1216 instead of FT_Int as type for `length' parameter.
michael@0 1217 * include/freetype/internal/psaux.h (PSAux_Interface): Updated.
michael@0 1218
michael@0 1219 2001-06-27 Wolfgang Domröse <porthos.domroese@harz.de>
michael@0 1220
michael@0 1221 * src/psaux/psobjs.c, src/psaux/psobjs.h (T1_Decrypt): Use FT_Offset
michael@0 1222 instead of FT_Int as type for `length' parameter.
michael@0 1223
michael@0 1224
michael@0 1225 * Version 2.0.4 released.
michael@0 1226 =========================
michael@0 1227
michael@0 1228
michael@0 1229 2001-06-27 David Turner <david@freetype.org>
michael@0 1230
michael@0 1231 * builds/unix/ftconfig.in: Changed the definition of the
michael@0 1232 FT_CALLBACK_DEF macro.
michael@0 1233
michael@0 1234 * include/freetype/ftconfig.h, src/*/*.c: Changed the definition and
michael@0 1235 use of the FT_CALLBACK_DEF macro in order to support 16-bit
michael@0 1236 compilers.
michael@0 1237
michael@0 1238 * builds/unix/ftconfig.in: Changed the definition of the
michael@0 1239 FT_CALLBACK_DEF macro.
michael@0 1240
michael@0 1241 * src/sfnt/ttload.c (TT_Load_Kern): The kern table loader now ensures
michael@0 1242 that the kerning table is correctly sorted (some problem fonts don't
michael@0 1243 have a correct kern table).
michael@0 1244
michael@0 1245 2001-06-26 Wolfgang Domröse <porthos.domroese@harz.de>
michael@0 1246
michael@0 1247 * include/freetype/internal/ftstream.h (FT_GET_OFF3_LE): Fix typo.
michael@0 1248
michael@0 1249 2001-06-24 David Turner <david@freetype.org>
michael@0 1250
michael@0 1251 * src/base/ftcalc.c (ft_div64by32): Fixed the source to work
michael@0 1252 correctly on 16-bit systems.
michael@0 1253
michael@0 1254 2001-06-23 Anthony Fok <fok@debian.org>
michael@0 1255
michael@0 1256 * debian/*: Added Debian package build directory for 2.0.4.
michael@0 1257
michael@0 1258 2001-06-22 David Turner <david@freetype.org>
michael@0 1259
michael@0 1260 * docs/PATENTS: Added patents disclaimer. This one was missing!
michael@0 1261
michael@0 1262 * docs/CHANGES, docs/todo: Updated for the upcoming 2.0.4 release.
michael@0 1263
michael@0 1264 2001-06-20 Werner Lemberg <wl@gnu.org>
michael@0 1265
michael@0 1266 * include/freetype/config/ftconfig.h: Add two more `L's to
michael@0 1267 constants.
michael@0 1268 Add missing semicolons.
michael@0 1269
michael@0 1270 * builds/toplevel.mk: Do similar change as for
michael@0 1271 builds/unix/detect.mk.
michael@0 1272
michael@0 1273 * include/freetype/freetype.h (FT_ENC_TAG): New version to make it
michael@0 1274 easier to redefine.
michael@0 1275 * include/freetype/ftimage.h (FT_IMAGE_TAG): Ditto.
michael@0 1276
michael@0 1277 * src/pcf/pcfread.c (pcf_get_encodings): Add cast.
michael@0 1278
michael@0 1279 2001-06-19 David Turner <david@freetype.org>
michael@0 1280
michael@0 1281 * builds/win32/visualc/freetype.dsp, builds/win32/visualc/index.html:
michael@0 1282 Updated the Visual C++ project (for the 2.0.4 release).
michael@0 1283
michael@0 1284 * builds/unix/detect.mk: Added rule for AIX detection (which uses
michael@0 1285 /usr/sbin/init instead of /sbin/init).
michael@0 1286
michael@0 1287 * include/freetype/fterrors.h, src/*/*err*.h: Updated some of the
michael@0 1288 error macros to simplify handling of new error scheme.
michael@0 1289
michael@0 1290 2001-06-19 Werner Lemberg <wl@gnu.org>
michael@0 1291
michael@0 1292 * include/freetype/fttypes.h (FT_ERROR_MODULE): New macro.
michael@0 1293
michael@0 1294 2001-06-19 David Turner <david@freetype.org>
michael@0 1295
michael@0 1296 Removing _lots_ of compiler warnings when the most pedantic warning
michael@0 1297 levels of Visual C++ and Borland C++ are used. Too many files to be
michael@0 1298 listed here, but FT2 now compiles without warnings with VC++ and the
michael@0 1299 `/W4' warning level (lint-style).
michael@0 1300
michael@0 1301 * include/freetype/freetype.h (FT_New_Memory_Face): Updated
michael@0 1302 documentation.
michael@0 1303 * include/freetype/fttypes.h (FT_BOOL): New macro.
michael@0 1304 * include/freetype/internal/ftdebug.h: Add #pragma for Visual C++
michael@0 1305 to suppress warning.
michael@0 1306 * include/freetype/internal/ftstream.h (FT_GET_SHORT_{BE,LE},
michael@0 1307 FT_GET_OFF3_{BE,LE}, FT_GET_LONG_{BE,LE}): New macros.
michael@0 1308 (NEXT_*): Use them.
michael@0 1309 * src/autohint/ahglobal.c: Include FT_INTERNAL_DEBUG_H.
michael@0 1310 (FT_New_Memory_Face): Add `const' to function declaration.
michael@0 1311
michael@0 1312 2001-06-18 Werner Lemberg <wl@gnu.org>
michael@0 1313
michael@0 1314 Minor cleanups to remove compiler warnings.
michael@0 1315
michael@0 1316 * include/freetype/cache/ftcmanag.h (FTC_MAX_BYTES_DEFAULT): Use
michael@0 1317 `L' for constant.
michael@0 1318 * include/freetype/config/ftoption.h (FT_RENDER_POOL_SIZE): Ditto.
michael@0 1319 * src/base/ftcalc.c (FT_MulDiv): Use `L' for constant.
michael@0 1320 * src/base/ftglyph.c (FT_Glyph_Get_CBox): Remove `error' variable.
michael@0 1321 * src/base/fttrigon.c (ft_trig_arctan_table): Use `L' for constants.
michael@0 1322 * src/base/ftobjs.c (FT_Done_Size): Fix return value.
michael@0 1323 (FT_Set_Char_Size, FT_Set_Pixel_Sizes, FT_Get_Kerning): Remove
michael@0 1324 unused `memory' variable.
michael@0 1325 * src/autohint/ahglyph.c (ah_get_orientation): Use `L' for constant.
michael@0 1326 * src/autohint/ahhint.c (ah_hint_edges_3,
michael@0 1327 ah_hinter_align_edge_points): Remove unused `before' and `after'
michael@0 1328 variables.
michael@0 1329 (ah_hinter_align_weak_points): Remove unused `edge_limit' variable.
michael@0 1330 (ah_hinter_load): Remove unused `new_advance', `start_contour',
michael@0 1331 and `metrics' variables.
michael@0 1332 * src/cff/cffload.c (CFF_Load_Encoding): Remove dead code to avoid
michael@0 1333 compiler warning.
michael@0 1334 * src/cff/cffobjs.c (CFF_Init_Face): Remove unused `base_offset'
michael@0 1335 variable.
michael@0 1336 * src/cff/cffgload.c (CFF_Parse_CharStrings): Remove unused
michael@0 1337 `outline' variable.
michael@0 1338 (cff_compute_bias): Use `U' for constant.
michael@0 1339 * src/cid/cidload.c (cid_decrypt): Ditto.
michael@0 1340 * src/psaux/psobjs.c (T1_Decrypt): Ditto.
michael@0 1341 * src/psaux/t1decode.c (T1_Decoder_Parse_CharStrings): Ditto.
michael@0 1342 * src/sfnt/ttload.c (TT_Load_Kern): Remove unused `version'
michael@0 1343 variable.
michael@0 1344 * src/sfnt/ttsbit.c (TT_Load_SBit_Image): Remove unused `top'
michael@0 1345 variable.
michael@0 1346 * src/truetype/ttgload.c (load_truetype_glyph): Remove unused
michael@0 1347 `num_contours' and `ins_offset' variables.
michael@0 1348 (compute_glyph_metrics): Remove unused `Top' and `x_scale'
michael@0 1349 variables.
michael@0 1350 (TT_Load_Glyph): Remove unused `memory' variable.
michael@0 1351 * src/smooth/ftgrays.c (grays_raster_render): Use `L' for constants.
michael@0 1352
michael@0 1353 2001-06-18 Werner Lemberg <wl@gnu.org>
michael@0 1354
michael@0 1355 Make the new error scheme source compatible with older FT versions
michael@0 1356 by introducing another layer.
michael@0 1357
michael@0 1358 * include/freetype/fterrors.h (FT_ERRORDEF_, FT_NOERRORDEF_): New
michael@0 1359 macros.
michael@0 1360 (FT_NOERRORDEF): Removed.
michael@0 1361 * include/*/*err*.h: Use FT_ERRORDEF_ and FT_NOERRORDEF_.
michael@0 1362
michael@0 1363 2001-06-16 Werner Lemberg <wl@gnu.org>
michael@0 1364
michael@0 1365 * include/freetype/freetype.h (FT_ENC_TAG): New macro.
michael@0 1366 (FT_Encoding_): Use it.
michael@0 1367 * include/freetype/ftimage.h (FT_IMAGE_TAG): Define it
michael@0 1368 conditionally.
michael@0 1369
michael@0 1370 2001-06-14 David Turner <david@freetype.org>
michael@0 1371
michael@0 1372 Modified the TrueType interpreter to let it use the new
michael@0 1373 trigonometric functions provided in `fttrigon.h'. This gets rid of
michael@0 1374 some old 64-bit computation routines, as well as many warnings when
michael@0 1375 compiling the library with the `long long' 64-bit integer type.
michael@0 1376
michael@0 1377 * include/freetype/config/ftoption.h: Undefine
michael@0 1378 FT_CONFIG_OPTION_OLD_CALCS.
michael@0 1379 * include/freetype/internal/ftcalc.h: Rearrange use of
michael@0 1380 FT_CONFIG_OPTION_OLD_CALCS.
michael@0 1381 * src/base/ftcalc.c: Add declaration of FT_Int64 if
michael@0 1382 FT_CONFIG_OPTION_OLD_CALCS isn't defined.
michael@0 1383 * src/truetype/ttinterp.c: Use FT_TRIGONOMETRY_H.
michael@0 1384 (Norm): Add a special version if FT_CONFIG_OPTION_OLD_CALCS isn't
michael@0 1385 defined.
michael@0 1386 (Current_Ratio, Normalize): Simplify code.
michael@0 1387
michael@0 1388 2001-06-11 Mike Owens <MOwens@amtdatasouth.com>
michael@0 1389
michael@0 1390 * src/base/ftcalc.c (FT_MulDiv, FT_DivFix, FT_Sqrt64): Remove
michael@0 1391 compiler warnings.
michael@0 1392
michael@0 1393 2001-06-08 Werner Lemberg <wl@gnu.org>
michael@0 1394
michael@0 1395 * builds/unix/configure.in: Renamed to ...
michael@0 1396 * builds/unix/configure.ac: This to make sure that autoconf 2.50 is
michael@0 1397 needed.
michael@0 1398 Run `autoupdate' on it.
michael@0 1399 Increase `version_info' to 7:0:1.
michael@0 1400 * builds/unix/configure: Regenerated.
michael@0 1401
michael@0 1402 2001-06-08 David Turner <david@freetype.org>
michael@0 1403
michael@0 1404 * src/autohint/ahhint.c (ah_hinter_load_glyph): Fixed a bug that
michael@0 1405 corrupted transformed glyphs that were auto-hinted (the transform
michael@0 1406 was applied twice).
michael@0 1407
michael@0 1408 Fixed a bug that returned an invalid linear width for composite
michael@0 1409 TrueType glyphs.
michael@0 1410
michael@0 1411 * include/internal/tttypes.h (TT_Loader_): Two new elements `linear'
michael@0 1412 and `linear_def'.
michael@0 1413 * src/truetype/ttgload.c (load_truetype_glyph,
michael@0 1414 compute_glyph_metrics): Use it.
michael@0 1415
michael@0 1416 * include/fttypes.h (FT_ERROR_BASE): New macro.
michael@0 1417 * src/base/ftobjs.c (FT_Open_Face, FT_Render_Glyph_Internal): Use it
michael@0 1418 to make source code work with the new error scheme implemented by
michael@0 1419 Werner.
michael@0 1420 * src/base/ftoutln.c (FT_Outline_Render): Ditto.
michael@0 1421
michael@0 1422 2001-06-07 Werner Lemberg <wl@gnu.org>
michael@0 1423
michael@0 1424 Updating to libtool 1.4.0 and autoconf 2.50.
michael@0 1425
michael@0 1426 * builds/unix/ltconfig: Removed.
michael@0 1427 * builds/unix/ltmain.sh, builds/unix/configure.in,
michael@0 1428 builds/unix/aclocal.m4: Updated.
michael@0 1429 * builds/unix/configure: Regenerated.
michael@0 1430
michael@0 1431 2001-06-06 Werner Lemberg <wl@gnu.org>
michael@0 1432
michael@0 1433 Complete redesign of error codes. Please check ftmoderr.h for more
michael@0 1434 details.
michael@0 1435
michael@0 1436 * include/freetype/internal/cfferrs.h,
michael@0 1437 include/freetype/internal/tterrors.h,
michael@0 1438 include/freetype/internal/t1errors.h: Removed. Replaced with files
michael@0 1439 local to the module. All extra error codes have been moved to
michael@0 1440 `fterrors.h'.
michael@0 1441
michael@0 1442 * src/sfnt/ttpost.h: Move error codes to `fterrors.h'.
michael@0 1443
michael@0 1444 * src/autohint/aherrors.h, src/cache/ftcerror.h, src/cff/cfferrs.h,
michael@0 1445 src/cid/ciderrs.h, src/pcf/pcferror.h, src/psaux/psauxerr.h,
michael@0 1446 src/psnames/psnamerr.h, src/raster/rasterrs.h, src/sfnt/sferrors.h,
michael@0 1447 src/smooth/ftsmerrs.h, src/truetype/tterrors.h,
michael@0 1448 src/type1/t1errors.h, src/winfonts/fnterrs.h: New files defining the
michael@0 1449 error names for the module it belongs to.
michael@0 1450
michael@0 1451 * include/freetype/ftmoderr.h: New file, defining the module error
michael@0 1452 offsets. Its structure is similar to `fterrors.h'.
michael@0 1453
michael@0 1454 * include/freetype/fterrors.h (FT_NOERRORDEF): New macro.
michael@0 1455 (FT_ERRORDEF): Redefined to use module error offsets.
michael@0 1456 All internal error codes are now public; unused error codes have
michael@0 1457 been removed, some are new.
michael@0 1458
michael@0 1459 * include/freetype/config/ftheader.h (FT_MODULE_ERRORS_H): New
michael@0 1460 macro.
michael@0 1461 * include/freetype/config/ftoption.h
michael@0 1462 (FT_CONFIG_OPTION_USE_MODULE_ERRORS): New macro.
michael@0 1463
michael@0 1464 All other source files have been updated to use the new error codes;
michael@0 1465 some already existing (internal) error codes local to a module have
michael@0 1466 been renamed to give them the same name as in the base module.
michael@0 1467
michael@0 1468 All make files have been updated to include the local error files.
michael@0 1469
michael@0 1470 2001-06-06 Werner Lemberg <wl@gnu.org>
michael@0 1471
michael@0 1472 * src/cid/cidtokens.h: Replaced with...
michael@0 1473 * src/cid/cidtoken.h: This file for 8+3 consistency.
michael@0 1474
michael@0 1475 * src/raster/ftraster.c: Use macros for header file names.
michael@0 1476
michael@0 1477 * src/include/freetype/tttables.h (TT_HoriHeader_, TT_VertHeader_):
michael@0 1478 Fix length of `Reserved' array. Note that this isn't the real fix
michael@0 1479 since recent OpenType specs have introduced a `CaretOffset' field
michael@0 1480 instead of the first reserved byte.
michael@0 1481
michael@0 1482 2001-05-29 Werner Lemberg <wl@gnu.org>
michael@0 1483
michael@0 1484 * INSTALL: Minor fixes.
michael@0 1485
michael@0 1486
michael@0 1487 * Version 2.0.3 released.
michael@0 1488 =========================
michael@0 1489
michael@0 1490
michael@0 1491 2001-05-29 David Turner <david@freetype.org>
michael@0 1492
michael@0 1493 * INSTALL, docs/CHANGES: Updated.
michael@0 1494
michael@0 1495 2001-05-25 David Turner <david@freetype.org>
michael@0 1496
michael@0 1497 Moved several documents from the top-level to the `docs' directory.
michael@0 1498
michael@0 1499 * src/base/ftcalc.c (FT_DivFix): Small fix to return value.
michael@0 1500
michael@0 1501 2001-05-16 David Turner <david@freetype.org>
michael@0 1502
michael@0 1503 * src/truetype/ttgload.c (load_truetype_glyph): Fixed a bug in the
michael@0 1504 composite loader. Spotted by Keith Packard.
michael@0 1505 * src/base/ftobjs.c (FT_GlyphLoader_Check_Points,
michael@0 1506 FT_GlyphLoader_Check_Subglyphs): Ditto.
michael@0 1507
michael@0 1508 2001-05-14 David Turner <david@freetype.org>
michael@0 1509
michael@0 1510 Fixed the incorrect blue zone computations, and improved the
michael@0 1511 composite support. Note that these changes result in improved
michael@0 1512 rendering, while sometimes introducing their own artefacts. This is
michael@0 1513 probably the last big change to the autohinter before the
michael@0 1514 introduction of a complete replacement.
michael@0 1515
michael@0 1516 * src/autohint/ahglobal.c (sort_values): Fix loop.
michael@0 1517 * src/autohint/ahglyph.c: Removed some obsolete code.
michael@0 1518 (ah_outline_compute_edges): Modify code to set the ah_edge_round
michael@0 1519 flag.
michael@0 1520 (ah_outline_compute_blue_edges): Add code to compute active blue
michael@0 1521 zones.
michael@0 1522 * src/autohint/ahhint.c (ah_hinter_glyph_load): Change load_flags
michael@0 1523 value.
michael@0 1524
michael@0 1525 * src/base/ftcalc.c (FT_DivFix): Fixed a bug in the 64-bit code that
michael@0 1526 created incorrect scale factors!
michael@0 1527 (FT_Round_Fix, FT_CeilFix, FT_FloorFix): Minor improvements.
michael@0 1528
michael@0 1529 2001-05-12 Werner Lemberg <wl@gnu.org>
michael@0 1530
michael@0 1531 * include/freetype/ftbbox.h: FTBBOX_H -> __FTBBOX_H__.
michael@0 1532 * include/freetype/fttrigon.h: __FT_TRIGONOMETRY_H__ ->
michael@0 1533 __FTTRIGON_H__.
michael@0 1534 Include FT_FREETYPE_H.
michael@0 1535 Beautified; added copyright.
michael@0 1536 * src/base/fttrigon.c: Beautified; added copyright.
michael@0 1537
michael@0 1538 2001-05-11 David Turner <david@freetype.org>
michael@0 1539
michael@0 1540 * src/cff/cffparse.c (cff_parse_font_matrix), src/cid/cidload.c
michael@0 1541 (parse_font_matrix), src/type1/t1load.c (parse_font_matrix): Fixed
michael@0 1542 the incorrect EM size computation.
michael@0 1543
michael@0 1544 * include/freetype/fttrigon.h, src/base/fttrigon.c: New files,
michael@0 1545 adding trigonometric functions to the core API (using Cordic
michael@0 1546 algorithms).
michael@0 1547 * src/base/ftbase.c, src/base/Jamfile, src/base/rules.mk: Use them.
michael@0 1548
michael@0 1549 * builds/newline: New file.
michael@0 1550 * builds/top_level.mk, builds/detect.mk: Use it. This fixes
michael@0 1551 problems with Make on Windows 2000, as well as problems when `make
michael@0 1552 distclean' is invoked on a non-Unix platform when there is no
michael@0 1553 `config.mk' in the current directory.
michael@0 1554
michael@0 1555 * builds/freetype.mk: Fixed a problem with object deletions under
michael@0 1556 Dos/Windows/OS/2 systems.
michael@0 1557
michael@0 1558 Added new directory to hold tools and test programs.
michael@0 1559
michael@0 1560 * docs/docmaker.py, docs/glnames.py: Moved to...
michael@0 1561 * src/tools/docmaker.py, src/tools/glnames.py: This place.
michael@0 1562 * src/tools/cordic.py: New file used to compute arctangent table
michael@0 1563 needed by fttrigon.c.
michael@0 1564 * src/tools/test_bbox.c, src/tools/test_trig.c: New test files.
michael@0 1565
michael@0 1566 * src/tools/docmaker.py: Improved the script to add the current date
michael@0 1567 at the footer of each web page (useful to distinguish between
michael@0 1568 versions).
michael@0 1569
michael@0 1570 * Jamfile: Fixed incorrect HDRMACRO argument.
michael@0 1571
michael@0 1572 * TODO: Removed the cubic arc bbox computation note, since it has been
michael@0 1573 fixed recently.
michael@0 1574 * src/base/ftbbox.c (test_cubic_zero): Renamed to...
michael@0 1575 (test_cubic_extrema): This function. Use `UL' for unsigned long
michael@0 1576 constants.
michael@0 1577
michael@0 1578 * include/freetype/t1tables.h, include/freetype/config/ftoption.h:
michael@0 1579 Formatting.
michael@0 1580
michael@0 1581 2001-05-10 David Turner <david@freetype.org>
michael@0 1582
michael@0 1583 * src/base/ftobjs.c (FT_Open_Face): Fixed a small memory leak
michael@0 1584 which happened when trying to open 0-size font files!
michael@0 1585
michael@0 1586 2001-05-09 Werner Lemberg <wl@gnu.org>
michael@0 1587
michael@0 1588 * include/freetype/internal/ftcalc.h: Move declaration of
michael@0 1589 FT_SqrtFixed() out of `#ifdef FT_LONG64'.
michael@0 1590
michael@0 1591 2001-05-08 Francesco Zappa Nardelli <Francesco.Zappa.Nardelli@ens.fr>
michael@0 1592
michael@0 1593 * src/pcfdriver.c (PCF_Load_Glyph): Fixed incorrect bitmap width
michael@0 1594 computation.
michael@0 1595
michael@0 1596 2001-05-08 David Turner <david@freetype.org>
michael@0 1597
michael@0 1598 * docs/docmaker.py: Updated the DocMaker script in order to add
michael@0 1599 command line options (--output,--prefix,--title), fix the erroneous
michael@0 1600 line numbers reported during errors and warnings, and other
michael@0 1601 formatting issues.
michael@0 1602
michael@0 1603 * src/base/ftcalc.c (FT_MulDiv, FT_MulFix, FT_DivFix): Various tiny
michael@0 1604 fixes related to rounding in 64-bits routines and
michael@0 1605 pseudo-`optimizations'.
michael@0 1606
michael@0 1607 2001-04-27 David Turner <david@freetype.org>
michael@0 1608
michael@0 1609 * src/base/ftbbox.c (BBox_Cubic_Check): Fixed the coefficient
michael@0 1610 normalization algorithm (invalid final bit position, and invalid
michael@0 1611 shift computation).
michael@0 1612
michael@0 1613 2001-04-26 Werner Lemberg <wl@gnu.org>
michael@0 1614
michael@0 1615 * builds/unix/config.guess, builds/unix/config.sub: Updated to
michael@0 1616 latest versions from gnu.org.
michael@0 1617
michael@0 1618 * builds/compiler/gcc-dev.mk: Add `-Wno-long-long' flag.
michael@0 1619
michael@0 1620 * include/freetype/internal/ftcalc.h: Define FT_SqrtFixed()
michael@0 1621 unconditionally.
michael@0 1622 * src/base/ftbbox.c: Include FT_INTERNAL_CALC_H.
michael@0 1623 Fix compiler warnings.
michael@0 1624 * src/base/ftcalc.c: Fix (potential) compiler warnings.
michael@0 1625
michael@0 1626 2001-04-26 David Turner <david@freetype.org>
michael@0 1627
michael@0 1628 * src/base/ftcalc.c (FT_SqrtFixed): Corrected/optimized the 32-bit
michael@0 1629 fixed-point square root computation. It is now used even with
michael@0 1630 64-bits integers, as it is _much_ faster than calling FT_Sqrt64 :-)
michael@0 1631
michael@0 1632 * src/base/ftbbox.c: Removed invalid `#include FT_BEZIER_H' line.
michael@0 1633
michael@0 1634 2001-04-25 David Turner <david@freetype.org>
michael@0 1635
michael@0 1636 * src/base/ftbbox.c (BBox_Cubic_Check): Rewrote function to use
michael@0 1637 direct computations with 16.16 values instead of sub-divisions. It
michael@0 1638 is now slower, but proves a point :-)
michael@0 1639
michael@0 1640 * src/raster/ftraster.c, src/smooth/ftgrays.c, src/base/ftbbox.c:
michael@0 1641 Fixed the Bézier stack depths.
michael@0 1642
michael@0 1643 * src/base/ftcalc.c (FT_MulFix): Minor rounding fix.
michael@0 1644
michael@0 1645 * builds/beos: Added BeOS-specific files to the old build system
michael@0 1646 (no changes were necessary to support BeOS in the Jamfile though).
michael@0 1647
michael@0 1648 2001-04-20 David Turner <david@freetype.org>
michael@0 1649
michael@0 1650 * ftconfig.h, ftoption.h: Updated `ftconfig.h' to detect 64-bit int
michael@0 1651 types on platforms where Autoconf is not available). Also removed
michael@0 1652 FTCALC_USE_LONG_LONG and replaced it with
michael@0 1653 FT_CONFIG_OPTION_FORCE_INT64.
michael@0 1654
michael@0 1655 * builds/win32/freetype.dsp: Updated the Visual C++ project file.
michael@0 1656 Doesn't create a DLL yet.
michael@0 1657
michael@0 1658 * cffgload.c: Removed a compilation warning.
michael@0 1659
michael@0 1660 2001-04-10 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 1661
michael@0 1662 * t1load.c (parse_charstrings): Changed code for placing .notdef
michael@0 1663 glyph into slot 0 so that we no longer have a memory access
michael@0 1664 violation.
michael@0 1665
michael@0 1666 * t1load.h: In structure T1_Loader, added swap_table (of type
michael@0 1667 PS_Table) to facilitate placing the .notdef glyph into slot 0.
michael@0 1668
michael@0 1669 2001-04-10 Francesco Zappa Nardelli <francesco.zappa.nardelli@ens.fr>
michael@0 1670
michael@0 1671 * src/pcf/pcfdriver.c (PCF_Get_Char_Index): Fix return value.
michael@0 1672
michael@0 1673 2001-04-09 Laurence Withers <lwithers@lwithers.demon.co.uk>
michael@0 1674
michael@0 1675 * builds/dos/detect.mk: Add support for bash.
michael@0 1676
michael@0 1677 2001-04-05 Werner Lemberg <wl@gnu.org>
michael@0 1678
michael@0 1679 * builds/os2/*.mk: These files have been forgotten to update to
michael@0 1680 the structure of similar makefiles.
michael@0 1681 * builds/dos/*.mk: Ditto.
michael@0 1682 * builds/ansi/*.mk: Ditto.
michael@0 1683
michael@0 1684 * builds/win32/win32-def.mk (BUILD): Fix typo.
michael@0 1685
michael@0 1686 * builds/compiler/*.mk (CLEAN_LIBRARY): Don't use NO_OUTPUT.
michael@0 1687 This is already used in the link_*.mk files.
michael@0 1688
michael@0 1689 2001-04-03 Werner Lemberg <wl@gnu.org>
michael@0 1690
michael@0 1691 * src/*/Jamfile: Slight changes to make files more cryptic.
michael@0 1692
michael@0 1693 2001-04-03 Werner Lemberg <wl@gnu.org>
michael@0 1694
michael@0 1695 * Jamfile, src/Jamfile, src/*/Jamfile: Formatted. Slight changes
michael@0 1696 to give files identical structure.
michael@0 1697
michael@0 1698 2001-04-02 Werner Lemberg <wl@gnu.org>
michael@0 1699
michael@0 1700 * CHANGES: Reformatted, minor fixes.
michael@0 1701 * TODO: Updated.
michael@0 1702 * README: Formatting.
michael@0 1703 * include/freetype/freetype.h: Formatting.
michael@0 1704
michael@0 1705 * Jamfile: Fix typo.
michael@0 1706
michael@0 1707 * src/cff/cffparse.c: Move error code #defines to...
michael@0 1708 * include/freetype/internal/cfferrs.h: This file.
michael@0 1709 * src/cff/cffdrivr.c, src/cff/cffobjs.c, src/cff/cffload.c: Replaced
michael@0 1710 `FT_Err_*' with `CFF_Err_*'.
michael@0 1711 * src/cid/cidparse.c: Replaced `FT_Err_*' with `T1_Err_*'.
michael@0 1712 * src/psaux/psobjs.c, src/psaux/t1decode.c: Ditto.
michael@0 1713 * src/sfnt/sfobcs.c, src/sfnt/ttload.c: Replaced `FT_Err_*' with
michael@0 1714 `TT_Err_*'.
michael@0 1715 * src/truetype/ttgload.c, src/truetype/ttobjs.c: Ditto.
michael@0 1716 * src/type1/t1gload.c, src/type1/t1load.c, src/type1/t1objs.c,
michael@0 1717 src/type1/t1parse.c: Replaced `FT_Err_*' with `T1_Err_*'.
michael@0 1718
michael@0 1719 * include/freetype/internal/cfferrs.h: Add
michael@0 1720 `CFF_Err_Unknown_File_Format'.
michael@0 1721 * include/freetype/internal/t1errors.h: Add
michael@0 1722 `T1_Err_Unknown_File_Format'.
michael@0 1723 * include/freetype/internal/tterrors.h: Add
michael@0 1724 `TT_Err_Unknown_File_Format'.
michael@0 1725
michael@0 1726 * src/cff/cffload.h: Add `cff_*_encoding' and `cff_*_charset'
michael@0 1727 references.
michael@0 1728 * src/psaux/psobjs.c: Include `FT_INTERNAL_TYPE1_ERRORS_H'.
michael@0 1729
michael@0 1730 * src/cff/cffobjs.c (CFF_Init_Face, CFF_Done_Face): Use
michael@0 1731 FT_LOCAL_DEF.
michael@0 1732 * src/cid/cidobjs.c (CID_Done_Driver): Ditto.
michael@0 1733 * src/trutype/ttobjs.c (TT_Init_Face, TT_Done_Face, TT_Init_Size):
michael@0 1734 Ditto.
michael@0 1735 * src/type1/t1objs.c (T1_Done_Driver): Ditto.
michael@0 1736 * src/pcf/pcfdriver.c (PCF_Done_Face): Ditto.
michael@0 1737 * src/pcf/pcf.h: Use FT_LOCAL for `PCF_Done_Face'.
michael@0 1738
michael@0 1739 2001-04-02 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 1740
michael@0 1741 * src/sfnt/ttload.c (TT_Load_Metrics): Fix an improper pointer
michael@0 1742 dereference. Submitted by Herbert Duerr <duerr@sun.com>.
michael@0 1743
michael@0 1744 2001-03-26 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 1745
michael@0 1746 * include/freetype/config/ftconfig.h: Changed hexadecimal
michael@0 1747 constants to use suffix U to avoid problems with HP-UX's c89
michael@0 1748 compiler. Submitted by G.W. Lucas <glucas@sonalysts.com>.
michael@0 1749
michael@0 1750 2001-03-24 David Turner <david.turner@freetype.org>
michael@0 1751
michael@0 1752 * Jamrules, Jamfile, src/Jamfile, src/*/Jamfile: Adding jamfiles to
michael@0 1753 the source tree. See www.freetype.org/jam/index.html for details.
michael@0 1754
michael@0 1755
michael@0 1756 * Version 2.0.2 released.
michael@0 1757 =========================
michael@0 1758
michael@0 1759
michael@0 1760 2001-03-20 Werner Lemberg <wl@gnu.org>
michael@0 1761
michael@0 1762 * builds/win32/detekt.mk: Fix .PHONY target for Intel compiler.
michael@0 1763
michael@0 1764 2001-03-20 David Turner <david.turner@freetype.org>
michael@0 1765
michael@0 1766 * include/freetype/config/ftheader.h, include/freetype/ftsnames.h:
michael@0 1767 Renamed `ftnames.h' to `ftsnames.h', and FT_NAMES_H to
michael@0 1768 FT_SFNT_NAMES_H.
michael@0 1769
michael@0 1770 * docs/docmaker.py: Added generation of INDEX link in table of
michael@0 1771 contents.
michael@0 1772
michael@0 1773 * INSTALL, docs/BUILD: Updated documentation to indicate that the
michael@0 1774 compilation process has changed slightly (no more `src' required in
michael@0 1775 the include path).
michael@0 1776
michael@0 1777 * builds/*/*-def.mk: Changed the objects directory from `obj' to
michael@0 1778 `objs'.
michael@0 1779
michael@0 1780 * include/freetype/config/ftheader.h: Removed obsolete macros like
michael@0 1781 FT_SOURCE_FILE, etc. and added cache-specific macro definitions that
michael@0 1782 were previously defined in <freetype/ftcache.h>. Added comments to
michael@0 1783 be included in a new API Reference section.
michael@0 1784
michael@0 1785 * src/*/*: Removed the use of FT_SOURCE_FILE, etc. Now, each
michael@0 1786 component needs to add its own directory to the include path at
michael@0 1787 compile time. Modified all `rules.mk' and `descrip.mms'
michael@0 1788 accordingly.
michael@0 1789
michael@0 1790 2001-03-20 Werner Lemberg <wl@gnu.org>
michael@0 1791
michael@0 1792 * builds/unix/configure.in: Add $ft_version.
michael@0 1793 * builds/unix/freetype-config.in: Use it.
michael@0 1794 * builds/unix/configure: Updated.
michael@0 1795
michael@0 1796 2001-03-19 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 1797
michael@0 1798 * src/type1/t1load.c (parse_font_matrix): Assign the units per em
michael@0 1799 value an unsigned short value, first by shifting right 16 bits,
michael@0 1800 then by casting the results to FT_UShort.
michael@0 1801
michael@0 1802 * src/cff/cffparse.c (cff_parse_font_bbox): Assign the units per em
michael@0 1803 value an unsigned short value, first by shifting right 16 bits,
michael@0 1804 then by casting the results to FT_UShort.
michael@0 1805
michael@0 1806 2001-03-17 David Turner <david.turner@freetype.org>
michael@0 1807
michael@0 1808 * src/cid/cidobjs.c, src/cid/cidload.c, src/pcf/pcfread.c,
michael@0 1809 src/type1/t1load.c, src/type1/t1objs.c: Added a few casts to remove
michael@0 1810 compiler warnings in pedantic modes.
michael@0 1811
michael@0 1812 * include/config/ft2build.h, include/config/ftheader.h: The file
michael@0 1813 `ft2build.h' was renamed to `ftheader.h' to avoid conflicts with the
michael@0 1814 top-level <ft2build.h>.
michael@0 1815
michael@0 1816 * include/config/ftheader.h: Added new section describing the #include
michael@0 1817 macros.
michael@0 1818
michael@0 1819 2001-03-17 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 1820
michael@0 1821 * src/cff/cffparse.c (cff_parse_font_bbox): Obtain rounded FT_Fixed
michael@0 1822 values for the bounding box numbers.
michael@0 1823
michael@0 1824 * src/cff/cffobjs.c (CFF_Init_Face): When processing a CFF/CEF font,
michael@0 1825 set `root->ascender' (`root->descender') to the integer part of
michael@0 1826 `root->bbox.yMax' (`root->bbox.yMin', respectively).
michael@0 1827
michael@0 1828 2001-03-16 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 1829
michael@0 1830 * src/cff/cffdrivr.c (get_cff_glyph_name): New function. Used in
michael@0 1831 cff_get_interface to facilitate getting a glyph name for glyph index
michael@0 1832 via FT_Get_Glyph_Name().
michael@0 1833
michael@0 1834 (cff_get_interface): Added support for getting a glyph name via the
michael@0 1835 `glyph_name' module interface. Uses the new function
michael@0 1836 get_cff_glyph_name().
michael@0 1837 Submitted by Sander van der Wal <svdwal@xs4all.nl>.
michael@0 1838
michael@0 1839 * src/cff/cffobjs.c (CFF_Init_Face): Logical or the face flags with
michael@0 1840 FT_FACE_FLAG_GLYPH_NAMES only if FT_CONFIG_OPTION_NO_GLYPH_NAMES is
michael@0 1841 not defined. This is to add support for getting a glyph name from a
michael@0 1842 glyph index via FT_Get_Glyph_Name().
michael@0 1843 Submitted by Sander van der Wal <svdwal@xs4all.nl>.
michael@0 1844
michael@0 1845 * src/cff/cffgload.c (CFF_Parse_CharStrings): Added support for
michael@0 1846 deprecated operator `dotsection'.
michael@0 1847 Submitted by Sander van der Wal <svdwal@xs4all.nl>.
michael@0 1848
michael@0 1849 2001-03-12 Werner Lemberg <wl@gnu.org>
michael@0 1850
michael@0 1851 * src/psaux/t1decode.c (T1_Decoder_Parse_Charstrings): Fix error
michael@0 1852 messages.
michael@0 1853
michael@0 1854 * INSTALL, docs/BUILD: We need GNU make 3.78.1 or newer.
michael@0 1855
michael@0 1856 2001-03-12 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 1857
michael@0 1858 * include/freetype/internal/psaux.h: Changed the lenIV member of
michael@0 1859 the T1_Decoder_ struct to be an FT_Int instead of an FT_UInt.
michael@0 1860
michael@0 1861 * src/psaux/t1decode.c (T1_Decoder_Parse_Charstrings): Adjust
michael@0 1862 for lenIV seed bytes at the start of a decrypted subroutine.
michael@0 1863
michael@0 1864 * src/cid/cidload.c (cid_read_subrs): Decrypt subroutines only
michael@0 1865 if lenIV >= 0.
michael@0 1866
michael@0 1867 * src/cid/cidgload.c (cid_load_glyph): Decrypt charstrings only
michael@0 1868 if lenIV >= 0.
michael@0 1869
michael@0 1870 2001-03-11 Werner Lemberg <wl@gnu.org>
michael@0 1871
michael@0 1872 * TODO: Updated.
michael@0 1873
michael@0 1874 * src/pcf/pcfread.c: Put READ_Fields() always in a conditional to
michael@0 1875 avoid compiler warnings.
michael@0 1876
michael@0 1877 2001-03-10 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 1878
michael@0 1879 * TODO: New file.
michael@0 1880
michael@0 1881 * include/freetype/freetype.h: Added prototypes and notes for
michael@0 1882 three new functions: FT_RoundFix, FT_CeilFix, and FT_FloorFix.
michael@0 1883 * src/base/ftcalc.c (FT_RoundFix, FT_CeilFix, FT_FloorFix): Added
michael@0 1884 implementation code.
michael@0 1885
michael@0 1886 * src/cid/cidobjs.c (CID_Init_Face): Use calculated units_per_EM,
michael@0 1887 and if that is not available, default to 1000 units per EM. Changed
michael@0 1888 assignment code for ascender and descender values.
michael@0 1889 * src/cid/cidload.c (parse_font_matrix): Added units_per_EM
michael@0 1890 processing.
michael@0 1891 (parse_font_bbox): Changed to use FT_Fixed number handling.
michael@0 1892
michael@0 1893 * src/type1/t1objs.c (T1_Init_Face): Changed the assignment code
michael@0 1894 for ascender, descender, and max_advance_width.
michael@0 1895 * src/type1/t1load.c (parse_font_bbox): Changed to use FT_Fixed
michael@0 1896 number handling.
michael@0 1897
michael@0 1898 2001-03-10 Henrik Grubbström <grubba@roxen.com>
michael@0 1899
michael@0 1900 * src/*/*.c: Added many casts to make code more 64bit-safe.
michael@0 1901
michael@0 1902 2001-03-07 Werner Lemberg <wl@gnu.org>
michael@0 1903
michael@0 1904 * INSTALL, docs/BUILD: We need GNU make 3.78 or newer.
michael@0 1905
michael@0 1906 2001-03-07 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 1907
michael@0 1908 * src/type1/t1objs.c (T1_Init_Face): Minor correction: We must wait
michael@0 1909 until parse_font_bbox is changed before we use logical shift rights
michael@0 1910 in the assignments of `root->ascender', `root->descender', and
michael@0 1911 `root->max_advance_width'.
michael@0 1912
michael@0 1913 (T1_Done_Face): Free `char_name' table to avoid a memory leak.
michael@0 1914 Submitted by Sander van der Wal <svdwal@xs4all.nl>.
michael@0 1915
michael@0 1916 2001-03-05 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 1917
michael@0 1918 * src/cff/cffgload.c (CFF_Load_Glyph): Set glyph control data to the
michael@0 1919 the Type 2 glyph charstring (used by conversion programs).
michael@0 1920 Submitted by Ha Shao <hashao@chinese.com>.
michael@0 1921
michael@0 1922 2001-03-04 Antoine Leca <Antoine.Leca@renault.fr>
michael@0 1923
michael@0 1924 * include/freetype/ttnameid.h: Correct a stupid typo which prevented
michael@0 1925 correct compilation (TT_MS_LANGID_TIGRIGNA_ETHIOPIA appeared twice).
michael@0 1926
michael@0 1927 2001-03-04 Werner Lemberg <wl@gnu.org>
michael@0 1928
michael@0 1929 * src/autohint/ahtypes.h (AH_Hinter): Add elements
michael@0 1930 `disable_horz_edges', `disable_vert_edges'.
michael@0 1931 * src/autohint/ahhint.c (ah_hint_edges_3, ah_hinter_hint_edges): Use
michael@0 1932 them (and remove static variables with the same names).
michael@0 1933 * src/pcf/pcfutil.c (BitOrderInvert): Add `const'.
michael@0 1934 * docs/glnames.py: Updated to latest pstables.h changes.
michael@0 1935
michael@0 1936 * builds/unix/detect.mk: Add test for Hurd.
michael@0 1937 * builds/hurd/detect.mk: Removed.
michael@0 1938
michael@0 1939 2001-03-04 Sander van der Wal <svdwal@xs4all.nl>
michael@0 1940
michael@0 1941 * src/psnames/pstables.h: Add more `const'.
michael@0 1942 * src/pcf/pcfutil.c: Ditto.
michael@0 1943
michael@0 1944 2001-03-04 Werner Lemberg <wl@gnu.org>
michael@0 1945
michael@0 1946 * src/base/ftglyph.c (FT_Glyph_To_Bitmap): Fixing typo
michael@0 1947 (FT_Glyph_Done -> FT_Done_Glyph).
michael@0 1948
michael@0 1949 2001-03-01 Antoine Leca <Antoine.Leca@renault.fr>
michael@0 1950
michael@0 1951 * include/freetype/ttnameid.h: Added some new Microsoft language
michael@0 1952 codes and LCIDs as found in Office Xp.
michael@0 1953
michael@0 1954 2001-02-28 David Turner <david.turner@freetype.org>
michael@0 1955
michael@0 1956 * builds/hurd/detect.mk: New file. Added support to detect the GNU
michael@0 1957 Hurd operating system as Unix-like. Fix submitted by Anthony Fok
michael@0 1958 <foka@debian.org>.
michael@0 1959
michael@0 1960 * src/type1/t1gload.c (T1_Load_Glyph): Set glyph control data to the
michael@0 1961 the Type 1 glyph charstring (used by conversion programs).
michael@0 1962 Submitted by Ha Shao <hashao@chinese.com>.
michael@0 1963
michael@0 1964 2001-02-22 David Turner <david.turner@freetype.org>
michael@0 1965
michael@0 1966 * src/base/ftgrays.c (grays_sweep): The function didn't exit
michael@0 1967 immediately if `num_cells' was 0 as it should. Thanks to Boris for
michael@0 1968 finding this out.
michael@0 1969
michael@0 1970 * src/base/ftglyph.c (FT_Glyph_To_Bitmap): Fixed memory leak when
michael@0 1971 bitmap rendering fails (thanks to Graham Asher).
michael@0 1972
michael@0 1973 2001-02-13 Werner Lemberg <wl@gnu.org>
michael@0 1974
michael@0 1975 * docs/docmaker.py (DocSection::add_element): Use
michael@0 1976 `self.print_error()'.
michael@0 1977
michael@0 1978 * builds/unix/config.{guess,sub}: Updated (from ftp.gnu.org).
michael@0 1979
michael@0 1980 2001-02-13 David Turner <david.turner@freetype.org>
michael@0 1981
michael@0 1982 * docs/docmaker.py, include/freetype/*.h: Updated the DocMaker
michael@0 1983 script to support chapters and section block ordering. Updated the
michael@0 1984 public header files accordingly.
michael@0 1985
michael@0 1986 * src/base/ftglyph.c (FT_Glyph_Copy): Advance width and glyph format
michael@0 1987 were not correctly copied.
michael@0 1988
michael@0 1989 2001-02-08 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 1990
michael@0 1991 * src/cff/cffparse.c (cff_parse_font_matrix): Removed an
michael@0 1992 unnecessary fprintf( stderr, ... ).
michael@0 1993
michael@0 1994 2001-02-07 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 1995
michael@0 1996 * src/type1/t1objs.c (T1_Init_Face): Added code to get the
michael@0 1997 units_per_EM from the value assigned in parse_font_matrix, if
michael@0 1998 available. Default to 1000 if not available.
michael@0 1999
michael@0 2000 * src/cff/cffparse.c (cff_parse_font_matrix): Added logic to get
michael@0 2001 the units_per_EM from the FontMatrix.
michael@0 2002
michael@0 2003 (cff_parse_fixed_thousand): New function. Gets a real number from
michael@0 2004 the CFF font, but multiplies by 1000 (this is to avoid rounding
michael@0 2005 errors when placing this real number into a 16.16 fixed number).
michael@0 2006
michael@0 2007 (cff_parse_real): Added code so that the integer part is moved
michael@0 2008 into the high sixteen bits of the 16.16 fixed number.
michael@0 2009
michael@0 2010 * src/cff/cffobjs.c (CFF_Init_Face): Added logic to get the units
michael@0 2011 per EM from the CFF dictionary, if available.
michael@0 2012
michael@0 2013 * include/freetype/internal/cfftypes.h: In struct CFF_Font_Dict_,
michael@0 2014 added a units_per_em member to facilitate passing of units_per_em
michael@0 2015 from function cff_parse_font_matrix.
michael@0 2016
michael@0 2017 * src/type1/t1load.c (is_alpha): Make `-' a legal alphanumeric
michael@0 2018 character. This is so that font names with `-' are fully parsed,
michael@0 2019 etc...
michael@0 2020
michael@0 2021 2001-02-02 Werner Lemberg <wl@gnu.org>
michael@0 2022
michael@0 2023 * src/psaux/psobjs.c (shift_elements): Remove if clause (which is
michael@0 2024 obsolete now).
michael@0 2025
michael@0 2026 (reallocate_t1_table, PS_Table_Done): Replace REALLOC() with ALLOC()
michael@0 2027 + MEM_Copy() to avoid a memory bug.
michael@0 2028
michael@0 2029 2001-02-01 David Turner <david.turner@freetype.org>
michael@0 2030
michael@0 2031 * docs/docmaker.py: Improved the index sorting routine to place
michael@0 2032 capital letters before small ones. Added the `<order>' marker to
michael@0 2033 section blocks in order to give the order of blocks.
michael@0 2034
michael@0 2035 2001-01-30 Antoine Leca <Antoine.Leca@renault.fr>
michael@0 2036
michael@0 2037 * include/freetype/ttnameid.h: Latest updates to Microsoft language
michael@0 2038 ID codes.
michael@0 2039
michael@0 2040 2001-01-24 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 2041
michael@0 2042 * src/cff/t1load.c (parse_font_matrix): Added heuristic to get
michael@0 2043 units_per_EM from the font matrix.
michael@0 2044
michael@0 2045 (parse_dict): Deleted test to see whether the FontInfo keyword has
michael@0 2046 been seen. Deletion of this test allows fonts without FontInfo
michael@0 2047 dictionaries to be parsed by the Type 1 driver.
michael@0 2048
michael@0 2049 (T1_Open_Face): Deleted empty subroutines array test to make sure
michael@0 2050 fonts with no subroutines still are parsed.
michael@0 2051
michael@0 2052 2001-01-17 Francesco Zappa Nardelli <francesco.zappa.nardelli@ens.fr>
michael@0 2053
michael@0 2054 * src/pcfread.c (pcf_get_properties, pcf_get_metrics,
michael@0 2055 pcf_get_bitmaps): Fix compiler errors.
michael@0 2056
michael@0 2057 2001-01-11 David Turner <david.turner@freetype.org>
michael@0 2058
michael@0 2059 * src/pcf/pcfread.c: Removed some compilation warnings related
michael@0 2060 to comparison of signed vs. unsigned integers.
michael@0 2061
michael@0 2062 * include/freetype/internal/ftdebug.h: Changed the debug trace
michael@0 2063 constants from trace_t2xxxx to trace_cffxxxx to be able to compile
michael@0 2064 the CFF driver in debug mode.
michael@0 2065
michael@0 2066 2001-01-11 Matthew Crosby <mcrosby@marthon.org>
michael@0 2067
michael@0 2068 * builds/unix/freetype-config.in: Fix problems with separate
michael@0 2069 --prefix and --exec-prefix.
michael@0 2070
michael@0 2071 2001-01-11 David Turner <david.turner@freetype.org>
michael@0 2072
michael@0 2073 * docs/docmaker.py: Added cross-references generation as well as
michael@0 2074 more robust handling of pathname wildcard matching.
michael@0 2075
michael@0 2076 2001-01-10 Werner Lemberg <wl@gnu.org>
michael@0 2077
michael@0 2078 * docs/docmaker.py: Minor improvements to reduce unwanted spaces
michael@0 2079 and empty lines in output.
michael@0 2080
michael@0 2081 2001-01-09 David Turner <david.turner@freetype.org>
michael@0 2082
michael@0 2083 * docs/docmaker.py: Improved script to generate table of contents
michael@0 2084 and index pages. It also supports wildcards on non Unix systems.
michael@0 2085
michael@0 2086 * include/freetype/*.h, include/freetype/cache/*.h: Updated comments
michael@0 2087 to include section definitions/delimitations for the API Reference
michael@0 2088 generator.
michael@0 2089
michael@0 2090 * include/freetype/freetype.h: Moved declaration of
michael@0 2091 `FT_Generic_Finalizer' and the `FT_Generic' structure to...
michael@0 2092 * include/freetype/fttypes.h: here.
michael@0 2093
michael@0 2094 2001-01-04 Werner Lemberg <wl@gnu.org>
michael@0 2095
michael@0 2096 * include/freetype/ttnameid.h: Updated Unicode code range comments.
michael@0 2097
michael@0 2098 2001-01-03 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 2099
michael@0 2100 * src/cff/rules.mk: Use cffgload.{c,h} instead of t2gload.{c,h}.
michael@0 2101
michael@0 2102 * include/freetype/internal/internal.h: Changed to use cfftypes.h
michael@0 2103 (cfferrs.h) instead of t2types.h (t2errors.h, respectively).
michael@0 2104
michael@0 2105 * include/freetype/internal/cfftypes.h: Merged in changes from
michael@0 2106 t2types.h and made this the canonical `types' header for the CFF
michael@0 2107 driver.
michael@0 2108
michael@0 2109 * include/freetype/internal/t2types.h: This file was merged with
michael@0 2110 cfftypes.h and is no longer necessary.
michael@0 2111
michael@0 2112 * include/freetype/internal/t2errors.h: Renamed to cfferrs.h.
michael@0 2113
michael@0 2114 * src/cff/cffobjs.c, src/cff/cffobjs.h, src/cff/cffparse.c,
michael@0 2115 src/cff/cffdrivr.c, src/cff/cff.c, src/cff/cffload.c,
michael@0 2116 src/cff/cffgload.c, src/cff/cffgload.h: Changed to use
michael@0 2117 cffgload.{c,h} instead of t2gload.{c,h}. All occurrences of t2_
michael@0 2118 (T2_) were replaced with cff_ (CFF_, respectively).
michael@0 2119
michael@0 2120 * src/cff/t2gload.h: Renamed cffgload.h.
michael@0 2121
michael@0 2122 * src/cff/t2gload.c: Renamed cffgload.c
michael@0 2123
michael@0 2124 2000-01-02 Jouk Jansen <joukj@hrem.stm.tudelft.nl>
michael@0 2125
michael@0 2126 * builds/vms: Support files for VMS architecture added.
michael@0 2127 * descrip.mms, src/*/descrip.mms: VMS makefiles added.
michael@0 2128 * README.VMS: New file.
michael@0 2129
michael@0 2130 2000-01-01 Werner Lemberg <wl@gnu.org>
michael@0 2131
michael@0 2132 * LICENSE.TXT: Added info about PCF driver license.
michael@0 2133
michael@0 2134 2001-01-01 Francesco Zappa Nardelli <francesco.zappa.nardelli@ens.fr>
michael@0 2135
michael@0 2136 * src/pcf/*: New driver module for PCF font format (used in
michael@0 2137 X Window System).
michael@0 2138 * include/freetype/internal/ftdebug.h (FT_Trace): Added values for
michael@0 2139 PCF driver.
michael@0 2140 * include/freetype/internal/pcftypes.h: New file.
michael@0 2141 * include/freetype/config/ftmodule.h: Added PCF driver module.
michael@0 2142
michael@0 2143 2001-01-01 Werner Lemberg <wl@gnu.org>
michael@0 2144
michael@0 2145 * src/winfonts/winfnt.c (FNT_Get_Char_Index): Fix parameter type.
michael@0 2146
michael@0 2147 2000-12-31 Werner Lemberg <wl@gnu.org>
michael@0 2148
michael@0 2149 * builds/modules.mk (clean_module_list): Fixed deletion of module
michael@0 2150 file in case `make make_module_list' is called before `make setup'.
michael@0 2151
michael@0 2152 2000-12-30 Werner Lemberg <wl@gnu.org>
michael@0 2153
michael@0 2154 * src/cff/cffload.c (CFF_Load_Charset): Improved error messages.
michael@0 2155 (CFF_Load_Charset, CFF_Load_Encoding): Remove unnecessary variable
michael@0 2156 definition.
michael@0 2157
michael@0 2158 2000-12-30 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 2159
michael@0 2160 * include/freetype/internal/t2types.h,
michael@0 2161 include/freetype/internal/cfftypes.h: Changed the structures for
michael@0 2162 CFF_Encoding and CFF_Encoding for the new implementations of the
michael@0 2163 charset and encoding parsers in the CFF driver.
michael@0 2164
michael@0 2165 * src/cff/t2gload.c (t2_lookup_glyph_by_stdcharcode,
michael@0 2166 t2_operator_seac): Added these functions for use in implementing the
michael@0 2167 seac emulation provided by the Type 2 endchar operator.
michael@0 2168 (T2_Parse_CharStrings): Added seac emulation for the endchar
michael@0 2169 operator.
michael@0 2170
michael@0 2171 * src/cff/cffload.c (CFF_Load_Encoding, CFF_Load_Charset,
michael@0 2172 CFF_Done_Encoding, CFF_Done_Charset): Extended to load and parse the
michael@0 2173 charset/encoding tables, and free the memory used by them when the
michael@0 2174 CFF driver is finished with them. Added tables
michael@0 2175
michael@0 2176 cff_isoadobe_charset
michael@0 2177 cff_expert_charset
michael@0 2178 cff_expertsubset_charset
michael@0 2179 cff_standard_encoding
michael@0 2180 cff_expert_encoding
michael@0 2181
michael@0 2182 so that the encoding/charset parser can handle predefined encodings and
michael@0 2183 charsets.
michael@0 2184
michael@0 2185 2000-12-24 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 2186
michael@0 2187 * src/cff/t2gload.c (T2_Load_Glyph): Added code so that the font
michael@0 2188 transform is applied.
michael@0 2189
michael@0 2190 * src/cff/cffparse.c (cff_parse_font_matrix): Added code so that
michael@0 2191 the font matrix numbers are scaled by 1/(matrix->yy). Also, the
michael@0 2192 offset vector now contains integer values instead of 16.16 fixed
michael@0 2193 numbers.
michael@0 2194
michael@0 2195 2000-12-22 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 2196
michael@0 2197 * src/autohint/ahhint.c (ah_hinter_load_glyph):
michael@0 2198 Removed unnecessary comments and commented-out code.
michael@0 2199
michael@0 2200 2000-12-21 David Turner <david.turner@freetype.org>
michael@0 2201
michael@0 2202 * src/cid/cidafm.c, src/cid/cidafm.h: removed un-needed files,
michael@0 2203 we'll work on supporting CID AFM files later I guess :-)
michael@0 2204
michael@0 2205 2000-12-21 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 2206
michael@0 2207 * src/autohint/ahhint.c (ah_hinter_load, ah_hinter_load_glyph):
michael@0 2208 Changed so that fonts with a non-standard FontMatrix render
michael@0 2209 correctly. Previously, the first glyph rendered from such a
michael@0 2210 font did not have the transformation matrix applied.
michael@0 2211
michael@0 2212 2000-12-17 Werner Lemberg <wl@gnu.org>
michael@0 2213
michael@0 2214 * *.mk: Added lots of `.PHONY' targets.
michael@0 2215
michael@0 2216 2000-12-17 Karsten Fleischer <kfleisc1@ford.com>
michael@0 2217
michael@0 2218 * *.mk: Implemented `platform' target to disable auto-detection.
michael@0 2219
michael@0 2220 2000-12-14 Werner Lemberg <wl@gnu.org>
michael@0 2221
michael@0 2222 * docs/design/modules.html: Removed. Covered by design-*.html.
michael@0 2223
michael@0 2224 * INSTALL: Added info about makepp.
michael@0 2225
michael@0 2226 2000-12-14 David Turner <david.turner@freetype.org>
michael@0 2227
michael@0 2228 Added support for clipped direct rendering in the smooth renderer.
michael@0 2229 This should not break binary compatibility of existing applications.
michael@0 2230
michael@0 2231 * include/freetype/fttypes.h, include/freetype/ftimage.h: Move
michael@0 2232 definition of the FT_BBox structure from the former to the latter.
michael@0 2233 * include/freetype/ftimage.h: Add `ft_raster_flag_clip' value to
michael@0 2234 FT_Raster_Flag enumeration.
michael@0 2235 Add `clip_box' element to FT_Raster_Params structure.
michael@0 2236 * src/smooth/ftgrays.c (grays_convert_glyph): Implement it.
michael@0 2237
michael@0 2238 * INSTALL: Updated installation instructions on Win32, listing the
michael@0 2239 new `make setup list' target used to list supported
michael@0 2240 compilers/targets.
michael@0 2241
michael@0 2242 * src/raster/ftraster.c (ft_black_render): Test for unsupported
michael@0 2243 direct rendering before testing arguments.
michael@0 2244
michael@0 2245 2000-12-13 David Turner <david.turner@freetype.org>
michael@0 2246
michael@0 2247 * include/freetype/config/ft2build.h,
michael@0 2248 include/freetype/internal/internal.h: Fixed header inclusion macros
michael@0 2249 to use direct definitions. This is the only way to do these things
michael@0 2250 in a portable way :-( The rest of the code should follow shortly
michael@0 2251 though everything compiles now.
michael@0 2252
michael@0 2253 * builds/compiler/intelc.mk, builds/compiler/watcom.mk: New files.
michael@0 2254
michael@0 2255 * builds/win32/detect.mk: Added support for the Intel C/C++
michael@0 2256 compiler, as well as _preliminary_ (read: doesn't work!) support for
michael@0 2257 Watcom. Also added a new setup target. Type `make setup list' for
michael@0 2258 a list of supported command-line compilers on Win32.
michael@0 2259
michael@0 2260 * src/base/ftdebug.c: Added dummy symbol to avoid empty file if
michael@0 2261 conditionals are off.
michael@0 2262
michael@0 2263 2000-12-13 Werner Lemberg <wl@gnu.org>
michael@0 2264
michael@0 2265 * builds/unix/ftsystem.c: Fixed typos. Fixed inclusion of wrong
michael@0 2266 ftconfig.h file.
michael@0 2267
michael@0 2268 2000-12-12 Werner Lemberg <wl@gnu.org>
michael@0 2269
michael@0 2270 * include/freetype/config/ft2build.h (FT2_ROOT, FT2_CONFIG_ROOT):
michael@0 2271 Removed. ANSI C doesn't (explicitly) allow macro expansion in
michael@0 2272 arguments using `##'.
michael@0 2273 (FT2_PUBLIC_FILE, FT2_CONFIG_FILE, FT2_INTERNAL_FILE): Use directory
michael@0 2274 names directly. Make them configurable. Use `##' to strip leading
michael@0 2275 and trailing spaces from arguments.
michael@0 2276
michael@0 2277 * builds/unix/ft2unix.h: Adapted.
michael@0 2278
michael@0 2279 * src/base/ftsystem.c (ft_alloc, ft_realloc, ft_free, ft_io_stream,
michael@0 2280 ft_close_stream): Use FT_CALLBACK_DEF.
michael@0 2281
michael@0 2282 * builds/unix/ftsystem.c: Use new header scheme.
michael@0 2283 (FT_Done_Memory): Use free() from FT_Memory structure.
michael@0 2284
michael@0 2285 * src/base/ftinit.c, src/base/ftmac.c: Header scheme fixes.
michael@0 2286
michael@0 2287 2000-12-11 Werner Lemberg <wl@gnu.org>
michael@0 2288
michael@0 2289 * include/freetype/config/ft2build.h (FT2_CONFIG_ROOT,
michael@0 2290 FT2_PUBLIC_FILE, FT2_CONFIG_FILE, FT2_INTERNAL_FILE,
michael@0 2291 FT_SOURCE_FILE): Use `##' operator to be really ANSI C compliant.
michael@0 2292
michael@0 2293 2000-12-09 Werner Lemberg <wl@gnu.org>
michael@0 2294
michael@0 2295 * builds/unix/detect.mk: Remove unused USE_CFLAGS variable.
michael@0 2296
michael@0 2297 2000-12-08 Werner Lemberg <wl@gnu.org>
michael@0 2298
michael@0 2299 * */*.h: Changed body inclusion macro names to start and end with
michael@0 2300 `__' (those which haven't converted yet). Fixed minor conversion
michael@0 2301 issues.
michael@0 2302
michael@0 2303 * src/winfonts/winfnt.c: Updated to new header inclusion scheme.
michael@0 2304
michael@0 2305 * src/truetype/ttinterp.c: Remove unused CALC_Length() macro.
michael@0 2306
michael@0 2307 2000-12-07 David Turner <david.turner@freetype.org>
michael@0 2308
michael@0 2309 * */*.[ch]: Changed source files to adhere to the new
michael@0 2310 header inclusion scheme. Not completely tested but works for now
michael@0 2311 here.
michael@0 2312
michael@0 2313 * src/cff/t2driver.c: Renamed and updated to...
michael@0 2314 * src/cff/cffdrivr.c: New file.
michael@0 2315 * src/cff/t2driver.h: Renamed and updated to...
michael@0 2316 * src/cff/cffdrivr.h: New file.
michael@0 2317 * src/cff/t2load.c: Renamed and updated to...
michael@0 2318 * src/cff/cffload.c: New file.
michael@0 2319 * src/cff/t2load.h: Renamed and updated to...
michael@0 2320 * src/cff/cffload.h: New file.
michael@0 2321 * src/cff/t2objs.c: Renamed and updated to...
michael@0 2322 * src/cff/cffobjs.c: New file.
michael@0 2323 * src/cff/t2objs.h: Renamed and updated to...
michael@0 2324 * src/cff/cffobjs.h: New file.
michael@0 2325 * src/cff/t2parse.c: Renamed and updated to...
michael@0 2326 * src/cff/cffparse.c: New file.
michael@0 2327 * src/cff/t2parse.h: Renamed and updated to...
michael@0 2328 * src/cff/cffparse.h: New file.
michael@0 2329 * src/cff/t2tokens.h: Renamed and updated to...
michael@0 2330 * src/cff/cfftoken.h: New file.
michael@0 2331
michael@0 2332 * src/cff/cff.c, src/cff/rules.mk: Updated.
michael@0 2333
michael@0 2334 2000-12-06 David Turner <david.turner@freetype.org>
michael@0 2335
michael@0 2336 * src/cache/ftlru.c (FT_Lru_Done): Fixed memory leak.
michael@0 2337
michael@0 2338 2000-12-06 Werner Lemberg <wl@gnu.org>
michael@0 2339
michael@0 2340 * builds/module.mk: Replaced `xxx #' with `xxx$(space).
michael@0 2341 * builds/os2/detekt.mk, builds/win32/detekt.mk: Moved comment to
michael@0 2342 avoid trailing spaces in variable.
michael@0 2343 * builds/freetype.mk: Use $(D) instead of $D to make statement more
michael@0 2344 readable.
michael@0 2345
michael@0 2346 * docs/docmaker.py: Formatting.
michael@0 2347
michael@0 2348 2000-12-05 David Turner <david.turner@freetype.org>
michael@0 2349
michael@0 2350 * src/psaux/psauxmod.c: Fixed a broken inclusion of component
michael@0 2351 header files (an FT_FLAT_COMPILE test was missing).
michael@0 2352
michael@0 2353 * src/cache/ftcmanag.c (FTC_Manager_Done): Fixed a bug that caused
michael@0 2354 an occasional crash when the function was called (due to a dangling
michael@0 2355 pointer).
michael@0 2356
michael@0 2357 * src/base/ftsystem.c (FT_Done_Memory): Fixed an obvious bug:
michael@0 2358 The ANSI `free()' function was called instead of `memory->free()'.
michael@0 2359
michael@0 2360 * docs/docmaker.py: Added section filtering, multi-page generation
michael@0 2361 (index page generation is still missing though).
michael@0 2362
michael@0 2363 2000-12-04 David Turner <david.turner@freetype.org>
michael@0 2364
michael@0 2365 * builds/unix/install.mk, builds/unix/ft2unix.h: The file `ft2unix.h'
michael@0 2366 is now installed as <ft2build.h> for Unix systems. Note that we
michael@0 2367 still use the `freetype2/freetype' installation path for now.
michael@0 2368
michael@0 2369 * */*.[ch]: Now using <ft2build.h> as the default build and setup
michael@0 2370 configuration file in all public headers. Internal source files
michael@0 2371 still need some changes though.
michael@0 2372
michael@0 2373 * builds/devel/ft2build.h, builds/devel/ftoption.h: Created a new
michael@0 2374 directory to hold all development options for both the Unix and
michael@0 2375 Win32 developer builds.
michael@0 2376
michael@0 2377 * builds/win32/detect.mk, builds/win32/w32-bccd.mk,
michael@0 2378 builds/win32/w32-dev.mk: Changed the developer build targets to
michael@0 2379 `devel-gcc' and `devel-bcc' in order to be able to develop with the
michael@0 2380 Borland C++ compiler.
michael@0 2381
michael@0 2382 2000-12-01 David Turner <david.turner@freetype.org>
michael@0 2383
michael@0 2384
michael@0 2385 * Version 2.0.1 released.
michael@0 2386 =========================
michael@0 2387
michael@0 2388
michael@0 2389 * builds/unix/configure.in, builds/unix/configure,
michael@0 2390 builds/cygwin/configure.in, builds/cygwin/configure: Setting
michael@0 2391 `version_info' to 6:1:0 for the 2.0.1 release.
michael@0 2392
michael@0 2393 * CHANGES: Added a summary of changes between 2.0.1 and 2.0.
michael@0 2394
michael@0 2395 * builds/unix/ftconfig.in, builds/cygwin/ftconfig.in: Changes
michael@0 2396 to allow compilation under Unix with the Unix-specific config
michael@0 2397 files.
michael@0 2398
michael@0 2399 2000-12-01 Werner Lemberg <wl@gnu.org>
michael@0 2400
michael@0 2401 * INSTALL: Revised.
michael@0 2402 * builds/compiler/bcc-dev.mk, builds/compiler/visualage.mk,
michael@0 2403 builds/compiler/bcc.mk, builds/win32/w32-bcc.mk,
michael@0 2404 builds/win32/w32-bccd.mk: Revised.
michael@0 2405 * include/freetype/config/ftbuild.h,
michael@0 2406 include/freetype/internal/internal.h: Revised.
michael@0 2407 * include/freetype/ftimage.h: Updated to new header inclusion scheme.
michael@0 2408
michael@0 2409 2000-11-30 Werner Lemberg <wl@gnu.org>
michael@0 2410
michael@0 2411 * builds/toplevel.mk (.PHONY): Adding `distclean'.
michael@0 2412 * builds/unix/detect.mk (.PHONY): Adding `devel', `unix', `lcc',
michael@0 2413 `setup'.
michael@0 2414
michael@0 2415 2000-11-30 David Turner <david.turner@freetype.ogr>
michael@0 2416
michael@0 2417 * INSTALL: Slightly updated the quick starter documentation to
michael@0 2418 include IDE compilation, prevent against BSD Make, and specify `make
michael@0 2419 setup' instead of a single `make' for build configuration.
michael@0 2420
michael@0 2421 * include/config/ftbuild.h, include/internal/internal.h: Added new
michael@0 2422 configuration files used to determine the location of all public,
michael@0 2423 configuration, and internal header files for FreeType 2. Modified
michael@0 2424 all headers under `include/freetype' to reflect this change. Note
michael@0 2425 that we still need to change the library source files themselves
michael@0 2426 though.
michael@0 2427
michael@0 2428 * builds/compiler/bcc.mk, builds/compiler/bcc-dev.mk,
michael@0 2429 builds/win32/w32-bcc.mk, builds/win32/w32-bccd.mk,
michael@0 2430 builds/win32/detect.mk: Added new files to support compilation with
michael@0 2431 the free Borland C++ command-line compiler. Modified the detection
michael@0 2432 rules to recognize the new `bcc32' target in `make setup bcc32'.
michael@0 2433
michael@0 2434 * src/sfnt/ttcmap.c, src/sfnt/ttpost.c, src/sfnt/ttsbit.c,
michael@0 2435 src/truetype/ttobjs.c, src/truetype/ttgload.c,
michael@0 2436 src/truetype/ttinterp.c: Fixed a few comparisons that Borland C++
michael@0 2437 didn't really like. Basically, this compiler complains when FT_UInt
michael@0 2438 is compared to FT_UShort (apparently, it promotes `UShort' to `Int'
michael@0 2439 in these cases).
michael@0 2440
michael@0 2441 2000-11-30 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 2442
michael@0 2443 * t2objs.c (T2_Init_Face): Added calculation of `face->height' for
michael@0 2444 pure CFF fonts.
michael@0 2445
michael@0 2446 * t1objs.c (T1_Init_Face): Fixed computation of `face->height'.
michael@0 2447
michael@0 2448 2000-11-29 David Turner <david.turner@freetype.org>
michael@0 2449
michael@0 2450 * src/base/ftbbox.c (BBox_Conic_Check): Fixed a really stupid
michael@0 2451 bug in the formula used to compute the conic Bézier extrema
michael@0 2452 of non-monotonous arcs.
michael@0 2453
michael@0 2454 2000-11-29 Werner Lemberg <wl@gnu.org>
michael@0 2455
michael@0 2456 * src/base/ftcalc.c (FT_SqrtFixed), src/base/ftobjs.c
michael@0 2457 (FT_Set_Renderer): Use FT_EXPORT_DEF.
michael@0 2458 * src/cache/ftcimage.c (FTC_Image_Cache_Lookup),
michael@0 2459 src/cache/ftcmanag.c (FTC_Manager_Done, FTC_Manager_Reset,
michael@0 2460 FTC_Manager_Lookup_Face, FTC_Manager_Lookup_Size,
michael@0 2461 FTC_Manager_Register_Cache), src/cache/ftcsbits.c
michael@0 2462 (FTC_SBit_Cache_Lookup): Ditto.
michael@0 2463
michael@0 2464 * src/include/freetype/cache/ftcglyph.h (FTC_GlyphNode_Init),
michael@0 2465 src/include/freetype/ftmac.h (FT_New_Face_From_FOND): Use FT_EXPORT.
michael@0 2466
michael@0 2467 2000-11-29 Werner Lemberg <wl@gnu.org>
michael@0 2468
michael@0 2469 * src/sfnt/sfdriver.c: Include ttsbit.h and ttpost.h only
michael@0 2470 conditionally.
michael@0 2471
michael@0 2472 * src/truetype/ttdriver.c (Set_Char_Sizes, Set_Pixel_Sizes): Set
michael@0 2473 `size->strike_index' only conditionally.
michael@0 2474
michael@0 2475 * src/type1/t1driver.c, src/type1/t1objs.c: Include t1afm.h only
michael@0 2476 conditionally.
michael@0 2477
michael@0 2478 * src/winfonts/winfnt.h: Move all type definitions to...
michael@0 2479 * src/include/freetype/internal/fnttypes.h: New file.
michael@0 2480 * src/winfonts/winfnt.c: Use it.
michael@0 2481
michael@0 2482 2000-11-29 ??? ??? <darin@eazel.com>
michael@0 2483
michael@0 2484 * include/freetype/internal/ftdebug.h: Replaced FT_CAT and FT_XCAT
michael@0 2485 with a direct solution (which also satisfies picky compilers).
michael@0 2486
michael@0 2487 2000-11-28 YAMANO-UCHI Hidetoshi <mer@din.or.jp>
michael@0 2488
michael@0 2489 * src/truetype/ttobjs.c (TT_Init_Size): Fix #ifdef's to work with
michael@0 2490 disabled interpreter also.
michael@0 2491
michael@0 2492 * src/base/ftnames.c (FT_Get_Sfnt_Name_Count): Fix incorrect
michael@0 2493 parentheses.
michael@0 2494
michael@0 2495 2000-11-26 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 2496
michael@0 2497 * src/cff/t2gload.c (T2_Parse_CharStrings): Added logic to glyph
michael@0 2498 width setting code to take into account even/odd argument counts
michael@0 2499 and glyph width operand before endchar/hmoveto/vmoveto.
michael@0 2500
michael@0 2501 2000-11-26 Werner Lemberg <wl@gnu.org>
michael@0 2502
michael@0 2503 * builds/ansi/ansi.mk: Fix inclusion order of files.
michael@0 2504
michael@0 2505 2000-11-26 Keith Packard <keithp@keithp.com>
michael@0 2506
michael@0 2507 * src/type1/t1objs.c (T1_Init_Face): Compute style flags.
michael@0 2508
michael@0 2509 2000-11-26 Werner Lemberg <wl@gnu.org>
michael@0 2510
michael@0 2511 * builds/compiler/ansi-cc.mk (CLEAN_LIBRARY): Fix rule and
michael@0 2512 conditional.
michael@0 2513
michael@0 2514 2000-11-23 Werner Lemberg <wl@gnu.org>
michael@0 2515
michael@0 2516 * src/type1/t1load.c (parse_subrs, parse_charstrings): Use decrypt
michael@0 2517 function from PSAux module.
michael@0 2518
michael@0 2519 * src/type1/t1parse.c (T1_Done_Parse): Renamed to...
michael@0 2520 (T1_Finalize_Parser): New function (to avoid name clash with a
michael@0 2521 function in the PSAux module).
michael@0 2522 (T1_Decrypt): Removed since it is duplicated in the PSAux module.
michael@0 2523 (T1_Get_Private_Dict): Added `psaux' as new parameter; use decrypt
michael@0 2524 function from PSAux module.
michael@0 2525
michael@0 2526 * src/type1/t1parse.h: Adapted.
michael@0 2527
michael@0 2528 2000-11-22 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 2529
michael@0 2530 * src/cff/t2objs.c (T2_Init_Face): For pure CFF fonts, set
michael@0 2531 `root->num_faces' to `cff->num_faces' and set `units_per_EM'
michael@0 2532 to 1000.
michael@0 2533
michael@0 2534 * src/cff/t2parse.c (parse_t2_real): Fixed real number parsing
michael@0 2535 loop.
michael@0 2536
michael@0 2537 * src/cff/t2load.c (T2_Get_String): Called T2_Get_Name with a
michael@0 2538 sid that was off by one.
michael@0 2539
michael@0 2540 2000-11-16 David Turner <david@freetype.org>
michael@0 2541
michael@0 2542 * src/autohint/ahtypes.h (AH_Hinter): Added new fields to control
michael@0 2543 auto-hinting of synthetic Type 1 fonts.
michael@0 2544
michael@0 2545 * src/autohint/ahhint.c (ah_hinter_load, ah_hinter_load_glyph):
michael@0 2546 Added auto-hinting support of synthetic Type 1 fonts.
michael@0 2547
michael@0 2548 2000-11-12 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 2549
michael@0 2550 * src/sfnt/ttload.c (TT_LookUp_Table, TT_Load_Generic_Table): Change
michael@0 2551 tracing output.
michael@0 2552
michael@0 2553 * src/sfnt/sfobjs.c (SFNT_Load_Face): Set boolean variable
michael@0 2554 `has-outline' to true only if the font has a `glyf' or `CFF ' table.
michael@0 2555
michael@0 2556 2000-11-11 Werner Lemberg <wl@gnu.org>
michael@0 2557
michael@0 2558 * builds/win32/visualc/freetype.dsp: Fix raster1->raster and
michael@0 2559 type1z->type1.
michael@0 2560
michael@0 2561 2000-11-11 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 2562
michael@0 2563 * builds/unix/freetype-config.in, builds/cygwin/freetype-config.in:
michael@0 2564 Added a --libtool option. When freetype-config --libtool is
michael@0 2565 invoked, the absolute path to the libtool convenience library
michael@0 2566 is returned.
michael@0 2567
michael@0 2568 2000-11-11 Werner Lemberg <wl@gnu.org>
michael@0 2569
michael@0 2570 * builds/cygwin/cygwin-def.in: Same fix as previous.
michael@0 2571
michael@0 2572 2000-11-10 Tom Kacvinsky <tkacvins@freetype.org>
michael@0 2573
michael@0 2574 * builds/unix/unix-def.in: Add
michael@0 2575
michael@0 2576 INSTALL_PROGRAM := @INSTALL_PROGRAM@
michael@0 2577 INSTALL_SCRIPT := @INSTALL_SCRIPT@
michael@0 2578
michael@0 2579 so that installation of freetype-config does not fail.
michael@0 2580
michael@0 2581 2000-11-10 Werner Lemberg <wl@gnu.org>
michael@0 2582
michael@0 2583 * builds/cygwin/freetype-config.in, builds/unix/freetype-config.in:
michael@0 2584 Move test down for empty --exec-prefix.
michael@0 2585 Fix --version.
michael@0 2586
michael@0 2587 * builds/cygwin/install.mk, builds/unix/install.mk: Use
michael@0 2588 $(INSTALL_SCRIPT) for installation of freetype-config.
michael@0 2589
michael@0 2590 * builds/cygwin/install.mk: Fix clean target names.
michael@0 2591
michael@0 2592 2000-11-09 David Turner <david@freetype.org>
michael@0 2593
michael@0 2594
michael@0 2595 * Version 2.0 released.
michael@0 2596 =======================
michael@0 2597
michael@0 2598 ----------------------------------------------------------------------------
michael@0 2599
michael@0 2600 Copyright 2000, 2001, 2002, 2007 by
michael@0 2601 David Turner, Robert Wilhelm, and Werner Lemberg.
michael@0 2602
michael@0 2603 This file is part of the FreeType project, and may only be used, modified,
michael@0 2604 and distributed under the terms of the FreeType project license,
michael@0 2605 LICENSE.TXT. By continuing to use, modify, or distribute this file you
michael@0 2606 indicate that you have read the license and understand and accept it
michael@0 2607 fully.
michael@0 2608
michael@0 2609
michael@0 2610 Local Variables:
michael@0 2611 version-control: never
michael@0 2612 coding: utf-8
michael@0 2613 End:

mercurial