Skip to content

Commit 6dda9c5

Browse files
author
Cube
authored
Merge pull request #117 from Dynamsoft/_dev
9.3.1
2 parents 3776b26 + 9c0ca07 commit 6dda9c5

16 files changed

+52
-50
lines changed

Api Reference.url

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[InternetShortcut]
2-
URL=https://www.dynamsoft.com/barcode-reader/programming/javascript/api-reference/?ver=9.3.0
2+
URL=https://www.dynamsoft.com/barcode-reader/programming/javascript/api-reference/?ver=9.3.1

README.md

+31-29
Large diffs are not rendered by default.

dist/dbr-9.3.0.browser.worker.js renamed to dist/dbr-9.3.1.browser.worker.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

dist/dbr.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/dbr.mjs

+3-3
Large diffs are not rendered by default.

dist/dbr.pure.esm.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/dbr.pure.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/dbr.pure.mjs

+2-2
Large diffs are not rendered by default.

dist/types/class/barcodereader.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default class BarcodeReader {
2828
* ```
2929
* For convenience, you can set `license` in `script` tag instead.
3030
* ```html
31-
* <script src="https://cdn.jsdelivr.net/npm/[email protected].0/dist/dbr.js" data-license="PRODUCT-KEYS"></script>
31+
* <script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/dbr.js" data-license="PRODUCT-KEYS"></script>
3232
* ```
3333
*/
3434
static set license(license: string);
@@ -83,7 +83,7 @@ export default class BarcodeReader {
8383
* If the auto-explored engine location is incorrect, you can manually specify the engine location.
8484
* The property needs to be set before [[loadWasm]].
8585
* ```js
86-
* Dynamsoft.DBR.BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/[email protected].0/dist/";
86+
* Dynamsoft.DBR.BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/[email protected].1/dist/";
8787
* await Dynamsoft.DBR.BarcodeReader.loadWasm();
8888
* ```
8989
*/
@@ -229,7 +229,7 @@ export default class BarcodeReader {
229229
* The url of the default scanner UI.
230230
* Can only be changed before `createInstance`.
231231
* ```js
232-
* Dynamsoft.DBR.BarcodeScanner.defaultUIElementURL = "https://cdn.jsdelivr.net/npm/[email protected].0/dist/dbr.ui.html";
232+
* Dynamsoft.DBR.BarcodeScanner.defaultUIElementURL = "https://cdn.jsdelivr.net/npm/[email protected].1/dist/dbr.ui.html";
233233
* let pScanner = null;
234234
* (async()=>{
235235
* let scanner = await (pScanner = pScanner || Dynamsoft.DBR.BarcodeScanner.createInstance());

dist/types/class/barcodescanner.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ export default class BarcodeScanner extends BarcodeReader {
552552
/**
553553
* Bind UI, open the camera, start decoding, and remove the UIElement `display` style if the original style is `display:none;`.
554554
* ```js
555-
* await scanner.setUIElement("https://cdn.jsdelivr.net/npm/[email protected].0/dist/dbr.ui.html");
555+
* await scanner.setUIElement("https://cdn.jsdelivr.net/npm/[email protected].1/dist/dbr.ui.html");
556556
* scanner.onUniqueRead = (txt, result) => { alert(txt); console.log(result); };
557557
* await scanner.show();
558558
* // await scanner.hide();

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dynamsoft-javascript-barcode",
3-
"version": "9.3.0",
3+
"version": "9.3.1",
44
"description": "Dynamsoft Barcode Reader JS is a recognition SDK which enables you to embed barcode reading functionality in your web, desktop, and mobile applications. With a few lines of JavaScript code, you can develop a robust application to scan a linear barcode, QR Code, DaraMatrix, PDF417, and Aztec Code.",
55
"files": [
66
"/dist",

samples.url

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[InternetShortcut]
2-
URL=https://github.com/Dynamsoft/barcode-reader-javascript-samples/tree/v9.3.0
2+
URL=https://github.com/Dynamsoft/barcode-reader-javascript-samples/tree/v9.3.1

0 commit comments

Comments
 (0)