Skip to content

Commit 4f4f9e5

Browse files
committed
change "version 10" to "version 10 and above"
1 parent fc1f775 commit 4f4f9e5

18 files changed

+22
-22
lines changed

barcode-reader/web/camera/check-camera.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ needAutoGenerateSidebar: false
1010

1111
[<< Back to FAQ index](index.md)
1212

13-
## version 10 or Latest Version
13+
## Version 10 and above
1414
In version 10, use the `dynamsoft camera enhancer` to utilize the [testCameraAccess](https://www.dynamsoft.com/camera-enhancer/docs/web/programming/javascript/api-reference/camera-control.html#testCameraAccess) method to check the camera status programmatically.
1515

1616

17-
## version 9.6.10 till version 10
17+
## Version 9.6.10 till version 10
1818
you can utilize the [testCameraAccess](https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/api-reference/BarcodeScanner.html#testcameraaccess) method to check the camera status programmatically.
1919

20-
## version older than 9.6.10
20+
## Version older than 9.6.10
2121
you can check the status using a try-catch block as shown below:
2222

2323
```javascript

barcode-reader/web/camera/delay-when-open-camera.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ needAutoGenerateSidebar: false
1010

1111
[<< Back to FAQ index](index.md)
1212

13-
## Version 10 or Latest Version
13+
## Version 10 and above
1414
### 1. Invoke loadWasm
1515
Preload `BarcodeReader` or other specified module proactively to save time on the initial decoding by skipping the module loading at the time of instance creation.
1616

barcode-reader/web/camera/stop-camera-to-open-right-away.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ needAutoGenerateSidebar: false
1010

1111
[<< Back to FAQ index](index.md)
1212

13-
## Version 10 or Latest Version
13+
## Version 10 and above
1414
```javascript
1515
let startScanBtn = document.getElementById("StartScanning"); // double check the ID of the button
1616
```

barcode-reader/web/camera/when-singleFrameMode-is-enabled.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ needAutoGenerateSidebar: false
1010

1111
[<< Back to FAQ index](index.md)
1212

13-
## Version 10 or Latest Version
13+
## Version 10 and above
1414
SingleFrameMode can be enabled by calling the api from the camera enhancer module. check
1515
[singleFrameMode](https://www.dynamsoft.com/camera-enhancer/docs/web/programming/javascript/api-reference/acquisition.html#singleframemode) for detailed information.
1616

barcode-reader/web/configuration/avoid-incorrect-barcode-results.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ needAutoGenerateSidebar: false
1010

1111
[<< Back to FAQ index](index.md)
1212

13-
## Version 10 or Latest Version
13+
## Version 10 and above
1414
- One method is to raise the value of [minResultConfidence](https://www.dynamsoft.com/capture-vision/docs/web/programming/javascript/api-reference/capture-vision-router/interfaces/simplified-capture-vision-settings.html?product=dbr&lang=javascript#minresultconfidence) of the `SimplifiedCaptureVisionSettings` interface of the capture vision router module. It is set to `30` by default.
1515

1616
- If the issue has to do with the length of the text result, you can try setting a minimum length for the barcode text(s) that are returned by the SDK. By setting the [minBarcodeTextLength](../api-reference/interfaces/simplified-barcode-reader-settings.md) property of the `SimplifiedCaptureVisionSettings` interface of the capture vision router module, the SDK can ignore results that are consistently coming out shorter than expected. It is set to `0` by default.

barcode-reader/web/configuration/call-loadWasm-proactively.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ needAutoGenerateSidebar: false
1010

1111
[<< Back to FAQ index](index.md)
1212

13-
## Version 10 or Latest Version
13+
## Version 10 and above
1414
Preload `BarcodeReader` or other specified module proactively to save time on the initial decoding by skipping the module loading at the time of instance creation.
1515

1616
```javascript

barcode-reader/web/configuration/get-intermediate-result-images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ needAutoGenerateSidebar: false
1010

1111
[<< Back to FAQ index](index.md)
1212

13-
## Version 10 or Latest Version
13+
## Version 10 and above
1414
The intermeddiate results can be retrieved using the [IntermediateResultManager]({{ site.dcvb_js_api }}capture-vision-router/intermediate-result-manager.html)
1515

1616

barcode-reader/web/configuration/read-from-existing-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ needAutoGenerateSidebar: false
1212

1313
Yes, the JavaScript SDK supports reading from a file in local memory.
1414

15-
## Version 10 or Latest Version
15+
## Version 10 and above
1616
```javascript
1717
let router = await Dynamsoft.CVR.CaptureVisionRouter.createInstance();
1818
// Use the router to perform a job.

barcode-reader/web/configuration/ways-to-copy-dbr-js-deployable-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ A copy of Dbr JS deployable files can be obtained using any of the methods menti
1414

1515
1. Download the DBR-JS package from the [Dynamsoft website](https://www.dynamsoft.com/barcode-reader/downloads) or from the [Dynamsoft Customer Portal](https://www.dynamsoft.com/customer/download) (Download Products tab on the left hand side)
1616
2. Install the library via `npm`
17-
### version 10 or Latest Version
17+
### Version 10 and above
1818
you will need to install dependencies along with the barcode reader sdk
1919
dynamsoft-barcode-reader,
2020
dynamsoft-camera-enhancer

barcode-reader/web/debug/check-current-version.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ needAutoGenerateSidebar: false
1010

1111
[<< Back to FAQ index](index.md)
1212

13-
## For version 10 or Latest Version
13+
## For version 10 and above
1414
- Check the version of Barcode Reader module
1515
```javascript
1616
Dynamsoft.DBR.BarcodeReaderModule.getVersion()

0 commit comments

Comments
 (0)