Skip to content

Commit 95a1a43

Browse files
update to internal commit c6aec4a1
1 parent e62019f commit 95a1a43

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

assets/js/dcpWebVersionSearch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"dcvRepoWeb": [
77
{
88
"path": "/programming/javascript/api-reference/utility",
9-
"version": "1.0.20"
9+
"version": "1.0.30"
1010
}, {
1111
"path": "/programming/javascript/api-reference/license",
1212
"version": "3.0.20"
@@ -15,7 +15,7 @@
1515
"version": "2.0.20"
1616
}, {
1717
"path": "/programming/javascript/api-reference/core",
18-
"version": "3.0.20"
18+
"version": "3.0.30"
1919
}, {
2020
"path": "/programming/javascript/api-reference/image-processing",
2121
"version": "2.0.20"

programming/javascript/release-notes/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ breadcrumbText: Release Notes
99

1010
# Dynamsoft Code Parser JavaScript SDK - Release Notes
1111

12-
- [2.0.20 (12/xx/2023)](js-2.md/#2020-12xx2023)
12+
- [2.0.20 (01/19/2024)](js-2.md/#2020-01192024)
1313
- [1.1.0 (07/19/2022)](js-1.md/#110-07192022)
1414
- [1.0.2 (06/08/2022)](js-1.md/#102-06082022)

programming/javascript/release-notes/js-2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ noTitleIndex: true
1010

1111
# Release Notes for JavaScript SDK - 2.x
1212

13-
## 2.0.20 (12/xx/2023)
13+
## 2.0.20 (01/19/2024)
1414

1515
### Changelog
1616

@@ -50,4 +50,4 @@ The following shows the API changes
5050

5151
1. The method `initSettings()` can be used to set up a `CodeParser` instance for a parsing task.
5252
2. The method `resetSettings()` can be used to reset a `CodeParser` instance to the default settings.
53-
3. The property `disposed` returns whether a `CodeParser` instance has been disposed of.
53+
3. The property `disposed` returns whether a `CodeParser` instance has been disposed.

programming/javascript/user-guide/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The complete code of the "Hello World" example is shown below:
5151
<html lang="en">
5252
<head>
5353
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
54-
<script src="https://cdn.jsdelivr.net/npm/[email protected].30/dist/core.js"></script>
54+
<script src="https://cdn.jsdelivr.net/npm/[email protected].31/dist/core.js"></script>
5555
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/license.js"></script>
5656
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/dcp.js"></script>
5757
</head>
@@ -136,15 +136,15 @@ The simplest way to include the SDK is to use either the [jsDelivr](https://jsde
136136
* jsDelivr
137137

138138
```html
139-
<script src="https://cdn.jsdelivr.net/npm/[email protected].30/dist/core.js"></script>
139+
<script src="https://cdn.jsdelivr.net/npm/[email protected].31/dist/core.js"></script>
140140
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/license.js"></script>
141141
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/dcp.js"></script>
142142
```
143143

144144
* UNPKG
145145

146146
```html
147-
<script src="https://unpkg.com/[email protected].30/dist/core.js"></script>
147+
<script src="https://unpkg.com/[email protected].31/dist/core.js"></script>
148148
<script src="https://unpkg.com/[email protected]/dist/license.js"></script>
149149
<script src="https://unpkg.com/[email protected]/dist/dcp.js"></script>
150150
```
@@ -162,15 +162,15 @@ Options to download the SDK:
162162
* yarn
163163

164164
```cmd
165-
yarn add [email protected].30 --save
165+
yarn add [email protected].31 --save
166166
yarn add [email protected] --save
167167
yarn add [email protected] --save
168168
```
169169

170170
* npm
171171

172172
```cmd
173-
npm install [email protected].30 --save
173+
npm install [email protected].31 --save
174174
npm install [email protected] --save
175175
npm install [email protected] --save
176176
```
@@ -179,7 +179,7 @@ Depending on how you downloaded the SDK and where you put it, you can typically
179179

180180
```html
181181
<!-- Upon extracting the zip package into your project, you can generally include it in the following manner -->
182-
<script src="./dynamsoft/distributables/[email protected].30/dist/core.js"></script>
182+
<script src="./dynamsoft/distributables/[email protected].31/dist/core.js"></script>
183183
<script src="./dynamsoft/distributables/[email protected]/dist/license.js"></script>
184184
<script src="./dynamsoft/distributables/[email protected]/dist/dcp.js"></script>
185185
```
@@ -220,7 +220,7 @@ The purpose is to tell the SDK where to find the engine files (\*.worker.js, \*.
220220

221221
```javascript
222222
//The following code uses the jsDelivr CDN, feel free to change it to your own location of these files
223-
Dynamsoft.Core.CoreModule.engineResourcePaths.core = "https://cdn.jsdelivr.net/npm/[email protected].20/dist/";
223+
Dynamsoft.Core.CoreModule.engineResourcePaths.core = "https://cdn.jsdelivr.net/npm/[email protected].31/dist/";
224224
Dynamsoft.Core.CoreModule.engineResourcePaths.license = "https://cdn.jsdelivr.net/npm/[email protected]/dist/";
225225
Dynamsoft.Core.CoreModule.engineResourcePaths.dcp = "https://cdn.jsdelivr.net/npm/[email protected]/dist/";
226226
```

0 commit comments

Comments
 (0)