Skip to content

Commit b3c8213

Browse files
committed
release v1.9
1 parent 93a2186 commit b3c8213

6 files changed

+35
-11
lines changed

.linux_bintray.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
},
1717

1818
"version": {
19-
"name": "1.8",
19+
"name": "1.9",
2020
"desc": "VNote Releases",
21-
"released": "2017-08-17",
22-
"vcs_tag": "1.8",
21+
"released": "2017-10-02",
22+
"vcs_tag": "1.9",
2323
"gpgSign": false
2424
},
2525

.macos_bintray.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
},
1717

1818
"version": {
19-
"name": "1.8",
19+
"name": "1.9",
2020
"desc": "VNote Releases",
21-
"released": "2017-08-17",
22-
"vcs_tag": "1.8",
21+
"released": "2017-10-02",
22+
"vcs_tag": "1.9",
2323
"gpgSign": false
2424
},
2525

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ branches:
1919
before_install:
2020
- if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi
2121
- if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then sudo apt-get -qq update ; fi
22-
- export version="1.8"
22+
- export version="1.9"
2323

2424
install:
2525
- if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes install p7zip-full ; fi

appveyor.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
image: Visual Studio 2015
22

3-
version: 1.8.{build}
3+
version: 1.9.{build}
44

55
branches:
66
only:
@@ -38,7 +38,7 @@ build_script:
3838

3939
# scripts that run after build
4040
after_build:
41-
- set vnote_version=1.8
41+
- set vnote_version=1.9
4242
# Clone OpenSSL DLLs
4343
- git clone https://github.com/tamlok/openssl-utils.git openssl-utils.git
4444
- mkdir distrib\VNote
@@ -69,7 +69,7 @@ deploy:
6969
subject: tamlok
7070
repo: vnote
7171
package: vnote
72-
version: 1.8
72+
version: 1.9
7373
publish: true
7474
override: true
7575
artifact: portable

changes.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,28 @@
11
# 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+
226
## v1.8
327
- Support editing external files. VNote could open files from command line.
428
- Support drag-and-drop to open external files.

src/vconfigmanager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
const QString VConfigManager::orgName = QString("vnote");
1515
const QString VConfigManager::appName = QString("vnote");
16-
const QString VConfigManager::c_version = QString("1.8");
16+
const QString VConfigManager::c_version = QString("1.9");
1717
const QString VConfigManager::c_obsoleteDirConfigFile = QString(".vnote.json");
1818
const QString VConfigManager::c_dirConfigFile = QString("_vnote.json");
1919
const QString VConfigManager::defaultConfigFilePath = QString(":/resources/vnote.ini");

0 commit comments

Comments
 (0)