@pqina/pintura 8.67.4 → 8.68.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/package.json +1 -1
- package/pintura-iife.js +2 -2
- package/pintura-umd.js +2 -2
- package/pintura.css +2 -2
- package/pintura.d.ts +21 -2
- package/pintura.js +2 -2
- package/pintura.module.css +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 8.68.0 | 2023-11-16
|
|
4
|
+
|
|
5
|
+
- Add `foregroundColor`, `targetSize`, and `forceSquareCanvas` to `selectionToMask` options.
|
|
6
|
+
- Add `foregroundColor`, `targetSize`, `maskFormat`, `shapeFormat`, and `mimeType` to `createRetouchShape` options.
|
|
7
|
+
- Add correctly transformed `shape` to `selectionToMask` result object.
|
|
8
|
+
- Fix issue where mask wasn't correctly aligned when image was flipped or rotated.
|
|
9
|
+
- Fix issue where rectangular masks were rotated incorrectly.
|
|
10
|
+
- Fix issue where padding was incorrectly applied to the mask rectangle instead of the mask canvas.
|
|
11
|
+
- Fix stretched inpaint results when mask wasn't square, can now force square mask with `forceSquareCanvas`.
|
|
12
|
+
- Fix bug where Chrome 119 wouldn't correctly composite canvas operations.
|
|
13
|
+
|
|
3
14
|
## 8.67.4 | 2023-11-06
|
|
4
15
|
|
|
5
16
|
- Fix issue with path tool not drawing more than one anchor point inside other shape.
|
package/package.json
CHANGED