Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.sh text eol=lf
4 changes: 2 additions & 2 deletions _articles/general-usage/license.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ DLS-connected license keys begin with the `DLS` prefix. Learn more about the Dyn

</div><div class="multi-panel-start"></div>

Offline license keys usually begin with the `f00` prefix.
Offline license keys usually begin with the `f` prefix.

1. Without add-ons: activate the license in the customer portal, then acquire the offline key. This key only authorizes the use of the core DWT module.
2. With add-ons: activate the license in the customer portal, then acquire the offline keys. This may result in multiple license keys - one for the base DWT module, and separate ones for the add-ons. To use multiple keys in a single project, concatenate them (in any order) into a single string, separated with semicolons.
Expand Down Expand Up @@ -110,7 +110,7 @@ To use a full license key, set the value of [`Dynamsoft.DWT.ProductKey`](/_artic
2. Assign the license key string to [`Dynamsoft.DWT.ProductKey`](/_articles/info/api/Dynamsoft_WebTwainEnv.md#productkey):

```javascript
Dynamsoft.DWT.ProductKey = 'f00******;'; // Use an offline key
Dynamsoft.DWT.ProductKey = 'f********;'; // Use an offline key
```

3. Load (or reload, if replacing an existing key) the web application and see that it starts scanning.
Expand Down
2 changes: 1 addition & 1 deletion _articles/info/api/WebTwain_Acquire.md
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ SelectSourceAsync(deviceType?: Dynamsoft.DWT.EnumDWT_DeviceType | number): Promi

**Parameters**

`deviceType`: Specify the device type of scanners. Please refer to [`EnumDWT_DeviceType`](/_articles/info/api/Dynamsoft_Enum.md#dynamsoftdwtenumdwt_devicetype).
`deviceType`: Specify the device type of scanners. Please refer to [`EnumDWT_DeviceType`](/_articles/info/api/Dynamsoft_Enum.md#dynamsoftdwtenumdwt_devicetype). The default value selects the following device types: `TWAINSCANNER | WIASCANNER | TWAINX64SCANNER | ICASCANNER | SANESCANNER`.

**Availability**
<div class="availability">
Expand Down
1 change: 1 addition & 0 deletions scripts/download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,4 @@ echo "=== Build completed ==="
echo "Final directory: $FINAL_DIR"
echo "Final directory contents:"
ls -la "$FINAL_DIR"

1 change: 1 addition & 0 deletions web.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
</system.web>
<system.webServer>
<staticContent>
<remove fileExtension=".md" />
<mimeMap fileExtension=".md" mimeType="text/markdown" />
</staticContent>
<rewrite>
Expand Down