@pixelverse/strichjs-sdk 1.7.4 → 1.8.0
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/README.md +1 -2
- package/dist/strich-noesm.js +18 -18
- package/dist/strich.d.ts +69 -7
- package/dist/strich.js +16 -16
- package/package.json +19 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
The structure of this file follows the recommendations from: https://keepachangelog.com/en/1.1.0/
|
|
4
4
|
|
|
5
|
+
## [1.8.0] - 2025-05-27
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Preliminary support for scanning static images with new `ImageScanner` API.
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Bumped Emscripten WASM compiler to 4.0.9.
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Restored audio feedback in desktop/non-touch environments, we were waiting for touch activation only to unlock the Web Audio context.
|
|
18
|
+
|
|
19
|
+
## [1.7.5] - 2025-05-08
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- Fixed an out-of-bounds memory read in the Aztec decoder.
|
|
24
|
+
|
|
5
25
|
## [1.7.4] - 2025-04-28
|
|
6
26
|
|
|
7
27
|
### Added
|
package/README.md
CHANGED
|
@@ -7,5 +7,4 @@ For a list of recent changes, please refer to the [Changelog](https://docs.stric
|
|
|
7
7
|
|
|
8
8
|
Sample code showing how to integrate into popular web frameworks such as Angular, React and Vue is available on [Github](https://github.com/topics/strich-sdk).
|
|
9
9
|
|
|
10
|
-
STRICH is commercial software, its use is governed by the terms of the
|
|
11
|
-
Subscription License Agreement available in the Customer Portal.
|
|
10
|
+
STRICH is commercial software, its use is governed by the terms of the Subscription License Agreement available in the Customer Portal.
|