@pixelverse/strichjs-sdk 1.4.8 → 1.5.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 +40 -0
- package/dist/strich-noesm.js +13 -61
- package/dist/strich.d.ts +13 -11
- package/dist/strich.js +13 -61
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,46 @@
|
|
|
2
2
|
|
|
3
3
|
The structure of this file follows the recommendations from: https://keepachangelog.com/en/1.1.0/
|
|
4
4
|
|
|
5
|
+
## [1.5.0] - 2024-08-22
|
|
6
|
+
|
|
7
|
+
This is a major release with extensive under-the-hood improvements. No changes to existing configurations are necessary.
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- Improved read rates for the most popular 1D symbologies EAN/UPC and Code 128 across several benchmarks.
|
|
12
|
+
- Added ink spread compensation to EAN/UPC decoder, allowing the decoder to better decode barcodes where the ink has degraded to the point where bar widths are too narrow, making the barcode non-conformant with regard to the ISO specifications. No configuration change is necessary to take advantage of this feature.
|
|
13
|
+
- Added ISO/IEC 15424 symbology identifier to barcode detections. This is primarily useful for identifying GS1 payloads.
|
|
14
|
+
- Improved detection rectangle for 1D barcode detections.
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- Completely reworked core barcode segmentation and 1D barcode decoding logic, laying the groundwork for future features like multiple code detection and Augmented Reality (AR) mode. No changes to configuration are necessary.
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- Decreased misread ratio for EAN/UPC barcodes. Versions prior to 1.5 sometimes misread EAN/UPC barcodes.
|
|
23
|
+
- Fixed misplaced detection rectangle for PDF417 barcodes read in reverse orientation (visual-only).
|
|
24
|
+
- Increased read rates for QR codes at high resolutions.
|
|
25
|
+
|
|
26
|
+
### Removed
|
|
27
|
+
|
|
28
|
+
- Removed support for 2-digit and 5-digit EAN/UPC supplements. While refactoring the 1D core, we decided to remove this seldomly-used feature. Please contact us at hello@pixelverse.ch if you are interested in this capability.
|
|
29
|
+
- Removed support for WebGL1 in favor of WebGL2 which has been widely available for some time now (https://www.khronos.org/blog/webgl-2-achieves-pervasive-support-from-all-major-web-browsers). Setting the `impl` property in the locator configuration to `webgl1` no longer has an effect. Devices that do not support WebGL 2 will continue working, but will skip a preprocessing step which will have a negative impact on code recognition.
|
|
30
|
+
- Removed an unnecessary check for WebAssembly SIMD support. SIMD support is planned for the next major release.
|
|
31
|
+
- Removed `numScanlines` property from engine configuration. The engine now automatically determines an appropriate number of scanlines depending on the context.
|
|
32
|
+
|
|
33
|
+
## [1.4.9] - 2024-07-26
|
|
34
|
+
|
|
35
|
+
### Deprecated
|
|
36
|
+
|
|
37
|
+
- This is the last release to retain compatibility with WebGL 1. Future releases will require WebGL 2, which has been widely available for several years now.
|
|
38
|
+
|
|
39
|
+
### Fixed
|
|
40
|
+
|
|
41
|
+
- Decreased WASM size by using more space-efficient lookup tables in the PDF417 decoder.
|
|
42
|
+
- Decreased bundle size by not including some code that was only used for internal debugging purposes.
|
|
43
|
+
- Clarified documentation regarding availability of the `customLogoSrc` overlay configuration property.
|
|
44
|
+
|
|
5
45
|
## [1.4.8] - 2024-06-19
|
|
6
46
|
|
|
7
47
|
### Fixed
|