Skip to content

Commit 993cabf

Browse files
committed
update version to 9.0.0
1 parent ee8c49f commit 993cabf

51 files changed

Lines changed: 61 additions & 71 deletions

Some content is hidden

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

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
<body>
1313
<h1 style="font-size: 1.5em;">Read Barcodes from a Camera</h1>
1414
<button id="btn-show-scanner">Show Barcode Scanner</button>
15-
<!-- <script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.8.7/dist/dbr.js"></script> -->
16-
<script src="https://cdn.jsdelivr.net/npm/keillion-dynamsoft-javascript-barcode@0.20220317102136.0/dist/dbr.js"></script>
15+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@9.0.0/dist/dbr.js"></script>
1716
<script>
1817
/** LICENSE ALERT - README
1918
* To use the library, you need to first specify a license key using the API "license" as shown below.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<body>
1414
<h1 style="font-size: 1.5em;">Hello World for PWA</h1>
1515
<button id='readBarcode'>Read Barcode via Camera</button>
16-
<script src="https://cdn.jsdelivr.net/npm/keillion-dynamsoft-javascript-barcode@0.20220323095526.0/dist/dbr.js"></script>
16+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@9.0.0/dist/dbr.js"></script>
1717
<script>
1818
/** LICENSE ALERT - README
1919
* To use the library, you need to first specify a license key using the API "license" as shown below.

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/requirejs@2.3.6/require.js"></script>
1515
<script>
16-
requirejs(['https://cdn.jsdelivr.net/npm/keillion-dynamsoft-javascript-barcode@0.20220318174621.0/dist/dbr.js'], function({
16+
requirejs(['https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@9.0.0/dist/dbr.js'], function({
1717
BarcodeReader,
1818
BarcodeScanner
1919
}) {
@@ -30,7 +30,7 @@ <h1 style="font-size: 1.5em;">Hello World for RequireJS</h1>
3030
* LICENSE ALERT - THE END
3131
*/
3232

33-
BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/keillion-dynamsoft-javascript-barcode@0.20220318174621.0/dist/";
33+
BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@9.0.0/dist/";
3434
let pScanner = null;
3535
document.getElementById('readBarcode').onclick = async function() {
3636
try {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<h1 style="font-size: 1.5em;">Read Barcodes from a Camera</h1>
1414
<button id="btn-show-scanner">Show Barcode Scanner</button>
1515
<script type="module">
16-
import { BarcodeReader, BarcodeScanner } from 'https://cdn.jsdelivr.net/npm/keillion-dynamsoft-javascript-barcode@0.20220323095526.0/dist/dbr.mjs';
16+
import { BarcodeReader, BarcodeScanner } from 'https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@9.0.0/dist/dbr.mjs';
1717
/** LICENSE ALERT - README
1818
* To use the library, you need to first specify a license key using the API "license" as shown below.
1919
*/
@@ -29,7 +29,7 @@ <h1 style="font-size: 1.5em;">Read Barcodes from a Camera</h1>
2929

3030
// DBR.productKeys = "PRODUCT-KEYS";
3131

32-
BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/keillion-dynamsoft-javascript-barcode@0.20220323095526.0/dist/";
32+
BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@9.0.0/dist/";
3333

3434
let pScanner = null;
3535
document.getElementById('btn-show-scanner').addEventListener('click', async () => {

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ <h1 style="font-size: 1.5em;">Read Barcode from Images</h1>
2424
.sp-resultText { color: #cE5E04 }
2525
#div-cvs-container canvas { border: solid 1px gray; }
2626
</style>
27-
<!-- <script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.8.7/dist/dbr.js"></script> -->
28-
<script src="https://cdn.jsdelivr.net/npm/keillion-dynamsoft-javascript-barcode@0.20220317102136.0/dist/dbr.js"></script>
27+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@9.0.0/dist/dbr.js"></script>
2928
<script>
3029
/** LICENSE ALERT - README
3130
* To use the library, you need to first specify a license key using the API "license" as shown below.

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +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.7",
23-
"keillion-dynamsoft-javascript-barcode": "0.20220323095526.0",
22+
"dynamsoft-javascript-barcode": "9.0.0",
2423
"rxjs": "~6.6.0",
2524
"tslib": "^2.0.0",
2625
"zone.js": "~0.11.3"

1.hello-world/3.read-video-angular/src/app/barcode-scanner/barcode-scanner.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Component, OnInit } from '@angular/core';
2-
import { BarcodeScanner } from 'keillion-dynamsoft-javascript-barcode'
2+
import { BarcodeScanner } from 'dynamsoft-javascript-barcode'
33
@Component({
44
selector: 'app-video-decode',
55
templateUrl: './barcode-scanner.component.html',

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BarcodeReader } from 'keillion-dynamsoft-javascript-barcode';
1+
import { BarcodeReader } from 'dynamsoft-javascript-barcode';
22

33
/** LICENSE ALERT - README
44
* To use the library, you need to first specify a license key using the API "license" as shown below.
@@ -13,4 +13,4 @@ BarcodeReader.license = 'DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9';
1313
* LICENSE ALERT - THE END
1414
*/
1515

16-
BarcodeReader.engineResourcePath = 'https://cdn.jsdelivr.net/npm/keillion-dynamsoft-javascript-barcode@0.20220323095526.0/dist/';
16+
BarcodeReader.engineResourcePath = 'https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@9.0.0/dist/';

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Component, OnInit } from '@angular/core';
22
import '../dbr'; // import side effects. The license, engineResourcePath, so on.
3-
import { BarcodeScanner } from 'keillion-dynamsoft-javascript-barcode';
3+
import { BarcodeScanner } from 'dynamsoft-javascript-barcode';
44

55
@Component({
66
selector: 'app-hello-world',

1.hello-world/3.read-video-angular/src/app/img-decode/img-decode.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Component, OnInit } from '@angular/core';
2-
import {BarcodeReader} from 'keillion-dynamsoft-javascript-barcode'
2+
import {BarcodeReader} from 'dynamsoft-javascript-barcode'
33

44
@Component({
55
selector: 'app-img-decode',

0 commit comments

Comments
 (0)