SHA256
1
0
forked from pool/cairo
cairo/cairo.changes

903 lines
35 KiB
Plaintext

-------------------------------------------------------------------
Sat May 25 20:58:42 UTC 2013 - dimstar@opensuse.org
- Drop cairo-libpng16-v2.patch: in its current form, this patch
causes issues as that cairo.ImageSurface.create_from_png errors
out with 'MemoryError' in all cases (bnc#821766).
-------------------------------------------------------------------
Tue Apr 2 11:57:02 UTC 2013 - pgajdos@suse.com
- Add cairo-libpng16-v2.patch: Fix png usage with libpng 1.6:
call png_set_read_user_transform_fn() before
png_read_update_info() (bnc#810701).
-------------------------------------------------------------------
Thu Feb 14 17:42:09 UTC 2013 - zaitor@opensuse.org
- Update to version 1.12.14:
+ Prevent user callbacks accessing user-data during destroy to
prevent use-after-free bugs (mozilla#722975).
+ Use standard names for glyphs in subset fonts (PDF) (fdo#60248)
+ Fix detection of Win98. The logic for detecting Win98
AlphaBlend() was inverted, disabling AlphaBlend() for everyone.
+ Prevent numeric overflow from extrapolating polygon edges to
the clip boundary and causing severe render artifacts.
(fdo#60489).
+ Fix computation of glyph string coordinates when breaking up
runs for xlib.
+ Fix an assertion in the win32 backend for failing to clear its
similar-images (fdo#60519).
- Changes from version 1.12.12:
+ Avoid replacing the entire image when uploading subimages
(fdo#59635).
+ Force synchronisation for scratch SHM image buffers, so that we
do not overwrite data as it is being read by X (fdo#59635).
+ Fix typos in detecting multisampling for the GL (MSAA) backend.
+ Fix a memory leak in the GL (MSAA) backend.
+ Fix a reference counting bug when mapping a GL surface to an
image.
- Changes from version 1.12.10:
+ Append coincident elements to the recording's surface bbtree so
that the list is not corrupted and the overlapping elements
lost.
+ Fix cairo-trace to correctly record map-to-image/unmap-image
and then replay them.
+ Ignore MappingNotifies when running the XCB testsuite as they
are sent to all clients when the keyboard changes. The
testsuite would detect the unexpected event and complain.
+ Handle very large images in the XCB backend.
+ Fix a memory leak in the xlib/shm layer, and prevent use of
the SHM surfaces after the display is closed (fdo#58253).
+ Handle resizing of bitmap fonts, in preparation for a fix to
fontconfig to correctly pass on the user request for scaling.
+ Always include subroutine 4 (hint replacement idion) when
subsetting type 1 fonts in order to prevent a crash in
cgpdftops on Mac OS/X.
+ Fix a couple of typos in the cairo-gobject.h header files for
introspection.
+ Prevent a mutex deadlock when freeing a scaled-glyph containing
a recording-surface that itself references another scaled-glyph
(fdo#54950).
+ Make scaled-font cache actually thread-safe and prevent
use-after-frees.
+ Restore support for older versions of XRender. A couple of
typos and a few forgotten chunks prevented the xlib
compositor from running correctly with XRender < 0.10.
- Enable building of the GL Backend.
-------------------------------------------------------------------
Tue Nov 6 12:21:53 UTC 2012 - dimstar@opensuse.org
- Update to version 1.12.8:
+ Expand the sanity checking for broken combinations of
XSendEvent and ShmCompletionEvent.
+ Notice that "The X.Org Foundation" sometimes also identifies
itself as "The Xorg Foundation".
+ Handle various ages of libXext and its Shm headers.
+ Fix the invalid clipping of the source drawable when using SHM
transport to upload images (fdo#56547).
+ Handle all Type1 postscript operators for better font
compatibility (fdo#56265).
+ Fix a couple of memory leaks in Type1 font subsetting
(fdo#56566)
+ Tighten the evaluation of the start/stop pen vertices, and catch
a few instances where we would use a fan instead of a bevel.
(fdo#56432)
+ Fix assumption that geometric clipping always succeeds with the
span-compositor (fdo#56574)
+ Fix call to spline intersection when evaluating whether a stoke
is visible.
+ Remember to copy inferior sources when using SHM to readback the
surface for use as a source.
- Changes from version 1.12.6:
+ Fix the recording surface to actually snapshot the source and
so fix PDF drawing.
+ Calling XSendEvent with an XShmCompletionEvent is incompatabile
with older Xorg servers.
+ Reorder CloseDisplay chain so that XShm is not reinstantiated
after shutdown, causing a potential crash if the Display was
immediately recreated using the same memory address.
+ Make sure that the Xserver has attached to the SHM segment
before deleting it from the global namespace on systems that do
not support deferred deletion.
+ Type1 subsetting support for PDF (and PS) was once again
improved to work with a larger number of PDF readers.
+ GLESv2 build fixes and improved support for embedded GPUs.
+ Tweak the invisible pen detection for applications that are
currently using too large values for geometric tolerance.
+ A build fix for older freetype libraries.
- Rebase cairo-modules-no-version.patch.
-------------------------------------------------------------------
Fri Oct 12 12:00:24 UTC 2012 - dimstar@opensuse.org
- Update to version 1.12.4:
+ Interior boxes were being dropped when amalgamating regions
during tesselation (fdo#49446)
+ Allow building without gtk-doc installed
+ Invalid edge generation whilst reducing complex polygons
(fdo#50852)
+ Stroking around tight cusps
+ Use locale correct formats for reading font subsetting and
valid buffers (fdo#51443)
+ Ensure that the type1 subset includes all the glyph encodings
(fdo#53040)
+ Upload the whole source for a repeating pattern (fdo#51910)
+ Fix damage tracking to handle continuation chunks corectly and
so prevent crashes on win32 (fdo#53384)
+ Avoid emitting miter joins for degenerate line segments
(fdo#407107)
+ Convert the relative path semgents into the backend coordinates
and then back again to user coordinates (fdo#54732)
+ Fix extents computations for a degenerate path consisting only
of a move-to (fdo#54549)
+ Prevent crashing on a degenerate project edge after polygon
intersection (fdo#54822).
- Add pkgconfig(xext) BuildRequires: new verified dependency.
-------------------------------------------------------------------
Sun Apr 29 21:09:19 UTC 2012 - dimstar@opensuse.org
- Update to version 1.12.2:
+ Allow applications to create 0x0 xlib surfaces, such as used by
LibreOffice (fdo#49118)
+ Trim composite extents for SOURCE/CLEAR operators to the mask.
+ Use fallback fonts in PDF for unhandled computed glyph widths
(fdo#48349)
+ Handle snapshots of recording surfaces for analysing pattern
extents. Fixes a regression of reporting the PDF bounding box
as being the page size.
+ Fix allocation size for PDF pattern ids. (fdo#49089)
+ Fix emission of rectilinear dashed segments, with and without
scaling, and application of degenerate line joins.
+ Clamp unbounded fixup polygons to the clip extents.
+ Prevent infinite loop due to rounding errors whilst
incrementing along dashes.
+ Prevent overflow for inline a8 span filling.
+ Miscellaneous build fixes for Cygwin on Windows and Solaris.
- Drop cairo-fix-wrong-allocation.patch: fixed upstream.
-------------------------------------------------------------------
Sat Apr 21 15:34:36 UTC 2012 - jeffm@suse.com
- Add cairo-fix-wrong-allocation: fix wrong allocation in
_cairo_pdf_surface_add_source_surface (bnc#758422).
-------------------------------------------------------------------
Mon Mar 26 18:57:45 UTC 2012 - zaitor@opensuse.org
- Update to version 1.12.0:
+ Introduction of a new procedural pattern: the mesh gradient.
+ New API to create a callback pattern:
cairo_pattern_create_raster_source.
+ XCB is now a supported backend.
+ New common API to address any surface as an image and so allow
direct modification of the raster data:
cairo_surface_create_similar_image, cairo_surface_map_to_image,
and cairo_surface_unmap_image.
+ Many performance improvements.
+ Introduction of new antialias hints (NONE, FAST, GOOD, BEST).
+ Introduction of a new observation architecture:
cairo_surface_observer_t.
+ OpenGL backend has seen significant work including the port to
GLESv2 and the exploitation of advanced hardware features.
- Enable build of XCB backend as it's now officially supported: set
%build_xcb_backend macro to 1.
- Note that we don't build Xlib/XCB support as it's disabled by
default upstream.
- Also add pkgconfig(xcb-shm) BuildRequires for XCB/SHM support.
- Drop cairo-fix-libs.patch: fixed upstream.
-------------------------------------------------------------------
Tue Feb 14 09:59:51 UTC 2012 - vuntz@opensuse.org
- Ship additional COPYING files that come with some utilities.
- Fix license of the tool subpackage: it is GPL-3.0+ (bnc#739748).
- Change the group of library subpackages from
Development/Libraries/X11 to System/Libraries.
-------------------------------------------------------------------
Fri Dec 9 11:48:43 UTC 2011 - coolo@suse.com
- fix license to be in spdx.org format
-------------------------------------------------------------------
Fri Sep 30 20:07:46 UTC 2011 - coolo@suse.com
- add libtool as buildrequire to make the spec file more reliable
-------------------------------------------------------------------
Sat Sep 17 22:31:04 UTC 2011 - jengelh@medozas.de
- Remove redundant tags/sections from specfile
- Use %_smp_mflags for parallel build
- Fix baselibs requires for cairo-devel and make it available
-------------------------------------------------------------------
Mon Aug 29 12:06:00 UTC 2011 - coolo@novell.com
- Add cairo-fix-libs.patch: disable lto for cairo-sphinx as it
breaks with -Wl,--as-needed.
-------------------------------------------------------------------
Tue Feb 22 15:19:31 CET 2011 - vuntz@opensuse.org
- Add missing libcairo-gobject2 to baselibs.conf.
-------------------------------------------------------------------
Mon Dec 27 22:30:26 CET 2010 - dimstar@opensuse.org
- Update to version 1.10.2:
+ fdo#31632: Fix embedding of grayscale jpegs in PS.
+ Fix the reported path of extents containing a curve.
+ Fix the compositing of unaligned boxes.
+ Reset the clipper in PDF upon finish.
+ Fix degenerates arcs to become a degenerate line.
+ Build support for autoconf 2.67
+ Fix painting of transformed patterns in PS
+ fdo#24688: Fix the EPS bounding box for PS and Fix the missing
content for EPS
+ fdo#24691: Fix regression upon changing page size in PS/PDF
+ Only use ActualText with PDF-1.5 documents
+ Fix the bbox for type1 fallbacks.
+ fdo#31140: Reset the color after ending the context in PDF
+ fdo#31062: Fix the advance of subsetted type1 fonts
+ Fix handling of EXTEND_NONE gradients for PDF
+ Restrict in-place optimisation for a8 image masks with SOURCE
-------------------------------------------------------------------
Tue Sep 7 13:12:10 CEST 2010 - vuntz@opensuse.org
- Do not build the xcb backend: upstream recommends to not use it
for now.
- Add a build_gl_backend define to easily enable the build of the
gl backend, which will add a Mesa-devel BuildRequires. It's
disabled by default.
- Add a build_xcb_backend define to easily enable the build of the
xcb backend, which will add a pkgconfig(xcb) BuildRequires. It's
disabled by default.
-------------------------------------------------------------------
Tue Sep 7 01:39:54 CEST 2010 - vuntz@opensuse.org
- Update to version 1.10.0:
+ Compared to 1.9.14, this version contains only small fixes.
+ The following is the major new changes in cairo 1.10, that were
already in our previous packages of 1.9.
+ Inclusion of cairo-trace, a tracing utility.
+ Many performance improvements.
+ Better support for printing, including file size reductions
when an image is included more than once in the document.
+ Resurrect RGB16 format.
+ Add cairo_region_t.
+ Better interoperation with acceleration architectures, thanks
to the ability to share ardware resources through the new
cairo_device_t.
- Update cairo-modules-no-version.patch to add use -avoid-versoin
for cairo-sphinx too.
- Create a libcairo-gobject2 subpackage for a gobject integration
library. Add pkgconfig(gobject-2.0) BuildRequires for this.
- Rename cairo-utils to cairo-tools, to follow informal packaging
convention. Add appropriate Provides/Obsoletes.
- Explicitly pass --enable-fc, --enable-ft to configure.
- Pass --enable-tee to fix build for the fdr (flight data
recorder), as well as the sphinx tool.
-------------------------------------------------------------------
Wed Jul 28 12:38:42 CEST 2010 - dimstar@opensuse.org
- Update to version 1.9.14:
+ fdo#29008: Clip doesn't work for text on the image backend
+ fdo#29114: Add explicit dependency for cxx
+ fdo#29120, fdo#29121, fdo#29122, fdo#29124, fdo#29125: Fix
regressions in reporting clip extents
-------------------------------------------------------------------
Wed Jul 21 16:36:50 CEST 2010 - vuntz@opensuse.org
- Clean up update to 1.9.12.
- Split main package in libcairo2, libcairo-script-interpreter2 and
cairo-utils subpackages, to follow the shared library policy.
Note that libcairo2 provides/obsoletes cairo.
- Change freetype2-devel, libpng-devel, xorg-x11-devel,
xorg-x11-libxcb-devel BuildRequires to pkgconfig() BuildRequires
for: fontconfig, freetype2, libpng, pixman-1, x11, xcb, xrender.
- Remove Provides/Obsoletes for libpixman <= 0.1.1 (this was for
very old versions of SUSE Linux).
- Remove fontconfig-devel, freetype2-devel, libpng-devel,
xorg-x11-devel, xorg-x11-libX11-devel, xorg-x11-libXrender-devel,
xorg-x11-libxcb-devel Requires of devel package: they're now all
required with the automatically added pkgconfig().
- Fix self-obsoletion of cairo-doc.
-------------------------------------------------------------------
Mon Jul 19 12:13:18 UTC 2010 - dimstar@opensuse.org
- Update to version 1.9.12:
+ Various API additions (see NEWS for details).
+ Bug fixes.
+ Updated documentation.
- Remove gcc-c++ BuildRequires.
-------------------------------------------------------------------
Thu Jul 8 23:00:26 CEST 2010 - dimstar@opensuse.org
- Update to version 1.9.10:
+ Fix many bugs introduced in 1.9.x releases.
+ Add WGL interface for cairo-gl
+ Include the downstream patch to honour the user's LCD filtering
preferences for subpixel rendering of fonts
- Changes from version 1.9.8:
+ Various API additions (see NEWS for details).
+ Backend-specific improvements:
- cairo-gl: many changes
- cairo-xlib:
. access to the underlying connection to the Display is now
thread-safe
. attempt to use PolyModeImprecise when compositing
trapezoids
- cairo-svg: enable SVG to reference external image through the
use an extended MIME data type.
- Changes from version 1.9.6:
+ Various API additions (see NEWS for details).
+ Completely drop cairo-glitz.
+ Many improvements for drawing of dashed strokes.
+ Optimize spans-based renderers for repeated rows.
+ Backend-specific improvements:
- add cairo-drm backend
- start using GLSL to accelerate many operations in cairo-gl
- make cairo-image faster
- cairo-quartz fixes
- improvement to embedding jpeg/jpeg2000 data in cairo-pdf
- fix printing of rotated user fonts in cairo-ps
- Changes from version 1.9.4:
+ Various API additions (see NEWS for details).
+ New cairo-test-trace utility.
+ Add server-side gradients to xlib backend.
+ New experimental backends: Qt, OpenVG, OpenGL.
+ Fix long-standing bug with self-intersecting strokes.
- Changes from version 1.9.2:
+ Various API additions (see NEWS for details).
+ New CairoScript experimental backend.
+ New cairo-trace and cairo-perf-trace utilities.
+ Test suite overhaul.
+ Add polygon rasterisation.
+ Add copy-on-write snapshot support.
+ Various bug fixes.
- Add gcc-c++ BuildRequires: one linker stage requires it.
- Add cairo-modules-no-version.patch to build the modules not as
versioned shared objects
- Drop cairo-1.8.6-repeat-modes.patch and cairo-lcd-filter.patch,
obsoleted by upstream changes.
-------------------------------------------------------------------
Sun Feb 21 17:43:17 CET 2010 - vuntz@opensuse.org
- Update to version 1.8.10:
+ General Bug fixes:
- Fix path construction for the case of cairo_curve_to
immediately after cairo_new_sub_path followed at some point
by cairo_close_path.
- Fix for cairo_push_group or cairo_pop_group with a non-empty
current path.
- Fix to correctly report an error if
cairo_surface_set_fallback_resolution is called with a value
of 0 (in either axis) (fdo#23067).
- Fix to handle a cairo_arc of radius 0 as equivalent to a
cairo_line_to to the center coordinate.
+ cairo-xlib:
- Fix to correctly copy from a Window source (fdo#12996).
+ cairo-ft:
- Fix conversion of freetype index to UCS4 value.
+ cairo-pdf:
- Fix Type 1 subsetting to avoid generating corrupt data
(lp#419143).
- Fix Type 1 subsetting to correctly identify binary eexec
data.
- Fix Type 1 subsetting to include fixed-content portion in the
embedded font.
- Fix Type 1 subsetting to append "cleartomark" operator for
binary fonts that don't include it.
+ Build fixes:
- Fix to compile on OpenBSD.
-------------------------------------------------------------------
Wed Dec 16 11:07:29 CET 2009 - jengelh@medozas.de
- Package baselibs.conf as a source
- Add baselib definitions for SPARC
-------------------------------------------------------------------
Mon Oct 5 18:16:03 CEST 2009 - vuntz@opensuse.org
- Go back to cairo 1.8.8, for maintenance reasons. Changes from
1.8.6 that we had before:
+ build fixes
+ fix uninitialised status return within
_cairo_clip_intersect_mask().
+ avoid transforming nearly-degenerate matrices into degenerate
matrices (bmo#467423)
+ a few FreeType font handling bugs were fixed (fdo#21985,
fdo#21706)
+ ensure win32 font backend sets the return value to -1
(indicating the absent glyph) if the font index lookup for the
unicode character fails (fdo#20255)
+ improved documentation (fdo#20095, fdo#20154, fdo#20180,
fdo#20183, fdo#20182, fdo#20441)
- Drop cairo-missing-include-fdo22610.patch: not needed with this
version.
- Add cairo-1.8.6-repeat-modes.patch: this is a patch used by
Fedora and Ubuntu to improve performance.
- Add cairo-lcd-filter.patch, similar to the old
cairo-lcd-filter-fdo10301.patch patch we had. But we're now using
the Debian/Ubuntu/Mandriva version for better maintainability.
- Explicitly pass --enable-pdf to configure because we require PDF
support.
-------------------------------------------------------------------
Sun Aug 2 01:32:06 CEST 2009 - captain.magnus@opensuse.org
- Fix packaging bug (Use %{_libdir}/cairo/*.so.* instead of
%dir %{_libdir}/cairo/*.so.*)
-------------------------------------------------------------------
Fri Jul 3 22:14:06 CEST 2009 - captain.magnus@opensuse.org
- Update to version 1.9.2:
+ Many API changes, fixes and other updates. See NEWS for full
details
+ New experimental backend: CairoScript
+ New utilities: cairo-trace and cairo-perf-trace
- Remove cairo-lcd-filter-fdo10301.patch. This patch was added to
cairo, but later removed in commit
5d887ad5dca5af0f8216830d1b04d08a5aba9bee
- Don't use autoreconf -f -i
- Enable CairoScript and svg backends with configure
- Add cairo-missing-include-fdo22610.patch to fix a missing
include. Keeps OBS happy.
-------------------------------------------------------------------
Sun Feb 15 06:55:23 CET 2009 - mboman@suse.de
- Remove bugzilla-104365.patch. Symptoms as described
in bnc#104365 are no longer an issue.
- Remove cairo-ac.patch. Not needed anymore
- Replace cairo-1.4.10-lcd-filter-1.patch with
cairo-lcd-filter-fdo10301.patch and updated so that it applied to
our version of cairo.
-------------------------------------------------------------------
Wed Jan 21 14:23:25 IST 2009 - msuman@suse.de
- Continue to provide the "la" files for SUSE releases <= 11.1
-------------------------------------------------------------------
Tue Jan 13 21:22:00 CET 2009 - crrodriguez@suse.de
- remove static libraries and "la" files
-------------------------------------------------------------------
Sat Dec 20 09:10:35 EST 2008 - mboman@suse.de
- Update to version 1.8.6:
+ Many API changes, fixes and other updates. See NEWS for full details
-------------------------------------------------------------------
Wed Dec 10 12:34:56 CET 2008 - olh@suse.de
- use Obsoletes: -XXbit only for ppc64 to help solver during distupgrade
(bnc#437293)
-------------------------------------------------------------------
Mon Dec 8 12:20:35 EST 2008 - mboman@suse.de
- Update to version 1.8.4:
+ Many API changes, fixes and other updates. See NEWS for full details
-------------------------------------------------------------------
Tue Nov 11 16:54:06 CET 2008 - ro@suse.de
- SLE-11 uses PPC64 instead of PPC, adapt baselibs.conf
-------------------------------------------------------------------
Tue Nov 4 14:17:20 CST 2008 - maw@suse.de
- Disable the glitz backend (bnc#429280).
-------------------------------------------------------------------
Mon Nov 3 02:00:15 CET 2008 - vuntz@novell.com
- Remove cairo-1.0.2-depth-fix-1.patch: it's fixed upstream and I
trust upstream more than us about the right fix :-)
- Remove cairo-pixman-version.patch: not needed anymore.
-------------------------------------------------------------------
Thu Oct 30 12:34:56 CET 2008 - olh@suse.de
- obsolete old -XXbit packages (bnc#437293)
-------------------------------------------------------------------
Tue Sep 30 07:06:06 WST 2008 - mboman@suse.de
- Update to version 1.8.0:
+ Many API changes. See NEWS for full details
+ cairo-xlib: Improved performance with X server without Render
+ cairo-ft: respecting FC_FT_FACE
+ cairo-directfb: backend improvements
+ Misc other fixes
-------------------------------------------------------------------
Tue Sep 23 11:55:35 CDT 2008 - maw@suse.de
- Add cairo-pixman-version.patch.
-------------------------------------------------------------------
Mon Sep 22 14:47:09 CDT 2008 - maw@suse.de
- Update to version 1.7.6:
+ Build improvements
+ API changes since 1.7.4:
* Remove cairo_font_options_set_lcd_filter and
cairo_font_options_get_lcd_filter
* Replace cairo_has_show_glyphs with
cairo_surface_has_show_glyphs
* Add cairo_text_cluster_flags_t to
cairo_show_text_glyphs, cairo_scaled_font_text_to_glyphs,
and cairo_user_scaled_font_text_to_glyphs_func_t
* Note that there have been no API changes with respect to
previous stable versions of cairo (1.0.x, 1.2.x, 1.4.x, or
1.6.x).
+ Bugs fixed: bmo453199#c5, bfo#16819
+ Misc other fixes.
-------------------------------------------------------------------
Wed Aug 27 23:02:25 CEST 2008 - mboman@novell.com
- Update to version 1.7.4:
+ Including the missing header file cairo-user-font-private.h
+ Improvements around cairo text API.
+ New API allowing the user of cairo API to provide drawings for glyphs
in a font.
+ show_text_glyphs - new API
+ LCD subpixel filtering using FreeType
+ Toy font face constructor and getter
+ FreeType: respecting FC_FT_FACE
+ PS/PDF: More efficient output
+ Xlib: Dithering
+ Xlib: Avoid rendering glyphs out of surface bounds
+ Xlib: Improved performance with Xrender-less X servers
+ Directfb: backend improvements
+ Countless bugs have been fixed and optimizations made
-------------------------------------------------------------------
Mon Jun 9 23:02:25 CEST 2008 - maw@suse.de
- Update to version 1.6.4:
+ Improved PDF and PostScript output
+ Support for arbitrary X server visuals
+ A new Quartz backend and a new "win32 printing" backend
+ Many bug fixes
+ For a fuller account of what's new, see the NEWS file
included in the distribution
- Tag patches; temporarily disable several pending rebasing.
-------------------------------------------------------------------
Mon Apr 14 12:57:44 CEST 2008 - aj@suse.de
- Remove dependency on gtk-doc and own the directories instead.
- Properly provide libpixman.
- Change ldconfig usage in post scripts.
-------------------------------------------------------------------
Mon Apr 14 11:54:13 CEST 2008 - schwab@suse.de
- Fix configure script with patch cairo-ac.patch.
-------------------------------------------------------------------
Thu Apr 10 12:54:45 CEST 2008 - ro@suse.de
- added baselibs.conf file to build xxbit packages
for multilib support
-------------------------------------------------------------------
Mon Jan 28 11:00:52 CST 2008 - maw@suse.de
- Update to version 1.4.14:
+ Fixes backported from the 1.5 development branch:
* Fix a regression (which first appeared in 1.4.12) where
stroking under a large scale would sometimes incorrectly
replace a miter join with a bevel join
+ Fix handling of fonts that contain a mixture of outline and
bitmapped glyphs; there was a change in this handling in
1.4.12 that improved some cases and also regressed other
cases; now, all cases should be handled quite well
+ Fix xlib backend to not consider recent X server release as
having a buggy repeat implementation in the Render extension
+ Fix several bugs in cairo's PostScript output; these include
making the PostScript output more compatible with recent
versions of ghostscript that are more strict about Type 3
fonts, for example.
-------------------------------------------------------------------
Fri Dec 21 03:54:26 CET 2007 - maw@suse.de
- Update to version 1.4.12:
+ Avoid overflow when allocating large buffers
+ Fix crash with cairo_pattern_set_user_data
+ Fix broken locking in cairo-ft error path
+ Avoid crash when cleaning up after Render extension
+ Avoid crash for zero-sized bitmap glyph
+ Avoid crash with type-1 fonts and ft and atsui enabled
+ Fix many error-handling cases in the Quartz/ATSUI code
+ Eliminate cairo_stroke crash with scaling near zero
+ Fix PDF linear gradients without stops at 0.0 and 1.0
+ Fix PDF CFF subsetting to work with Apple Preview
+ Report proper errors on out-of-memory on win32
+ Fix EXTEND_NONE gradients for cairo-quartz
+ Fix odd-number-of-dashes dashing for cairo-quartz
+ Fix erroneous results from cairo_stroke_extents
+ Force non-AA text when bitmap strikes are available
+ Fix cairo-atsui font metrics
+ Avoid drawing shutdown for glyph-not-found in font
+ Don't raise an error for creating an empty path
+ Free glyph surfaces after uploading to X server cache.
-------------------------------------------------------------------
Wed Jul 4 15:00:38 CEST 2007 - sbrabec@suse.cz
- Updated to version 1.4.10:
* Eliminate X errors that were killing OO.o
* Use IncludeInferiors when using xlib surface as a source
* Optimize drawing of many rectangles
* Thread-safe surface-cache for solid patterns
* Surface cache for solid patterns
* Internal cleanup of error handling
* Repaired mutex initialization
* PDF Improvements
* Performance optimizations
* More malloc reduction
* Fix a crash due to a LOCK vs. UNLOCK typo
* Backend-specific fixes
* Miscellaneous fixes
-------------------------------------------------------------------
Mon Jun 18 14:05:05 CDT 2007 - maw@suse.de
- Add %run_ldconfig to %post and %postun sections.
-------------------------------------------------------------------
Mon Mar 26 18:19:24 CEST 2007 - sbrabec@suse.cz
- Disabled DirectFB by default (#256775).
- Ported bugzilla-104365.patch.
-------------------------------------------------------------------
Tue Mar 13 12:03:10 CET 2007 - sbrabec@suse.cz
- Updated to version 1.4.0:
* Performance improvements.
* API additions.
* Many bug fixes.
* Documentation improvements.
- Enabled XCB and DirectFB backends.
-------------------------------------------------------------------
Fri Feb 2 16:47:27 CET 2007 - sbrabec@suse.cz
- Removed references to /opt/gnome.
- Fixed devel dependencies.
-------------------------------------------------------------------
Fri Jan 26 19:12:23 CET 2007 - jhargadon@suse.de
- removed patch cairo-remove-requires-private.patch (#237155)
-------------------------------------------------------------------
Tue Jan 23 01:44:41 CET 2007 - ro@suse.de
- drop requires for gnome-filesystem
-------------------------------------------------------------------
Tue Oct 24 22:58:14 CEST 2006 - jhargadon@suse.de
- update to version 1.2.4
- fixed several rendering bugs
- add cairo-1.2.4-lcd-filter-1.patch to resolve bug #213989
-------------------------------------------------------------------
Thu Sep 14 17:35:13 CEST 2006 - sbrabec@suse.cz
- Create correct dependencies in older products.
-------------------------------------------------------------------
Fri Aug 18 00:32:31 CEST 2006 - jhargadon@suse.de
- update to version 1.2.2
- Fix crashes with BGR X servers
- Fix the "disappearing text" bug
- Fix broken image fallback scaling
- Fix inadvertent semantic change of font matrix translation
- Fix create_similar to preserve fallback resolution and font options
-------------------------------------------------------------------
Wed Aug 16 15:54:33 CEST 2006 - gekker@suse.de
- Disable gtk-doc, it comes prebuilt and this decreases build deps
-------------------------------------------------------------------
Fri Jul 28 20:32:21 CEST 2006 - gekker@suse.de
- Update to version 1.2.0
- Remove upstreamed patches
- API addition: cairo_xlib_surface_get_width,cairo_xlib_surface_get_height
- new features:
Dots can now be drawn by using CAIRO_LINE_CAP_ROUND with
degenerate sub-paths, (cairo_move_to() followed by either
cairo_close_path() or a cairo_line_to() to the same location).
- many bugfixes
-------------------------------------------------------------------
Fri May 12 22:54:47 CEST 2006 - joeshaw@suse.de
- Add a patch to fix a crash in Nautilus, backported from 1.0.4.
bnc #174152
-------------------------------------------------------------------
Fri Apr 28 18:46:08 CEST 2006 - mfabian@suse.de
- Bugzilla #104365: delete fontconfig pattern elements before
trying to add them if the intention is to override default
settings.
-------------------------------------------------------------------
Thu Mar 23 22:16:32 CET 2006 - gekker@suse.de
- Fixes cairo crash in evolution with specific mails (#159675)
- CVE-2006-0528
-------------------------------------------------------------------
Fri Jan 27 01:06:04 CET 2006 - ro@suse.de
- use -fstack-protector (merged from meissner)
-------------------------------------------------------------------
Fri Jan 27 01:04:48 CET 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
-------------------------------------------------------------------
Wed Jan 25 11:53:15 CET 2006 - sbrabec@suse.cz
- Removed Xlib version fb repeating picture bug check (#100469).
-------------------------------------------------------------------
Mon Jan 23 16:55:42 CET 2006 - dreveman@suse.de
- Fix 16bpp issue.
-------------------------------------------------------------------
Wed Jan 11 12:58:11 CET 2006 - sbrabec@suse.cz
- Do not require libpixman, it's included now.
- Obsolete no longer needed libpixman.
-------------------------------------------------------------------
Wed Nov 23 19:18:41 CET 2005 - gekker@suse.de
- Fix broken build (Thanks to Richard Guenther for the patch).
-------------------------------------------------------------------
Tue Nov 1 18:03:03 CET 2005 - sbrabec@suse.cz
- Updated to version 1.0.2.
-------------------------------------------------------------------
Tue Oct 4 14:26:10 CEST 2005 - sbrabec@suse.cz
- Enabled ps and pdf backends (#120049).
-------------------------------------------------------------------
Fri Sep 9 10:46:04 CEST 2005 - sbrabec@suse.cz
- Re-enabled glitz backend (#116075).
-------------------------------------------------------------------
Sat Sep 3 00:09:55 CEST 2005 - matz@suse.de
- Fix last change.
-------------------------------------------------------------------
Fri Sep 2 22:25:43 CEST 2005 - gekker@suse.de
- Remove Requires.private from the cairo.pc file as it causes
build failures in gcc.
-------------------------------------------------------------------
Thu Sep 1 19:44:25 CEST 2005 - gekker@suse.de
- Update to released version 1.0.0
- Remove upsteamed patch
-------------------------------------------------------------------
Tue Aug 30 15:06:37 CEST 2005 - mfabian@suse.de
- Bugzilla #113602: add patch from bugzilla.gnome.org to
fix crashes in pangocairo. See also:
http://bugzilla.gnome.org/show_bug.cgi?id=313685
http://bugzilla.gnome.org/attachment.cgi?id=50878&action=view
-------------------------------------------------------------------
Mon Aug 29 16:13:45 CEST 2005 - mfabian@suse.de
- Bugzilla #113545: add patch by Zhe Su to support embedded
bitmaps.
-------------------------------------------------------------------
Thu Aug 18 13:57:14 CEST 2005 - kukuk@suse.de
- RPM can calculate dependencies much better than using a
hardcoded list
-------------------------------------------------------------------
Wed Aug 17 18:45:51 CEST 2005 - gekker@suse.de
- Update to version 0.9.2
-------------------------------------------------------------------
Wed Aug 3 17:40:31 CEST 2005 - sbrabec@suse.cz
- Xlib version fb repeating picture bug check update (#100469).
-------------------------------------------------------------------
Tue Aug 2 02:56:14 CEST 2005 - gekker@suse.de
- Fix requirements
-------------------------------------------------------------------
Mon Aug 1 18:49:24 CEST 2005 - gekker@suse.de
- Updated to version 0.6.0.
-------------------------------------------------------------------
Wed Jun 1 17:48:46 CEST 2005 - sbrabec@suse.cz
- Updated to version 0.5.0.
-------------------------------------------------------------------
Wed Jun 1 15:43:41 CEST 2005 - sbrabec@suse.cz
- Fixed devel requirements.
-------------------------------------------------------------------
Mon May 9 18:28:01 CEST 2005 - sbrabec@suse.cz
- Packaged license files.
-------------------------------------------------------------------
Mon May 9 17:56:07 CEST 2005 - sbrabec@suse.cz
- Updated to version 0.4.0.
-------------------------------------------------------------------
Wed Jan 26 19:07:56 CET 2005 - sbrabec@suse.cz
- Updated to version 0.3.0.
-------------------------------------------------------------------
Wed Jan 26 11:41:29 CET 2005 - meissner@suse.de
- Added libpng-devel-packages to nfb #49052
-------------------------------------------------------------------
Wed May 19 19:15:33 CEST 2004 - clahey@suse.de
- Updated to 0.1.23.
-------------------------------------------------------------------
Tue Apr 20 13:53:51 CEST 2004 - uli@suse.de
- initial package