Skip to content

Commit 2d23ade

Browse files
Merge pull request #39 from dynamsoft-docs/preview
Preview
2 parents 2c84263 + b939bb8 commit 2d23ade

File tree

16 files changed

+267
-24
lines changed

16 files changed

+267
-24
lines changed

.vscode/settings.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

_config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ docHomePage: /capture-vision/docs/web/programming/javascript/
77

88
dcvb_introduction: /capture-vision/docs/core/introduction/
99
dcvb_architecture: /capture-vision/docs/core/architecture/
10-
dcvb_parameter: /capture-vision/docs/core/parameters/
10+
dcvb_parameters: /capture-vision/docs/core/parameters/reference/
1111
dcvb_parameterFile: /capture-vision/docs/core/parameters/file/
12-
dcvb_parameterReference: /capture-vision/docs/core/parameters/reference/
1312
dcvb_enums: /capture-vision/docs/core/enums/
1413
license_activation: /capture-vision/docs/core/license/
1514

_data/product_version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
useGroupedVersion: true
22

33
version_info_list:
4-
- value: latest version(2.4.2000)
4+
- value: latest version(2.4.2100)
55
- value: 2.x
66
child:
77
- 2.2.3000

_includes/sidelist-programming/programming-js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1464,4 +1464,4 @@
14641464
</li> -->
14651465
</ul>
14661466
</li>
1467-
<li lang="javascript"><a href="{{ site.license_activation }}index.html" class="otherLinkColour">License Initialization</a></li>
1467+
<li lang="javascript"><a href="{{ site.license_activation }}index.html" class="otherLinkColour">License Initialization</a></li>

_includes/sidelist-programming/sidelist-parameter-reference.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<li lang="javascript">
2-
<a href="{{ site.dcvb_parameter }}reference/index.html" class="otherLinkColour"
2+
<a href="{{ site.dcvb_parameters }}reference/index.html" class="otherLinkColour"
33
>Parameter Reference</a
44
>
55
<ul>

assets/js/dcvWebVersionSearch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[
22
{
3-
"version": "2.4.2000",
3+
"version": "2.4.2100",
44
"matchVersion": {
5-
"javascript": "10.4.2000"
5+
"javascript": "10.4.2001"
66
}
77
},
88
{

programming/javascript/api-reference/capture-vision-router/multiple-image-processing-v2.0.10.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ startCapturing(templateName?: string): Promise<void>;
327327

328328
**Parameters**
329329

330-
`templateName`: specifies a "CaptureVisionTemplate" to use. If not specified, "Default" is used. There are two types of CaptureVisionTemplates: the [preset ones](./preset-templates.md) which come with the SDK and the custom ones that get initialized when the user calls [initSettings](./settings.md#initsettings). Please be aware that the [preset CaptureVisionTemplates](./preset-templates.md) will be overwritten should the user calls [initSettings](./settings.md#initsettings) and pass his own settings.
330+
`templateName`: specifies a "CaptureVisionTemplate" to use. If not specified, "Default" is used. There are two types of CaptureVisionTemplates: the [preset ones](./preset-templates.md) which come with the SDK and the custom ones that get initialized when the user calls [initSettings](./settings.md#initsettings). Please be aware that the [preset CaptureVisionTemplates](./preset-templates.md) will be overwritten if the user calls [initSettings](./settings.md#initsettings) and passes customized settings.
331331

332332
**Return Value**
333333

programming/javascript/api-reference/capture-vision-router/multiple-image-processing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,11 +338,11 @@ startCapturing(templateName?: string): Promise<void>;
338338

339339
**Parameters**
340340

341-
`templateName`: specifies a "CaptureVisionTemplate" to use. If not specified, "Default" is used.
341+
`templateName`: specifies a "CaptureVisionTemplate" to use. If not specified, the preset template named 'Default' will be used.
342342

343343
There are two types of CaptureVisionTemplates: the [preset ones](./preset-templates.md) which come with the SDK and the custom ones that get initialized when the user calls [initSettings](./settings.md#initsettings).
344344

345-
Please be aware that the [preset CaptureVisionTemplates](./preset-templates.md) will be overwritten should the user calls [initSettings](./settings.md#initsettings) and pass his own settings.
345+
Please be aware that the [preset CaptureVisionTemplates](./preset-templates.md) will be overwritten if the user calls [initSettings](./settings.md#initsettings) and passes customized settings.
346346

347347
**Return Value**
348348

programming/javascript/api-reference/capture-vision-router/single-image-processing-v2.0.10.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ capture(imageOrFile: Core.DSImageData | string | Blob | HTMLImageElement | HTMLC
2929

3030
`imageOrFile`: specifies the image or file to be processed. It can be the image itself in the form of `DSImageData`, the path of the image/file or the file itself in the form of `blob`, `HTMLImageElement` or `HTMLCanvasElement`.
3131

32-
`templateName`: specifies a "CaptureVisionTemplate" to use. If not specified, "Default" is used. There are two types of CaptureVisionTemplates: the [preset ones](./preset-templates.md) which come with the SDK and the custom ones that get initialized when the user calls [initSettings](./settings.md#initsettings). Please be aware that the [preset CaptureVisionTemplates](./preset-templates.md) will be overwritten should the user calls [initSettings](./settings.md#initsettings) and pass his own settings.
32+
`templateName`: specifies a "CaptureVisionTemplate" to use. If not specified, "Default" is used. There are two types of CaptureVisionTemplates: the [preset ones](./preset-templates.md) which come with the SDK and the custom ones that get initialized when the user calls [initSettings](./settings.md#initsettings). Please be aware that the [preset CaptureVisionTemplates](./preset-templates.md) will be overwritten if the user calls [initSettings](./settings.md#initsettings) and passes customized settings.
3333

3434
**Return value**
3535

programming/javascript/api-reference/capture-vision-router/single-image-processing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ capture(imageOrFile: Blob | HTMLImageElement | HTMLCanvasElement | HTMLVideoElem
3333

3434
There are two types of CaptureVisionTemplates: the [preset ones](./preset-templates.md) which come with the SDK and the custom ones that get initialized when the user calls [initSettings](./settings.md#initsettings).
3535

36-
Please be aware that the [preset CaptureVisionTemplates](./preset-templates.md) will be overwritten should the user calls [initSettings](./settings.md#initsettings) and pass his own settings.
36+
Please be aware that the [preset CaptureVisionTemplates](./preset-templates.md) will be overwritten if the user calls [initSettings](./settings.md#initsettings) and passes customized settings.
3737

3838
**Return value**
3939

0 commit comments

Comments
 (0)