Skip to content

Commit 30c9403

Browse files
committed
release v1.7
1 parent ecd3e65 commit 30c9403

File tree

7 files changed

+32
-19
lines changed

7 files changed

+32
-19
lines changed

.linux_bintray.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
},
1717

1818
"version": {
19-
"name": "1.6",
19+
"name": "1.7",
2020
"desc": "VNote Releases",
21-
"released": "2017-06-24",
22-
"vcs_tag": "1.6",
21+
"released": "2017-07-14",
22+
"vcs_tag": "1.7",
2323
"gpgSign": false
2424
},
2525

.macos_bintray.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
},
1717

1818
"version": {
19-
"name": "1.6",
19+
"name": "1.7",
2020
"desc": "VNote Releases",
21-
"released": "2017-06-24",
22-
"vcs_tag": "1.6",
21+
"released": "2017-07-14",
22+
"vcs_tag": "1.7",
2323
"gpgSign": false
2424
},
2525

.travis.yml

Lines changed: 1 addition & 1 deletion
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.6"
22+
- export version="1.7"
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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
image: Visual Studio 2015
22

3-
version: 1.6.{build}
3+
version: 1.7.{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.6
41+
- set vnote_version=1.7
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.6
72+
version: 1.7
7373
publish: true
7474
override: true
7575
artifact: portable

changes.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
# Changes History
2+
## v1.7
3+
- ATTENTION: please add font-size option to the "editor" section of your custom MDHL style.
4+
- Refine Vim mode (more functions, please refer to the shortcuts help).
5+
- Support Find in Vim mode.
6+
- Refine tab context menu.
7+
- Support Flowchart.js for flowchart.
8+
- Add toolbar for common text edit functions.
9+
- Support line number (both absolute and relative) in edit mode.
10+
- Support custom shortcuts.
11+
- Support [[, ]], [], ][, [{, ]} to navigate through titles in both edit and read mode.
12+
- Many minor bug fixes.
13+
214
## v1.6
315
- Support simple but powerful **Vim mode**.
416
- Change the shortcut of ExitAndRead from `Ctrl+R` to `Ctrl+T`.

src/resources/icons/vnote_update.svg

Lines changed: 9 additions & 8 deletions
Loading

src/vconfigmanager.cpp

Lines changed: 1 addition & 1 deletion
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.6");
16+
const QString VConfigManager::c_version = QString("1.7");
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)