5.8 KiB
5.8 KiB
Change Log
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
Unreleased
0.8.4 - 2023-04-22
Added
- Implement
PartialEqforPaintand subtypes. Thanks to @hecrj
Changed
- MSRV bumped to 1.57, mainly because of the
pngcrate.
Fixed
ClipMasks larger than 8191x8191 pixels. Previously, the creation of a large mask viaClipMask::set_pathwould have created an empty mask.
0.8.3 - 2023-02-05
Fixed
- Performance regression, probably due to LLVM update in Rust. Thanks to @mostafa-khaled775
- Big-endian targets support. Thanks to @ids1024
0.8.2 - 2022-10-22
Added
Pixmap::from_vec.
Fixed
- Increase Conic to Quad conversion precision. This allows us to produce nicer round caps. Previously, they were not as round as needed.
0.8.1 - 2022-08-29
Fixed
- Conditional compilation of
FasterMinMaxon fallback platforms. Thanks to @CryZe
0.8.0 - 2022-08-27
Added
- AArch64 Neon SIMD support. Up to 3x faster on Apple M1. Thanks to @CryZe
Changed
FiniteF32,NormalizedF32andNonZeroPositiveF32types have been moved to thestrict-numcrate.- Rename
NormalizedF32::from_u8intoNormalizedF32::new_u8. - Rename
NormalizedF32::new_boundedintoNormalizedF32::new_clamped. - Use explicit SIMD intrinsic instead of relying on
safe_arch. - MSRV bumped to 1.51
0.7.0 - 2022-07-03
Added
tiny-skia-pathdependency that can be used independently fromtiny-skia. It contains thetiny-skiaBezier path implementation, including stroking and dashing. As well as all the geometry primitives (likePointandRect).
Changed
- When disabling the
stdfeature, one have to enableno-std-floatfeature instead oflibmnow.
0.6.6 - 2022-06-23
Fixed
- Panic in
Rect::roundandRect::round_out. Thanks to @Wardenfar
0.6.5 - 2022-06-10
Fixed
- Minimum
arrayrefversion.
0.6.4 - 2022-06-04
Fixed
- Panic during non-aliased hairline stroking at the bottom edge of an image.
0.6.3 - 2022-02-01
Fixed
- SourceOver blend mode must not be optimized to Source when ClipPath is present.
0.6.2 - 2021-12-30
Fixed
ClipMask::intersect_pathalpha multiplying.
0.6.1 - 2021-08-28
Added
- Support rendering on pixmaps larger than 8191x8191 pixels.
From now,
Pixmapis limited only by the amount of memory caller has. Transform::map_pointsPathBuilder::push_oval
0.6.0 - 2021-08-21
Added
- WASM simd128 support. Thanks to @CryZe
Changed
Transform::post_scaleno longer requires&mut self.- Update
pngcrate.
0.5.1 - 2021-03-07
Fixed
- Color memset optimizations should be ignored when clip mask is present.
ClipMask::intersect_pathlogic.
0.5.0 - 2021-03-06
Added
ClipMask::intersect_path- no_std support. Thanks to @CryZe
Changed
- Reduce
Transformstrictness. It's no longer guarantee to have only finite values, therefore we don't have to check each operation.
Removed
Canvas. CallPixmap/PixmapMutdrawing methods directly.
0.4.2 - 2021-01-23
Fixed
- Panic during path filling with anti-aliasing because of incorrect edges processing.
0.4.1 - 2021-01-19
Fixed
- Endless loop during stroke dashing.
0.4.0 - 2021-01-02
Changed
- Remove almost all
unsafe. No performance changes.
0.3.0 - 2020-12-20
Added
PixmapRefandPixmapMut, that can be created fromPixmapor from raw data.Canvas::set_clip_mask,Canvas::get_clip_mask,Canvas::take_clip_mask.
Changed
Canvasno longer owns aPixmap.Canvas::draw_pixmapandPattern::newacceptPixmapRefinstead of&Pixmapnow.- Improve clipping performance.
- The internal
ClipMasktype become public.
Fixed
- Panic when path is drawn slightly past the
Pixmapbounds.
Removed
Canvas::new
0.2.0 - 2020-11-16
Changed
- Port to Rust.
0.1.0 - 2020-07-04
Added
- Bindings to a stripped down Skia fork.