Skip to content

Commit db37bcd

Browse files
authored
Merge pull request #857 from dynamsoft-docs/preview
update to internal commit fab9d5cb
2 parents cd3cebf + fcba74a commit db37bcd

File tree

16 files changed

+33
-100
lines changed

16 files changed

+33
-100
lines changed

_includes/version-list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<span class="fullVersionHistory">
22
<ul class="fullVersionInfo">
3-
<li onclick="changeVersion(this)">Latest Version (18.5)</li>
3+
<li onclick="changeVersion(this)">Latest Version (18.5.1)</li>
44
<li onclick="changeVersion(this)">Version 18.4</li>
55
<li onclick="changeVersion(this)">Version 18.3</li>
66
<li onclick="changeVersion(this)">Version 18.1</li>

_layouts/default-layout-OLD.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
</footer>
8686

8787
<script type="text/javascript">
88-
$(".currentVersion").text("latest version (18.5)");
88+
$(".currentVersion").text("latest version (18.5.1)");
8989
anchors.add();
9090
UrlReplace();
9191
FullTreeMenuList('{{page.needAutoGenerateSidebar}}', '{{page.needGenerateH3Content}}');

articles/extended-usage/dynamsoft-service-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ redirect_from:
1111
- /indepth/deployment/service.html
1212
---
1313

14-
# Dynamsoft Service
14+
# Configuring the Dynamsoft Service
1515

1616
> This article is meant exclusively for the Desktop Service Edition of Dynamic Web TWAIN.
1717

articles/extended-usage/pdf-processing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ redirect_from:
1010
- /indepth/features/pdf.html
1111
---
1212

13-
# PDF Handling
13+
# Processing PDFs
1414

1515
PDFs are widely used in many and various industries, and presently are the only non-image file type that `Dynamic Web TWAIN` supports. In this next section, we will address all the input and output operations that allow the user to properly handle PDF files.
1616

articles/extended-usage/ui-customization.md

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Generally speaking, most UI elements are configured in the file **dynamsoft.webt
1818

1919
## Installation Dialog
2020

21-
![UI 1]({{site.assets}}imgs/UI-1.png)
21+
![UI 1]({{site.assets}}imgs/Initialization-1.png)
2222

2323
This dialog comes up when using `Dynamic Web TWAIN` scanner module under one of the following conditions:
2424

@@ -77,20 +77,6 @@ DWTObject.RegisterEvent('OnInternetTransferPercentage',
7777

7878
## Language
7979

80-
### Security Dialog
81-
82-
If you have enabled the security dialogs, you may see the following dialog when you try to scan
83-
84-
![UI-5]({{site.assets}}imgs/UI-5.png)
85-
86-
You can change the language with the method [ `SetLanguage()` ]({{site.info}}api/WebTwain_Util.html#setlanguage). The following sets the language to Spanish
87-
88-
``` javascript
89-
DWTObject.SetLanguage(Dynamsoft.DWT.EnumDWT_Language.Spanish);
90-
```
91-
92-
![UI-6]({{site.assets}}imgs/UI-6.png)
93-
9480
### Error Messages
9581

9682
`Dynamic Web TWAIN` has many built-in error messages as shown [here]({{site.info}}api/appendix.html#error-list). Each `ErrorString` has its own `ErrorCode` . To change the language of the message, you can read the `ErrorCode` and output the error string you have customized. For example

articles/general-usage/resource-loading.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ permalink: /general-usage/resource-loading.html
1212

1313
Before using the **Dynamic Web TWAIN SDK** (DWT), the web application must first load its resource files. These resource files may be gathered from three locations, with slightly different characteristics. DWT provides **core resources** (i.e. core functionality) that load directly into the web application. This in turn loads **supporting resources**, which include add-ons, css, and more - read about them in detail [here]({{site.faq}}what-are-the-resources-files.html).
1414

15+
## Note on File Size
16+
17+
The installers for the [Dynamsoft Service]({{site.extended-usage}}dynamsoft-service-configuration.html) are numerous and take up a lot of disk space. We may save disk space by removing unused installers for unused platforms/architectures if called for, whether for deployment or for development environments.
18+
19+
The official SDK installers store the installers under the `/dist` directory, and the package managers/CDNs keep them under `/dist/dist`. For example, if the web application does not support end users on Linux-based platforms, we may elect to remove `DynamsoftServiceSetup.deb`, `DynamsoftServiceSetup.rpm`, etc.
20+
1521
## Loading from Official SDK Package
1622

1723
The official [DWT installer](https://www.dynamsoft.com/web-twain/downloads) installs the SDK with a 30-day free trial (license key included), and contains the resource scripts, along with SDK documentation, and samples. This method is useful for developers to quickly evaluate the SDK. The resource files may be obtained from the following locations after installation:

assets/js/setLatestVersion.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var versionNoteLatestVersion = "18.5"
1+
var versionNoteLatestVersion = "18.5.1"
22

33
$(function() {
44
$("#versionNoteLatestVersion").text(" (" + versionNoteLatestVersion + ")")

faq/upload-using-background-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ Yes. You can use the File Uploader to create and run an upload job.
1717

1818
The File Uploader is an independent component that is dedicated to file uploading. It can be used seamlessly with Dynamic Web TWAIN.
1919

20-
Please check here for more information: <a href="{{site.indepth}}features/output.html#http-with-the-file-uploader" target="_blank">HTTP with the File Uploader</a>.
20+
Learn about how to use the File Uploader [here]({{site.general-usage}}image-export/server-upload.html#fileuploader).

faq/use-dwt-in-citrix-env.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ https://www.dynamsoft.com/web-twain/docs/faq/#project-deployment-and-end-user-in
1616

1717
If too many end-users access the same scanning application using the same communication port, it can slow down server response and increase wait time.
1818

19-
To optimize user experience within the Citrix environment, Dynamsoft offers the enhanced mode which distributes end-users among different ports. For more information, please check here: <a href="https://www.dynamsoft.com/blog/insights/document-scanning-within-citrix/" target="_blank">Optimized Document Scanning Within Citrix Remote Desktop</a>
19+
To optimize user experience within the Citrix environment, Dynamsoft offers **enhanced mode** which distributes end-users among different ports. For more information, please check here: <a href="https://www.dynamsoft.com/blog/insights/document-scanning-within-citrix/" target="_blank">Optimized Document Scanning Within Citrix Remote Desktop</a>
20+
21+
**Note**: enabling enhanced mode requires license key modifications. Please contact our [support team]({{site.about}}getsupport.html) to use enhanced mode functionalities.
2022

2123
To configure the enhanced mode, please follow the steps below:
2224

getstarted/upgrade.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -51,24 +51,18 @@ Beginning with Dynamic Web TWAIN v16.0, the Dynamsoft Service is backward compat
5151

5252
## Update `dwt` package
5353

54-
If your application uses a framework or library like Angular, React, Vue, etc. and uses the `dwt` package, you can just install the new version of Dynamic Web TWAIN to replace the old one and update the types definition as well. For example:
54+
If your application uses a framework or library like Angular, React, Vue, etc. and uses the `dwt` package, you can just install the new version of Dynamic Web TWAIN to replace the old one. For example:
55+
56+
> Note: the `@types/dwt` package is no longer used, and types are now included within the `dwt` package itself as of [version 17.0]({{site.info}}schedule/stable.html#17004202021).
5557
5658
For npm:
5759

5860
``` cmd
5961
npm install dwt
6062
```
6163

62-
``` cmd
63-
npm install @types/dwt
64-
```
65-
6664
For Yarn:
6765

6866
``` cmd
6967
yarn add dwt
70-
```
71-
72-
``` cmd
73-
yarn add @types/dwt
74-
```
68+
```

0 commit comments

Comments
 (0)