@@ -51,7 +51,7 @@ The complete code of the "Hello World" example is shown below:
51
51
<html lang =" en" >
52
52
<head >
53
53
<meta name =" viewport" content =" width=device-width, initial-scale=1.0" />
54
- <script src =" https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.31 /dist/core.js" ></script >
54
+ <script src =" https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.30 /dist/core.js" ></script >
55
55
<script src =" https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.20/dist/license.js" ></script >
56
56
<script src =" https://cdn.jsdelivr.net/npm/dynamsoft-code-parser@2.0.20/dist/dcp.js" ></script >
57
57
</head >
@@ -136,15 +136,15 @@ The simplest way to include the SDK is to use either the [jsDelivr](https://jsde
136
136
* jsDelivr
137
137
138
138
``` html
139
- <script src =" https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.31 /dist/core.js" ></script >
139
+ <script src =" https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.30 /dist/core.js" ></script >
140
140
<script src =" https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.20/dist/license.js" ></script >
141
141
<script src =" https://cdn.jsdelivr.net/npm/dynamsoft-code-parser@2.0.20/dist/dcp.js" ></script >
142
142
```
143
143
144
144
* UNPKG
145
145
146
146
```html
147
- <script src =" https://unpkg.com/dynamsoft-core@3.0.31 /dist/core.js" ></script >
147
+ <script src =" https://unpkg.com/dynamsoft-core@3.0.30 /dist/core.js" ></script >
148
148
<script src =" https://unpkg.com/dynamsoft-license@3.0.20/dist/license.js" ></script >
149
149
<script src =" https://unpkg.com/dynamsoft-code-parser@2.0.20/dist/dcp.js" ></script >
150
150
```
@@ -162,15 +162,15 @@ Options to download the SDK:
162
162
* yarn
163
163
164
164
```cmd
165
- yarn add dynamsoft-core@3.0.31 --save
165
+ yarn add dynamsoft-core@3.0.30 --save
166
166
yarn add dynamsoft-license@3.0.20 --save
167
167
yarn add dynamsoft-code-parser@2.0.20 --save
168
168
```
169
169
170
170
* npm
171
171
172
172
```cmd
173
- npm install dynamsoft-core@3.0.31 --save
173
+ npm install dynamsoft-core@3.0.30 --save
174
174
npm install dynamsoft-license@3.0.20 --save
175
175
npm install dynamsoft-code-parser@2.0.20 --save
176
176
```
@@ -179,7 +179,7 @@ Depending on how you downloaded the SDK and where you put it, you can typically
179
179
180
180
```html
181
181
<!-- Upon extracting the zip package into your project, you can generally include it in the following manner -->
182
- <script src =" ./dynamsoft/distributables/dynamsoft-core@3.0.31 /dist/core.js" ></script >
182
+ <script src =" ./dynamsoft/distributables/dynamsoft-core@3.0.30 /dist/core.js" ></script >
183
183
<script src =" ./dynamsoft/distributables/dynamsoft-license@3.0.20/dist/license.js" ></script >
184
184
<script src =" ./dynamsoft/distributables/dynamsoft-code-parser@2.0.20/dist/dcp.js" ></script >
185
185
```
@@ -220,7 +220,7 @@ The purpose is to tell the SDK where to find the engine files (\*.worker.js, \*.
220
220
221
221
``` javascript
222
222
// 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/dynamsoft-core@3.0.31 /dist/" ;
223
+ Dynamsoft .Core .CoreModule .engineResourcePaths .core = " https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.30 /dist/" ;
224
224
Dynamsoft .Core .CoreModule .engineResourcePaths .license = " https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.20/dist/" ;
225
225
Dynamsoft .Core .CoreModule .engineResourcePaths .dcp = " https://cdn.jsdelivr.net/npm/dynamsoft-code-parser@2.0.20/dist/" ;
226
226
```
0 commit comments