mirror of
https://github.com/whitechi73/OpenShamrock.git
synced 2024-08-14 13:12:17 +08:00
fix: OpenShamrock
This commit is contained in:
parent
31a1015d26
commit
76cd6a5633
@ -19,7 +19,7 @@
|
|||||||
### 克隆项目
|
### 克隆项目
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone -b docs https://github.com/linxinrao/Shamrock # 注意指定docs分支
|
git clone -b docs https://github.com/whitechi73/OpenShamrock # 注意指定docs分支
|
||||||
```
|
```
|
||||||
|
|
||||||
### 安装依赖
|
### 安装依赖
|
||||||
@ -74,4 +74,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
[recommend-extensions]: .vscode/extensions.json
|
[recommend-extensions]: .vscode/extensions.json
|
||||||
[pnpm]: https://pnpm.io/
|
[pnpm]: https://pnpm.io/
|
||||||
[contrib-image]: https://contrib.rocks/image?repo=whitechi73/OpenShamrock
|
[contrib-image]: https://contrib.rocks/image?repo=whitechi73/OpenShamrock
|
||||||
[contrib-link]: https://github.com/linxinrao/Shamrock/graphs/contributors
|
[contrib-link]: https://github.com/whitechi73/OpenShamrock/graphs/contributors
|
||||||
|
@ -3,8 +3,8 @@ import { searchProPlugin } from 'vuepress-plugin-search-pro'
|
|||||||
import theme from './config/theme'
|
import theme from './config/theme'
|
||||||
|
|
||||||
export default defineUserConfig({
|
export default defineUserConfig({
|
||||||
base: '/Shamrock/',
|
base: '/OpenShamrock/',
|
||||||
title: 'Shamrock',
|
title: 'OpenShamrock',
|
||||||
lang: 'zh-CN',
|
lang: 'zh-CN',
|
||||||
port: 1421,
|
port: 1421,
|
||||||
head: [
|
head: [
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { navbar } from 'vuepress-theme-hope'
|
import { navbar } from 'vuepress-theme-hope'
|
||||||
|
|
||||||
const shamrockNavbar = navbar(['/guide', '/advanced', '/api', '/message', '/event', '/group.md'])
|
const shamrockNavbar = navbar(['/guide', '/advanced', '/api', '/message', '/event'])
|
||||||
|
|
||||||
export { shamrockNavbar }
|
export { shamrockNavbar }
|
||||||
|
@ -6,8 +6,8 @@ export default hopeTheme({
|
|||||||
favicon: '/shamrock.webp',
|
favicon: '/shamrock.webp',
|
||||||
logo: '/shamrock.webp',
|
logo: '/shamrock.webp',
|
||||||
iconAssets: 'fontawesome-with-brands',
|
iconAssets: 'fontawesome-with-brands',
|
||||||
repo: 'linxinrao/Shamrock',
|
repo: 'whitechi73/OpenShamrock',
|
||||||
docsRepo: 'linxinrao/Shamrock',
|
docsRepo: 'whitechi73/OpenShamrock',
|
||||||
docsBranch: 'docs',
|
docsBranch: 'docs',
|
||||||
docsDir: 'docs',
|
docsDir: 'docs',
|
||||||
plugins: {
|
plugins: {
|
||||||
|
@ -10,7 +10,7 @@ Shamrock 的语音解码器已经模块化,你可以自行选择安装。
|
|||||||
|
|
||||||
为了完整支持语音消息,你需要安装 SILK 语音引擎。
|
为了完整支持语音消息,你需要安装 SILK 语音引擎。
|
||||||
|
|
||||||
- 下载 [AudioLibrary](https://github.com/linxinrao/Shamrock/blob/master/AudioLibrary.zip) 语音支持库
|
- 下载 [AudioLibrary](https://github.com/whitechi73/OpenShamrock/blob/master/AudioLibrary.zip) 语音支持库
|
||||||
- 将全部文件解压到 `Shamrock 主目录` 下的 `lib` 文件夹中
|
- 将全部文件解压到 `Shamrock 主目录` 下的 `lib` 文件夹中
|
||||||
|
|
||||||
关于 `Shamrock 主目录`,请参考 [目录定义](../guide/configuration.md#目录定义)。
|
关于 `Shamrock 主目录`,请参考 [目录定义](../guide/configuration.md#目录定义)。
|
||||||
|
@ -1,14 +0,0 @@
|
|||||||
---
|
|
||||||
title: 交流群
|
|
||||||
icon: fa-brands fa-qq
|
|
||||||
---
|
|
||||||
|
|
||||||
## QQ 群
|
|
||||||
|
|
||||||
### 如果你是二次元,请加入以下群
|
|
||||||
|
|
||||||
- [758533243](https://qm.qq.com/q/LlHABKWhu4)
|
|
||||||
|
|
||||||
### 如果你是正常人,请加入以下群
|
|
||||||
|
|
||||||
- [333425831](https://qm.qq.com/q/vYswHRoBGg)
|
|
@ -17,11 +17,11 @@ Shamrock 仍然处于快速开发阶段,可能会有大量API在未来版本
|
|||||||
|
|
||||||
### 稳定版本
|
### 稳定版本
|
||||||
|
|
||||||
- 要下载 Shamrock 的稳定版本,请访问 [GitHub Releases](https://github.com/linxinrao/Shamrock/releases)
|
- 要下载 Shamrock 的稳定版本,请访问 [GitHub Releases](https://github.com/whitechi73/OpenShamrock/releases)
|
||||||
|
|
||||||
### 开发版本
|
### 开发版本
|
||||||
|
|
||||||
- 要下载 Shamrock 的开发版本(推荐),请访问 [GitHub Actions](https://github.com/linxinrao/Shamrock/actions/workflows/build-apk.yml)
|
- 要下载 Shamrock 的开发版本(推荐),请访问 [GitHub Actions](https://github.com/whitechi73/OpenShamrock/actions/workflows/build-apk.yml)
|
||||||
|
|
||||||
## 部署
|
## 部署
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user