Skip to content

Commit 81085f5

Browse files
update to internal commit b2b075f6
1 parent 5b69265 commit 81085f5

File tree

1 file changed

+7
-7
lines changed
  • programming/javascript/user-guide

1 file changed

+7
-7
lines changed

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/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>
5555
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.20/dist/license.js"></script>
5656
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-code-parser@2.0.20/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/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>
140140
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.20/dist/license.js"></script>
141141
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-code-parser@2.0.20/dist/dcp.js"></script>
142142
```
143143

144144
* UNPKG
145145

146146
```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>
148148
<script src="https://unpkg.com/dynamsoft-license@3.0.20/dist/license.js"></script>
149149
<script src="https://unpkg.com/dynamsoft-code-parser@2.0.20/dist/dcp.js"></script>
150150
```
@@ -162,15 +162,15 @@ Options to download the SDK:
162162
* yarn
163163

164164
```cmd
165-
yarn add dynamsoft-core@3.0.31 --save
165+
yarn add dynamsoft-core@3.0.30 --save
166166
yarn add dynamsoft-license@3.0.20 --save
167167
yarn add dynamsoft-code-parser@2.0.20 --save
168168
```
169169

170170
* npm
171171

172172
```cmd
173-
npm install dynamsoft-core@3.0.31 --save
173+
npm install dynamsoft-core@3.0.30 --save
174174
npm install dynamsoft-license@3.0.20 --save
175175
npm install dynamsoft-code-parser@2.0.20 --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/dynamsoft-core@3.0.31/dist/core.js"></script>
182+
<script src="./dynamsoft/distributables/dynamsoft-core@3.0.30/dist/core.js"></script>
183183
<script src="./dynamsoft/distributables/dynamsoft-license@3.0.20/dist/license.js"></script>
184184
<script src="./dynamsoft/distributables/dynamsoft-code-parser@2.0.20/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/dynamsoft-core@3.0.31/dist/";
223+
Dynamsoft.Core.CoreModule.engineResourcePaths.core = "https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.30/dist/";
224224
Dynamsoft.Core.CoreModule.engineResourcePaths.license = "https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.20/dist/";
225225
Dynamsoft.Core.CoreModule.engineResourcePaths.dcp = "https://cdn.jsdelivr.net/npm/dynamsoft-code-parser@2.0.20/dist/";
226226
```

0 commit comments

Comments
 (0)