-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
308 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
node_modules/ | ||
dist/ | ||
.cache/ | ||
temp/ | ||
temp/ | ||
*.vsix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<h1 align="center"> | ||
<br> | ||
<img src="https://github.com/SaekiRaku/vscode-rainbow-fart/blob/master/assets/logo.png?raw=true" alt="logo" width="100"> | ||
<br> | ||
<br> | ||
🌈 RAINBOW FART | ||
<br> | ||
<br> | ||
</h1> | ||
|
||
Languages: 简体中文 | [English](./README.md) | ||
|
||
## 概述 | ||
|
||
**VSCode Rainbow Fart** 是一个在你编程时持续夸你写的牛逼的扩展,可以根据代码关键字播放贴近代码意义的真人语音。 | ||
|
||
## 文档 | ||
|
||
详细信息请访问 [文档](https://saekiraku.github.io/vscode-rainbow-fart/ | ||
). | ||
|
||
## 快速上手 | ||
|
||
> Rainbow Fart 插件现以发布到 VSCode 商店,安装过 VSIX 版本的用户请卸载之前的版本,从商店安装。 | ||
1. 从 [VSCode 扩展商店](https://marketplace.visualstudio.com/items?itemName=saekiraku.rainbow-fart) 下载并安装。 | ||
2. 在 VSCode 的菜单栏中找到 `查看 - 命令面板`,或使用快捷键 `Ctrl + Shift + P`(MacOS `Command + Shift + P`)呼出 `命令面板`。 | ||
3. 在 `命令面板` 中输入 `> Enable Rainbow Fart` 并回车。 | ||
4. 此时应该会弹出一个消息通知,点击通知上的 `Open` 按钮。 | ||
5. 在打开的页面上点击 `授权`。 | ||
6. 享受编程吧!请尝试在 VSCode 中输入 `function` 关键字。 | ||
|
||
## License | ||
|
||
基于 MIT 开源,包括所有设计资源及音频资源。由于仓库中的音频资源大部分由真人录音,并且根据 MIT 被授权人义务。在此明确:尤其的对于仓库中多媒体资源,您有(单独)标明资源作者([@JustKowalski](https://github.com/JustKowalski) 提供。)、链接、许可的义务。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.1.1 | ||
1.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,43 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). | ||
All notable changes to the "vscode-rainbow-fart" extension will be documented in this file. | ||
|
||
<!-- | ||
## [Unreleased] | ||
--> | ||
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. | ||
|
||
## [1.0.0] - 2020-06-14 | ||
## [1.2.0] - 2020-06-20 | ||
|
||
Initial Release | ||
### Added | ||
|
||
- Enable/Disable voice packages. | ||
- English document. | ||
|
||
### Fixed | ||
|
||
- Duplicated key in the voice package details modal. | ||
- Fixed width of voice package details modal | ||
- Issue: [#8](https://github.com/SaekiRaku/vscode-rainbow-fart/issues/8) | ||
|
||
## [1.1.0] - 2020-06-14 | ||
|
||
### Added | ||
|
||
- Support import voice packages | ||
- New built-in voices for Chinese | ||
- I18N supports for English | ||
- Add document | ||
|
||
### Changed | ||
|
||
- New user interface | ||
|
||
## [1.0.2] - 2020-06-01 | ||
|
||
- Lower the required version of VSCode. | ||
|
||
## [1.0.1] - 2020-05-30 | ||
|
||
- UI Optimization | ||
|
||
## [1.0.0] - 2020-05-29 | ||
|
||
- Initial release |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# Summary | ||
|
||
**VSCode Rainbow Fart** is an extension that keeps giving you compliment while you are coding, it will checks the keywords of code to play suitable sounds. | ||
|
||
<Note label="Demo Video"> | ||
|
||
<video src="/en/assets/demo-video-en.mp4" controls width="100%"></video> | ||
|
||
</Note> | ||
|
||
<Note label="Tips"> | ||
|
||
If you have any suggestions or comments in use, please feedback to [GitHub Issues](https://github.com/saekiraku/vscode-rainbow-fart/issues). | ||
|
||
</Note> | ||
|
||
## Usage | ||
|
||
1. Install extension from [VSCode Marketplace](https://marketplace.visualstudio.com/items?itemName=saekiraku.rainbow-fart) | ||
2. Press `Ctrl + Shift + P`(MacOS `Command + Shift + P`)to bring up `Command Panel`. | ||
3. Type `> Enable Rainbow Fart` into `Command Panel` | ||
4. An notification should be poped up at the corner, click the `Open` on that notification. | ||
5. Click `Authorization` on the opend page. | ||
6. Enjoy coding! try to type `function` in your VSCode. | ||
|
||
## Voice Packages | ||
|
||
For now, it has 2 built-in voice package which are Chinese and English edition. In order to avoid the extension being too large, no plan to add more built-in voice. You can find and install voice package of other languages, gender or tone style, etc at [here](https://github.com/topics/rainbow-fart). | ||
|
||
The built-in voice package of English edition is created by Speech Synthesis. Because I don't have any friends that use English as mother language, if you are interested in this project, it would be nice to have contribute with your voice, no matter about gender, tone color, personality, language, contry etc. | ||
|
||
P.S. The voice of Chinese edition is recorded by real people if you have interests, [take a look](/zh/) | ||
|
||
<center> | ||
<a href="https://github.com/topics/rainbow-fart" class="download" target="__blank">Get More Voice Packages</a> | ||
</center> | ||
|
||
<style> | ||
.download { | ||
background: #009688; | ||
text-align: center; | ||
color: #FFF; | ||
font-weight: bolder; | ||
display: inline-block; | ||
padding: 0px 32px; | ||
margin: 16px 0px; | ||
line-height: 48px; | ||
border-radius: 48px; | ||
} | ||
.download:hover { | ||
text-decoration: none !important; | ||
opacity: 0.75; | ||
} | ||
</style> | ||
|
||
## Awesome Rainbow Fart | ||
|
||
### Other Client | ||
|
||
* [Emacs Rainbow Fart](https://github.com/stardiviner/emacs-rainbow-fart) | ||
* [IntelliJ Rainbow Fart](https://github.com/izhangzhihao/intellij-rainbow-fart) | ||
|
||
## License | ||
|
||
Open source based on MIT, including all design resources and audio resources. In addition, since most of the audio resources are recorded by real people, and under the obligations of the MIT licensee. Here it is clarify: Especially for multimedia resources in the repo, you have the obligation to (separately) indicate the original author, link, and permission of the resource. |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# TODO | ||
|
||
Not translated, welcome to send PR. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
window.VERSION = "1.1.0"; | ||
window.VERSION = "1.2.0"; | ||
window.URL_PREFIX = location.pathname === "/" ? "" : location.pathname; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.