@sythos/js_barcode_universal 1.5.0 → 1.5.2
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/README.md +9 -9
- package/bundle/sythos-barcode.esm.js +2 -2
- package/bundle/sythos-barcode.js +2 -2
- package/package.json +1 -1
- package/src/index.js +1 -1
package/README.md
CHANGED
|
@@ -118,8 +118,8 @@ The `unpkg` and `jsdelivr` fields point at the IIFE bundle, so a CDN needs no in
|
|
|
118
118
|
|
|
119
119
|
```html
|
|
120
120
|
<script src="https://unpkg.com/@sythos/js_barcode_universal"></script>
|
|
121
|
-
<script src="https://unpkg.com/@sythos/js_barcode_universal@1.5.
|
|
122
|
-
<script src="https://cdn.jsdelivr.net/npm/@sythos/js_barcode_universal@1.5.
|
|
121
|
+
<script src="https://unpkg.com/@sythos/js_barcode_universal@1.5.2"></script>
|
|
122
|
+
<script src="https://cdn.jsdelivr.net/npm/@sythos/js_barcode_universal@1.5.2"></script>
|
|
123
123
|
```
|
|
124
124
|
|
|
125
125
|
Pin the version for anything you ship; the unpinned form resolves to `latest` and will move under
|
|
@@ -229,7 +229,7 @@ time.
|
|
|
229
229
|
| MicroPDF417 | `micropdf417` | 2D | ✅ | ✅ |
|
|
230
230
|
| Micro QR Code | `microqr` | 2D | ✅ | ✅ |
|
|
231
231
|
| rMQR Code | `rmqr` | 2D | ✅ | ✅ |
|
|
232
|
-
| FrameQR
|
|
232
|
+
| Sythos Canvas QR profile — not DENSO FrameQR® compatible | `frameqr` | 2D | ✅ | ✅ |
|
|
233
233
|
| Aztec Rune | `aztecrune` | 2D | ✅ | ✅ |
|
|
234
234
|
| Compact PDF417 | `compactpdf417` | 2D | ✅ | ✅ |
|
|
235
235
|
| GS1 DataBar Omnidirectional / Truncated | `gs1databar14` | 1D | ✅ | ✅ |
|
|
@@ -370,9 +370,9 @@ const symbol = encodeRMQR('rMQR SAMPLE', { ecc: 'M' });
|
|
|
370
370
|
console.log(decodeRMQR(symbol).text);
|
|
371
371
|
```
|
|
372
372
|
|
|
373
|
-
###
|
|
373
|
+
### Sythos Canvas QR profile
|
|
374
374
|
|
|
375
|
-
`frameqr` is an explicitly scoped, non-certified
|
|
375
|
+
`frameqr` is an explicitly scoped, non-certified Sythos Canvas QR profile — not DENSO FrameQR® compatible. It reserves a bounded
|
|
376
376
|
square, circle or diamond artwork canvas inside an ECC-H QR Model 2 symbol. It is **not** a native
|
|
377
377
|
DENSO FrameQR encoder or decoder, and the package makes no DENSO interoperability claim. The
|
|
378
378
|
profile can be read from clean rendered rasters and is exposed through the normal `encode`/`decode`
|
|
@@ -622,16 +622,16 @@ MIT © 2026 Sythos (https://www.sythos.net). Every source file carries the heade
|
|
|
622
622
|
|
|
623
623
|
**The implementation is original Sythos work.** No third-party barcode source code is copied into
|
|
624
624
|
or shipped by this package. The symbologies are implemented from published descriptions of the
|
|
625
|
-
formats and from original Sythos data structures. MicroPDF417, Micro QR, rMQR and the
|
|
626
|
-
|
|
625
|
+
formats and from original Sythos data structures. MicroPDF417, Micro QR, rMQR and the Sythos
|
|
626
|
+
Canvas QR profile carry provenance and pending legal review in `NOTICE.md`. Independent
|
|
627
627
|
implementations and public technical material may be consulted for engineering review or
|
|
628
628
|
black-box verification; no third-party source code is copied or shipped. The distributed package has no runtime third-party
|
|
629
629
|
dependencies. See [`NOTICE.md`](NOTICE.md) and the per-format files in [`licenses/`](licenses/).
|
|
630
630
|
|
|
631
631
|
Public DENSO FrameQR material was consulted only to document the compatibility boundary. ZXing
|
|
632
632
|
was used only as an independent black-box validation tool; no ZXing source code or tables are
|
|
633
|
-
copied or shipped. The
|
|
634
|
-
interoperability or co-author attribution.
|
|
633
|
+
copied or shipped. The Sythos Canvas QR profile is not DENSO FrameQR® compatible and does not
|
|
634
|
+
claim native DENSO interoperability or co-author attribution.
|
|
635
635
|
|
|
636
636
|
**Trademark is not licence.** QR Code® is a registered trademark of DENSO WAVE; Aztec Code,
|
|
637
637
|
MaxiCode and GS1 DataBar are likewise marks of their owners. A trademark does not restrict
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Sythos Barcode Suite v1.5.
|
|
2
|
+
* Sythos Barcode Suite v1.5.2
|
|
3
3
|
*
|
|
4
4
|
* MIT License
|
|
5
5
|
*
|
|
@@ -16782,7 +16782,7 @@ function decodeStrict(image, options) {
|
|
|
16782
16782
|
}
|
|
16783
16783
|
|
|
16784
16784
|
/** Library version, matching package.json. */
|
|
16785
|
-
const VERSION = '1.
|
|
16785
|
+
const VERSION = '1.5.2';
|
|
16786
16786
|
|
|
16787
16787
|
__exports.listFormats = listFormats;
|
|
16788
16788
|
__exports.encode = encode;
|
package/bundle/sythos-barcode.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Sythos Barcode Suite v1.5.
|
|
2
|
+
* Sythos Barcode Suite v1.5.2
|
|
3
3
|
*
|
|
4
4
|
* MIT License
|
|
5
5
|
*
|
|
@@ -16783,7 +16783,7 @@ function decodeStrict(image, options) {
|
|
|
16783
16783
|
}
|
|
16784
16784
|
|
|
16785
16785
|
/** Library version, matching package.json. */
|
|
16786
|
-
const VERSION = '1.
|
|
16786
|
+
const VERSION = '1.5.2';
|
|
16787
16787
|
|
|
16788
16788
|
__exports.listFormats = listFormats;
|
|
16789
16789
|
__exports.encode = encode;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sythos/js_barcode_universal",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"description": "Read and write barcodes in JavaScript with zero runtime dependencies. QR Code, Micro QR, rMQR, FrameQR Code, Aztec Code and Rune, PDF417 variants, GS1 DataBar Omnidirectional/Truncated, EAN supplements and one-dimensional formats.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Sythos",
|
package/src/index.js
CHANGED