Release 1.8.1 (2009-12-13)
===========================================================
Features
--------
* Support cairo 1.8.8.
* Improve auto .pc detection.
+ Remove PKG_CONFIG_PATH workaround in the package Makefile. The default
pkg-config tool script (which properly sets PKG_CONFIG_LIBDIR) now
works properly (thanks to OBATA Akio).
* Fix Quartz related bugs. (thanks to kimura wataru)
* Support PKG_CONFIG_LIBDIR. (thanks to OBATA Akio)
* Support RubyGems for mswin32.
+ Install as a Ruby gem.
* Support Quartz surface.
* Fix a wrong type conversion bug.
* Fix a memory leak bug.
* Support ruby 1.9.0.
* Fix typos.
* Rename Cairo::WIN32Surface to Cairo::Win32Surface
* Cairo::WIN32Surface is still available for backward compatibility but
don't use in newly written code.
Release 1.5.0 (2007-05-27) Kouhei Sutou <kou@cozmixng.org>)
==========================================================
Many API improvement.
Features
--------
* Support Cairo::Surface.new with block.
* Support RubyGems.
* Add experimental API Cairo::Context#pseudo_blur. (API
may be changed.)
* Fix strange Cairo::Context#push_group and
Cairo::Context#pop_group behaviour.
* Fix Cairo::Context::Path#map_path_onto.
* Add high-level color interface. (Cairo::Color)
* Improve color related API. For example:
From:
context.set_source_rgb(1, 0, 0)
To:
context.set_source_color(:red)
* Support RGB/CMYK/HSV conversion.
* Many default color definitions.
* Support path creation using Cairo::Path without
Cairo::Context.
* Improve constant value specify API. For example:
From:
Cairo::ImageSurface.new(Cairo::FORMAT_ARGB32, 100, 100)
To:
Cairo::ImageSurface.new(:argb32, 100, 100)
* Support win32 surface. (Yoshinao Muramatsu)