@pixelverse/strichjs-sdk 1.4.6 → 1.4.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 +23 -0
- package/dist/strich-noesm.js +9 -9
- package/dist/strich.js +9 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
The structure of this file follows the recommendations from: https://keepachangelog.com/en/1.1.0/
|
|
4
|
+
|
|
5
|
+
## [1.4.8] - 2024-06-19
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Fixed a memory leak in the WebAssembly engine when running in debug mode.
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Request a smaller initial memory allocation for the WebAssembly engine (32MB instead of 64MB) to ease memory pressure on iOS. Safari currently has an open issue with WASM memory management that leads to 'Out of Memory' error in `StrichSDK.initialize()` and persists across reloads so can only be recovered from by closing and reopening the browser tab. The associated WebKit issue is: https://bugs.webkit.org/show_bug.cgi?id=222097
|
|
14
|
+
|
|
15
|
+
## [1.4.7] - 2024-06-03
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- Fixed an issue where the number of unique devices reported to the Customer Portal was incorrect. Existing devices were being counted multiple times. The number of scans was not affected.
|
|
20
|
+
- Gracefully handle the edge case where the device ID returned in the video track can not be found in the enumerated devices instead of throwing an internal error with detail message `Video track device not found in enumerated devices`. This state shouldn't be possible, but has been observed on Safari iOS in PWA mode.
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- Slightly improved PDF417 recognition rate for dense codes.
|
|
25
|
+
|
|
3
26
|
## [1.4.6] - 2024-04-04
|
|
4
27
|
|
|
5
28
|
### Added
|