@pixelverse/strichjs-sdk 1.7.5 → 1.8.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 +23 -3
- package/README.md +1 -2
- package/dist/strich-noesm.js +18 -18
- package/dist/strich.d.ts +69 -0
- package/dist/strich.js +14 -14
- package/package.json +2 -1
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.1] - 2025-06-04
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Corrected a build system issue that caused the type definition for `EngineConfiguration.duplicateInterval` to be excluded. Special thanks to Johnervan Lee for reporting this issue.
|
|
10
|
+
|
|
11
|
+
## [1.8.0] - 2025-05-27
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- Preliminary support for scanning static images with new `ImageScanner` API.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Bumped Emscripten WASM compiler to 4.0.9.
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- Restored audio feedback in desktop/non-touch environments, we were waiting for touch activation only to unlock the Web Audio context.
|
|
24
|
+
|
|
5
25
|
## [1.7.5] - 2025-05-08
|
|
6
26
|
|
|
7
27
|
### Fixed
|
|
@@ -531,12 +551,12 @@ _This is the first public release. A special thank you to all pilot users for ge
|
|
|
531
551
|
|
|
532
552
|
- Added this CHANGELOG.md file to the project.
|
|
533
553
|
|
|
534
|
-
## [0.9.2] 2023-10
|
|
554
|
+
## [0.9.2] 2023-02-10
|
|
535
555
|
|
|
536
556
|
### Changed
|
|
537
557
|
|
|
538
558
|
- Started using `main` instead of `browser` target in `package.json` to avoid problems with SSR frameworks such as Next.js.
|
|
539
559
|
|
|
540
|
-
## [0.9.1] 2023-07
|
|
560
|
+
## [0.9.1] 2023-02-07
|
|
541
561
|
|
|
542
|
-
This is the first
|
|
562
|
+
This is the first release, distributed via NPMJS, for pilot users.
|
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.
|