mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-03-13 16:33:28 -04:00
Prebuilt module for commit 0079da13db3cbc326645e4362be273bffa44d71b
This commit is contained in:
parent
ecc898999a
commit
ec98c5f71d
7 changed files with 33 additions and 7 deletions
28
CHANGELOG.md
28
CHANGELOG.md
|
@ -1,5 +1,31 @@
|
|||
# Change Log
|
||||
|
||||
## `unreleased`
|
||||
|
||||
### Added
|
||||
|
||||
- Allow paper core import in TypeScript (#1713).
|
||||
- Boolean: Improve performance from `O(n^2)` to nearly `O(n)` by the use of the
|
||||
sweep and prune algorithm (#1737).
|
||||
- Docs: Add support for nullable values.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix `PathItem#getCrossing()` to not return overlaps (#1409).
|
||||
- Fix regression in `Curve.getIntersections()` (#1638).
|
||||
- Fix edge cases in `CurveLocation.isCrossing()` (#1419, #1263).
|
||||
- Fix `SymbolItem#hitTestAll()` to return only one match per symbol item
|
||||
(#1680).
|
||||
- Fix handling of negative `Shape` sizes (#1733).
|
||||
- Fix parsing of RGB `Color` strings with percentages (#1736).
|
||||
- Fix `Shape` bounds when passing position in constructor (#1686).
|
||||
- Prevent nested group matrix from reset when transforming parent (#1711).
|
||||
- Boolean: Fix edge cases in overlap detection (#1262).
|
||||
- Boolean: Add check for paths with only one segment (#1351).
|
||||
- Boolean: Correctly handle open filled paths (#1647).
|
||||
- Boolean: Avoid winding number edge cases (#1619).
|
||||
- Docs: Fix some documentation return types (#1679).
|
||||
|
||||
## `0.12.3`
|
||||
|
||||
### Fixed
|
||||
|
@ -8,7 +34,7 @@
|
|||
- SVG Export: Fix viewport size of exported `Symbol` (#1668).
|
||||
- Handle non-invertible matrices in `Item#contains()` (#1651).
|
||||
- Improve documentation for `Item#clipMask` (#1673).
|
||||
- Improve TypeScript definitions (#1659, #1663, #1664, #1667)
|
||||
- Improve TypeScript definitions (#1659, #1663, #1664, #1667).
|
||||
|
||||
### Added
|
||||
|
||||
|
|
2
dist/docs/assets/js/paper.js
vendored
2
dist/docs/assets/js/paper.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Sun Dec 15 19:40:40 2019 +0100
|
||||
* Date: Sun Dec 15 20:09:20 2019 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
|
2
dist/paper-core.js
vendored
2
dist/paper-core.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Sun Dec 15 19:40:40 2019 +0100
|
||||
* Date: Sun Dec 15 20:09:20 2019 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
|
2
dist/paper-core.min.js
vendored
2
dist/paper-core.min.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Sun Dec 15 19:40:40 2019 +0100
|
||||
* Date: Sun Dec 15 20:09:20 2019 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
|
2
dist/paper-full.js
vendored
2
dist/paper-full.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Sun Dec 15 19:40:40 2019 +0100
|
||||
* Date: Sun Dec 15 20:09:20 2019 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
|
2
dist/paper-full.min.js
vendored
2
dist/paper-full.min.js
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Sun Dec 15 19:40:40 2019 +0100
|
||||
* Date: Sun Dec 15 20:09:20 2019 +0100
|
||||
*
|
||||
***
|
||||
*
|
||||
|
|
2
dist/paper.d.ts
vendored
2
dist/paper.d.ts
vendored
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Date: Sun Dec 15 19:40:40 2019 +0100
|
||||
* Date: Sun Dec 15 20:09:20 2019 +0100
|
||||
*
|
||||
* This is an auto-generated type definition.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue