Skip to content

Releases: bigtimebuddy/pixi-svg

v3.2.0

09 Jan 00:39
Compare
Choose a tag to compare

🎁 Added

  • Adds support browser-based module output (#36)

v3.1.0

11 Nov 14:45
Compare
Choose a tag to compare

Add

  • Fully-support arcs (i.e., a and A commands) in SVG by normalizing as bezier curves
  • Add support for stroke-opacity and fill-opacity SVG attributes

v3.0.0

27 Sep 16:31
Compare
Choose a tag to compare

🔥 Breaking Changes

  • Now ships ES2017 instead of ES5

🧹 Chores

  • Officially support for PixiJS v7
  • Convert source code to TypeScript
  • Auto-generate types

v2.3.0

08 Apr 20:39
Compare
Choose a tag to compare

Added

v2.2.0

27 May 14:10
Compare
Choose a tag to compare

Added

  • Adds a drawSVG method and makes the svg argument optional in the constructor. This enables re-using SVG objects as well as draw multiple <svg> elements to a single Graphics object.
const svg = new PIXI.SVG();
svg.clear();
svg.drawSVG(svgBufferOrElement);

v2.1.1

22 May 03:59
Compare
Choose a tag to compare

🐛 Fixed

  • Fix issue bundling with Parcel incorrectly using the browser field.

v2.1.0

05 May 15:20
Compare
Choose a tag to compare

Changes

  • Fixes bug with trailing spaces in <path> elements d attribute.
  • Added support to accept string in the constructor.

v2.0.0

23 Apr 20:37
Compare
Choose a tag to compare

Changes

  • Supports PixiJS v5+ (including 5.3.0's upcoming implementation of lineJoin, lineCap and miterLimit for strokes)
  • Fixed issues with inheritance of strokes in nested SVG elements
  • Provide TypeScript declaration
  • Fix absolute paths (#7) (thanks @DustinWoods)
  • Fix trailing ; on style (#5) (thanks @dpotekhin)
  • Upgraded to tinycolor2 to parse hex/rgb colors
  • Replaced Travis CI with GitHub Actions
  • Upgraded to Rollup to produce ESM, CommonJS and Browser bundles

1.0.1

29 Apr 00:24
Compare
Choose a tag to compare

Initial release