Skip to content

Commit 94a5146

Browse files
committed
11.2.2000
1 parent f8c526a commit 94a5146

File tree

88 files changed

+156
-173
lines changed

Some content is hidden

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

88 files changed

+156
-173
lines changed

barcode-scanner-api-samples/scan-multiple-barcodes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const config = {
2525
license: "YOUR-LICENSE-KEY",
2626
engineResourcePaths: {
2727
// feel free to change it to your own path
28-
rootDirectory: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.6000/dist/",
28+
rootDirectory: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.2.2000/dist/",
2929
},
3030
container: ".barcode-scanner-view",
3131
scanMode: Dynamsoft.EnumScanMode.SM_MULTI_UNIQUE,

barcode-scanner-api-samples/scan-multiple-barcodes/batch-inventory/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<title>Batch Inventory with BarcodeScanner</title>
88
<link rel="stylesheet" href="./index.css">
99
<!-- Include Dynamsoft Barcode Reader Bundle via CDN -->
10-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.6000/dist/dbr.bundle.js"></script>
10+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.2.2000/dist/dbr.bundle.js"></script>
1111
<!-- If the network is unstable or you prefer to self-host the SDK, uncomment the line below to load it locally -->
1212
<!-- <script src="../../../dist/dbr.bundle.js"></script> -->
1313
</head>

barcode-scanner-api-samples/scan-multiple-barcodes/cart-builder.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<title>List-Builder - Scan to Cart Simulation</title>
88

99
<!-- Include Dynamsoft Barcode Reader Bundle via CDN -->
10-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.6000/dist/dbr.bundle.js"></script>
10+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.2.2000/dist/dbr.bundle.js"></script>
1111
<!-- If the network is unstable or you prefer to self-host the SDK, uncomment the line below to load it locally -->
1212
<!-- <script src="../../../dist/dbr.bundle.js"></script> -->
1313

barcode-scanner-api-samples/scan-multiple-barcodes/hello-world.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Dynamsoft Barcode Scanner Sample - Hello World (Decode via Camera)
99
</title>
1010
<!-- Include Dynamsoft Barcode Reader Bundle via CDN -->
11-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.6000/dist/dbr.bundle.js"></script>
11+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.2.2000/dist/dbr.bundle.js"></script>
1212
<!-- If the network is unstable or you prefer to self-host the SDK, uncomment the line below to load it locally -->
1313
<!-- <script src="../../../dist/dbr.bundle.js"></script> -->
1414

barcode-scanner-api-samples/scan-single-barcode/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const config = {
2323
license: "YOUR-LICENSE-KEY",
2424
engineResourcePaths: {
2525
// feel free to change it to your own path
26-
rootDirectory: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.6000/dist/",
26+
rootDirectory: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.2.2000/dist/",
2727
},
2828
container: ".barcode-scanner-view",
2929
};

barcode-scanner-api-samples/scan-single-barcode/angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@angular/platform-browser": "^19.2.0",
1717
"@angular/platform-browser-dynamic": "^19.2.0",
1818
"@angular/router": "^19.2.0",
19-
"dynamsoft-barcode-reader-bundle": "11.0.6000",
19+
"dynamsoft-barcode-reader-bundle": "11.2.2000",
2020
"rxjs": "~7.8.0",
2121
"tslib": "^2.3.0",
2222
"zone.js": "~0.15.0"

barcode-scanner-api-samples/scan-single-barcode/angular/src/app/app.component.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ export class AppComponent {
2020

2121
// Specify where to render the scanner UI
2222
// If container is not specified, the UI will take up the full screen
23-
container: this.barcodeScannerViewRef.nativeElement,
23+
container: this.barcodeScannerViewRef.nativeElement,
2424

2525
// Specify the path for the definition file "barcode-scanner.ui.xml" for the scanner view.
26-
uiPath: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.6000/dist/ui/barcode-scanner.ui.xml",
26+
uiPath: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.2.2000/dist/ui/barcode-scanner.ui.xml",
2727

2828
// showUploadImageButton: true,
2929
// scannerViewConfig: {
@@ -46,7 +46,7 @@ export class AppComponent {
4646
alert(result.barcodeResults[0].text);
4747
}
4848
}
49-
async ngOnDestroy(): Promise<void> {
49+
async ngOnDestroy(): Promise<void> {
5050
// Dispose of the barcode scanner when the component unmounts
5151
this.barcodeScanner?.dispose();
5252
}

barcode-scanner-api-samples/scan-single-barcode/blazor/wwwroot/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
// Lazy load Decode video module until needed
2323
if(!DBRJSModule) {
24-
DBRJSModule = await import("https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.6000/dist/dbr.bundle.mjs");
24+
DBRJSModule = await import("https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.2.2000/dist/dbr.bundle.mjs");
2525
}
2626

2727
const { BarcodeScanner } = DBRJSModule;
@@ -32,7 +32,7 @@
3232
container: document.querySelector(".barcode-scanner-view"), // Specify where to render the scanner UI
3333

3434
// Specify the path for the definition file "barcode-scanner.ui.xml" for the scanner view.
35-
uiPath: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.6000/dist/ui/barcode-scanner.ui.xml",
35+
uiPath: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.2.2000/dist/ui/barcode-scanner.ui.xml",
3636

3737
// showUploadImageButton: true,
3838
// scannerViewConfig: {

barcode-scanner-api-samples/scan-single-barcode/capacitor/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const config: BarcodeScannerConfig = {
99
container: document.querySelector(".barcode-scanner-view") as HTMLElement, // Specify where to render the scanner UI
1010

1111
// Specify the path for the definition file "barcode-scanner.ui.xml" for the scanner view.
12-
uiPath: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.6000/dist/ui/barcode-scanner.ui.xml",
12+
uiPath: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.2.2000/dist/ui/barcode-scanner.ui.xml",
1313

1414
// showUploadImageButton: true,
1515
// scannerViewConfig: {

barcode-scanner-api-samples/scan-single-barcode/capacitor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@capacitor/ios": "^7.4.2",
1717
"@rollup/plugin-node-resolve": "^15.3.0",
1818
"@rollup/plugin-typescript": "^12.1.1",
19-
"dynamsoft-barcode-reader-bundle": "11.0.6000",
19+
"dynamsoft-barcode-reader-bundle": "11.2.2000",
2020
"rollup": "^4.24.0",
2121
"tslib": "^2.8.0",
2222
"typescript": "^5.6.3"

0 commit comments

Comments
 (0)