From bcb6adef30eb756d39a7083dbcd4a638af93b07c Mon Sep 17 00:00:00 2001 From: Le Tan Date: Sun, 25 Nov 2018 12:21:06 +0800 Subject: [PATCH] refine welcome --- src/resources/docs/welcome_en.md | 6 +++--- src/resources/docs/welcome_zh.md | 6 +++--- src/vmainwindow.cpp | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/resources/docs/welcome_en.md b/src/resources/docs/welcome_en.md index 42db5841..fb26c481 100644 --- a/src/resources/docs/welcome_en.md +++ b/src/resources/docs/welcome_en.md @@ -1,7 +1,7 @@ # Welcome to VNote ![VNote](qrc:/resources/icons/256x256/vnote.png) -> A Vim-inspired note-taking application that knows programmers and Markdown better. +> A note-taking application that knows programmers and Markdown better. [VNote](https://tamlok.github.io/vnote) provides fancy Markdown experience as well as powerful notes management. @@ -18,8 +18,8 @@ Steps to troubleshoot: 1. Go through the context menu, menu bar, tool bar, settings, and help menu to check if you miss something; 2. Changes to configuration may need re-opening current tabs or restarting VNote; 3. There is a Markdown guide and shortcuts guide in the help menu, which might be helpful; -4. Do a quick search in [Github Issues](https://github.com/tamlok/vnote/issues) and VNote's [Documentation](https://vnote.readthedocs.io/en/latest/); -5. Post an issue *in detail* on Github to ask for help. +4. Do a quick search in [GitHub Issues](https://github.com/tamlok/vnote/issues) and VNote's [Documentation](https://tamlok.github.io/vnote/en_us/#!docs/_vnote.json); +5. Post an issue *in detail* on GitHub to ask for help. One More Thing: If you do not know what is Vim, please do not turn on Vim mode in the settings dialog. 😁 By the way, Vim is really a magic tool to improve edit efficiency. Highly recommend Vim mode and VNote's shortcuts. You won't regret it. diff --git a/src/resources/docs/welcome_zh.md b/src/resources/docs/welcome_zh.md index aefff7d6..7accd234 100644 --- a/src/resources/docs/welcome_zh.md +++ b/src/resources/docs/welcome_zh.md @@ -1,7 +1,7 @@ # 欢迎使用VNote ![VNote](qrc:/resources/icons/256x256/vnote.png) -> 一个受Vim启发的、更懂程序员和Markdown的笔记软件。 +> 一个更懂程序员和Markdown的笔记。 [VNote](https://tamlok.github.io/vnote) 提供了美妙的Markdown体验以及强大的笔记管理。 @@ -18,8 +18,8 @@ VNote有两种使用方式: 1. 浏览上下文菜单、菜单栏、工具栏、设置以及帮助菜单; 2. 更改配置可能需要重新打开当前标签页或重启VNote; 3. 帮助菜单中包含了一份Markdown语法指南和一份快捷键指南; -4. 在[Github Issues](https://github.com/tamlok/vnote/issues)和VNote[文档](https://vnote.readthedocs.io/zh_CN/latest)中搜索您的问题; -5. 在Github上提交一个*详细*的Issue寻求帮助。 +4. 在[GitHub Issues](https://github.com/tamlok/vnote/issues)和VNote[文档](https://tamlok.github.io/vnote/zh_cn/#!docs/_vnote.json)中搜索您的问题; +5. 在GitHub上提交一个*详细*的Issue寻求帮助。 顺带一提: 如果您不了解Vim,请不要在设置对话框中开启Vim模式。😁Vim的确是一个提升编辑效率的神器。强烈推荐熟悉一下Vim模式以及VNote的快捷键。 diff --git a/src/vmainwindow.cpp b/src/vmainwindow.cpp index 97ddb247..b83a02e3 100644 --- a/src/vmainwindow.cpp +++ b/src/vmainwindow.cpp @@ -1460,9 +1460,9 @@ void VMainWindow::aboutMessage() info += "
"; info += tr("Author: Le Tan (tamlok)"); info += "

"; - info += tr("VNote is a free and open source Vim-inspired note-taking application that knows programmers and Markdown better."); + info += tr("VNote is a free and open source note-taking application that knows programmers and Markdown better."); info += "

"; - info += tr("Please visit Github for more information."); + info += tr("Please visit VNote for more information."); QMessageBox::about(this, tr("About VNote"), info); }