Skip to content

Commit efd148b

Browse files
committed
update to 8.8.7
1 parent c93bcd9 commit efd148b

32 files changed

+35
-35
lines changed

1.hello-world/1.minimum-code.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
library offline. Please see the guide on how to host the library:
1313
https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=latest#host-the-library-yourself-recommended
1414
-->
15-
<script src="https://cdn.jsdelivr.net/npm/[email protected].3/dist/dbr.js"></script>
15+
<script src="https://cdn.jsdelivr.net/npm/[email protected].7/dist/dbr.js"></script>
1616
</head>
1717

1818
<body>

1.hello-world/10.read-video-pwa/helloworld-pwa.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta name="description" content="Read barcodes from camera with Dynamsoft Barcode Reader in a PWA application.">
88
<meta name="keywords" content="read barcode from camera in PWA">
99
<title>Dynamsoft Barcode Reader PWA Sample - Hello World (Decoding via Camera)</title>
10-
<script src="https://cdn.jsdelivr.net/npm/[email protected].3/dist/dbr.js"></script>
10+
<script src="https://cdn.jsdelivr.net/npm/[email protected].7/dist/dbr.js"></script>
1111
<link rel="manifest" href="./helloworld-pwa.webmanifest">
1212
</head>
1313

1.hello-world/11.read-video-requirejs.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ <h1 style="font-size: 1.5em;">Hello World for RequireJS</h1>
1313
<button id="readBarcode">show scanner</button>
1414
<script src="https://cdn.jsdelivr.net/npm/[email protected]/require.js"></script>
1515
<script>
16-
requirejs(['https://cdn.jsdelivr.net/npm/[email protected].3/dist/dbr.js'], function({
16+
requirejs(['https://cdn.jsdelivr.net/npm/[email protected].7/dist/dbr.js'], function({
1717
DBR,
1818
BarcodeReader,
1919
BarcodeScanner
@@ -38,7 +38,7 @@ <h1 style="font-size: 1.5em;">Hello World for RequireJS</h1>
3838

3939
/** LICENSE ALERT - THE END */
4040

41-
DBR.engineResourcePath = "https://cdn.jsdelivr.net/npm/[email protected].3/dist/";
41+
DBR.engineResourcePath = "https://cdn.jsdelivr.net/npm/[email protected].7/dist/";
4242
let pScanner = null;
4343
document.getElementById('readBarcode').onclick = async function() {
4444
try {

1.hello-world/12.read-video-webpack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
"webpack-cli": "4.8.0"
1313
},
1414
"dependencies": {
15-
"dynamsoft-javascript-barcode": "8.8.3"
15+
"dynamsoft-javascript-barcode": "8.8.7"
1616
}
1717
}

1.hello-world/12.read-video-webpack/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Dynamsoft.DBR.organizationID = "200000";
2020

2121
/** LICENSE ALERT - THE END */
2222

23-
DBR.engineResourcePath = "https://cdn.jsdelivr.net/npm/[email protected].3/dist/";
23+
DBR.engineResourcePath = "https://cdn.jsdelivr.net/npm/[email protected].7/dist/";
2424

2525
let pScanner = null;
2626
if (document.getElementById('readBarcode')) {

1.hello-world/2.read-an-image.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
library offline. Please see the guide on how to host the library:
1313
https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=latest#host-the-library-yourself-recommended
1414
-->
15-
<script src="https://cdn.jsdelivr.net/npm/[email protected].3/dist/dbr.js"></script>
15+
<script src="https://cdn.jsdelivr.net/npm/[email protected].7/dist/dbr.js"></script>
1616
</head>
1717

1818
<body>

1.hello-world/3.read-video-angular/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@angular/platform-browser": "~11.2.5",
2020
"@angular/platform-browser-dynamic": "~11.2.5",
2121
"@angular/router": "~11.2.5",
22-
"dynamsoft-javascript-barcode": "8.8.3",
22+
"dynamsoft-javascript-barcode": "8.8.7",
2323
"rxjs": "~6.6.0",
2424
"tslib": "^2.0.0",
2525
"zone.js": "~0.11.3"
@@ -43,4 +43,4 @@
4343
"tslint": "~6.1.0",
4444
"typescript": "~4.1.5"
4545
}
46-
}
46+
}

1.hello-world/3.read-video-angular/src/app/dbr.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ DBR.handshakeCode = "200000-dbr_js_samples";
2020

2121
/** LICENSE ALERT - THE END */
2222

23-
DBR.BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/[email protected].3/dist/";
23+
DBR.BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/[email protected].7/dist/";
2424

2525
export default DBR;

1.hello-world/4.read-video-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"@testing-library/jest-dom": "^5.11.4",
88
"@testing-library/react": "^11.1.0",
99
"@testing-library/user-event": "^12.1.10",
10-
"dynamsoft-javascript-barcode": "8.8.3",
10+
"dynamsoft-javascript-barcode": "8.8.7",
1111
"react": "^17.0.1",
1212
"react-dom": "^17.0.1",
1313
"react-scripts": "4.0.3",

1.hello-world/4.read-video-react/src/dbr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ DBR.handshakeCode = "200000-dbr_js_samples";
2020

2121
/** LICENSE ALERT - THE END */
2222

23-
DBR.BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/[email protected].3/dist/";
23+
DBR.BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/[email protected].7/dist/";
2424

2525
export default DBR;

0 commit comments

Comments
 (0)