release v1.4

This commit is contained in:
Le Tan 2017-05-06 21:26:12 +08:00
parent 2bdf388c7b
commit d1395b9ac2
6 changed files with 19 additions and 11 deletions

View File

@ -16,10 +16,10 @@
},
"version": {
"name": "1.3",
"name": "1.4",
"desc": "VNote Releases",
"released": "2017-04-23",
"vcs_tag": "1.3",
"released": "2017-05-06",
"vcs_tag": "1.4",
"gpgSign": false
},

View File

@ -16,10 +16,10 @@
},
"version": {
"name": "1.3",
"name": "1.4",
"desc": "VNote Releases",
"released": "2017-04-23",
"vcs_tag": "1.3",
"released": "2017-05-06",
"vcs_tag": "1.4",
"gpgSign": false
},

View File

@ -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.3"
- export version="1.4"
install:
- if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes install p7zip-full ; fi

View File

@ -1,6 +1,6 @@
image: Visual Studio 2015
version: 1.3.{build}
version: 1.4.{build}
branches:
only:
@ -38,7 +38,7 @@ build_script:
# scripts that run after build
after_build:
- set vnote_version=1.3
- set vnote_version=1.4
- mkdir distrib\VNote
- windeployqt.exe --dir .\distrib\VNote %APPVEYOR_BUILD_FOLDER%\build\src\release\VNote.exe
- copy "%APPVEYOR_BUILD_FOLDER%\build\src\release\VNote.exe" "distrib\VNote\VNote.exe"
@ -61,6 +61,6 @@ deploy:
subject: tamlok
repo: vnote
package: vnote
version: 1.3
version: 1.4
publish: true
override: true

View File

@ -1,4 +1,12 @@
# Changes History
## v1.4
- Use `_vnote.json` as the config file;
- More user friendly messages;
- Delete notebook by deleting root directories one by one;
- Refactor image preview logics to support previewing all images in edit mode;
- Support constraining the width of previewed images to the edit window;
- bugfix;
## v1.3
- Support code block syntax highlight in edit mode;
- A more pleasant AutoIndent and AutoList;

View File

@ -12,7 +12,7 @@
const QString VConfigManager::orgName = QString("vnote");
const QString VConfigManager::appName = QString("vnote");
const QString VConfigManager::c_version = QString("1.3");
const QString VConfigManager::c_version = QString("1.4");
const QString VConfigManager::c_obsoleteDirConfigFile = QString(".vnote.json");
const QString VConfigManager::c_dirConfigFile = QString("_vnote.json");
const QString VConfigManager::defaultConfigFilePath = QString(":/resources/vnote.ini");