Skip to content

Commit

Permalink
release v3.0.0-beta.10
Browse files Browse the repository at this point in the history
  • Loading branch information
tamlok committed Mar 19, 2021
1 parent c442892 commit 372f092
Show file tree
Hide file tree
Showing 8 changed files with 266 additions and 206 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
workflow_dispatch:

env:
VNOTE_VER: 3.0.0-beta.9
VNOTE_VER: 3.0.0-beta.10

jobs:
build:
Expand Down
8 changes: 8 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Binary file modified src/data/core/translations/vnote_zh_CN.qm
Binary file not shown.
454 changes: 253 additions & 201 deletions src/data/core/translations/vnote_zh_CN.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/data/core/vnotex.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/notebooknodeexplorer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 372f092

Please sign in to comment.