-
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
50 changed files
with
633 additions
and
740 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 |
---|---|---|
|
@@ -10,4 +10,5 @@ vsc-extension-quickstart.md | |
assets/ | ||
docs/ | ||
src/page/src/ | ||
src/page/.cache/ | ||
src/page/.cache/ | ||
scripts/ |
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 @@ | ||
1.1.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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# 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/). | ||
|
||
<!-- | ||
## [Unreleased] | ||
--> | ||
|
||
## [1.0.0] - 2020-06-14 | ||
|
||
Initial Release |
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,12 @@ | ||
# Qi Sketch Exporter | ||
|
||
Please choose language: | ||
|
||
<script> | ||
var language = navigator.language || navigator.browserLanguage; | ||
if (language.indexOf("zh") != -1) { | ||
location.href += "zh/"; | ||
} else { | ||
location.href += "en/"; | ||
} | ||
</script> |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,2 @@ | ||
window.VERSION = "1.1.0"; | ||
window.URL_PREFIX = location.pathname === "/" ? "" : location.pathname; |
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,28 @@ | ||
var I18N_EN = { | ||
language: "English", | ||
editLinkText: "Edit this page on GitHub", | ||
nav: [ | ||
{ | ||
title: "Home", | ||
link: "/en/README.md" | ||
}, | ||
{ | ||
title: "Change Log", | ||
link: "/CHANGELOG" | ||
}, | ||
{ | ||
title: "GitHub", | ||
link: "https://github.com/saekiraku/vscode-rainbow-fart" | ||
} | ||
], | ||
sidebar: [ | ||
{ | ||
title: "Summary", | ||
link: "/en/README.md" | ||
}, | ||
{ | ||
title: "Customize Voice Package", | ||
link: "/en/voice-packages.md" | ||
} | ||
] | ||
} |
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,27 @@ | ||
var I18N_ZH = { | ||
language: "简体中文", | ||
editLinkText: "在 GitHub 上编辑此页", | ||
nav: [{ | ||
title: "首页", | ||
link: "/zh/README.md" | ||
}, | ||
{ | ||
title: "更新日志", | ||
link: "/CHANGELOG" | ||
}, | ||
{ | ||
title: "GitHub", | ||
link: "https://github.com/saekiraku/vscode-rainbow-fart" | ||
} | ||
], | ||
sidebar: [ | ||
{ | ||
title: "概述", | ||
link: "/zh/README.md" | ||
}, | ||
{ | ||
title: "定制语音包", | ||
link: "/zh/voice-packages.md" | ||
} | ||
] | ||
} |
Oops, something went wrong.