Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Api Reference.url
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[InternetShortcut]
URL=https://www.dynamsoft.com/barcode-reader/programming/javascript/api-reference/?ver=9.2.11
URL=https://www.dynamsoft.com/barcode-reader/programming/javascript/api-reference/?ver=9.2.12
56 changes: 28 additions & 28 deletions README.md

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
File renamed without changes.
Binary file renamed dist/dbr-9.2.11.wasm → dist/dbr-9.2.12.wasm
Binary file not shown.
File renamed without changes.
8 changes: 4 additions & 4 deletions dist/dbr.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/dbr.mjs

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/dbr.pure.esm.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/dbr.pure.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/dbr.pure.mjs

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/types/class/barcodereader.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default class BarcodeReader {
* ```
* For convenience, you can set `license` in `script` tag instead.
* ```html
* <script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@9.2.11/dist/dbr.js" data-license="PRODUCT-KEYS"></script>
* <script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@9.2.12/dist/dbr.js" data-license="PRODUCT-KEYS"></script>
* ```
*/
static set license(license: string);
Expand Down Expand Up @@ -83,7 +83,7 @@ export default class BarcodeReader {
* If the auto-explored engine location is incorrect, you can manually specify the engine location.
* The property needs to be set before [[loadWasm]].
* ```js
* Dynamsoft.DBR.BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@9.2.11/dist/";
* Dynamsoft.DBR.BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@9.2.12/dist/";
* await Dynamsoft.DBR.BarcodeReader.loadWasm();
* ```
*/
Expand Down Expand Up @@ -229,7 +229,7 @@ export default class BarcodeReader {
* The url of the default scanner UI.
* Can only be changed before `createInstance`.
* ```js
* Dynamsoft.DBR.BarcodeScanner.defaultUIElementURL = "https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@9.2.11/dist/dbr.ui.html";
* Dynamsoft.DBR.BarcodeScanner.defaultUIElementURL = "https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@9.2.12/dist/dbr.ui.html";
* let pScanner = null;
* (async()=>{
* let scanner = await (pScanner = pScanner || Dynamsoft.DBR.BarcodeScanner.createInstance());
Expand Down
2 changes: 1 addition & 1 deletion dist/types/class/barcodescanner.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ export default class BarcodeScanner extends BarcodeReader {
/**
* Bind UI, open the camera, start decoding, and remove the UIElement `display` style if the original style is `display:none;`.
* ```js
* await scanner.setUIElement("https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@9.2.11/dist/dbr.ui.html");
* await scanner.setUIElement("https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@9.2.12/dist/dbr.ui.html");
* scanner.onUniqueRead = (txt, result) => { alert(txt); console.log(result); };
* await scanner.show();
* // await scanner.hide();
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dynamsoft-javascript-barcode",
"version": "9.2.11",
"version": "9.2.12",
"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.",
"files": [
"/dist",
Expand Down Expand Up @@ -85,6 +85,6 @@
},
"dependencies": {
"dm-howler": "^2.2.4",
"dynamsoft-camera-enhancer": "^3.0.0"
"dynamsoft-camera-enhancer": "3.0.1"
}
}
2 changes: 1 addition & 1 deletion samples.url
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[InternetShortcut]
URL=https://github.com/Dynamsoft/barcode-reader-javascript-samples/tree/v9.2.11
URL=https://github.com/Dynamsoft/barcode-reader-javascript-samples/tree/v9.2.12