Skip to content

Commit 81eb0e6

Browse files
committed
update debug
1 parent dfb12e0 commit 81eb0e6

30 files changed

Lines changed: 83 additions & 65 deletions

hello-world/angular/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ BarcodeReaderModule.engineResourcePath = "https://npm.scannerproxy.com/cdn/@dyna
4141
```typescript
4242
// cvr.ts
4343
import { CaptureVisionRouter, LicenseManager } from '@dynamsoft/dynamsoft-capture-vision-router';
44-
CaptureVisionRouter.engineResourcePath = 'https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-capture-vision-router@2.0.20-dev-20231026110217/dist/';
44+
CaptureVisionRouter.engineResourcePath = 'https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-capture-vision-router@2.0.20-dev-20231027145739/dist/';
4545
LicenseManager.initLicense('DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9');
4646
// Preload "BarcodeReader" module for reading barcodes. It will save time on the initial decoding by skipping the module loading.
4747
CaptureVisionRouter.preloadModule(['DBR']).catch((ex) => {

hello-world/angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@angular/router": "^16.2.0",
2121
"@dynamsoft/dynamsoft-barcode-reader": "^10.0.20-dev-20231020180049",
2222
"@dynamsoft/dynamsoft-camera-enhancer": "^4.0.1-dev-20231023154255",
23-
"@dynamsoft/dynamsoft-capture-vision-router": "^2.0.20-dev-20231026110217",
23+
"@dynamsoft/dynamsoft-capture-vision-router": "^2.0.20-dev-20231027145739",
2424
"@dynamsoft/dynamsoft-utility": "^1.0.10-dev-20231023103736",
2525
"rxjs": "~7.8.0",
2626
"tslib": "^2.3.0",

hello-world/angular/src/cvr.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
} from '@dynamsoft/dynamsoft-capture-vision-router';
55

66
CaptureVisionRouter.engineResourcePath =
7-
'https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-capture-vision-router@2.0.20-dev-20231026110217/dist/';
7+
'https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-capture-vision-router@2.0.20-dev-20231027145739/dist/';
88

99
/** LICENSE ALERT - README
1010
* To use the library, you need to first specify a license key using the API "initLicense" as shown below.

hello-world/electron/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"dependencies": {
2424
"@dynamsoft/dynamsoft-camera-enhancer": "^4.0.1-dev-20231023154255",
25-
"@dynamsoft/dynamsoft-capture-vision-router": "^2.0.20-dev-20231026110217",
25+
"@dynamsoft/dynamsoft-capture-vision-router": "^2.0.20-dev-20231027145739",
2626
"@dynamsoft/dynamsoft-utility": "^1.0.10-dev-20231023103736"
2727
}
2828
}

hello-world/es6.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ <h1>Hello World for ES6 (Decode via Camera)</h1>
3535
"@dynamsoft/dynamsoft-utility": "https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-utility@1.0.10-dev-20231023103736/dist/utility.mjs",
3636
"@dynamsoft/dynamsoft-barcode-reader": "https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-barcode-reader@10.0.20-dev-20231020180049/dist/dbr.mjs",
3737
"@dynamsoft/dynamsoft-document-normalizer": "https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-document-normalizer@2.0.12-dev-20231019180133/dist/ddn.mjs",
38-
"@dynamsoft/dynamsoft-capture-vision-router": "https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-capture-vision-router@2.0.20-dev-20231026110217/dist/cvr.mjs",
38+
"@dynamsoft/dynamsoft-capture-vision-router": "https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-capture-vision-router@2.0.20-dev-20231027145739/dist/cvr.mjs",
3939
"dynamsoft-capture-vision-router": "https://cdn.jsdelivr.net/npm/dynamsoft-capture-vision-router@2.0.11/dist/cvr.mjs",
4040
"@dynamsoft/dynamsoft-camera-enhancer": "https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-camera-enhancer@4.0.1-dev-20231023131759/dist/dce.mjs"
4141
}

hello-world/hello-world.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<script src="https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-core@3.0.20-dev-20231010152155/dist/core.js"></script>
1919
<script src="https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-utility@1.0.10-dev-20231023103736/dist/utility.js"></script>
2020
<script src="https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-barcode-reader@10.0.20-dev-20231020140243/dist/dbr.js"></script>
21-
<script src="https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-capture-vision-router@2.0.20-dev-20231026110217/dist/cvr.js"></script>
21+
<script src="https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-capture-vision-router@2.0.20-dev-20231027145739/dist/cvr.js"></script>
2222
<script src="https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-camera-enhancer@4.0.1-dev-20231023131759/dist/dce.js"></script>
2323
</head>
2424

hello-world/next/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ BarcodeReaderModule.engineResourcePath = "https://npm.scannerproxy.com/cdn/@dyna
3939
```typescript
4040
// cvr.ts
4141
import { CaptureVisionRouter, LicenseManager } from '@dynamsoft/dynamsoft-capture-vision-router';
42-
CaptureVisionRouter.engineResourcePath = 'https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-capture-vision-router@2.0.20-dev-20231026110217/dist/';
42+
CaptureVisionRouter.engineResourcePath = 'https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-capture-vision-router@2.0.20-dev-20231027145739/dist/';
4343
LicenseManager.initLicense('DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9');
4444
// Preload "BarcodeReader" module for reading barcodes. It will save time on the initial decoding by skipping the module loading.
4545
CaptureVisionRouter.preloadModule(['DBR']).catch((ex) => {

hello-world/next/cvr.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
} from '@dynamsoft/dynamsoft-capture-vision-router';
55

66
CaptureVisionRouter.engineResourcePath =
7-
'https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-capture-vision-router@2.0.20-dev-20231026110217/dist/';
7+
'https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-capture-vision-router@2.0.20-dev-20231027145739/dist/';
88

99
/** LICENSE ALERT - README
1010
* To use the library, you need to first specify a license key using the API "initLicense" as shown below.

hello-world/next/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"@dynamsoft/dynamsoft-camera-enhancer": "^4.0.1-dev-20231023154255",
13-
"@dynamsoft/dynamsoft-capture-vision-router": "^2.0.20-dev-20231026110217",
13+
"@dynamsoft/dynamsoft-capture-vision-router": "^2.0.20-dev-20231027145739",
1414
"@dynamsoft/dynamsoft-utility": "^1.0.10-dev-20231023103736",
1515
"next": "13.5.6",
1616
"react": "^18",

hello-world/nuxt/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ BarcodeReaderModule.engineResourcePath = "https://npm.scannerproxy.com/cdn/@dyna
4343
```typescript
4444
// cvr.ts
4545
import { CaptureVisionRouter, LicenseManager } from '@dynamsoft/dynamsoft-capture-vision-router';
46-
CaptureVisionRouter.engineResourcePath = 'https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-capture-vision-router@2.0.20-dev-20231026110217/dist/';
46+
CaptureVisionRouter.engineResourcePath = 'https://npm.scannerproxy.com/cdn/@dynamsoft/dynamsoft-capture-vision-router@2.0.20-dev-20231027145739/dist/';
4747
LicenseManager.initLicense('DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9');
4848
// Preload "BarcodeReader" module for reading barcodes. It will save time on the initial decoding by skipping the module loading.
4949
CaptureVisionRouter.preloadModule(['DBR']).catch((ex) => {

0 commit comments

Comments
 (0)