Skip to content

Commit 4ab2033

Browse files
committed
release v3.17.0
1 parent e8fe072 commit 4ab2033

File tree

13 files changed

+933
-626
lines changed

13 files changed

+933
-626
lines changed

.github/workflows/ci-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
workflow_dispatch:
1111

1212
env:
13-
VNOTE_VER: 3.16.0
13+
VNOTE_VER: 3.17.0
1414

1515
jobs:
1616
build-linux:

.github/workflows/ci-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
workflow_dispatch:
1111

1212
env:
13-
VNOTE_VER: 3.16.0
13+
VNOTE_VER: 3.17.0
1414

1515
jobs:
1616
build:

.github/workflows/ci-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
workflow_dispatch:
1111

1212
env:
13-
VNOTE_VER: 3.16.0
13+
VNOTE_VER: 3.17.0
1414

1515
jobs:
1616
build:

changes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# Changes
2+
## v3.17.0
3+
* Quick note: create note in given scheme (@feloxx)
4+
* MarkdownEditor: support inserting multiple images (@feloxx)
5+
* Mermaid: upgrade and fix preview issue (@ygcaicn)
6+
* Flowchart.js: upgrade
7+
28
## v3.16.0
39
* Support reading PDF format
410
* Support Ming Map editor in suffix `*.emind`

src/core/coreconfig.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ namespace vnotex
2222
ExpandContentArea,
2323
Settings,
2424
NewNote,
25+
NewQuickNote,
2526
NewFolder,
2627
CloseTab,
2728
CloseAllTabs,

src/data/core/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
<key>CFBundleExecutable</key>
2222
<string>vnote</string>
2323
<key>CFBundleShortVersionString</key>
24-
<string>3.16.0</string>
24+
<string>3.17.0</string>
2525
<key>CFBundleVersion</key>
26-
<string>3.16.0.1</string>
26+
<string>3.17.0.1</string>
2727
<key>NSHumanReadableCopyright</key>
2828
<string>Created by VNoteX</string>
2929
<key>CFBundleIconFile</key>

src/data/core/translations/vnote_ja.ts

Lines changed: 449 additions & 312 deletions
Large diffs are not rendered by default.
2.38 KB
Binary file not shown.

src/data/core/translations/vnote_zh_CN.ts

Lines changed: 455 additions & 306 deletions
Large diffs are not rendered by default.

src/data/core/vnotex.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"metadata" : {
44
"//comment": "When releasing new version, please go through the following configs to check if override is needed.",
55
"//Comment": "markdown_editor#override_viewer_resource",
6-
"version" : "3.16.0"
6+
"version" : "3.17.0"
77
},
88
"core" : {
99
"theme" : "pure",
@@ -14,6 +14,7 @@
1414
"ExpandContentArea" : "Ctrl+G, E",
1515
"Settings" : "Ctrl+Alt+P",
1616
"NewNote" : "Ctrl+Alt+N",
17+
"NewQuickNote" : "Ctrl+Alt+Q",
1718
"NewFolder" : "Ctrl+Alt+S",
1819
"CloseTab" : "Ctrl+G, X",
1920
"CloseAllTabs": "",

0 commit comments

Comments
 (0)