Skip to content

Commit 0c1ea79

Browse files
authored
Merge pull request #153 from Dynamsoft/_dev
10.4.2002
2 parents 2a5bc86 + 5c09a49 commit 0c1ea79

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ The complete code of the "Hello World" example is shown below
8989
<body>
9090
<div id="camera-view-container" style="width: 100%; height: 60vh"></div>
9191
<textarea id="results" style="width: 100%; min-height: 10vh; font-size: 3vmin; overflow: auto" disabled></textarea>
92-
<script src="https://cdn.jsdelivr.net/npm/[email protected].2001/dist/dbr.bundle.js"></script>
92+
<script src="https://cdn.jsdelivr.net/npm/[email protected].2002/dist/dbr.bundle.js"></script>
9393
<script>
9494
Dynamsoft.License.LicenseManager.initLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9");
9595
Dynamsoft.Core.CoreModule.loadWasm(["dbr"]);
@@ -225,29 +225,29 @@ The simplest way to include the SDK is to use either the [jsDelivr](https://jsde
225225
- jsDelivr
226226
227227
```html
228-
<script src="https://cdn.jsdelivr.net/npm/[email protected].2001/dist/dbr.bundle.js"></script>
228+
<script src="https://cdn.jsdelivr.net/npm/[email protected].2002/dist/dbr.bundle.js"></script>
229229
```
230230
231231
- UNPKG
232232
233233
```html
234-
<script src="https://unpkg.com/[email protected].2001/dist/dbr.bundle.js"></script>
234+
<script src="https://unpkg.com/[email protected].2002/dist/dbr.bundle.js"></script>
235235
```
236236
237237
- In some rare cases (such as some restricted areas), you might not be able to access the CDN. If this happens, you can use the following files for the test.
238238
239239
```html
240-
<script src="https://download2.dynamsoft.com/packages/[email protected].2001/dist/dbr.bundle.js"></script>
240+
<script src="https://download2.dynamsoft.com/packages/[email protected].2002/dist/dbr.bundle.js"></script>
241241
```
242242
243243
However, please **DO NOT** use `download2.dynamsoft.com` resources in a production application as they are for temporary testing purposes only. Instead, you can try hosting the SDK yourself.
244244
245245
- In frameworks like React and Vue, you may want to add the package as a dependency.
246246
247247
```sh
248-
npm i [email protected].2001 -E
248+
npm i [email protected].2002 -E
249249
# or
250-
yarn add [email protected].2001 -E
250+
yarn add [email protected].2002 -E
251251
```
252252
253253
NOTE that in frameworks, you need to [specify the engineResourcePaths](#specify-the-location-of-the-engine-files-optional).
@@ -265,13 +265,13 @@ There are two options for downloading the SDK, and the usage for each is slightl
265265
The resources are located at path `dynamsoft/distributables/<pkg>@<version>`, you can typically include it like this:
266266
267267
```html
268-
<script src="dynamsoft/distributables/[email protected].2001/dist/dbr.bundle.js"></script>
268+
<script src="dynamsoft/distributables/[email protected].2002/dist/dbr.bundle.js"></script>
269269
```
270270
271271
- npm
272272
273273
```sh
274-
npm i [email protected].2001 -E
274+
npm i [email protected].2002 -E
275275
# Compared with using CDN, you need to set up more resources.
276276
277277
@@ -592,7 +592,7 @@ await cvRouter.startCapturing("ReadSingleBarcode");
592592
593593
The preset templates have many more settings that can be customized to suit your use case best. If you [download the SDK from Dynamsoft website](https://www.dynamsoft.com/barcode-reader/downloads/1000003-confirmation/), you can find the templates under
594594
595-
* "/dynamsoft-barcode-reader-js-10.4.2001/dynamsoft/templates/"
595+
* "/dynamsoft-barcode-reader-js-10.4.2002/dynamsoft/templates/"
596596
597597
Upon completing the template editing, you can invoke the `initSettings` method and provide it with the template path as an argument.
598598
@@ -674,7 +674,7 @@ The UI is part of the auxiliary SDK "Dynamsoft Camera Enhancer", read more on ho
674674
## API Documentation
675675
676676
You can check out the detailed documentation about the APIs of the SDK at
677-
[https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/api-reference/?ver=10.4.2001](https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/api-reference/?ver=10.4.2001).
677+
[https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/api-reference/?ver=10.4.2002](https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/api-reference/?ver=10.4.2002).
678678
679679
## System Requirements
680680
@@ -716,7 +716,7 @@ Apart from the browsers, the operating systems may impose some limitations of th
716716
717717
## How to Upgrade
718718
719-
If you want to upgrade the SDK from an old version to a newer one, please see [how to upgrade](https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/upgrade-guide/index.html?ver=10.4.2001&utm_source=github).
719+
If you want to upgrade the SDK from an old version to a newer one, please see [how to upgrade](https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/upgrade-guide/index.html?ver=10.4.2002&utm_source=github).
720720
721721
## Release Notes
722722
@@ -728,4 +728,4 @@ Now that you have got the SDK integrated, you can choose to move forward in the
728728
729729
1. Learn how to [Use in Framework](https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/user-guide/use-in-framework.html)
730730
2. Check out the [Official Samples and Demo](https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/samples-demos/index.html?ver=10.4.20)
731-
3. Learn about the [APIs of the SDK](https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/api-reference/index.html?ver=10.4.2001)
731+
3. Learn about the [APIs of the SDK](https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/api-reference/index.html?ver=10.4.2002)

dist/dbr.bundle.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/dbr.bundle.mjs

+2-2
Large diffs are not rendered by default.

dist/dbr.no-content-bundle.esm.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @website http://www.dynamsoft.com
55
* @copyright Copyright 2024, Dynamsoft Corporation
66
* @author Dynamsoft
7-
* @version 10.4.2001
7+
* @version 10.4.2002
88
* @fileoverview Dynamsoft JavaScript Library for Barcode Reader
99
* More info on dbr JS: https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/
1010
*/

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dynamsoft-barcode-reader-bundle",
3-
"version": "10.4.2001",
3+
"version": "10.4.2002",
44
"description": "Dynamsoft Barcode Reader JS is a recognition SDK which enables you to embed barcode reading functionality in your web, desktop, and mobile applications. With a few lines of JavaScript code, you can develop a robust application to scan a linear barcode, QR Code, DaraMatrix, PDF417, and Aztec Code.",
55
"main": "dist/dbr.bundle.js",
66
"module": "dist/dbr.no-content-bundle.esm.js",
@@ -78,9 +78,9 @@
7878
"dependencies": {
7979
"dynamsoft-barcode-reader": "10.4.20",
8080
"dynamsoft-camera-enhancer": "4.1.0",
81-
"dynamsoft-capture-vision-router": "2.4.21",
82-
"dynamsoft-core": "3.4.20",
81+
"dynamsoft-capture-vision-router": "2.4.22",
82+
"dynamsoft-core": "3.4.21",
8383
"dynamsoft-license": "3.4.21",
84-
"dynamsoft-utility": "1.4.20"
84+
"dynamsoft-utility": "1.4.21"
8585
}
8686
}

0 commit comments

Comments
 (0)