Skip to content

Commit dd144b2

Browse files
committed
replace 19.2.0 to 19.3.0 using dwt package
1 parent 80a2672 commit dd144b2

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

_articles/extended-usage/advanced-initialization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,15 @@ The resource files loaded from CDNs and package managers slightly differ from th
7171
<html>
7272
<head>
7373
<!-- Load resources from UNPKG CDN -->
74-
<script src="https://unpkg.com/dwt@19.2.0/dist/dynamsoft.webtwain.min.js"></script>
74+
<script src="https://unpkg.com/dwt@19.3.0/dist/dynamsoft.webtwain.min.js"></script>
7575
</head>
7676

7777
<body>
7878
<div id="dwtcontrolContainer"></div> <!-- The WebTwain object binds to this div by default -->
7979
<script>
8080
var DWTObject; // Use this to store the WebTwain object after retrieval
8181
82-
Dynamsoft.DWT.ResourcesPath = "https://unpkg.com/dwt@19.2.0/dist"; // Load supporting resources from here
82+
Dynamsoft.DWT.ResourcesPath = "https://unpkg.com/dwt@19.3.0/dist"; // Load supporting resources from here
8383
Dynamsoft.DWT.ProductKey = ""; // Add product key here
8484
8585
// Configure the default WebTwain instance

_articles/faq/dwt-with-annotation.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Deliver the SDK dependencies with either the [jsDelivr](https://jsdelivr.com/) o
3434

3535
```html
3636
<!--Dynamic Web TWAIN-->
37-
<script src="https://cdn.jsdelivr.net/npm/dwt@19.2.0/dist/dynamsoft.webtwain.min.js"></script>
37+
<script src="https://cdn.jsdelivr.net/npm/dwt@19.3.0/dist/dynamsoft.webtwain.min.js"></script>
3838
<!--Dynamsoft Document Viewer-->
3939
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-document-viewer@3.0.0/dist/ddv.js"></script>
4040
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/dynamsoft-document-viewer@3.0.0/dist/ddv.css">
@@ -44,7 +44,7 @@ Deliver the SDK dependencies with either the [jsDelivr](https://jsdelivr.com/) o
4444

4545
```html
4646
<!--Dynamic Web TWAIN-->
47-
<script src="https://unpkg.com/dwt@19.2.0/dist/dynamsoft.webtwain.min.js"></script>
47+
<script src="https://unpkg.com/dwt@19.3.0/dist/dynamsoft.webtwain.min.js"></script>
4848
<!--Dynamsoft Document Viewer-->
4949
<script src="https://unpkg.com/dynamsoft-document-viewer@3.0.0/dist/ddv.js"></script>
5050
<link rel="stylesheet" href="https://unpkg.com/dynamsoft-document-viewer@3.0.0/dist/ddv.css">
@@ -118,15 +118,15 @@ API Reference
118118
Reference a CDN like `jsDelivr` to fetch most resources using `Dynamsoft.DWT.ResourcesPath`. Notably these resources exclude DWT Service installers, which exceed the `jsDelivr` CDN per-file size limit. You have a few options to set this path with `Dynamsoft.DWT.ServiceInstallerLocation`:
119119

120120
1. [Install the DWT SDK](https://www.dynamsoft.com/web-twain/downloads/), extract the DWT service installers (under path like `C:\Program Files (x86)\Dynamsoft\Dynamic Web TWAIN SDK 19.2\Resources\dist`), then self-host the DWT Service installers with `Dynamsoft.DWT.ServiceInstallerLocation = "https://example.com/DWT/Resources/dist"`.
121-
2. Use a different CDN with a higher per-file size limit by referencing the location with `Dynamsoft.DWT.ServiceInstallerLocation = "https://unpkg.com/dwt@19.2.0/dist/dist"`.
121+
2. Use a different CDN with a higher per-file size limit by referencing the location with `Dynamsoft.DWT.ServiceInstallerLocation = "https://unpkg.com/dwt@19.3.0/dist/dist"`.
122122

123123
```javascript
124124
// Create Dynamic Web TWAIN object
125125
// Public trial license which is valid for 24 hours
126126
// You can request a 30-day trial key from https://www.dynamsoft.com/customer/license/trialLicense/?product=dwtddv
127127
Dynamsoft.DWT.ProductKey = "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9";
128128
Dynamsoft.DWT.UseDefaultViewer = false;
129-
Dynamsoft.DWT.ResourcesPath = "https://cdn.jsdelivr.net/npm/dwt@19.2.0/dist";
129+
Dynamsoft.DWT.ResourcesPath = "https://cdn.jsdelivr.net/npm/dwt@19.3.0/dist";
130130
// Do not forget to set your installer path
131131
Dynamsoft.DWT.ServiceInstallerLocation = "YOUR_INSTALLER_PATH_HERE";
132132

@@ -285,7 +285,7 @@ API Reference
285285
<html>
286286
<head>
287287
<title>HelloWorld</title>
288-
<script src=" https://cdn.jsdelivr.net/npm/dwt@19.2.0/dist/dynamsoft.webtwain.min.js"></script>
288+
<script src=" https://cdn.jsdelivr.net/npm/dwt@19.3.0/dist/dynamsoft.webtwain.min.js"></script>
289289
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-document-viewer@3.0.0/dist/ddv.js"></script>
290290
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/dynamsoft-document-viewer@3.0.0/dist/ddv.css">
291291
</head>
@@ -322,7 +322,7 @@ let DWObject, editViewer, ddvDoc;
322322
// Create Dynamic Web TWAIN object
323323
Dynamsoft.DWT.ProductKey = license;
324324
Dynamsoft.DWT.UseDefaultViewer = false;
325-
Dynamsoft.DWT.ResourcesPath = "https://cdn.jsdelivr.net/npm/dwt@19.2.0/dist";
325+
Dynamsoft.DWT.ResourcesPath = "https://cdn.jsdelivr.net/npm/dwt@19.3.0/dist";
326326
// Do not forget to set your installer path
327327
Dynamsoft.DWT.ServiceInstallerLocation = "YOUR_INSTALLER_PATH_HERE";
328328

_articles/indepth/development/angular.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ ng new dwt-angular
2828
### **cd** to the root directory of the application and install the dependencies
2929

3030
``` cmd
31-
npm install dwt@19.2.0
31+
npm install dwt@19.3.0
3232
```
3333

3434
## Configure the project

_articles/indepth/development/react.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ npm install
4040
```
4141

4242
``` cmd
43-
npm install dwt@19.2.0 ncp
43+
npm install dwt@19.3.0 ncp
4444
```
4545

4646
> `ncp` is used to copy static resources files.

_articles/indepth/development/vue.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ vue create dwt-vue
3333
### Navigate to the root directory of the application and install the `dwt` and `ncp` package
3434

3535
``` cmd
36-
yarn add dwt@19.2.0
36+
yarn add dwt@19.3.0
3737
```
3838

3939
``` cmd
@@ -232,7 +232,7 @@ npm install
232232
```
233233

234234
``` cmd
235-
npm install dwt@19.2.0
235+
npm install dwt@19.3.0
236236
```
237237

238238
``` cmd

0 commit comments

Comments
 (0)