File tree 6 files changed +35
-11
lines changed
6 files changed +35
-11
lines changed Original file line number Diff line number Diff line change 16
16
},
17
17
18
18
"version" : {
19
- "name" : " 1.8 " ,
19
+ "name" : " 1.9 " ,
20
20
"desc" : " VNote Releases" ,
21
- "released" : " 2017-08-17 " ,
22
- "vcs_tag" : " 1.8 " ,
21
+ "released" : " 2017-10-02 " ,
22
+ "vcs_tag" : " 1.9 " ,
23
23
"gpgSign" : false
24
24
},
25
25
Original file line number Diff line number Diff line change 16
16
},
17
17
18
18
"version" : {
19
- "name" : " 1.8 " ,
19
+ "name" : " 1.9 " ,
20
20
"desc" : " VNote Releases" ,
21
- "released" : " 2017-08-17 " ,
22
- "vcs_tag" : " 1.8 " ,
21
+ "released" : " 2017-10-02 " ,
22
+ "vcs_tag" : " 1.9 " ,
23
23
"gpgSign" : false
24
24
},
25
25
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ branches:
19
19
before_install :
20
20
- if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi
21
21
- if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then sudo apt-get -qq update ; fi
22
- - export version="1.8 "
22
+ - export version="1.9 "
23
23
24
24
install :
25
25
- if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes install p7zip-full ; fi
Original file line number Diff line number Diff line change 1
1
image : Visual Studio 2015
2
2
3
- version : 1.8 .{build}
3
+ version : 1.9 .{build}
4
4
5
5
branches :
6
6
only :
@@ -38,7 +38,7 @@ build_script:
38
38
39
39
# scripts that run after build
40
40
after_build :
41
- - set vnote_version=1.8
41
+ - set vnote_version=1.9
42
42
# Clone OpenSSL DLLs
43
43
- git clone https://github.com/tamlok/openssl-utils.git openssl-utils.git
44
44
- mkdir distrib\VNote
@@ -69,7 +69,7 @@ deploy:
69
69
subject : tamlok
70
70
repo : vnote
71
71
package : vnote
72
- version : 1.8
72
+ version : 1.9
73
73
publish : true
74
74
override : true
75
75
artifact : portable
Original file line number Diff line number Diff line change 1
1
# Changes History
2
+ ## v1.9
3
+ - Support attachments of notes.
4
+ - Add recycle bin to notebook to hold deleted files.
5
+ - Refine Vim mode:
6
+ - Support J and gJ to join line;
7
+ - Support S, {, and };
8
+ - <leader >w to save note;
9
+ - Fix Y and D actions in Visual mode.
10
+ - Support AppImage package for Linux.
11
+ - More responsive and efficient syntax highlight and image preview.
12
+ - More pleasant line distance.
13
+ - More natural interaction of folder and note management.
14
+ - Support inserting note name as title.
15
+ - Support custom default mode to open a note.
16
+ - Support auto heading sequence.
17
+ - Support color column in fenced code block in edit mode.
18
+ - Support line number in code block in both read and edit mode.
19
+ - Support created time and modified time of notes, folders, and notebooks.
20
+ - Support custom Markdown-it options, such as auto line break.
21
+ - Confirm when cleaning up unused images.
22
+ - Support custom Mathjax location.
23
+ - Support custom style for code block highlights in read mode.
24
+ - Double click on a tab to close it.
25
+
2
26
## v1.8
3
27
- Support editing external files. VNote could open files from command line.
4
28
- Support drag-and-drop to open external files.
Original file line number Diff line number Diff line change 13
13
14
14
const QString VConfigManager::orgName = QString(" vnote" );
15
15
const QString VConfigManager::appName = QString(" vnote" );
16
- const QString VConfigManager::c_version = QString(" 1.8 " );
16
+ const QString VConfigManager::c_version = QString(" 1.9 " );
17
17
const QString VConfigManager::c_obsoleteDirConfigFile = QString(" .vnote.json" );
18
18
const QString VConfigManager::c_dirConfigFile = QString(" _vnote.json" );
19
19
const QString VConfigManager::defaultConfigFilePath = QString(" :/resources/vnote.ini" );
You can’t perform that action at this time.
0 commit comments