Skip to content

Commit bc04f51

Browse files
8.8.3
1 parent 9a0f37d commit bc04f51

File tree

64 files changed

+85
-85
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+85
-85
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The complete code of the "Hello World" example is shown below
6262
<html>
6363

6464
<body>
65-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.8.1/dist/dbr.js"></script>
65+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.8.3/dist/dbr.js"></script>
6666
<script>
6767
// initializes and uses the library
6868
let pScanner = null;
@@ -129,13 +129,13 @@ The simplest way to include the library is to use either the [jsDelivr](https://
129129
* jsDelivr
130130

131131
``` html
132-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.8.1/dist/dbr.js"></script>
132+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.8.3/dist/dbr.js"></script>
133133
```
134134

135135
* UNPKG
136136

137137
``` html
138-
<script src="https://unpkg.com/dynamsoft-javascript-barcode@8.8.1/dist/dbr.js"></script>
138+
<script src="https://unpkg.com/dynamsoft-javascript-barcode@8.8.3/dist/dbr.js"></script>
139139
```
140140

141141
#### Host the library yourself (recommended)
@@ -163,7 +163,7 @@ The following shows a few ways to download the library.
163163
Depending on how you downloaded the library and where you put it. You can typically include it like this:
164164

165165
``` html
166-
<script src="/DBR-JS-8.8.1/dist/dbr.js"></script>
166+
<script src="/DBR-JS-8.8.3/dist/dbr.js"></script>
167167
```
168168

169169
or
@@ -205,7 +205,7 @@ Dynamsoft.DBR.BarcodeReader.productKeys = "t0068NQAAACgTVU2aucyxqETXKkiomqhV7YoL
205205
Or
206206

207207
```html
208-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.8.1/dist/dbr.js" data-productKeys="t0068NQAAACgTVU2aucyxqETXKkiomqhV7YoLrnqjLiQQRSH5DBV1UtIs4..."></script>
208+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.8.3/dist/dbr.js" data-productKeys="t0068NQAAACgTVU2aucyxqETXKkiomqhV7YoLrnqjLiQQRSH5DBV1UtIs4..."></script>
209209
```
210210

211211
#### Specify the location of the "engine" files
@@ -215,7 +215,7 @@ The "engine" files refer to *.worker.js, *.wasm.js and *.wasm, etc. which are lo
215215
The following code uses the jsDelivr CDN, feel free to change it to your own location of these files.
216216

217217
``` javascript
218-
Dynamsoft.DBR.BarcodeScanner.engineResourcePath = "https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.8.1/dist/";
218+
Dynamsoft.DBR.BarcodeScanner.engineResourcePath = "https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.8.3/dist/";
219219
```
220220

221221
### Interact with the library

dist/class/barcodereader.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default class BarcodeReader {
3535
* ```
3636
* For convenience, you can set `license` in `script` tag instead.
3737
* ```html
38-
* <script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.8.1/dist/dbr.js" data-license="PRODUCT-KEYS"></script>
38+
* <script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.8.3/dist/dbr.js" data-license="PRODUCT-KEYS"></script>
3939
* ```
4040
*/
4141
static set license(keys: string);
@@ -87,7 +87,7 @@ export default class BarcodeReader {
8787
* If the auto-explored engine location is incorrect, you can manually specify the engine location.
8888
* The property needs to be set before [[loadWasm]].
8989
* ```js
90-
* Dynamsoft.DBR.BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.8.1/dist/";
90+
* Dynamsoft.DBR.BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.8.3/dist/";
9191
* await Dynamsoft.DBR.BarcodeReader.loadWasm();
9292
* ```
9393
*/

dist/class/barcodescanner.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default class BarcodeScanner extends BarcodeReader {
2424
* The url of the default scanner UI.
2525
* Can only be changed before `createInstance`.
2626
* ```js
27-
* Dynamsoft.DBR.BarcodeScanner.defaultUIElementURL = "https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.8.1/dist/dbr.scanner.html";
27+
* Dynamsoft.DBR.BarcodeScanner.defaultUIElementURL = "https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.8.3/dist/dbr.scanner.html";
2828
* let pScanner = null;
2929
* (async()=>{
3030
* let scanner = await (pScanner = pScanner || Dynamsoft.DBR.BarcodeScanner.createInstance());
@@ -655,7 +655,7 @@ export default class BarcodeScanner extends BarcodeReader {
655655
/**
656656
* Bind UI, open the camera, start decoding, and remove the UIElement `display` style if the original style is `display:none;`.
657657
* ```js
658-
* await scanner.setUIElement("https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.8.1/dist/dbr.scanner.html");
658+
* await scanner.setUIElement("https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.8.3/dist/dbr.scanner.html");
659659
* scanner.onUniqueRead = (txt, result) => { alert(txt); console.log(result); };
660660
* await scanner.show();
661661
* // await scanner.hide();
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)