@pixelverse/strichjs-sdk 1.5.2 → 1.5.4
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 +17 -0
- package/dist/strich-noesm.js +3 -3
- package/dist/strich.d.ts +15 -0
- package/dist/strich.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
The structure of this file follows the recommendations from: https://keepachangelog.com/en/1.1.0/
|
|
4
4
|
|
|
5
|
+
## [1.5.4] - 2024-10-09
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Fixed an issue in Safari on iOS 18 that prevents the flashlight from being turned off after it has been turned on.
|
|
10
|
+
|
|
11
|
+
## [1.5.3] - 2024-10-07
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- Support optional Modulo 43 checksum for the Code 39 symbology. Setting the new symbology parameter `checksumMode` to `1` (validate) or `2` (validate and transmit) will expect a check digit. Please note that setting the parameter to `1` or `2` will lead to Code 39 barcodes that lack a valid check digit to be no longer readable.
|
|
16
|
+
- Support optional Modulo 16 checksum for the Codabar symbology. Please refer to the new `checksumMode` symbology parameter for details.
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- Removed overly aggressive pruning of candidates introduced in 1.5.2 that caused performance regressions in certain scenarios.
|
|
21
|
+
|
|
5
22
|
## [1.5.2] - 2024-09-18
|
|
6
23
|
|
|
7
24
|
### Added
|