Browse Source

release v2.6

Le Tan 6 years ago
parent
commit
ae3f764c36
9 changed files with 25 additions and 11 deletions
  1. 3 3
      .linux_bintray.json
  2. 3 3
      .macos_bintray.json
  3. 1 1
      .travis.yml
  4. 3 0
      README.md
  5. 3 0
      README_ja.md
  6. 5 0
      README_zh.md
  7. 3 3
      appveyor.yml
  8. 3 0
      changes.md
  9. 1 1
      src/vconfigmanager.cpp

+ 3 - 3
.linux_bintray.json

@@ -16,10 +16,10 @@
     },
 
     "version": {
-        "name": "2.5",
+        "name": "2.6",
         "desc": "VNote Releases",
-        "released": "2019-05-11",
-        "vcs_tag": "2.5",
+        "released": "2019-05-31",
+        "vcs_tag": "2.6",
         "gpgSign": false
     },
 

+ 3 - 3
.macos_bintray.json

@@ -16,10 +16,10 @@
     },
 
     "version": {
-        "name": "2.5",
+        "name": "2.6",
         "desc": "VNote Releases",
-        "released": "2019-05-11",
-        "vcs_tag": "2.5",
+        "released": "2019-05-31",
+        "vcs_tag": "2.6",
         "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="2.5"
+- export version="2.6"
 
 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 - 0
README.md

@@ -61,6 +61,9 @@ makepkg -sic
 
 There is also a development version that tracks the latest master [vnote-git](https://aur.archlinux.org/packages/vnote-git/).
 
+### NixOS
+Thank @kuznero for packaging VNote in NixOS. It should be available in `unstable` and `unstable-small` channels.
+
 ## MacOS
 [![Build Status](https://travis-ci.org/tamlok/vnote.svg?branch=master)](https://travis-ci.org/tamlok/vnote)
 

+ 3 - 0
README_ja.md

@@ -61,6 +61,9 @@ makepkg -sic
 
 また、最新のマスター[vnote git](https://aur.archlinux.org/packages/vnote-git/)を追跡する開発バージョンもあります。
 
+### NixOS
+Thank @kuznero for packaging VNote in NixOS. It should be available in `unstable` and `unstable-small` channels.
+
 ## MacOS
 [![Build Status](https://travis-ci.org/tamlok/vnote.svg?branch=master)](https://travis-ci.org/tamlok/vnote)
 

+ 5 - 0
README_zh.md

@@ -73,6 +73,11 @@ AUR也提供一个和最新master分支同步的开发版本 [vnote-git](https:/
 brew cask install vnote
 ```
 
+### NixOS
+@kuznero packaged VNote in NixOS. It should be available in `unstable` and `unstable-small` channels.
+
+感谢 @kuznero 在NixOS上打包VNote。可以在`unstable`和`unstable-small`频道中找到VNote。
+
 # 简介
 
 **VNote**是一个基于Qt框架的、免费的开源笔记软件。VNote专注于Markdown的编辑与阅读,以提供舒适的编辑体验为设计目标。

+ 3 - 3
appveyor.yml

@@ -1,6 +1,6 @@
 image: Visual Studio 2015
 
-version: 2.5.{build}
+version: 2.6.{build}
 
 branches:
     only:
@@ -39,7 +39,7 @@ build_script:
 
 # scripts that run after build
 after_build:
-    - set vnote_version=2.5
+    - set vnote_version=2.6
     # Clone OpenSSL DLLs
     - git clone https://github.com/tamlok/openssl-utils.git openssl-utils.git
     - mkdir distrib\VNote
@@ -72,7 +72,7 @@ deploy:
       subject: tamlok
       repo: vnote
       package: vnote
-      version: 2.5
+      version: 2.6
       publish: true
       override: true
       artifact: portable

+ 3 - 0
changes.md

@@ -1,4 +1,7 @@
 # Changes History
+## v2.6
+- Version-specific user track;
+
 ## v2.5
 - Do not open unknown type file when creating a new note;
 - Support Right-To-Left text in edit mode (with Vim mode disabled);

+ 1 - 1
src/vconfigmanager.cpp

@@ -20,7 +20,7 @@ const QString VConfigManager::orgName = QString("vnote");
 
 const QString VConfigManager::appName = QString("vnote");
 
-const QString VConfigManager::c_version = QString("2.5");
+const QString VConfigManager::c_version = QString("2.6");
 
 const QString VConfigManager::c_dirConfigFile = QString("_vnote.json");