update changes.md

This commit is contained in:
Le Tan 2018-09-21 19:41:23 +08:00
parent 9b83d50116
commit a4d6f042ef
2 changed files with 18 additions and 2 deletions

View File

@ -1,4 +1,20 @@
# Changes History # Changes History
## v2.0
- Vim: support specifying leader key via "[editor]/vim_leader_key";
- LivePreview
- Smart live preview for PlantUML (Live Preview Tunnel);
- Expand live preview area via `Ctrl+E U`;
- In-Place Preview: support in-place preview for online PlantUML;
- Captain: fix captain mode shortcuts in different keyboard layout (Linux/Windows only);
- Quick Access: specify a note for quick access via `Ctrl+Alt+I`;
- Magic Word: support `%att%` as the relative path of the attachment folder;
- Search: highlight matches of full-text search results in page in edit mode;
- Editor
- Allow inserting link or content when dropping files in;
- Support highlighting tabs;
- Support parsing HTML tables without head;
- Export: support outline panel in exported HTML files;
## v1.22 ## v1.22
- Editor - Editor
- Support parsting HTML as converted Markdown text; - Support parsting HTML as converted Markdown text;

View File

@ -777,7 +777,7 @@ bool VEditor::findText(const VSearchToken &p_token, bool p_forward, bool p_fromS
highlightSearchedWordUnderCursor(tcursor); highlightSearchedWordUnderCursor(tcursor);
emit m_object->statusMessage(QObject::tr("Match found: %2 of %3") emit m_object->statusMessage(QObject::tr("Match found: %1 of %2")
.arg(idx + 1) .arg(idx + 1)
.arg(result.size())); .arg(result.size()));
} }
@ -834,7 +834,7 @@ bool VEditor::findTextInRange(const QString &p_text,
highlightSearchedWordUnderCursor(tcursor); highlightSearchedWordUnderCursor(tcursor);
emit m_object->statusMessage(QObject::tr("Match found: %2 of %3") emit m_object->statusMessage(QObject::tr("Match found: %1 of %2")
.arg(idx + 1) .arg(idx + 1)
.arg(result.size())); .arg(result.size()));
} }