Skip to content
Merged
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
3 changes: 3 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ dcv_android_api: /capture-vision/docs/mobile/programming/android/api-reference/
dcv_ios_api: /capture-vision/docs/mobile/programming/ios/api-reference/
dcv_enumerations: /capture-vision/docs/core/enums/
dcv_parameter_reference: /capture-vision/docs/core/parameters/reference/
dcv_parameter: /capture-vision/docs/core/parameters/

code_types: /code-parser/docs/core/code-types/

assets: /code-parser/docs/mobile/assets/
edit_icon: /code-parser/docs/mobile/assets/img-icon/edit-icon.png
Expand Down
20 changes: 10 additions & 10 deletions _includes/release-notes/product-highlight-2.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
* `DynamsoftCodeParser` SDK has been revamped to integrate with `DynamsoftCaptureVision (DCV)` architecture, which is newly established to aggregate the features of functional products powered by Dynamsoft. The features are designed to be pluggable, customizable and interactable. In addition, the functional products share the computation so that their processing speed is much higher than working individually.
* Added Mobile Editions. With these new editions, developers can effortlessly integrate code parsing capabilities into their Android and iOS applications.
* Added supports to parse following code types:
* [MRTD_TD1_ID]({{ site.code_types }}mrtd.html)
* [MRTD_TD2_ID]({{ site.code_types }}mrtd.html)
* [MRTD_TD2_VISA]({{ site.code_types }}mrtd.html)
* [MRTD_TD3_PASSPORT]({{ site.code_types }}mrtd.html)
* [MRTD_TD3_VISA]({{ site.code_types }}mrtd.html)
* [VIN]({{ site.code_types }}vin.html)
* [AAMVA_DL_ID]({{ site.code_types }}aamva-dl-id.html)
* [AAMVA_DL_ID_WITH_MAG_STRIPE]({{ site.code_types }}aamva-dl-id.html)
* [AADHAAR]({{ site.code_types }}aadhaar.html)
* [SOUTH_AFRICA_DL]({{ site.code_types }}za-dl.html)
* MRTD_TD1_ID
* MRTD_TD2_ID
* MRTD_TD2_VISA
* MRTD_TD3_PASSPORT
* MRTD_TD3_VISA
* VIN
* AAMVA_DL_ID
* AAMVA_DL_ID_WITH_MAG_STRIPE
* AADHAAR
* SOUTH_AFRICA_DL

4 changes: 4 additions & 0 deletions _layouts/default-layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
<html lang="en-US">

{%- include head.html -%}
{%- assign noTitleIndex = "" -%}
{%- if page.noTitleIndex or page.url contains 'release-notes' -%}
{%- assign noTitleIndex = "noTitleIndex" -%}
{%- endif -%}

<body class="dcpDoc">
{% assign url = 'https://www.dynamsoft.com/shared/head/' %}
Expand Down
2 changes: 1 addition & 1 deletion programming/android/api-reference/code-parser.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ ParsedResultItem parse(byte[] bytes, String taskSettingName) throws CodeParserEx

`[in] bytes` The array of bytes which contain the code string.

`[in] taskSettingName`<sub>Optional</sub> The name of [`CodeParserTaskSetting`]({{site.parameters}}file/task-settings/code-parser-task-settings.html) which defines the settings used for code parsing.
`[in] taskSettingName`<sub>Optional</sub> The name of [`CodeParserTaskSetting`]({{site.dcv_parameter}}file/task-settings/code-parser-task-settings.html) which defines the settings used for code parsing.

**Return Value**

Expand Down
8 changes: 4 additions & 4 deletions programming/android/api-reference/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ needGenerateH3Content: true
## Classes

* [`CodeParser`](code-parser.html)
* [`LicenseManager`]({{ site.dcv_cpp_api }}license/license-manager.html)
* [`LicenseManager`]({{ site.dcv_android_api }}license/license-manager.html)
* [`ParsedResultItem`](parsed-result-item.html)
* [`ParsedResult`](parsed-result.html)

## Enumerations

* [`ErrorCode`]({{ site.enumerations }}core/error-code.html?lang=android)
* [`MappingStatus`]({{ site.enumerations }}code-parser/mapping-status.html?lang=android)
* [`ValidationStatus`]({{ site.enumerations }}code-parser/validation-status.html?lang=android)
* [`ErrorCode`]({{ site.dcv_enumerations }}core/error-code.html?lang=android)
* [`MappingStatus`]({{ site.dcv_enumerations }}code-parser/mapping-status.html?lang=android)
* [`ValidationStatus`]({{ site.dcv_enumerations }}code-parser/validation-status.html?lang=android)
8 changes: 4 additions & 4 deletions programming/android/api-reference/parsed-result-item.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ EnumMappingStatus getFieldMappingStatus(String fieldName);

**Return Value**

Returns a [MappingStatus]({{ site.enumerations }}code-parser/mapping-status.html?lang=android) enumeration value representing the mapping status of a specified field.
Returns a [MappingStatus]({{ site.dcv_enumerations }}code-parser/mapping-status.html?lang=android) enumeration value representing the mapping status of a specified field.

**See Also**

[MappingStatus]({{ site.enumerations }}code-parser/mapping-status.html?lang=android)
[MappingStatus]({{ site.dcv_enumerations }}code-parser/mapping-status.html?lang=android)

## getFieldValidationStatus

Expand All @@ -102,11 +102,11 @@ EnumValidationStatus getFieldValidationStatus(String fieldName);

**Return Value**

Returns a [ValidationStatus]({{ site.enumerations }}code-parser/validation-status.html?lang=android) enumeration value representing the validation status of a specified field.
Returns a [ValidationStatus]({{ site.dcv_enumerations }}code-parser/validation-status.html?lang=android) enumeration value representing the validation status of a specified field.

**See Also**

[ValidationStatus]({{ site.enumerations }}code-parser/validation-status.html?lang=android)
[ValidationStatus]({{ site.dcv_enumerations }}code-parser/validation-status.html?lang=android)

## getParsedFields

Expand Down
2 changes: 1 addition & 1 deletion programming/ios/api-reference/code-parser.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ func parse(_ bytes:Data, taskSettingName:String) throws -> ParsedResultItem

`bytes` The array of bytes which contain the code string.

`taskSettingName`<sub>Optional</sub> The name of [`CodeParserTaskSetting`]({{site.parameters}}file/task-settings/code-parser-task-settings.html) which defines the settings used for code parsing.
`taskSettingName`<sub>Optional</sub> The name of [`CodeParserTaskSetting`]({{site.dcv_parameter}}file/task-settings/code-parser-task-settings.html) which defines the settings used for code parsing.

**Return Value**

Expand Down
6 changes: 3 additions & 3 deletions programming/ios/api-reference/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ needGenerateH3Content: true

## Enumerations

* [`ErrorCode`]({{ site.enumerations }}core/error-code.html?lang=objc,swift)
* [`MappingStatus`]({{ site.enumerations }}code-parser/mapping-status.html?lang=objc,swift)
* [`ValidationStatus`]({{ site.enumerations }}code-parser/validation-status.html?lang=objc,swift)
* [`ErrorCode`]({{ site.dcv_enumerations }}core/error-code.html?lang=objc,swift)
* [`MappingStatus`]({{ site.dcv_enumerations }}code-parser/mapping-status.html?lang=objc,swift)
* [`ValidationStatus`]({{ site.dcv_enumerations }}code-parser/validation-status.html?lang=objc,swift)
4 changes: 2 additions & 2 deletions programming/ios/api-reference/parsed-result-item.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func getFieldMappingStatus(_ fieldName:String) -> MappingStatus

**Return Value**

Returns a [MappingStatus]({{ site.enumerations }}code-parser/mapping-status.html?lang=objc,swift) enumeration value representing the mapping status of a specified field.
Returns a [MappingStatus]({{ site.dcv_enumerations }}code-parser/mapping-status.html?lang=objc,swift) enumeration value representing the mapping status of a specified field.

### getFieldValidationStatus

Expand All @@ -94,7 +94,7 @@ func getFieldValidationStatus(_ fieldName:String) -> ValidationStatus

**Return Value**

Returns a [ValidationStatus]({{ site.enumerations }}code-parser/validation-status.html?lang=objc,swift) enumeration value representing the validation status of a specified field.
Returns a [ValidationStatus]({{ site.dcv_enumerations }}code-parser/validation-status.html?lang=objc,swift) enumeration value representing the validation status of a specified field.

### getFieldValue

Expand Down