pycairo release 1.8.2 is now available
[Posted January 15, 2009 by cook]
| From: |
| Steve <stevech1097-AT-yahoo.com.au> |
| To: |
| cairo-announce-AT-cairographics.org, python-announce-list-AT-python.org |
| Subject: |
| ANN: pycairo release 1.8.2 now available |
| Date: |
| Thu, 15 Jan 2009 19:15:21 +0900 |
| Message-ID: |
| <1232014521.28950.3.camel@host.localdomain> |
Pycairo is a set of Python bindings for the multi-platform 2D graphics
library cairo.
http://cairographics.org
http://cairographics.org/pycairo
A new pycairo release 1.8.2 is now available from:
http://cairographics.org/releases/pycairo-1.8.2.tar.gz
http://cairographics.org/releases/pycairo-1.8.2.tar.gz.md5
bbfc0c2fef08dfb0c5b8baa5f0b67a87 pycairo-1.8.2.tar.gz
Overview of changes from pycairo 1.8.0 to pycairo 1.8.2
=======================================================
Pycairo 1.8.0 resulted in crashes for some applications using threads.
So upgrading to 1.8.2 is recommended for threaded applications.
Bug Fixes:
#19287: Threading support results in crashes in
cairo.ImageSurface
New Methods:
Context.set_scaled_font
API Changes:
Matrix multiplication:
old code: matrix3 = matrix1 * matrix2
new equivalent code: matrix3 = matrix1.multiply(matrix2)
matrix3 = matrix1 * matrix2
is now equivalent to matrix3 = matrix2.multiply(matrix1)
which is consistent with standard matrix multiplication.
--
http://mail.python.org/mailman/listinfo/python-announce-list
Support the Python Software Foundation:
http://www.python.org/psf/donations.html
(
Log in to post comments)