@pqina/pintura 8.97.0 → 8.97.2
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 +8 -0
- package/locale/de_DE/core/de_DE.js +1 -0
- package/locale/en_GB/core/en_GB.js +1 -0
- package/locale/es_ES/core/es_ES.js +1 -0
- package/locale/fr_FR/core/fr_FR.js +1 -0
- package/locale/hi_IN/core/hi_IN.js +1 -0
- package/locale/it_IT/core/it_IT.js +1 -0
- package/locale/ja_JP/core/ja_JP.js +1 -0
- package/locale/ko_KR/core/ko_KR.js +1 -0
- package/locale/nb_NO/core/nb_NO.js +2 -0
- package/locale/nl_NL/core/nl_NL.js +1 -0
- package/locale/pt_PT/core/pt_PT.js +1 -0
- package/locale/ru_RU/core/ru_RU.js +1 -0
- package/locale/sl_SI/core/sl_SI.js +1 -0
- package/locale/sv_SE/core/sv_SE.js +1 -0
- package/locale/zh_CN/core/zh_CN.js +1 -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.js +2 -2
- package/pintura.module.css +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 8.97.2 | 2026-06-01
|
|
4
|
+
|
|
5
|
+
- Fix issue where `markupEditorWillStartInteraction` would throw an internal error on pointerdown.
|
|
6
|
+
|
|
7
|
+
## 8.97.1 | 2026-04-27
|
|
8
|
+
|
|
9
|
+
- Fix issue where Pintura would crash when browser ran out of video memory.
|
|
10
|
+
|
|
3
11
|
## 8.97.0 | 2026-04-16
|
|
4
12
|
|
|
5
13
|
- Add polygon lasso tool to Retouch plugin.
|
|
@@ -12,6 +12,8 @@ export default {
|
|
|
12
12
|
labelEdit: 'Rediger',
|
|
13
13
|
labelClose: 'Lukk',
|
|
14
14
|
labelSupportError: `{features} støttes ikke på denne nettleseren`,
|
|
15
|
+
labelMemoryError: `The browser ran out of memory`,
|
|
16
|
+
|
|
15
17
|
labelColor: 'Farge',
|
|
16
18
|
labelWidth: 'Bredde',
|
|
17
19
|
labelSize: 'Størrelse',
|
package/package.json
CHANGED