@pixelverse/strichjs-sdk 1.5.4 → 1.6.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 +18 -0
- package/dist/strich-noesm.js +27 -13
- package/dist/strich.d.ts +106 -6
- package/dist/strich.js +27 -13
- package/package.json +1 -1
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.6.0] - 2024-11-25
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Added `PopupScanner`, an out-of-the-box, modal scanning dialog with minimal customization options, drastically simplifying SDK usage for simple barcode scanning use cases. You can now scan barcodes with a single call to `PopupScanner.scan()` – building a scanner UI and managing the `BarcodeReader` is done for you.
|
|
10
|
+
- Added localized error messages for Japanese, Chinese, Hindi, Vietnamese, Indonesian, Thai, Korean, Portuguese, Dutch, Belgian, Danish, Swedish, Norwegian and Finnish.
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- We now use the widely available Web Audio API for audible feedback. For now, we are using it to play the existing beep sound. Going forward, the Web Audio API will allow flexible customization of the sound played on scans.
|
|
15
|
+
|
|
16
|
+
## [1.5.5] - 2024-11-04
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- QR Codes that use "Mirror Imaging" feature (ISO/IEC 18004:2015, section 6.2) and have their rows/columns transposed are now supported.
|
|
21
|
+
- QR Codes were erroneously reported as having a symbology identifier of `]Q0` (Model 1 QR Codes) instead of `]Q1`.
|
|
22
|
+
|
|
5
23
|
## [1.5.4] - 2024-10-09
|
|
6
24
|
|
|
7
25
|
### Fixed
|