Skip to content

Commit 84cb60d

Browse files
committed
release v3.18.0
1 parent 313764b commit 84cb60d

File tree

9 files changed

+20
-7
lines changed

9 files changed

+20
-7
lines changed

.github/workflows/ci-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
default: false
1717

1818
env:
19-
VNOTE_VER: 3.17.0
19+
VNOTE_VER: 3.18.0
2020
CMAKE_VER: 3.24.3
2121

2222
jobs:

.github/workflows/ci-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
default: false
1717

1818
env:
19-
VNOTE_VER: 3.17.0
19+
VNOTE_VER: 3.18.0
2020
CMAKE_VER: 3.24.3
2121

2222
jobs:

.github/workflows/ci-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
default: false
1717

1818
env:
19-
VNOTE_VER: 3.17.0
19+
VNOTE_VER: 3.18.0
2020

2121
jobs:
2222
build:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required (VERSION 3.20)
33
set(CMAKE_OSX_DEPLOYMENT_TARGET "12.1" CACHE STRING "Minimum OS X deployment version")
44

55
project(VNote
6-
VERSION 3.17.0
6+
VERSION 3.18.0
77
DESCRIPTION "A pleasant note-taking platform"
88
HOMEPAGE_URL "https://app.vnote.fun"
99
LANGUAGES C CXX)

changes.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Changes
2+
## v3.18.0
3+
* Upgrade to Qt6
4+
* Support MacOS universal build
5+
* Upgrade Mermaid, Flowchart.js, and markdown-it
6+
* Markdown-it
7+
* Fix XSS protection and turn it on by default
8+
* Support mark by `==xx==`
9+
210
## v3.17.0
311
* Quick note: create note in given scheme (@feloxx)
412
* MarkdownEditor: support inserting multiple images (@feloxx)

scripts/update_version.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
newVersion = sys.argv[1]
1010
print("New version: {0}".format(newVersion))
1111

12+
# CMakeList
13+
regExp = re.compile('(\\s+)VERSION \\S+')
14+
for line in fileinput.input(['CMakeLists.txt'], inplace = True):
15+
print(regExp.sub('\\1VERSION ' + newVersion, line), end='')
16+
1217
# vnotex.json
1318
regExp = re.compile('(\\s+)"version" : "\\S+"')
1419
for line in fileinput.input(['src/data/core/vnotex.json'], inplace = True):

src/data/core/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<key>CFBundleShortVersionString</key>
2828
<string>3.17</string>
2929
<key>CFBundleVersion</key>
30-
<string>3.17.0</string>
30+
<string>3.18.0</string>
3131
<key>NSHumanReadableCopyright</key>
3232
<string>Distributed under LGPL-3.0 license. Copyright (c) 2024 app.vnote.fun</string>
3333
<key>CFBundleIconFile</key>

src/data/core/vnotex.json

Lines changed: 1 addition & 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.17.0"
6+
"version" : "3.18.0"
77
},
88
"core" : {
99
"theme" : "pure",

src/data/extra/docs/en/welcome.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ For more information, please visit [**VNote's Home Page**](https://vnotex.github
1111
* Feedbacks are appreciated! Please [post an issue](https://github.com/vnotex/vnote/issues) on GitHub if there is any.
1212

1313
### Windows Users
14-
* if VNote hangs frequently or behaves unexpectedly in interface, please check the **OpenGL** option. [Details here](https://github.com/vnotex/vnote/issues/853).
14+
* If VNote hangs frequently or behaves unexpectedly in interface, please check the **OpenGL** option. Check details [here](https://github.com/vnotex/vnote/issues/853).

0 commit comments

Comments
 (0)