release v3.0.0-beta.10

This commit is contained in:
Le Tan 2021-03-19 20:35:54 +08:00
parent c442892b59
commit 372f092919
8 changed files with 266 additions and 206 deletions

View File

@ -10,7 +10,7 @@ on:
workflow_dispatch:
env:
VNOTE_VER: 3.0.0-beta.9
VNOTE_VER: 3.0.0-beta.10
jobs:
build-linux:

View File

@ -10,7 +10,7 @@ on:
workflow_dispatch:
env:
VNOTE_VER: 3.0.0-beta.9
VNOTE_VER: 3.0.0-beta.10
jobs:
build-linux:

View File

@ -10,7 +10,7 @@ on:
workflow_dispatch:
env:
VNOTE_VER: 3.0.0-beta.9
VNOTE_VER: 3.0.0-beta.10
jobs:
build:

View File

@ -1,4 +1,12 @@
# Changes
## v3.0.0-beta.10
* Show more tips
* Add exclude patterns for external nodes
* Add command line parser and support opening files from command line
* Update Mermaid.js to 8.9.1
* Support exporting current note
* Add ExpandAll to node explorer
## v3.0.0-beta.9
* Fix crash when exporting external files
* Support manual sorting folders and notes

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@
"metadata" : {
"//comment": "When releasing new version, please go through the following configs to check if override is needed.",
"//Comment": "markdown_editor#override_viewer_resource",
"version" : "3.0.0-beta.9"
"version" : "3.0.0-beta.10"
},
"core" : {
"theme" : "pure",

View File

@ -1118,7 +1118,7 @@ QAction *NotebookNodeExplorer::createAction(Action p_act, QObject *p_parent)
break;
case Action::ReloadIndex:
act = new QAction(tr("Re&load Index From Disk"), p_parent);
act = new QAction(tr("Relo&ad Index From Disk"), p_parent);
connect(act, &QAction::triggered,
this, [this]() {
if (!m_notebook) {