Edit

kc3-lang/freetype/ChangeLog.20

Branch :

  • Show log

    Commit

  • Author : Werner Lemberg
    Date : 2005-06-16 19:07:08
    Hash : 49f4d34e
    Message : * src/base/ftoutln.c (FT_Outline_Embolden): Strength should be halved. * src/base/ftsynth.c (FT_GlyphSlot_Embolden): Change the default strength. Don't increase slot->advance.y. * include/freetype/freetype.h (FREETYPE_MINOR): Set to 2. (FREETYPE_PATCH): Set to 0. * builds/unix/configure.ac (version_info): Set to 9:9:3. Currently, we are still binary compatible. * builds/win32/visualc/index.html, builds/win32/visualc/freetype.dsp, builds/win32/visualc/freetype.vcproj: s/219/2110/, s/2.1.9/2.1.10/. * builds/freetype.mk (refdoc), README, Jamfile (RefDoc): s/2.1.9/2.1.10/. * docs/CHANGES, docs/VERSION.DLL: Updated. * ChangeLog: Split off older entries into... * ChangeLog.20, ChangeLog.21: These new files. The next release will be 2.2.0, so don't worry about source code backwards compatibility. * include/freetype/ftimage.h (FT_Outline_MoveToFunc, FT_Outline_LineToFunc, FT_Outline_ConicToFunc, FT_Outline_CubicToFunc, FT_SpanFunc, FT_Raster_RenderFunc), include/freetype/ftrender.h (FT_Glyph_TransformFunc, FT_Renderer_RenderFunc, FT_Renderer_TransformFunc): Decorate parameters with `const' where appropriate. * src/sfnt/ttsbit.c (tt_face_load_sbit_image): Compute vertBearingY to make glyphs centered vertically. * src/truetype/ttgload.c (compute_glyph_metrics): Compute vertBearingY to make glyphs centered vertically. Fix some bugs in vertical metrics: . loader->pp3.y and loader->pp4.y are in 26.6 format, not in font units. . As we use the glyph's cbox to calculate the top bearing now there iss no need to adjust `top'. * src/otvalid/otvcommn.h (OTV_OPTIONAL_TABLE): Use FT_UShort to be in sync with OTV_OPTIONAL_OFFSET. Reported by YAMATO Masatake. * docs/release: Update.

  • ChangeLog.20
  • 2002-02-09  Werner Lemberg  <wl@gnu.org>
    
    	* README: Fix typo.
    	* docs/CHANGES: Minor fixes.
    
    
    	* Version 2.0.8 released.
    	=========================
    
    
    2002-02-08  David Turner  <david@freetype.org>
    
    	* docs/CHANGES: Updating for 2.0.8.
    
    	* include/freetype/freetype.h: Setting `PATCH_LEVEL' to 8 and
    	removing `FT_Get_Next_Char' from the API (temporarily).
    
    	* include/freetype/freetype.h: Adding comments to FT_Get_Next_Char;
    	note that this function might temporarily be removed for the 2.0.8
    	release.
    
    2002-02-07  David Turner  <david@freetype.org>
    
    	* src/pcf/pcfread.c (pcf_load_font): Removed immature support of
    	the AVERAGE_WIDTH property.
    
    2002-02-06  David Turner  <david@freetype.org>
    
    	* src/sfnt/sfobjs.c (SFNT_Load_Face): Since many fonts embedded in
    	PDF documents do not include 'cmap', 'post' and 'name' tables, the
    	SFNT face loader has been changed to not immediately report an
    	error if these are not present.
    
    	Note that the specification _requires_ these tables, but Adobe
    	seems to ignore it completely.
    
    	* src/sfnt/ttcmap.c: Removing compiler warnings.
    
    	* src/pcf/pcfread.c (pcf_read_TOC): Use FT_UInt.
    	(pcf_parse_metric, pcf_parse_compressed_metric): Removed.  Code
    	is now in ...
    	(pcf_get_metric): Here.
    	(pcfSeekToType): Renamed to ...
    	(pcf_seek_to_table_type): This.
    	Use FT_Int.
    	(pcfHasType): Renamed to ...
    	(pcf_has_table_type): This.
    	Use FT_Int.
    	(find_property): Renamed to ...
    	(pcf_find_property): This.
    	Use FT_Int.
    	(pcf_get_bitmaps, pcf_get_encodings): Handle invalid PCF fonts
    	better (delaying format checks out of FT_Access_Frame ..
    	FT_Forget_Frame blocks to avoid leaving the stream in an incorrect
    	state when encountering an invalid PCF font).
    
    	* src/pcf/pcfdriver.c (PCF_Done_Face): Renamed to ...
    	(PCF_Face_Done): This.
    	(PCF_Init_Face): Renamed to ...
    	(PCF_Face_Init): This.
    	(PCF_Get_Char_Index): Renamed to ...
    	(PCF_Char_Get_Index): This.
    	(PCF_Get_Next_Char): Renamed to ...
    	(PCF_Char_Get_Next): This.
    	(pcf_driver_class): Updated.
    
    	* src/pcf/pcf.h (PCF_Done_Face): Removed.
    
    2002-02-06  Detlef W