浏览代码

release v3.0.0-beta.10

Le Tan 4 年之前
父节点
当前提交
372f092919

+ 1 - 1
.github/workflows/ci-linux.yml

@@ -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:

+ 1 - 1
.github/workflows/ci-macos.yml

@@ -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:

+ 1 - 1
.github/workflows/ci-win.yml

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

+ 8 - 0
changes.md

@@ -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

二进制
src/data/core/translations/vnote_zh_CN.qm


文件差异内容过多而无法显示
+ 231 - 184
src/data/core/translations/vnote_zh_CN.ts


+ 1 - 1
src/data/core/vnotex.json

@@ -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",

+ 1 - 1
src/widgets/notebooknodeexplorer.cpp

@@ -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) {

部分文件因为文件数量过多而无法显示