Skip to content
Merged

Dev #157

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A default license is included which allows you to test the sample apps for up to

## Documentation

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/programming/javascript/?ver=10.0.20&utm_source=sampleReadme).
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/programming/javascript/?ver=10.0.21&utm_source=sampleReadme).

## Support

Expand Down
2 changes: 1 addition & 1 deletion hello-world/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The Hello World Sample Set

As you have already gone through the [user guide](https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.20#getting-started---hello-world), you may have come across some basic "Hello World" code that can help you create a simple web application using our SDK quickly.
As you have already gone through the [user guide](https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.21#getting-started---hello-world), you may have come across some basic "Hello World" code that can help you create a simple web application using our SDK quickly.

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.

Expand Down
10 changes: 5 additions & 5 deletions hello-world/angular/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,17 @@ LicenseManager.initLicense(
/**
* You can visit https://www.dynamsoft.com/customer/license/trialLicense?utm_source=github&product=dbr&package=js to get your own trial license good for 30 days.
* 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.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.20&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.21&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* LICENSE ALERT - THE END
*/

CoreModule.engineResourcePaths = {
std: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-std@1.0.0/dist/",
dip: "https://cdn.jsdelivr.net/npm/dynamsoft-image-processing@2.0.30/dist/",
core: "https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.32/dist/",
license: "https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.20/dist/",
cvr: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.31/dist/",
dbr: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader@10.0.20/dist/",
core: "https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.33/dist/",
license: "https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.40/dist/",
cvr: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.32/dist/",
dbr: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader@10.0.21/dist/",
dce: "https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@4.0.1/dist/"
};

Expand Down
8 changes: 4 additions & 4 deletions hello-world/angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
"@angular/platform-browser": "^16.2.0",
"@angular/platform-browser-dynamic": "^16.2.0",
"@angular/router": "^16.2.0",
"dynamsoft-barcode-reader": "10.0.20",
"dynamsoft-barcode-reader": "10.0.21",
"dynamsoft-utility": "1.0.21",
"dynamsoft-camera-enhancer": "4.0.1",
"dynamsoft-capture-vision-router": "2.0.31",
"dynamsoft-core": "3.0.32",
"dynamsoft-license": "3.0.20",
"dynamsoft-capture-vision-router": "2.0.32",
"dynamsoft-core": "3.0.33",
"dynamsoft-license": "3.0.40",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
Expand Down
10 changes: 5 additions & 5 deletions hello-world/angular/src/cvr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ LicenseManager.initLicense(
/**
* You can visit https://www.dynamsoft.com/customer/license/trialLicense?utm_source=github&product=dbr&package=js to get your own trial license good for 30 days.
* 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.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.20&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.21&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* LICENSE ALERT - THE END
*/

CoreModule.engineResourcePaths = {
std: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-std@1.0.0/dist/",
dip: "https://cdn.jsdelivr.net/npm/dynamsoft-image-processing@2.0.30/dist/",
core: "https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.32/dist/",
license: "https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.20/dist/",
cvr: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.31/dist/",
dbr: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader@10.0.20/dist/",
core: "https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.33/dist/",
license: "https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.40/dist/",
cvr: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.32/dist/",
dbr: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader@10.0.21/dist/",
dce: "https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@4.0.1/dist/"
};

Expand Down
2 changes: 1 addition & 1 deletion hello-world/electron/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Dynamsoft.License.LicenseManager.initLicense(
/**
* You can visit https://www.dynamsoft.com/customer/license/trialLicense?utm_source=github&product=dbr&package=js to get your own trial license good for 30 days.
* 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.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.20&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.21&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* LICENSE ALERT - THE END
*/

Expand Down
2 changes: 1 addition & 1 deletion hello-world/electron/action.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Dynamsoft.License.LicenseManager.initLicense(
/**
* You can visit https://www.dynamsoft.com/customer/license/trialLicense?utm_source=github&product=dbr&package=js to get your own trial license good for 30 days.
* 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.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.20&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.21&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* LICENSE ALERT - THE END
*/

Expand Down
8 changes: 4 additions & 4 deletions hello-world/electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
"electron": "^26.4.1"
},
"dependencies": {
"dynamsoft-barcode-reader": "10.0.20",
"dynamsoft-barcode-reader": "10.0.21",
"dynamsoft-camera-enhancer": "4.0.1",
"dynamsoft-capture-vision-router": "2.0.31",
"dynamsoft-capture-vision-router": "2.0.32",
"dynamsoft-capture-vision-std": "1.0.0",
"dynamsoft-core": "3.0.32",
"dynamsoft-core": "3.0.33",
"dynamsoft-image-processing": "2.0.30",
"dynamsoft-license": "3.0.20",
"dynamsoft-license": "3.0.40",
"dynamsoft-utility": "1.0.21"
}
}
18 changes: 9 additions & 9 deletions hello-world/es6.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ <h1>Hello World for ES6 (Decode via Camera)</h1>
<script type="importmap">
{
"imports": {
"dynamsoft-core": "https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.32/dist/core.mjs",
"dynamsoft-license": "https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.20/dist/license.mjs",
"dynamsoft-core": "https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.33/dist/core.mjs",
"dynamsoft-license": "https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.40/dist/license.mjs",
"dynamsoft-utility": "https://cdn.jsdelivr.net/npm/dynamsoft-utility@1.0.21/dist/utility.mjs",
"dynamsoft-barcode-reader": "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader@10.0.20/dist/dbr.mjs",
"dynamsoft-capture-vision-router": "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.31/dist/cvr.mjs",
"dynamsoft-barcode-reader": "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader@10.0.21/dist/dbr.mjs",
"dynamsoft-capture-vision-router": "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.32/dist/cvr.mjs",
"dynamsoft-camera-enhancer": "https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@4.0.1/dist/dce.mjs"
}
}
Expand Down Expand Up @@ -67,17 +67,17 @@ <h1>Hello World for ES6 (Decode via Camera)</h1>
/**
* You can visit https://www.dynamsoft.com/customer/license/trialLicense?utm_source=github&product=dbr&package=js to get your own trial license good for 30 days.
* 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.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.20&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.21&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* LICENSE ALERT - THE END
*/

CoreModule.engineResourcePaths = {
std: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-std@1.0.0/dist/",
dip: "https://cdn.jsdelivr.net/npm/dynamsoft-image-processing@2.0.30/dist/",
core: "https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.32/dist/",
license: "https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.20/dist/",
cvr: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.31/dist/",
dbr: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader@10.0.20/dist/",
core: "https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.33/dist/",
license: "https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.40/dist/",
cvr: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.32/dist/",
dbr: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader@10.0.21/dist/",
dce: "https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@4.0.1/dist/"
};
(async function () {
Expand Down
10 changes: 5 additions & 5 deletions hello-world/hello-world.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<title>
Dynamsoft Barcode Reader Sample - Hello World (Decode via Camera)
</title>
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.32/dist/core.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.20/dist/license.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.33/dist/core.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.40/dist/license.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-utility@1.0.21/dist/utility.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader@10.0.20/dist/dbr.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.31/dist/cvr.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader@10.0.21/dist/dbr.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.32/dist/cvr.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@4.0.1/dist/dce.js"></script>
</head>

Expand Down Expand Up @@ -48,7 +48,7 @@ <h1>Hello World (Decode via Camera)</h1>
/**
* You can visit https://www.dynamsoft.com/customer/license/trialLicense?utm_source=github&product=dbr&package=js to get your own trial license good for 30 days.
* 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.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.20&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.21&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* LICENSE ALERT - THE END
*/

Expand Down
10 changes: 5 additions & 5 deletions hello-world/next/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,17 @@ LicenseManager.initLicense(
/**
* You can visit https://www.dynamsoft.com/customer/license/trialLicense?utm_source=github&product=dbr&package=js to get your own trial license good for 30 days.
* 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.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.20&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.21&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* LICENSE ALERT - THE END
*/

CoreModule.engineResourcePaths = {
std: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-std@1.0.0/dist/",
dip: "https://cdn.jsdelivr.net/npm/dynamsoft-image-processing@2.0.30/dist/",
core: "https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.32/dist/",
license: "https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.20/dist/",
cvr: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.31/dist/",
dbr: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader@10.0.20/dist/",
core: "https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.33/dist/",
license: "https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.40/dist/",
cvr: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.32/dist/",
dbr: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader@10.0.21/dist/",
dce: "https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@4.0.1/dist/"
};

Expand Down
10 changes: 5 additions & 5 deletions hello-world/next/cvr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ LicenseManager.initLicense(
/**
* You can visit https://www.dynamsoft.com/customer/license/trialLicense?utm_source=github&product=dbr&package=js to get your own trial license good for 30 days.
* 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.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.20&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.21&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* LICENSE ALERT - THE END
*/

CoreModule.engineResourcePaths = {
std: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-std@1.0.0/dist/",
dip: "https://cdn.jsdelivr.net/npm/dynamsoft-image-processing@2.0.30/dist/",
core: "https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.32/dist/",
license: "https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.20/dist/",
cvr: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.31/dist/",
dbr: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader@10.0.20/dist/",
core: "https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.33/dist/",
license: "https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.40/dist/",
cvr: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.32/dist/",
dbr: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader@10.0.21/dist/",
dce: "https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@4.0.1/dist/"
};

Expand Down
8 changes: 4 additions & 4 deletions hello-world/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
"lint": "next lint"
},
"dependencies": {
"dynamsoft-barcode-reader": "10.0.20",
"dynamsoft-barcode-reader": "10.0.21",
"dynamsoft-camera-enhancer": "4.0.1",
"dynamsoft-capture-vision-router": "2.0.31",
"dynamsoft-core": "3.0.32",
"dynamsoft-license": "3.0.20",
"dynamsoft-capture-vision-router": "2.0.32",
"dynamsoft-core": "3.0.33",
"dynamsoft-license": "3.0.40",
"dynamsoft-utility": "1.0.21",
"next": "13.5.6",
"react": "^18",
Expand Down
10 changes: 5 additions & 5 deletions hello-world/nuxt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,17 @@ LicenseManager.initLicense(
/**
* You can visit https://www.dynamsoft.com/customer/license/trialLicense?utm_source=github&product=dbr&package=js to get your own trial license good for 30 days.
* 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.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.20&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.21&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* LICENSE ALERT - THE END
*/

CoreModule.engineResourcePaths = {
std: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-std@1.0.0/dist/",
dip: "https://cdn.jsdelivr.net/npm/dynamsoft-image-processing@2.0.30/dist/",
core: "https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.32/dist/",
license: "https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.20/dist/",
cvr: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.31/dist/",
dbr: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader@10.0.20/dist/",
core: "https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.33/dist/",
license: "https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.40/dist/",
cvr: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.32/dist/",
dbr: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader@10.0.21/dist/",
dce: "https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@4.0.1/dist/"
};

Expand Down
10 changes: 5 additions & 5 deletions hello-world/nuxt/cvr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ LicenseManager.initLicense(
/**
* You can visit https://www.dynamsoft.com/customer/license/trialLicense?utm_source=github&product=dbr&package=js to get your own trial license good for 30 days.
* 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.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.20&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* For more information, see https://www.dynamsoft.com/barcode-reader/programming/javascript/user-guide/?ver=10.0.21&utm_source=github#specify-the-license or contact support@dynamsoft.com.
* LICENSE ALERT - THE END
*/

CoreModule.engineResourcePaths = {
std: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-std@1.0.0/dist/",
dip: "https://cdn.jsdelivr.net/npm/dynamsoft-image-processing@2.0.30/dist/",
core: "https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.32/dist/",
license: "https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.20/dist/",
cvr: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.31/dist/",
dbr: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader@10.0.20/dist/",
core: "https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.33/dist/",
license: "https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.40/dist/",
cvr: "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.32/dist/",
dbr: "https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader@10.0.21/dist/",
dce: "https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@4.0.1/dist/"
};

Expand Down
8 changes: 4 additions & 4 deletions hello-world/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
"nuxt": "3.2.3"
},
"dependencies": {
"dynamsoft-barcode-reader": "10.0.20",
"dynamsoft-barcode-reader": "10.0.21",
"dynamsoft-camera-enhancer": "4.0.1",
"dynamsoft-capture-vision-router": "2.0.31",
"dynamsoft-core": "3.0.32",
"dynamsoft-license": "3.0.20",
"dynamsoft-capture-vision-router": "2.0.32",
"dynamsoft-core": "3.0.33",
"dynamsoft-license": "3.0.40",
"dynamsoft-utility": "1.0.21"
}
}
Loading