@pixelverse/strichjs-sdk 1.11.0 → 1.12.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 CHANGED
@@ -2,6 +2,30 @@
2
2
 
3
3
  The structure of this file follows the recommendations from: https://keepachangelog.com/en/1.1.0/
4
4
 
5
+ ## [1.12.1] - 2025-12-05
6
+
7
+ ### Changed
8
+
9
+ - Rolled back binary-encoded WebAssembly to use Base64 encoding instead of UTF-8 due to errors in some customer installations.
10
+
11
+ ## [1.12.0] - 2025-12-04
12
+
13
+ ### Added
14
+
15
+ - The Micro QR Code symbology (ISO/IEC 18004:2015) is now supported, it is enabled by passing the symbology name `microqr`.
16
+ - Added a method to `BarcodeReader.setZoom()` to programmatically toggle the zoom, if the current device supports it.
17
+ - Added a method to `BarcodeReader.setFlashlight()` to programmatically toggle the flashlight, if the current device supports it.
18
+ - The app-supplied detection handler can now return a boolean or array of booleans to indicate if the passed detections were handled or not. Unhandled detections are not drawn on the overlay, and no audio or vibration feedback is emitted. This change is backwards compatible with existing detection handlers that do not return a value, in which case all detections are marked as handled.
19
+
20
+ ### Changed
21
+
22
+ - The encoding of the JavaScript artifacts is now UTF-8 instead of ASCII, allowing for a smaller distribution size due to more efficient encoding of the bundled WASM module.
23
+ - Updated Emscripten compiler to 4.0.20.
24
+
25
+ ### Fixed
26
+
27
+ - An incorrect default camera was being selected on iPhones with three cameras when using a French locale.
28
+
5
29
  ## [1.11.0] - 2025-10-27
6
30
 
7
31
  ### Added