From 187c940e56d10e651be28c0c604d44d575994ed0 Mon Sep 17 00:00:00 2001 From: wanglin2 <1013335014@qq.com> Date: Mon, 7 Aug 2023 17:54:56 +0800 Subject: [PATCH] Doc: update --- simple-mind-map/package.json | 2 +- web/src/pages/Doc/catalogList.js | 1 + web/src/pages/Doc/en/changelog/index.md | 44 ++++++++++++++++++++++ web/src/pages/Doc/en/changelog/index.vue | 28 ++++++++++++++ web/src/pages/Doc/en/constructor/index.md | 5 ++- web/src/pages/Doc/en/constructor/index.vue | 19 +++++++++- web/src/pages/Doc/en/node/index.md | 6 +++ web/src/pages/Doc/en/node/index.vue | 5 +++ web/src/pages/Doc/en/painter/index.md | 35 +++++++++++++++++ web/src/pages/Doc/en/painter/index.vue | 38 +++++++++++++++++++ web/src/pages/Doc/en/search/index.md | 4 +- web/src/pages/Doc/en/search/index.vue | 9 ++++- web/src/pages/Doc/en/utils/index.md | 14 +++++++ web/src/pages/Doc/en/utils/index.vue | 13 +++++++ web/src/pages/Doc/routerList.js | 4 +- web/src/pages/Doc/zh/changelog/index.md | 44 ++++++++++++++++++++++ web/src/pages/Doc/zh/changelog/index.vue | 28 ++++++++++++++ web/src/pages/Doc/zh/constructor/index.md | 5 ++- web/src/pages/Doc/zh/constructor/index.vue | 21 ++++++++++- web/src/pages/Doc/zh/node/index.md | 6 +++ web/src/pages/Doc/zh/node/index.vue | 5 +++ web/src/pages/Doc/zh/painter/index.md | 35 +++++++++++++++++ web/src/pages/Doc/zh/painter/index.vue | 38 +++++++++++++++++++ web/src/pages/Doc/zh/search/index.md | 4 +- web/src/pages/Doc/zh/search/index.vue | 9 ++++- web/src/pages/Doc/zh/utils/index.md | 14 ++++++- web/src/pages/Doc/zh/utils/index.vue | 12 +++++- 27 files changed, 433 insertions(+), 15 deletions(-) create mode 100644 web/src/pages/Doc/en/painter/index.md create mode 100644 web/src/pages/Doc/en/painter/index.vue create mode 100644 web/src/pages/Doc/zh/painter/index.md create mode 100644 web/src/pages/Doc/zh/painter/index.vue diff --git a/simple-mind-map/package.json b/simple-mind-map/package.json index 8a58a94a..8bcf3c53 100644 --- a/simple-mind-map/package.json +++ b/simple-mind-map/package.json @@ -1,6 +1,6 @@ { "name": "simple-mind-map", - "version": "0.6.11-fix.1", + "version": "0.6.12", "description": "一个简单的web在线思维导图", "authors": [ { diff --git a/web/src/pages/Doc/catalogList.js b/web/src/pages/Doc/catalogList.js index 7aca8d52..640f7c8e 100644 --- a/web/src/pages/Doc/catalogList.js +++ b/web/src/pages/Doc/catalogList.js @@ -33,6 +33,7 @@ let APIList = [ 'touchEvent', 'nodeImgAdjust', 'search', + 'painter', 'xmind', 'markdown', 'utils' diff --git a/web/src/pages/Doc/en/changelog/index.md b/web/src/pages/Doc/en/changelog/index.md index 8de9b46f..2a86db64 100644 --- a/web/src/pages/Doc/en/changelog/index.md +++ b/web/src/pages/Doc/en/changelog/index.md @@ -1,5 +1,49 @@ # Changelog +## 0.6.12 + +Fix: + +> 1.Fix the issue where the indicator in the mini map will also move out of the mini map area when the mind map is completely moved out of the visible area. +> +> 2.Fix the issue of overly sensitive dual finger scaling on the mobile end. +> +> 3.Fix the issue of holding down nodes while dragging the canvas in read-only mode. +> +> 4.Fix the issue of incorrect rendering of the mini map when the distance between the mind map and the top left corner of the browser window is not 0. +> +> 5.Fix the issue of the prompt block being too large for the new location when moving nodes. +> +> 6.Fix the issue where search cannot be replaced with empty characters. +> +> 7.Fixed the issue of missing line breaks after searching and replacing in rich text mode. +> +> 8.Fixed the issue of missing focus in the input box when clicking on text editing in the outline. + +New: + +> 1.Adding a callback parameter to the node move end event (node_drag) can obtain the uid of the move to the node. +> +> 2.Support specifying the location to which internal elements are added through configuration. +> +> 3.Support the format brush function. +> +> 4.Under the curve style, the connection line style of the root node supports consistency with other nodes. +> +> 5.Search supports continuous replacement. +> +> 6.Add and delete button for node image. +> +> 7.Support dragging the canvas while holding down the middle mouse button. + +Demo: + +> 1.Provide an application takeover mode to facilitate docking with one's own storage services; Supports setting static resource paths at runtime. +> +> 2.Refactoring outline: 1. No longer use the text style that comes with the node; 2. Support full screen editing of the outline; 3. The outline supports dragging and moving nodes; 4. The outline supports deleting nodes. +> +> 3.Fix the issue of interface dark mode not updating in the scenario of importing data. + ## 0.6.11-fix.1 Fix: 1.Fixed the issue of invisible editing when node text is white. diff --git a/web/src/pages/Doc/en/changelog/index.vue b/web/src/pages/Doc/en/changelog/index.vue index 1b919758..433ec8c0 100644 --- a/web/src/pages/Doc/en/changelog/index.vue +++ b/web/src/pages/Doc/en/changelog/index.vue @@ -1,6 +1,34 @@