From 30c9403a21ee8e211918448dd619335e1b40dadc Mon Sep 17 00:00:00 2001 From: Le Tan Date: Fri, 14 Jul 2017 21:40:14 +0800 Subject: [PATCH] release v1.7 --- .linux_bintray.json | 6 +++--- .macos_bintray.json | 6 +++--- .travis.yml | 2 +- appveyor.yml | 6 +++--- changes.md | 12 ++++++++++++ src/resources/icons/vnote_update.svg | 17 +++++++++-------- src/vconfigmanager.cpp | 2 +- 7 files changed, 32 insertions(+), 19 deletions(-) diff --git a/.linux_bintray.json b/.linux_bintray.json index 6088f09c..edad73d4 100644 --- a/.linux_bintray.json +++ b/.linux_bintray.json @@ -16,10 +16,10 @@ }, "version": { - "name": "1.6", + "name": "1.7", "desc": "VNote Releases", - "released": "2017-06-24", - "vcs_tag": "1.6", + "released": "2017-07-14", + "vcs_tag": "1.7", "gpgSign": false }, diff --git a/.macos_bintray.json b/.macos_bintray.json index 26dd0d23..1d614c6c 100644 --- a/.macos_bintray.json +++ b/.macos_bintray.json @@ -16,10 +16,10 @@ }, "version": { - "name": "1.6", + "name": "1.7", "desc": "VNote Releases", - "released": "2017-06-24", - "vcs_tag": "1.6", + "released": "2017-07-14", + "vcs_tag": "1.7", "gpgSign": false }, diff --git a/.travis.yml b/.travis.yml index cedd9731..83e21278 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ branches: before_install: - if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi - if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then sudo apt-get -qq update ; fi -- export version="1.6" +- export version="1.7" install: - if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes install p7zip-full ; fi diff --git a/appveyor.yml b/appveyor.yml index d0635f14..19183bbe 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,6 @@ image: Visual Studio 2015 -version: 1.6.{build} +version: 1.7.{build} branches: only: @@ -38,7 +38,7 @@ build_script: # scripts that run after build after_build: - - set vnote_version=1.6 + - set vnote_version=1.7 # Clone OpenSSL DLLs - git clone https://github.com/tamlok/openssl-utils.git openssl-utils.git - mkdir distrib\VNote @@ -69,7 +69,7 @@ deploy: subject: tamlok repo: vnote package: vnote - version: 1.6 + version: 1.7 publish: true override: true artifact: portable diff --git a/changes.md b/changes.md index 3278eef6..f53c06d6 100644 --- a/changes.md +++ b/changes.md @@ -1,4 +1,16 @@ # Changes History +## v1.7 +- ATTENTION: please add font-size option to the "editor" section of your custom MDHL style. +- Refine Vim mode (more functions, please refer to the shortcuts help). +- Support Find in Vim mode. +- Refine tab context menu. +- Support Flowchart.js for flowchart. +- Add toolbar for common text edit functions. +- Support line number (both absolute and relative) in edit mode. +- Support custom shortcuts. +- Support [[, ]], [], ][, [{, ]} to navigate through titles in both edit and read mode. +- Many minor bug fixes. + ## v1.6 - Support simple but powerful **Vim mode**. - Change the shortcut of ExitAndRead from `Ctrl+R` to `Ctrl+T`. diff --git a/src/resources/icons/vnote_update.svg b/src/resources/icons/vnote_update.svg index 5c87f720..34d5b17c 100644 --- a/src/resources/icons/vnote_update.svg +++ b/src/resources/icons/vnote_update.svg @@ -2,15 +2,16 @@ vnote + + Layer 3 + + Layer 1 - - - - - - - - + + + + Layer 2 + \ No newline at end of file diff --git a/src/vconfigmanager.cpp b/src/vconfigmanager.cpp index 9aa135f8..33da731a 100644 --- a/src/vconfigmanager.cpp +++ b/src/vconfigmanager.cpp @@ -13,7 +13,7 @@ const QString VConfigManager::orgName = QString("vnote"); const QString VConfigManager::appName = QString("vnote"); -const QString VConfigManager::c_version = QString("1.6"); +const QString VConfigManager::c_version = QString("1.7"); const QString VConfigManager::c_obsoleteDirConfigFile = QString(".vnote.json"); const QString VConfigManager::c_dirConfigFile = QString("_vnote.json"); const QString VConfigManager::defaultConfigFilePath = QString(":/resources/vnote.ini");