Skip to content

Commit e81a61b

Browse files
committed
release: v1.4.2
1 parent 4e7fa75 commit e81a61b

File tree

15 files changed

+24
-24
lines changed

15 files changed

+24
-24
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ We publish **MDS** library files on [npm](https://www.npmjs.com/package/dynamsof
129129
To use the precompiled script, simply include the following URL in a `<script>` tag:
130130

131131
```html
132-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-document-scanner@1.4.1/dist/dds.bundle.js"></script>
132+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-document-scanner@1.4.2/dist/dds.bundle.js"></script>
133133
```
134134

135135
Below is the complete Hello World sample page that uses this precompiled script from a CDN.
@@ -145,7 +145,7 @@ Below is the complete Hello World sample page that uses this precompiled script
145145
<meta charset="utf-8" />
146146
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
147147
<title>Mobile Document Scanner - Hello World</title>
148-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-document-scanner@1.4.1/dist/dds.bundle.js"></script>
148+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-document-scanner@1.4.2/dist/dds.bundle.js"></script>
149149
</head>
150150
<body>
151151
<h1 style="font-size: large">Mobile Document Scanner</h1>
@@ -310,7 +310,7 @@ Here we walk through the code in the Hello World sample to explain its function
310310
<title>Mobile Document Scanner - Hello World</title>
311311
<script src="../dist/dds.bundle.js"></script>
312312
<!--Alternatively, reference the script from CDN
313-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-document-scanner@1.4.1/dist/dds.bundle.js"></script>
313+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-document-scanner@1.4.2/dist/dds.bundle.js"></script>
314314
-->
315315
</head>
316316
</html>
@@ -325,7 +325,7 @@ In this step, we reference MDS with a relative path to the local file in the `<h
325325
Alternatively, you can reference the script hosted on a CDN, for example, on JSDelivr:
326326
327327
```html
328-
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-document-scanner@1.4.1/dist/dds.bundle.js"></script>
328+
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-document-scanner@1.4.2/dist/dds.bundle.js"></script>
329329
```
330330
331331
**MDS** wraps all its dependency scripts, so a **MDS** project only needs to include **MDS** itself as a single script. No additional dependency scripts are required.
@@ -757,7 +757,7 @@ Of these three properties, we focus on `cameraEnhancerUIPath`. Here we omit `con
757757
> If the performance of **MDS** does not meet your needs, you may require an algorithm template **customized for your usage scenario** for better results. Please contact our experienced [Technical Support Team](https://www.dynamsoft.com/company/contact/) to discuss your requirements. We can tailor a suitable template for you, which you can then apply by updating `templateFilePath`.
758758
759759
`cameraEnhancerUIPath` points to a file hosted on the jsDelivr CDN by default (see [Self-Host Resources: Point to Resources](#point-to-resources)):
760-
[https://cdn.jsdelivr.net/npm/dynamsoft-document-scanner@1.4.1/dist/document-scanner.ui.xml](https://cdn.jsdelivr.net/npm/dynamsoft-document-scanner@1.4.1/dist/document-scanner.ui.xml).
760+
[https://cdn.jsdelivr.net/npm/dynamsoft-document-scanner@1.4.2/dist/document-scanner.ui.xml](https://cdn.jsdelivr.net/npm/dynamsoft-document-scanner@1.4.2/dist/document-scanner.ui.xml).
761761
762762
This file defines the UI for `DocumentScannerView`. Since files on the CDN **cannot be modified directly**, you must use a **local version** to customize the UI. `cameraEnhancerUIPath` specifies the file path to this local version of the UI.
763763

dist/dds.bundle.esm.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/dds.bundle.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/dds.bundle.mjs

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dynamsoft-document-scanner",
3-
"version": "1.4.1",
3+
"version": "1.4.2",
44
"description": "Dynamsoft Document Scanner (DDS) is a ready-to-use SDK for capturing and enhancing document images with automatic border detection, correction, and customizable workflows.",
55
"files": [
66
"/dist",

samples/demo/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<title>Dynamsoft Document Scanner</title>
77
<link rel="stylesheet" href="./css/index.css" />
8-
<!-- <script src="https://cdn.jsdelivr.net/npm/dynamsoft-document-scanner@1.4.1/dist/dds.bundle.js"></script> -->
8+
<!-- <script src="https://cdn.jsdelivr.net/npm/dynamsoft-document-scanner@1.4.2/dist/dds.bundle.js"></script> -->
99
<!-- To use locally: -->
1010
<script src="../../dist/dds.bundle.js"></script>
1111
</head>

samples/frameworks/angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@angular/platform-browser": "^20.3.16",
1717
"@angular/platform-browser-dynamic": "^20.3.16",
1818
"@angular/router": "^20.3.16",
19-
"dynamsoft-document-scanner": "1.4.1",
19+
"dynamsoft-document-scanner": "1.4.2",
2020
"rxjs": "~7.8.0",
2121
"tslib": "^2.3.0",
2222
"zone.js": "^0.15.1"

samples/frameworks/react-hooks/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"dynamsoft-document-scanner": "1.4.1",
12+
"dynamsoft-document-scanner": "1.4.2",
1313
"react": "^19.1.1",
1414
"react-dom": "^19.1.1"
1515
},

samples/frameworks/vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"dynamsoft-document-scanner": "1.4.1",
12+
"dynamsoft-document-scanner": "1.4.2",
1313
"vue": "^3.5.18"
1414
},
1515
"devDependencies": {

0 commit comments

Comments
 (0)