Skip to content

Commit f925fa7

Browse files
committed
11.0.6000
1 parent e004226 commit f925fa7

File tree

49 files changed

+84
-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.

49 files changed

+84
-85
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ A default license is included which allows you to test the sample apps for up to
3131

3232
## Documentation
3333

34-
For the developer guide and full API reference of Dynamsoft Barcode Reader JavaScript library, please check out the [documentation](https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/?ver=11.0.3000&utm_source=sampleReadme).
34+
For the developer guide and full API reference of Dynamsoft Barcode Reader JavaScript library, please check out the [documentation](https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/?ver=11.0.6000&utm_source=sampleReadme).
3535

3636
## Support
3737

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@
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.5000/dist/dbr.bundle.js"></script> -->
10+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.6000/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> -->
13-
<script src="https://npm.scannerproxy.com:802/cdn/@dynamsoft/dynamsoft-barcode-reader-bundle@11.0.5000-dev-20250801112823/dist/dbr.bundle.js"></script>
1413
</head>
1514

1615
<body>

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.3000/dist/dbr.bundle.js"></script>
10+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.6000/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.3000/dist/dbr.bundle.js"></script>
11+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.6000/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/hello-world.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</title>
1010

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"dynamsoft-barcode-reader-bundle": "11.0.3000",
13+
"dynamsoft-barcode-reader-bundle": "11.0.6000",
1414
"react": "^19.0.0",
1515
"react-dom": "^19.0.0"
1616
},

barcode-scanner-api-samples/scan-single-barcode/react/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function App() {
1515
container: scannerViewRef.current!, // Specify where to render the scanner UI
1616

1717
// Specify the path for the definition file "barcode-scanner.ui.xml" for the scanner view.
18-
uiPath: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.3000/dist/",
18+
uiPath: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.6000/dist/",
1919

2020
// showUploadImageButton: true,
2121
// scannerViewConfig: {

barcode-scanner-api-samples/scan-single-barcode/scan-and-search.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<title>Scan & Search with BarcodeScanner</title>
88

99
<!-- Include Dynamsoft Barcode Reader Bundle via CDN -->
10-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.3000/dist/dbr.bundle.js"></script>
10+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.0.6000/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>

foundational-api-samples/hello-world/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The Hello World Sample Set
22

3-
As you have already gone through the [user guide](https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/user-guide/index.html?ver=11.0.3000#hello-world---simplest-implementation), you may have come across some basic "Hello World" code that can help you create a simple web application using our SDK quickly.
3+
As you have already gone through the [user guide](https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/user-guide/index.html?ver=11.0.6000#hello-world---simplest-implementation), you may have come across some basic "Hello World" code that can help you create a simple web application using our SDK quickly.
44

55
In this set of samples, we will revisit the "Hello World" code and show how to implement it using some popular frameworks, such as Angular, React, and Vue.
66

foundational-api-samples/hello-world/angular/README.md

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

33
[Angular](https://angular.dev/) is one of the most popular and mature JavaScript frameworks. Follow this guide to learn how to implement [Dynamsoft Barcode Reader JavaScript SDK](https://www.dynamsoft.com/barcode-reader/sdk-javascript/) (hereafter called "the library") into an Angular application. Note that in this sample, `TypeScript` is used.
44

5-
In this guide, we will be using [`dynamsoft-barcode-reader-bundle 11.0.3000`](https://www.npmjs.com/package/dynamsoft-barcode-reader-bundle/v/11.0.3000).
5+
In this guide, we will be using [`dynamsoft-barcode-reader-bundle 11.0.6000`](https://www.npmjs.com/package/dynamsoft-barcode-reader-bundle/v/11.0.6000).
66

77
> Note:
88
>
@@ -61,7 +61,7 @@ Below is the configuration used for this sample.
6161

6262
```cmd
6363
cd my-app
64-
npm install dynamsoft-barcode-reader-bundle@11.0.3000 -E
64+
npm install dynamsoft-barcode-reader-bundle@11.0.6000 -E
6565
```
6666

6767
## Start to implement
@@ -86,7 +86,7 @@ LicenseManager.initLicense('DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9', true);
8686
/**
8787
* You can visit https://www.dynamsoft.com/customer/license/trialLicense?utm_source=samples&product=dbr&package=js to get your own trial license good for 30 days.
8888
* Note that if you downloaded this sample from Dynamsoft while logged in, the above license key may already be your own 30-day trial license.
89-
* For more information, see https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/user-guide/index.html?ver=11.0.3000&cVer=true#specify-the-license&utm_source=samples or contact support@dynamsoft.com.
89+
* For more information, see https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/user-guide/index.html?ver=11.0.6000&cVer=true#specify-the-license&utm_source=samples or contact support@dynamsoft.com.
9090
* LICENSE ALERT - THE END
9191
*/
9292

0 commit comments

Comments
 (0)