Skip to content

Commit 748dc36

Browse files
committed
release v1.6
1 parent 140c731 commit 748dc36

File tree

8 files changed

+28
-14
lines changed

8 files changed

+28
-14
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.5",
19+
"name": "1.6",
2020
"desc": "VNote Releases",
21-
"released": "2017-05-25",
22-
"vcs_tag": "1.5",
21+
"released": "2017-06-24",
22+
"vcs_tag": "1.6",
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.5",
19+
"name": "1.6",
2020
"desc": "VNote Releases",
21-
"released": "2017-05-25",
22-
"vcs_tag": "1.5",
21+
"released": "2017-06-24",
22+
"vcs_tag": "1.6",
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.5"
22+
- export version="1.6"
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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
![Windows Build Status](https://ci.appveyor.com/api/projects/status/github/tamlok/vnote?svg=true)
4646

4747
- [Github Releases](https://github.com/tamlok/vnote/releases)
48-
- [Latest Builds](https://bintray.com/tamlok/vnote/vnote/view/files)
48+
- Latest Builds: [ ![Download](https://api.bintray.com/packages/tamlok/vnote/vnote/images/download.svg) ](https://bintray.com/tamlok/vnote/vnote/_latestVersion)
4949

5050
## Linux
5151
[![Build Status](https://travis-ci.org/tamlok/vnote.svg?branch=master)](https://travis-ci.org/tamlok/vnote)
@@ -56,7 +56,7 @@
5656
[![Build Status](https://travis-ci.org/tamlok/vnote.svg?branch=master)](https://travis-ci.org/tamlok/vnote)
5757

5858
- [Github Releases](https://github.com/tamlok/vnote/releases)
59-
- [Latest Builds](https://bintray.com/tamlok/vnote/vnote/view/files)
59+
- Latest Builds: [ ![Download](https://api.bintray.com/packages/tamlok/vnote/vnote/images/download.svg) ](https://bintray.com/tamlok/vnote/vnote/_latestVersion)
6060

6161
# Description (简介)
6262
**VNote** is a Qt-based, free and open source note-taking application, focusing on Markdown. VNote is designed to provide comfortable edit experience.

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.5.{build}
3+
version: 1.6.{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.5
41+
- set vnote_version=1.6
4242
# Clone OpenSSL DLLs
4343
- git clone https://github.com/tamlok/openssl-utils.git openssl-utils.git
4444
- mkdir distrib\VNote
@@ -66,6 +66,6 @@ deploy:
6666
subject: tamlok
6767
repo: vnote
6868
package: vnote
69-
version: 1.5
69+
version: 1.6
7070
publish: true
7171
override: true

changes.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
# Changes History
2+
## v1.6
3+
- Support simple but powerful **Vim mode**.
4+
- Change the shortcut of ExitAndRead from `Ctrl+R` to `Ctrl+T`.
5+
- Add a edit status indicator in the status bar.
6+
- Dragging mouse with Ctrl and left button pressed to scroll in read and edit mode.
7+
- Refine highlighting cursor line.
8+
- Support subscript, superscript and footnote in markdown-it renderer.
9+
- Refactor outline logics to not show extra [EMPTY] headers.
10+
- Handle HTML comments correctly.
11+
- Provide a default root folder when adding notebooks.
12+
- Support check for updates.
13+
- Redraw app icons.
14+
- Many minor bug fixes.
15+
216
## v1.5
317
- Support logging in release mode.
418
- Fix Chinese font matching in mdhl.

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.5");
16+
const QString VConfigManager::c_version = QString("1.6");
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");

src/vmainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1562,7 +1562,7 @@ void VMainWindow::updateStatusInfo(const VEditTabInfo &p_info)
15621562

15631563
void VMainWindow::handleVimStatusUpdated(const VVim *p_vim)
15641564
{
1565-
if (!p_vim || !m_curTab) {
1565+
if (!p_vim || !m_curTab || !m_curTab->isEditMode()) {
15661566
m_vimIndicator->hide();
15671567
} else {
15681568
m_vimIndicator->update(p_vim);

0 commit comments

Comments
 (0)