Browse Source

release v1.4

Le Tan 8 years ago
parent
commit
d1395b9ac2
6 changed files with 19 additions and 11 deletions
  1. 3 3
      .linux_bintray.json
  2. 3 3
      .macos_bintray.json
  3. 1 1
      .travis.yml
  4. 3 3
      appveyor.yml
  5. 8 0
      changes.md
  6. 1 1
      src/vconfigmanager.cpp

+ 3 - 3
.linux_bintray.json

@@ -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
     },
 

+ 3 - 3
.macos_bintray.json

@@ -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
     },
 

+ 1 - 1
.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.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

+ 3 - 3
appveyor.yml

@@ -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

+ 8 - 0
changes.md

@@ -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;

+ 1 - 1
src/vconfigmanager.cpp

@@ -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");