mirror of
https://github.com/wanglin2/mind-map.git
synced 2026-02-23 03:17:41 +08:00
文档新增changelog
This commit is contained in:
parent
1c7edf47e3
commit
df32655321
138
README.md
138
README.md
@ -1163,3 +1163,141 @@ The built-in themes and icons in the project come from:
|
||||
# License
|
||||
|
||||
[MIT](https://opensource.org/licenses/MIT)
|
||||
|
||||
# Changelog
|
||||
|
||||
## 0.2.21
|
||||
|
||||
New: Support node horizontal line style.
|
||||
|
||||
## 0.2.20
|
||||
|
||||
fix:When the distance from the canvas to the upper left corner of the window is not 0, the node dragging will have an offset problem.
|
||||
|
||||
## 0.2.19
|
||||
|
||||
fix:When the node is not activated, pressing any key will trigger the problem of automatic focus.
|
||||
|
||||
## 0.2.18
|
||||
|
||||
optimization:Keyboard navigation algorithm for finding focus, supporting simple algorithm, region algorithm and shadow algorithm.
|
||||
|
||||
## 0.2.17
|
||||
|
||||
New:Keyboard navigation, that is, switch the active nodes through the direction keys; The node text content can be edited directly in the outline.
|
||||
|
||||
## 0.2.16
|
||||
|
||||
optimization:Mini map; drag performance.
|
||||
|
||||
## 0.2.15
|
||||
|
||||
optimization:Local file editing.
|
||||
|
||||
New:Double-click the image in the node to preview the large image.
|
||||
|
||||
## 0.2.14
|
||||
|
||||
optimization:Automatically expand when inserting child nodes.
|
||||
|
||||
fix:The error occurred when the mini map was closed.
|
||||
|
||||
## 0.2.13
|
||||
|
||||
fix:The child node is missing when collapsing state replication.
|
||||
|
||||
## 0.2.11
|
||||
|
||||
fix:Fix the problem that is lost when the child node collapses state replication.
|
||||
|
||||
New:Support mini map.
|
||||
|
||||
## 0.2.10
|
||||
|
||||
optimization:Focus immediately when you manually create a node.
|
||||
|
||||
fix:Connection style depth update problem.
|
||||
|
||||
New:Logical structure diagram and mind map add linear connection style and direct connection style.
|
||||
|
||||
## 0.2.9
|
||||
|
||||
New:Support the creation, opening and saving of local files on the computer.
|
||||
|
||||
## 0.2.8
|
||||
|
||||
fix:Xmind8 version file import failed.
|
||||
|
||||
New:Expanding to the specified level is supported.
|
||||
|
||||
## 0.2.7
|
||||
|
||||
fix:The root node adds multiple nodes to burst the stack.
|
||||
|
||||
New:Support import .xmind file.
|
||||
|
||||
## 0.2.6
|
||||
|
||||
New:The title tag is added when exporting svg.
|
||||
|
||||
## 0.2.5
|
||||
|
||||
fix:Bugs caused by node expansion and collapse.
|
||||
|
||||
New:Node supports custom line styles.
|
||||
|
||||
## 0.2.4
|
||||
|
||||
New:Nodes support multiple shapes.
|
||||
|
||||
## 0.2.3
|
||||
|
||||
fix:Shortcut key conflicts when editing node text; Right-click menu shortcut prompt error; Right-click menu shortcut prompt.
|
||||
|
||||
## 0.2.2
|
||||
|
||||
fix:The input string '/' conflicts with the shortcut key '/'.
|
||||
|
||||
## 0.2.1
|
||||
|
||||
New:Support export as pdf.
|
||||
|
||||
## 0.2.0
|
||||
|
||||
New:Classic4 theme;Support adding summary; Support free drag; Move Node Up, Move Node Down, Copy Node, Cut Node, Paste Node, One-click Organize Cloth Shortcut; Library packaging; Ctrl+left click to select multiple.
|
||||
|
||||
## 0.1.18
|
||||
|
||||
fix:The problem that the node icon cannot be deleted; The tool button is grayed out and can still be clicked.
|
||||
|
||||
## 0.1.17
|
||||
|
||||
New:Add read-only mode.
|
||||
|
||||
## 0.1.16
|
||||
|
||||
New:Node notes support markdown and rich text.
|
||||
|
||||
fix:Can't select text; Node annotations cannot hide problems after node activation; When editing text such as hyperlinks, notes, labels, etc., the return key and return key conflict with the shortcut key of mind map.
|
||||
|
||||
## 0.1.15
|
||||
|
||||
New:The status data supports saving the active status and view status (drag position, zoom value);Support node drag.
|
||||
|
||||
## 0.1.14
|
||||
|
||||
fix:There are problems with setting topics when activating nodes.
|
||||
|
||||
## 0.1.13
|
||||
|
||||
New:Shortcut key function; Support export as json。
|
||||
|
||||
optimization:Some details.
|
||||
|
||||
## 0.1.12
|
||||
|
||||
New:Local storage;Right-click menu function, etc.
|
||||
|
||||
## 0.1.0
|
||||
|
||||
Complete basic functions.
|
||||
@ -1065,3 +1065,141 @@ copyNodeTree({}, node)
|
||||
# License
|
||||
|
||||
[MIT](https://opensource.org/licenses/MIT)
|
||||
|
||||
# Changelog
|
||||
|
||||
## 0.2.21
|
||||
|
||||
新增:支持节点横线风格。
|
||||
|
||||
## 0.2.20
|
||||
|
||||
修复:画布距窗口左上角不为0时节点拖拽出现偏移的问题。
|
||||
|
||||
## 0.2.19
|
||||
|
||||
修复:没有激活节点时随便按什么键都会触发自动聚焦的问题。
|
||||
|
||||
## 0.2.18
|
||||
|
||||
优化:键盘导航寻找焦点的算法,支持简单算法、区域算法、阴影算法。
|
||||
|
||||
## 0.2.17
|
||||
|
||||
新增:键盘导航,即通过方向键来切换激活的节点;支持在大纲直接编辑节点文本内容。
|
||||
|
||||
## 0.2.16
|
||||
|
||||
优化:小地图、拖拽性能。
|
||||
|
||||
## 0.2.15
|
||||
|
||||
优化:本地文件编辑。
|
||||
|
||||
新增:支持双击节点内图片进行大图预览。
|
||||
|
||||
## 0.2.14
|
||||
|
||||
优化:插入子节点时自动展开。
|
||||
|
||||
修复:小地图关闭时报错的问题。
|
||||
|
||||
## 0.2.13
|
||||
|
||||
修复:子节点收起状态复制时丢失的问题。
|
||||
|
||||
## 0.2.11
|
||||
|
||||
修复:修复子节点收起状态复制时丢失的问题。
|
||||
|
||||
新增:支持小地图。
|
||||
|
||||
## 0.2.10
|
||||
|
||||
优化:手动创建节点时立即聚焦。
|
||||
|
||||
修复:连线样式深度更新问题。
|
||||
|
||||
新增:逻辑结构图、思维导图新增直线连接风格、直连风格。
|
||||
|
||||
## 0.2.9
|
||||
|
||||
新增:支持新建、打开、保存到电脑本地文件。
|
||||
|
||||
## 0.2.8
|
||||
|
||||
修复:xmind8版本文件导入失败的问题。
|
||||
|
||||
新增:支持展开到指定层级。
|
||||
|
||||
## 0.2.7
|
||||
|
||||
修复:根节点添加多个节点爆栈的问题。
|
||||
|
||||
新增:支持导入.xmind文件。
|
||||
|
||||
## 0.2.6
|
||||
|
||||
新增:导出svg增加title标签。
|
||||
|
||||
## 0.2.5
|
||||
|
||||
修复:节点展开收起的bug。
|
||||
|
||||
新增:节点支持自定义线条样式。
|
||||
|
||||
## 0.2.4
|
||||
|
||||
新增:节点支持多种形状。
|
||||
|
||||
## 0.2.3
|
||||
|
||||
修复:编辑节点文本时快捷键冲突的问题;右键菜单快捷键提示错误;右键菜单快捷键提示。
|
||||
|
||||
## 0.2.2
|
||||
|
||||
修复:输入字符串'/'和快捷键'/'冲突问题。
|
||||
|
||||
## 0.2.1
|
||||
|
||||
新增:支持导出为pdf。
|
||||
|
||||
## 0.2.0
|
||||
|
||||
新增:经典4主题;支持添加概要;支持自由拖拽;上移节点、下移节点、复制节点、剪切节点、粘贴节点、一键整理布快捷键;库打包;Ctrl+左键多选。
|
||||
|
||||
## 0.1.18
|
||||
|
||||
修复:节点图标不能删除的问题;工具按钮置灰仍然可以点击的问题。
|
||||
|
||||
## 0.1.17
|
||||
|
||||
新增:增加只读模式。
|
||||
|
||||
## 0.1.16
|
||||
|
||||
新增:节点备注支持markdown及富文本。
|
||||
|
||||
修复:不能选中文字的问题;节点标注在节点激活后无法隐藏问题;超链接、备注、标签等文字编辑时返回键和回车键与思维导图快捷键冲突的问题。
|
||||
|
||||
## 0.1.15
|
||||
|
||||
新增:状态数据支持保存激活状态、视图状态(拖动位置、缩放值);支持节点拖拽。
|
||||
|
||||
## 0.1.14
|
||||
|
||||
修复:存在激活节点时设置主题存在的问题。
|
||||
|
||||
## 0.1.13
|
||||
|
||||
新增:快捷键功能;新增导出为json。
|
||||
|
||||
优化:一些细节。
|
||||
|
||||
## 0.1.12
|
||||
|
||||
新增:本地存储;右键菜单功能等。
|
||||
|
||||
## 0.1.0
|
||||
|
||||
完成基本功能。
|
||||
Loading…
Reference in New Issue
Block a user