Releases: justvanrossum/drawbot-skia
Releases · justvanrossum/drawbot-skia
Release v0.5.1
- Pin python-bidi to 0.4.2 in setup.py, as 0.5 breaks things
Release v0.5.0
- Support COLR/COLRv1 fonts via blackrenderer (#85)
- Reformat all source code with Black.
Release v0.4.8
- Added exerimental PDFDocument class that allows to draw directly to PDF, instead of having to go via a skia.PictureRecorder
Release v0.4.7
- Made
newPage()
more compatible with Mac app: its arguments are now optional. (#14, thanks Jan Šindler!)
Release v0.4.6
- Added
listFontVariations()
(#10) - Added
listNamedInstances()
- Implemented
newDrawing()
, so multiple documents can be created in one run.
Release v0.4.5
- Added PointPen behavior to BezierPath (#9, thanks Jens Kutilek!)
Release v0.4.4
- Fixed
mp4
export with Python 3.6 on Windows
v0.4.3
- Added
svg
export support forsaveImage()
- Added
path.line(pt1, pt2)
- Added
shadow()
, but it is not 100% compatible with DrawBot's in some unavoidable ways.
v0.4.2
- Pinned optional pyffmpeg requirement to 1.6.1 for now.
- Added
linearGradient(...)
- Added
radialGradient(...)
(limited to a single center point and a zero start radius) - Add
random
,randint
,choice
andshuffle
from the random module to the default namespace.
v0.4.1
- Fixed a serious issue with the graphics state and multiple pages, that caused wrong paint properties on pages after the first.