refine welcome

This commit is contained in:
Le Tan 2018-11-25 12:21:06 +08:00
parent 324d8ab7a5
commit bcb6adef30
3 changed files with 8 additions and 8 deletions

View File

@ -1,7 +1,7 @@
# Welcome to VNote # Welcome to VNote
![VNote](qrc:/resources/icons/256x256/vnote.png) ![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. [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; 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; 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; 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/); 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. 5. Post an issue *in detail* on GitHub to ask for help.
<mark>One More Thing</mark>: 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. <mark>One More Thing</mark>: 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.

View File

@ -1,7 +1,7 @@
# 欢迎使用VNote # 欢迎使用VNote
![VNote](qrc:/resources/icons/256x256/vnote.png) ![VNote](qrc:/resources/icons/256x256/vnote.png)
> 一个受Vim启发的、更懂程序员和Markdown的笔记软件 > 一个更懂程序员和Markdown的笔记。
[VNote](https://tamlok.github.io/vnote) 提供了美妙的Markdown体验以及强大的笔记管理。 [VNote](https://tamlok.github.io/vnote) 提供了美妙的Markdown体验以及强大的笔记管理。
@ -18,8 +18,8 @@ VNote有两种使用方式
1. 浏览上下文菜单、菜单栏、工具栏、设置以及帮助菜单; 1. 浏览上下文菜单、菜单栏、工具栏、设置以及帮助菜单;
2. 更改配置可能需要重新打开当前标签页或重启VNote 2. 更改配置可能需要重新打开当前标签页或重启VNote
3. 帮助菜单中包含了一份Markdown语法指南和一份快捷键指南 3. 帮助菜单中包含了一份Markdown语法指南和一份快捷键指南
4. 在[Github Issues](https://github.com/tamlok/vnote/issues)和VNote[文档](https://vnote.readthedocs.io/zh_CN/latest)中搜索您的问题; 4. 在[GitHub Issues](https://github.com/tamlok/vnote/issues)和VNote[文档](https://tamlok.github.io/vnote/zh_cn/#!docs/_vnote.json)中搜索您的问题;
5. 在Github上提交一个*详细*的Issue寻求帮助。 5. 在GitHub上提交一个*详细*的Issue寻求帮助。
<mark>顺带一提</mark>: 如果您不了解Vim请不要在设置对话框中开启Vim模式。😁Vim的确是一个提升编辑效率的神器。强烈推荐熟悉一下Vim模式以及VNote的快捷键。 <mark>顺带一提</mark>: 如果您不了解Vim请不要在设置对话框中开启Vim模式。😁Vim的确是一个提升编辑效率的神器。强烈推荐熟悉一下Vim模式以及VNote的快捷键。

View File

@ -1460,9 +1460,9 @@ void VMainWindow::aboutMessage()
info += "<br/>"; info += "<br/>";
info += tr("Author: Le Tan (tamlok)"); info += tr("Author: Le Tan (tamlok)");
info += "<br/><br/>"; info += "<br/><br/>";
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 += "<br/><br/>"; info += "<br/><br/>";
info += tr("Please visit <a href=\"https://github.com/tamlok/vnote.git\">Github</a> for more information."); info += tr("Please visit <a href=\"https://tamlok.github.io/vnote\">VNote</a> for more information.");
QMessageBox::about(this, tr("About VNote"), info); QMessageBox::about(this, tr("About VNote"), info);
} }