From 0a7a0329cecb3430ab3aa496641acf4225c3d7ac Mon Sep 17 00:00:00 2001 From: tony-xlh Date: Mon, 29 Dec 2025 16:15:13 +0800 Subject: [PATCH 1/8] add release notes for v3.2 --- releasenotes/index.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/releasenotes/index.md b/releasenotes/index.md index df61b14..93efcb9 100644 --- a/releasenotes/index.md +++ b/releasenotes/index.md @@ -12,6 +12,21 @@ permalink: /releasenotes/index.html # Release Notes +## 3.2 (01/13/2026) + +### Improvements + +* Improved the context of search results, which now display the word before the searched word. +* Improved the rendering of selected annotations by reducing the number of items to draw. +* Improved the performance of selecting multiple annotations. +* Added a consistency check between the JavaScript and resource file versions. + +### Bug Fixes + +* Fixed the text overflow issue in custom stamps. +* Updated third-party libraries to enhance security. + + ## 3.1 (10/16/2025) ### UX Changes From 3bc4b1c677c7684bf7785f65901e848ddafba7d6 Mon Sep 17 00:00:00 2001 From: tony-xlh Date: Mon, 29 Dec 2025 16:16:48 +0800 Subject: [PATCH 2/8] add error code: -80053 --- api/errorlist.md | 1 + 1 file changed, 1 insertion(+) diff --git a/api/errorlist.md b/api/errorlist.md index c40f74c..a31e803 100644 --- a/api/errorlist.md +++ b/api/errorlist.md @@ -29,6 +29,7 @@ permalink: /api/errorlist.html -80050 | DDV.Core.init() has not been set up yet. -80051 | DDV.Core.init() has not been completed. -80052 | *XXX(API)*: Resource is not found from the specified engineResourcePath. + -80053 | *XXX(API)*: The resource version at the specified engineResourcePath does not match this version of Dynamsoft Document Viewer. ## Common Errors From d0d7fc412580ac7879f612cba8e95780a77a31aa Mon Sep 17 00:00:00 2001 From: tony-xlh Date: Mon, 29 Dec 2025 16:30:51 +0800 Subject: [PATCH 3/8] update release notes about pinch-to-zoom --- releasenotes/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/releasenotes/index.md b/releasenotes/index.md index 93efcb9..d5c6520 100644 --- a/releasenotes/index.md +++ b/releasenotes/index.md @@ -20,6 +20,7 @@ permalink: /releasenotes/index.html * Improved the rendering of selected annotations by reducing the number of items to draw. * Improved the performance of selecting multiple annotations. * Added a consistency check between the JavaScript and resource file versions. +* Added support for pinch-to-zoom under the `textSelection` mode of `EditViewer`. ### Bug Fixes From 180812fdae2c596000d6d55bfa3c383a008dcd25 Mon Sep 17 00:00:00 2001 From: tony-xlh Date: Wed, 31 Dec 2025 17:38:18 +0800 Subject: [PATCH 4/8] update latest version --- _data/product_version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/product_version.yml b/_data/product_version.yml index e618523..cb13fb3 100644 --- a/_data/product_version.yml +++ b/_data/product_version.yml @@ -1,7 +1,7 @@ useGroupedVersion: true version_info_list: - - value: latest version (3.1) + - value: latest version (3.2) - value: 2.1 - value: 1.1 From cff89e624c527d407f4f294b9febe13b5667da0c Mon Sep 17 00:00:00 2001 From: tony-xlh Date: Sun, 4 Jan 2026 15:21:23 +0800 Subject: [PATCH 5/8] add error -80053 for DDV.Core.init() --- api/namespace/ddv_core.md | 1 + 1 file changed, 1 insertion(+) diff --git a/api/namespace/ddv_core.md b/api/namespace/ddv_core.md index aaada82..86b337c 100644 --- a/api/namespace/ddv_core.md +++ b/api/namespace/ddv_core.md @@ -182,3 +182,4 @@ await Dynamsoft.DDV.Core.init(); Error Code | Error Message --------|----------------------------------------------------- -80052 | *XXX(API)*: Resource is not found from the specified engineResourcePath. + -80053 | *XXX(API)*: The resource version at the specified engineResourcePath does not match this version of Dynamsoft Document Viewer. From b49fab35a51916317c8f610e3fc3ff2d4f4d1849 Mon Sep 17 00:00:00 2001 From: tony-xlh Date: Sun, 4 Jan 2026 15:22:15 +0800 Subject: [PATCH 6/8] mention mobile in the release note about pinch-to-zoom --- releasenotes/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releasenotes/index.md b/releasenotes/index.md index d5c6520..47bdf03 100644 --- a/releasenotes/index.md +++ b/releasenotes/index.md @@ -20,7 +20,7 @@ permalink: /releasenotes/index.html * Improved the rendering of selected annotations by reducing the number of items to draw. * Improved the performance of selecting multiple annotations. * Added a consistency check between the JavaScript and resource file versions. -* Added support for pinch-to-zoom under the `textSelection` mode of `EditViewer`. +* Added support for pinch-to-zoom under `textSelection` mode of `EditViewer` for mobile. ### Bug Fixes From 31531808da303632b12007c40b4414ee0d20f9a4 Mon Sep 17 00:00:00 2001 From: tony-xlh Date: Tue, 6 Jan 2026 11:26:42 +0800 Subject: [PATCH 7/8] move 3rd party libraries update to improvements --- releasenotes/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/releasenotes/index.md b/releasenotes/index.md index 47bdf03..82821e5 100644 --- a/releasenotes/index.md +++ b/releasenotes/index.md @@ -21,11 +21,11 @@ permalink: /releasenotes/index.html * Improved the performance of selecting multiple annotations. * Added a consistency check between the JavaScript and resource file versions. * Added support for pinch-to-zoom under `textSelection` mode of `EditViewer` for mobile. +* Updated third-party libraries to enhance security. ### Bug Fixes -* Fixed the text overflow issue in custom stamps. -* Updated third-party libraries to enhance security. +Fixed the text overflow issue in custom stamps. ## 3.1 (10/16/2025) From a847baa01f2b0344e39b661a0facbc72744d6df5 Mon Sep 17 00:00:00 2001 From: tony-xlh Date: Wed, 7 Jan 2026 16:00:54 +0800 Subject: [PATCH 8/8] add how to get a font in addFonts() --- api/namespace/ddv.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/namespace/ddv.md b/api/namespace/ddv.md index f610e33..3019167 100644 --- a/api/namespace/ddv.md +++ b/api/namespace/ddv.md @@ -190,7 +190,7 @@ const defaultEditUi = Dynamsoft.DDV.getDefaultUiConfig("editViewer"); ### `` addFonts() -Add font to library. +Add font to library. You can fetch a font via an URL or use the [`queryLocalFonts()`](https://developer.mozilla.org/en-US/docs/Web/API/Window/queryLocalFonts) API to get the fonts installed on the local system. **Syntax**