@pixelverse/strichjs-sdk 1.12.1 → 1.13.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 CHANGED
@@ -2,6 +2,27 @@
2
2
 
3
3
  The structure of this file follows the recommendations from: https://keepachangelog.com/en/1.1.0/
4
4
 
5
+ ## [1.13.0] - 2026-01-14
6
+
7
+ ### Added
8
+
9
+ - MSI Plessey is now a supported barcode symbology, enabled by adding `msi-plessey` symbology. Developed in the 1970s and rarely used these days, we consider it a legacy symbology – it has to be explicitly enabled. As it is not self-checking, we highly recommend configuring a restrictive `minLen` and `maxLen`. By default, a single Modulo 10 check digit is expected.
10
+
11
+ ### Changed
12
+
13
+ - Optimized WebGL processing by removing redundancies and unnecessary resource allocation, resulting in a slight decrease in runtime.
14
+ - Updated internal development dependency updates.
15
+
16
+ ## [1.12.2] - 2025-12-15
17
+
18
+ ### Added
19
+
20
+ - The SDK's camera selection logic can now be customized by providing a camera selector callback through `BarcodeReader.cameraSelector`. The callback receives the list of available cameras and returns the camera that should be used, or `undefined`, in which case the default logic is used.
21
+
22
+ ### Fixed
23
+
24
+ - Slightly improved Data Matrix detection rate by using a more precise grid mapping.
25
+
5
26
  ## [1.12.1] - 2025-12-05
6
27
 
7
28
  ### Changed
@@ -28,6 +49,8 @@ The structure of this file follows the recommendations from: https://keepachange
28
49
 
29
50
  ## [1.11.0] - 2025-10-27
30
51
 
52
+ This package is now published using Trusted Publishing on NPM.
53
+
31
54
  ### Added
32
55
 
33
56
  - Added an overlay to zoom the camera stream. The control is shown if the browser and the selected camera support it, and the `showZoom` config option to `true` (the default value).