@pixelverse/strichjs-sdk 1.12.2 → 1.13.1
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 +20 -0
- package/dist/strich-noesm.js +12 -18
- package/dist/strich.d.ts +4 -4
- package/dist/strich.js +12 -18
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
The structure of this file follows the recommendations from: https://keepachangelog.com/en/1.1.0/
|
|
4
4
|
|
|
5
|
+
## [1.13.1] - 2026-02-11
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Made `roundedFPs` and `curved` QR Code symbology properties optional. Omitting these properties will use their respective default values (`false` for both).
|
|
10
|
+
- Use a more appropriate (wider) default `regionOfInterest` for the PDF417 symbology.
|
|
11
|
+
|
|
12
|
+
## [1.13.0] - 2026-01-14
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- MSI Plessey is now a supported barcode symbology, enabled by adding `msi-plessey` symbology. Developed in the 1970s and rarely used these days, we consider it a legacy symbology – it has to be explicitly enabled. As it is not self-checking, we highly recommend configuring a restrictive `minLen` and `maxLen`. By default, a single Modulo 10 check digit is expected.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Optimized WebGL processing by removing redundancies and unnecessary resource allocation, resulting in a slight decrease in runtime.
|
|
21
|
+
- Updated internal development dependency updates.
|
|
22
|
+
|
|
5
23
|
## [1.12.2] - 2025-12-15
|
|
6
24
|
|
|
7
25
|
### Added
|
|
@@ -38,6 +56,8 @@ The structure of this file follows the recommendations from: https://keepachange
|
|
|
38
56
|
|
|
39
57
|
## [1.11.0] - 2025-10-27
|
|
40
58
|
|
|
59
|
+
This package is now published using Trusted Publishing on NPM.
|
|
60
|
+
|
|
41
61
|
### Added
|
|
42
62
|
|
|
43
63
|
- Added an overlay to zoom the camera stream. The control is shown if the browser and the selected camera support it, and the `showZoom` config option to `true` (the default value).
|