The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
2003/10/20 19:59 ebassi

	* t/05.GnomeFont.t: included tests for newly implemented methods.
	* pm/Font.pm: corrected stupid typo inside package name.
	* xs/GnomeFont.xs: implemented
		gnome_font_get_glyph_stadvance
		gnome_font_get_glyph_stdbbox
		gnome_font_get_glyph_stdkerning
	  these methods requires libart structures, but since libart has no
	  perl binding, I've implemented the return values as arrayrefs of
	  doubles.
	* xs/GnomeFont.xs: implemented
		gnome_font_face_get_name
		gnome_font_face_get_ps_name
		gnome_font_face_get_family_name
		gnome_font_face_get_species_name
		gnome_font_face_get_species_name
		gnome_font_face_get_stdbbox
		gnome_font_face_get_glyph_stdbbox
		gnome_font_face_get_glyph_stdadvance
		gnome_font_face_get_glyph_stdkerning
		gnome_font_face_get_glyph_ps_name

2003/10/10 15:40 ebassi

	* Print.pm: bumped to version 0.51
	
	* debian/: debianized package

2003/09/21 20:19 rwmcfa1

	* Makefile.PL: fixed bug in specfile generation

2003/09/17 10:44 rwmcfa1

	* Makefile.PL: ExtUtils::PkgConfig can now deal with version 
	requirements using pkg-config's interface, make use of it.

	* t/04.GnomePrintDialog.t: skip unless we have a display

2003/09/16 23:50 rwmcfa1

	* Makefile.PL, perl-*spec.in: somewhat automated versioning system 
	implemented for depenancy modules

2003/09/15 22:26 rwmcfa1

	* Makefile.PL: spec file dependancies improved

2003/09/11 21:02 rwmcfa1
	
	* xs/GnomePrintUnit.xs, xs/GnomePrintConfig.xs: PREFIX added/moved.

	* xs/GnomeFontFace.xs: PREFIX added, gnome_font_face_get_glyph_kerning
	commented out, the func is declaired in the header files, but not in 
	the .so libs on redhat 9 with libgnomeprint(ui)-2.2.

2003/09/10 14:24 ebassi
	
	* xs/GnomeFontFace.xs: implemented:
		gnome_font_face_find,
		gnome_font_face_find_closest,
		gnome_font_face_find_closest_from_weight_slant,
		gnome_font_face_find_closest_from_pango_font,
		gnome_font_face_find_closest_from_pango_description,
		gnome_font_face_find_from_family_and_style,
		gnome_font_face_get_font,
		gnome_font_face_get_font_default,
		gnome_font_face_is_italic,
		gnome_font_face_is_fixed_width,
		gnome_font_face_get_ascender,
		gnome_font_face_get_descender,
		gnome_font_face_get_underline_position,
		gnome_font_face_get_underline_thickness,
		gnome_font_face_get_num_glyphs,
		gnome_font_face_get_glyph_width,
		gnome_font_face_get_glyph_kerning
	
2003/09/06 19:23 rwmcfa1

	* Makefile.PL: dist-rpms build target added

	* perl-Gnome2-Prins.spec.in: initial import

2003/09/02 09:45 rwmcfa1

	* xs/GnomeFont.xs: xsubpp wants a blank line between each function,
	at least mine/most do. a couple of the ones commited below didn't have
	them.

2003/08/29 15:26 ebassi

	* xs/GnomeFont.xs: implemented more font size methods: 
	  	gnome_font_get_glyph_width,
	  	gnome_font_get_ascender,
	  	gnome_font_get_descender,
	  	gnome_font_get_underline_position,
	  	gnome_font_get_underline_thickness,
		gnome_font_get_width_utf8,
		gnome_font_get_width_utf8_sized
	* examples/basic-font.pl: changed the searched font name to
	  "Monospace Regular".
	
2003/08/23 10:25 ebassi
	
	* pm/Config.pm, pm/Font.pm: corrected some typos in the pod
	  documentation.
	
2003/08/22 12:37 ebassi

	* Makefile.PL: prefixed the filename of the man pages with the correct
	  namespace (Gnome2::*).

2003/08/22 02:19 muppetman

	* README: new file, need it if you're going to distribute

	* Print.pm: mangled my email, tailored Gtk2 text to Gnome2::Print

2003/08/21 0:41 ebassi

	* t/07.GnomePrintUnit.t: fixed GnomePrintUnit test.

2003/08/21 0:22 ebassi
	
	* xs/GnomePrintUnit.xs: implemented Gnome2::Print::Unit methods.
	* xs/GnomePrintDialog.xs: default flag (=0) for GnomePrintDialog
	  constructor.
	* xs/GnomeFont.xs: corrected a stupid typo.
	* Makefile.PL: removed libgnomeprintui-2.0 from the package
	  configuration setup; libgnomeprintui-2.0 (version 1.11x), needed
	  by GNOME 2.0, still uses the old Glib 1.2 type system, so it won't
	  compile anyway. Only libgnomeprint/libgnomeprintui >= 2.2 will be
	  supported.

2003/08/19 21:11 rwmcfa1

	* Makefile.PL: added realclean removal of build dir to postamble 
	section.

2003/08/18 14:44 ebassi
	
	* xs/GnomePrint2.xs: added "get_version" class method; this method
	  returns a string containing the version of libgnomeprint, as taken
	  from the package config.
	* pm/Config.pm: constant keys for GnomePrintConfig.
	* xs/GnomePrintConfig.xs: get/set methods and key macros.
	* Makefile.PL: dropped libgnomeprint-2.2 from PkgConfig->find; added a
	  check for libgnomeprint version, in order to support older releases.
	
2003/08/16 16:58 ebassi

	* *: initial ChangeLog entry.  libgnomeprintui is completely wrapped,
	     libgnomeprint binding lacks of GnomePrintUnit, GnomePrintPaper,
	     GnomeFontFace and GnomeGlyphList.