@pqina/pintura 8.82.6 → 8.82.8
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 +9 -0
- package/locale/ja_JP/crop/ja_JP.js +0 -3
- package/locale/ko_KR/crop/ko_KR.js +1 -4
- 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 +14 -0
- package/pintura.js +2 -2
- package/pintura.module.css +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 8.82.8 | 2024-06-25
|
|
4
|
+
|
|
5
|
+
- Fix issue where setting `backgroundSize` property on elllipse would not impact texture rendering.
|
|
6
|
+
|
|
7
|
+
## 8.82.7 | 2024-06-24
|
|
8
|
+
|
|
9
|
+
- Fix issue with EXIF data not being written correctly for some JPEGs.
|
|
10
|
+
- Fix issue with text font dropdown sometimes throwing an error on Firefox when custom fonts were loaded.
|
|
11
|
+
|
|
3
12
|
## 8.82.6 | 2024-06-11
|
|
4
13
|
|
|
5
14
|
- Fix `strokeDash` property not working for lines.
|
|
@@ -43,13 +43,10 @@ export default {
|
|
|
43
43
|
cropLabelButtonRotateRight: '右に回転',
|
|
44
44
|
cropLabelButtonFlipHorizontal: '水平反転',
|
|
45
45
|
cropLabelButtonFlipVertical: '垂直反転',
|
|
46
|
-
|
|
47
46
|
cropLabelSelectPreset: 'トリミングの形',
|
|
48
|
-
|
|
49
47
|
cropLabelCropBoundary: 'トリミングの境界',
|
|
50
48
|
cropLabelCropBoundaryEdge: '画像の端',
|
|
51
49
|
cropLabelCropBoundaryNone: 'なし',
|
|
52
|
-
|
|
53
50
|
cropLabelTabRotation: '回転',
|
|
54
51
|
cropLabelTabZoom: '拡大縮小',
|
|
55
52
|
};
|
|
@@ -42,13 +42,10 @@ export default {
|
|
|
42
42
|
cropLabelButtonRotateRight: '오른쪽으로 회전',
|
|
43
43
|
cropLabelButtonFlipHorizontal: '수평 뒤집기',
|
|
44
44
|
cropLabelButtonFlipVertical: '수직 뒤집기',
|
|
45
|
-
|
|
46
45
|
cropLabelSelectPreset: '자르기 형태',
|
|
47
|
-
|
|
48
|
-
cropLabelCropBoundary: '자르기 경계',
|
|
46
|
+
cropLabelCropBoundary: '자르기 경계',
|
|
49
47
|
cropLabelCropBoundaryEdge: '이미지의 가장자리',
|
|
50
48
|
cropLabelCropBoundaryNone: '없음',
|
|
51
|
-
|
|
52
49
|
cropLabelTabRotation: '회전',
|
|
53
50
|
cropLabelTabZoom: '스케일',
|
|
54
51
|
};
|
package/package.json
CHANGED