From f0de9fbc0d689b35c41f24d0f3de821e9536e0ef Mon Sep 17 00:00:00 2001 From: ztyyLV <97287824+ztyyLV@users.noreply.github.com> Date: Mon, 3 Aug 2026 14:03:12 +0800 Subject: [PATCH 1/2] Fix markdown list spacing in download FAQ Add missing space after hyphen for the Step 2 list items in _articles/faq/download-service-only.md so the bullets render correctly (Windows .msi, Mac .pkg, Linux .rpm/.deb). Formatting-only change. --- _articles/faq/download-service-only.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_articles/faq/download-service-only.md b/_articles/faq/download-service-only.md index bf323827..43f4ceb6 100644 --- a/_articles/faq/download-service-only.md +++ b/_articles/faq/download-service-only.md @@ -32,9 +32,9 @@ However, considering that more and more enterprise users are using the Dynamic W Visit the CDN site: [https://www.unpkg.com/browse/dwt/dist/dist/](https://www.unpkg.com/browse/dwt/dist/dist/). **Step 2:** -For Windows users, please choose ".msi" installer -For Mac users, please choose ".pkg" installer -For Linux users, please choose ".rpm" or ".deb" installer accordingly +- For Windows users, please choose ".msi" installer +- For Mac users, please choose ".pkg" installer +- For Linux users, please choose ".rpm" or ".deb" installer accordingly ![download_installer](/assets/imgs/download_msi_from_cdn.png) From 26c2311527800d285dfe540a1de6e1148ed753de Mon Sep 17 00:00:00 2001 From: tony-xlh Date: Wed, 5 Aug 2026 10:13:24 +0800 Subject: [PATCH 2/2] fix conflicting DWTObject --- _articles/info/api/Dynamsoft_WebTwainEnv.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/_articles/info/api/Dynamsoft_WebTwainEnv.md b/_articles/info/api/Dynamsoft_WebTwainEnv.md index c666acef..ddfffb97 100644 --- a/_articles/info/api/Dynamsoft_WebTwainEnv.md +++ b/_articles/info/api/Dynamsoft_WebTwainEnv.md @@ -233,8 +233,8 @@ Dynamsoft.DWT.CreateDWTObject( "127.0.0.1", 18622, 18623, - function (DWTObject) { - DWTObject = DWTObject; + function (object) { + DWTObject = object; DWTObject.SelectSourceAsync() .then(function () { DWTObject.AcquireImageAsync({ @@ -257,8 +257,8 @@ OR var DWTObject; Dynamsoft.DWT.CreateDWTObject( "dwtcontrolContainer", - function (DWTObject) { - DWTObject = DWTObject; + function (object) { + DWTObject = object; DWTObject.SelectSourceAsync() .then(function () { DWTObject.AcquireImageAsync({ @@ -337,8 +337,8 @@ Dynamsoft.DWT.CreateDWTObjectEx( { WebTwainId: "dwtId", }, - function (DWTObject) { - DWTObject = DWTObject; + function (object) { + DWTObject = object; DWTObject.Viewer.bind("dwtcontrolContainer"); DWTObject.Viewer.show(); DWTObject.SelectSourceAsync()