diff options
author | Bryce Harrington <bryce@osg.samsung.com> | 2018-04-04 11:48:11 -0700 |
---|---|---|
committer | Bryce Harrington <bryce@osg.samsung.com> | 2018-04-11 18:35:40 -0700 |
commit | 7149686456ec3c481fa1d3dbe76a0dab1e42b519 (patch) | |
tree | ebc00a6d8f7a9848bc49051d9eb047177b1a3b2a | |
parent | caf6f71d692de5b2afd97bf4870de8c56b454408 (diff) |
1.15.12 release1.15.12
Signed-off-by: Bryce Harrington <bryce@osg.samsung.com>
-rw-r--r-- | NEWS | 49 | ||||
-rw-r--r-- | cairo-version.h | 2 |
2 files changed, 50 insertions, 1 deletions
@@ -1,3 +1,52 @@ +Release 1.15.12 (2018-04-04 Bryce Harrington <bryce@osg.samsung.com>) +======================================================================== +The main focus for this release is the addition of Variable Font +support. Variable fonts are single font files with various typography +characteristics, such as weight or slant, that users of the font can +adjust between two points. Effectively this enables a single font to +behave as multiple fonts. + +The Skia backend is disabled in this release, due to severe bitrot, and +will be removed in future releases. Contact the cairo team if you have +a need of this backend. + +For a complete log of changes, please see + + http://cairographics.org/releases/ChangeLog.1.15.12 + +Features and Enhancements +------------------------- +* Variable font support +* Skia backend is disabled + +API Changes +----------- +* cairo_font_options_get_variations() and + cairo_font_options_set_variations() are added. + +Dependency Changes +------------------ +None + +Performance Optimizations +------------------------- +None + +Bug Fixes +--------- +* Fix errors in csi-trace --help and --version options +* Fix a 'memory leak' in the image compositor, with + pixman_glyph_cache_t. +* Fix access of uninitialized memory found by valgrind + (Bug #91271) +* Fix improper initialization of memory in + _cairo_ft_font_face_create_for_pattern() + (Bug #105084) +* Fix multi-monitor virtual desktop with negative coords on Win32 + (Bug #100793) +* Fix issues occuring with older FreeType versions. + + Release 1.15.10 (2017-12-07 Bryce Harrington <bryce@osg.samsung.com>) ======================================================================== This release adds GLESv3 support to the cairo_gl backend, adds diff --git a/cairo-version.h b/cairo-version.h index 9cda50edc..ed38ff293 100644 --- a/cairo-version.h +++ b/cairo-version.h @@ -3,6 +3,6 @@ #define CAIRO_VERSION_MAJOR 1 #define CAIRO_VERSION_MINOR 15 -#define CAIRO_VERSION_MICRO 11 +#define CAIRO_VERSION_MICRO 12 #endif |