diff --git a/docs/.vitepress/config/common.ts b/docs/.vitepress/config/common.ts
index 037bd67c..b4d111b6 100755
--- a/docs/.vitepress/config/common.ts
+++ b/docs/.vitepress/config/common.ts
@@ -59,7 +59,7 @@ export const common = defineConfig({
href: "https://fonts.font.im/css?family=Cousine:400,400i,700,700i|Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i",
},
],
- ["script", { src: "https://cdn.liteyuki.icu/js/liteyuki_footer.js" }],
+ ["script", { src: "https://cdn.liteyuki.org/js/liteyuki_footer.js" }],
],
rewrites: {
[`${defaultLocale}/:rest*`]: ":rest*",
@@ -67,8 +67,8 @@ export const common = defineConfig({
cleanUrls: false,
themeConfig: {
logo: {
- light: "https://cdn.liteyuki.icu/logos/bot.svg",
- dark: "https://cdn.liteyuki.icu/logos/bot.svg",
+ light: "https://cdn.liteyuki.org/logos/bot.svg",
+ dark: "https://cdn.liteyuki.org/logos/bot.svg",
alt: "LiteyukiBot Logo",
},
sidebar: generateSidebar([...generateSidebarConfig()]),
@@ -78,13 +78,13 @@ export const common = defineConfig({
icon: {
svg: '',
},
- link: "https://git.liteyuki.icu/bot/app",
+ link: "https://git.liteyuki.org/bot/app",
},
{
icon: {
svg: '',
},
- link: "https://lab.liteyuki.icu/@LiteyukiBot",
+ link: "https://lab.liteyuki.org/@LiteyukiBot",
},
],
search: {
@@ -128,7 +128,7 @@ export const common = defineConfig({
},
},
sitemap: {
- hostname: "https://bot.liteyuki.icu",
+ hostname: "https://bot.liteyuki.org",
},
lastUpdated: true,
locales: {
diff --git a/docs/.vitepress/config/en.ts b/docs/.vitepress/config/en.ts
index 4de548ea..575dea6b 100755
--- a/docs/.vitepress/config/en.ts
+++ b/docs/.vitepress/config/en.ts
@@ -20,7 +20,7 @@ export const en = defineConfig({
'Edit this page on GitHub',
),
footer: {
- message: 'Page is deployed at Liteyuki Meli and accelerated by Liteyukiflare
Documentation built with VitePress | API references generated by litedoc',
+ message: 'Page is deployed at Liteyuki Meli and accelerated by Liteyukiflare
Documentation built with VitePress | API references generated by litedoc',
copyright: ThemeConfig.copyright
},
outline: ThemeConfig.getOutLine("Page Content"),
diff --git a/docs/.vitepress/config/zh.ts b/docs/.vitepress/config/zh.ts
index 43392725..b30cab6b 100755
--- a/docs/.vitepress/config/zh.ts
+++ b/docs/.vitepress/config/zh.ts
@@ -20,7 +20,7 @@ export const zh = defineConfig({
'在 GitHub 上编辑此页',
),
footer: {
- message: '网站部署在 Liteyuki Meli 由 Liteyukiflare 提供加速服务
文档由 VitePress 构建 | API引用由 litedoc 生成',
+ message: '网站部署在 Liteyuki Meli 由 Liteyukiflare 提供加速服务
文档由 VitePress 构建 | API引用由 litedoc 生成',
copyright: ThemeConfig.copyright
},
outline: ThemeConfig.getOutLine("页面内容"),
diff --git a/docs/components/Dash.vue b/docs/components/Dash.vue
index f1c752af..29a03ee0 100755
--- a/docs/components/Dash.vue
+++ b/docs/components/Dash.vue
@@ -3,13 +3,13 @@ import {ref} from "vue";
let total = ref(0);
let online = ref(0);
-fetch("https://api.liteyuki.icu/count")
+fetch("https://api.liteyuki.org/count")
.then(res => res.json())
.then(data => {
total.value = data.register;
})
.catch(err => console.error(err));
-fetch("https://api.liteyuki.icu/online")
+fetch("https://api.liteyuki.org/online")
.then(res => res.json())
.then(data => {
online.value = data.online;
diff --git a/docs/components/StatsBar.vue b/docs/components/StatsBar.vue
index f6c356c6..61cedaa8 100755
--- a/docs/components/StatsBar.vue
+++ b/docs/components/StatsBar.vue
@@ -146,7 +146,7 @@ console.log(
-
diff --git a/docs/components/scripts/statsApi.ts b/docs/components/scripts/statsApi.ts
index aedf1f99..43f99f32 100755
--- a/docs/components/scripts/statsApi.ts
+++ b/docs/components/scripts/statsApi.ts
@@ -2,14 +2,14 @@
export const OWNER = "LiteyukiStudio"
export const REPO = "LiteyukiBot"
const githubAPIUrl = "https://api.github.com"
-const giteaAPIUrl = "https://git.liteyuki.icu/api/v1"
-const onlineFetchUrl = "https://api.liteyuki.icu/online";
-const totalFetchUrl = "https://api.liteyuki.icu/count";
-const visitRecordUrl = "https://api.liteyuki.icu/visit";
-const visitCountUrl = "https://api.liteyuki.icu/visit_count";
+const giteaAPIUrl = "https://git.liteyuki.org/api/v1"
+const onlineFetchUrl = "https://api.liteyuki.org/online";
+const totalFetchUrl = "https://api.liteyuki.org/count";
+const visitRecordUrl = "https://api.liteyuki.org/visit";
+const visitCountUrl = "https://api.liteyuki.org/visit_count";
export const RepoUrl = `https://github.com/${OWNER}/${REPO}`
-export const StarMapUrl = "https://starmap.liteyuki.icu"
+export const StarMapUrl = "https://starmap.liteyuki.org"
type GithubStats = {
stars: number;
diff --git a/docs/en/dev/best_practices.md b/docs/en/dev/best_practices.md
index 42f78ccc..a22c3d7c 100755
--- a/docs/en/dev/best_practices.md
+++ b/docs/en/dev/best_practices.md
@@ -8,14 +8,14 @@ order: 10
## Bot applications
- [LiteyukiBot](https://github.com/LiteyukiStudio/LiteyukiBot): Liteyuki Official Bot
- [LiteyukiBot-TriM](https://github.com/TriM-Organization/LiteyukiBot-TriM): TriM Official Custom Liteyuki Bot
-- [Liteyuki Marsho](https://git.liteyuki.icu/LiteyukiStudio/marsho-alpha): A cute cat girl bot based on Liteyuki and the github model
+- [Liteyuki Marsho](https://git.liteyuki.org/LiteyukiStudio/marsho-alpha): A cute cat girl bot based on Liteyuki and the github model
## plugins
- [liteyukibot-plugin-nonebot](https://github.com/LiteyukiStudio/liteyukibot-plugin-nonebot): Liteyuki Bot NoneBot plugin, allowing Liteyuki to support NoneBot
- [nonebot-plugin-liteyukibot](https://github.com/LiteyukiStudio/nonebot-plugin-liteyukibot): NoneBot plugin, allowing NoneBot to support Liteyuki
## Others
-- [liteyuki starmap](https://starmap.liteyuki.icu): Liteyuki official star map, showing all instances of Liteyuki and their location distribution
+- [liteyuki starmap](https://starmap.liteyuki.org): Liteyuki official star map, showing all instances of Liteyuki and their location distribution
- [TRSS_Liteyuki](https://timerainstarsky.github.io/TRSS_Liteyuki/): LiteyukiBot management script
- [litedoc](https://github.com/LiteyukiStudio/litedoc): Liteyuki API documentation generator
- liteyukibot-api (closed source): Liteyuki Bot stat interface
\ No newline at end of file
diff --git a/docs/en/index.md b/docs/en/index.md
index 9853d24f..0a266497 100755
--- a/docs/en/index.md
+++ b/docs/en/index.md
@@ -18,8 +18,8 @@ hero:
text: 🛠️ Development
link: ./dev/guide
image:
- light: https://cdn.liteyuki.icu/logos/bot.svg
- dark: https://cdn.liteyuki.icu/logos/bot.svg
+ light: https://cdn.liteyuki.org/logos/bot.svg
+ dark: https://cdn.liteyuki.org/logos/bot.svg
alt: Liteyuki Logo
features:
diff --git a/docs/public/resources.json b/docs/public/resources.json
index bdcfc390..8b30b850 100755
--- a/docs/public/resources.json
+++ b/docs/public/resources.json
@@ -3,43 +3,43 @@
"name": "KawaiiStatus",
"author": "SnowyKami",
"description": "可爱的状态卡片,仿照koishi的制作",
- "link": "https://cdn.liteyuki.icu/static/lrp/KawaiiStatus.zip"
+ "link": "https://cdn.liteyuki.org/static/lrp/KawaiiStatus.zip"
},
{
"name": "MiSans字体包",
"author": "SnowyKami",
"description": "小米官方字体MiSans",
- "link": "https://cdn.liteyuki.icu/static/lrp/MiSansFonts.zip"
+ "link": "https://cdn.liteyuki.org/static/lrp/MiSansFonts.zip"
},
{
"name": "MapleMono字体包",
"author": "SnowyKami",
"description": "适用于字母的字体包",
- "link": "https://cdn.liteyuki.icu/static/lrp/MapleMonoFonts.zip"
+ "link": "https://cdn.liteyuki.org/static/lrp/MapleMonoFonts.zip"
},
{
"name": "野兽先辈主题HomoTheme",
"author": "SnowyKami",
"description": "野兽先辈主题包,114514!",
- "link": "https://cdn.liteyuki.icu/static/lrp/HomoTheme.zip"
+ "link": "https://cdn.liteyuki.org/static/lrp/HomoTheme.zip"
},
{
"name": "自定义设备信息",
"author": "SnowyKami",
"description": "自定义服务端的设备信息,自行修改使用",
- "link": "https://cdn.liteyuki.icu/static/lrp/custom-device.zip"
+ "link": "https://cdn.liteyuki.org/static/lrp/custom-device.zip"
},
{
"name": "轻雪傲娇系词库",
"author": "SnowyKami",
"description": "使用https://github.com/Kyomotoi/AnimeThesaurus的词库",
- "link": "https://cdn.liteyuki.icu/static/lrp/liteyuki_words_aojiao.zip"
+ "link": "https://cdn.liteyuki.org/static/lrp/liteyuki_words_aojiao.zip"
},
{
"name": "轻雪可爱系词库",
"author": "SnowyKami",
"description": "使用https://github.com/Kyomotoi/AnimeThesaurus的词库",
- "link": "https://cdn.liteyuki.icu/static/lrp/liteyuki_words_kawaii.zip"
+ "link": "https://cdn.liteyuki.org/static/lrp/liteyuki_words_kawaii.zip"
},
{
"name": "轻雪Kakyo语言包",
@@ -51,26 +51,26 @@
"name": "更多背景模板包",
"author": "snowykami",
"description": "自定义各种卡片的背景",
- "link": "https://cdn.liteyuki.icu/static/lrp/morebg.zip"
+ "link": "https://cdn.liteyuki.org/static/lrp/morebg.zip"
},
{
"name": "测试资源包",
"desc": "test",
- "link": "https://cdn.liteyuki.icu/static/lrp/liteyuki_words_aojiao.zip",
+ "link": "https://cdn.liteyuki.org/static/lrp/liteyuki_words_aojiao.zip",
"homepage": "",
"author": "snowykami"
},
{
"name": "轻雪Kakyo语言包 稳定版",
"description": "Liteyuki Bot的语言包,用于提供多种语言的翻译。",
- "link": "https://cdn.liteyuki.icu/static/lrp/kakyo.zip",
+ "link": "https://cdn.liteyuki.org/static/lrp/kakyo.zip",
"homepage": "https://github.com/Nanaloveyuki/liteyuki-langpack",
"author": "Nanaloveyuki"
},
{
"name": "测试资源包2",
"description": "test",
- "link": "https://cdn.liteyuki.icu/static/lrp/liteyuki_words_aojiao.zip",
+ "link": "https://cdn.liteyuki.org/static/lrp/liteyuki_words_aojiao.zip",
"homepage": "",
"author": "snowykami"
}
diff --git a/docs/zh/deploy/fandq.md b/docs/zh/deploy/fandq.md
index 9451a5dc..100dba9c 100755
--- a/docs/zh/deploy/fandq.md
+++ b/docs/zh/deploy/fandq.md
@@ -27,7 +27,7 @@ order: 4
### **怎么对接聊天平台?**
-Bot 部分插件提供了对接特定平台的能力, 例如, 使用 NoneBot 插件可以对接支持的[适配器平台](https://bot.liteyuki.icu/deploy/adapter.html)
+Bot 部分插件提供了对接特定平台的能力, 例如, 使用 NoneBot 插件可以对接支持的[适配器平台](https://bot.liteyuki.org/deploy/adapter.html)
### **`Playwright` 安装失败**
diff --git a/docs/zh/deploy/install.md b/docs/zh/deploy/install.md
index 6969c831..6cb293f8 100755
--- a/docs/zh/deploy/install.md
+++ b/docs/zh/deploy/install.md
@@ -20,7 +20,7 @@ order: 1
`git clone https://github.com/LiteyukiStudio/LiteyukiBot --depth=1`
-> 若你不能访问Github,可以使用Liteyuki镜像:`https://git.liteyuki.icu/bot/app`
+> 若你不能访问Github,可以使用Liteyuki镜像:`https://git.liteyuki.org/bot/app`
### 切换到Bot目录下
diff --git a/docs/zh/dev/best_practices.md b/docs/zh/dev/best_practices.md
index f06d76bb..ec83aa8c 100755
--- a/docs/zh/dev/best_practices.md
+++ b/docs/zh/dev/best_practices.md
@@ -8,14 +8,14 @@ order: 10
## 机器人应用
- [LiteyukiBot](https://github.com/LiteyukiStudio/LiteyukiBot):轻雪官方机器人
- [LiteyukiBot-TriM](https://github.com/TriM-Organization/LiteyukiBot-TriM):TriM 官方定制轻雪机器人
-- [Liteyuki Marsho](https://git.liteyuki.icu/LiteyukiStudio/marsho-alpha):基于 轻雪 和 github model 的可爱猫娘机器人
+- [Liteyuki Marsho](https://git.liteyuki.org/LiteyukiStudio/marsho-alpha):基于 轻雪 和 github model 的可爱猫娘机器人
## 插件
- [liteyukibot-plugin-nonebot](https://github.com/LiteyukiStudio/liteyukibot-plugin-nonebot):轻雪机器人 NoneBot 插件,让轻雪支持 NoneBot
- [nonebot-plugin-liteyukibot](https://github.com/LiteyukiStudio/nonebot-plugin-liteyukibot):NoneBot 插件,让 NoneBot 支持轻雪
## 其他
-- [liteyuki starmap](https://starmap.liteyuki.icu):轻雪官方星图,展示轻雪的所有实例及其位置分布
+- [liteyuki starmap](https://starmap.liteyuki.org):轻雪官方星图,展示轻雪的所有实例及其位置分布
- [TRSS_Liteyuki](https://timerainstarsky.github.io/TRSS_Liteyuki/):TRSS LiteyukiBot 管理脚本
- [litedoc](https://github.com/LiteyukiStudio/litedoc):轻雪API文档生成器
- liteyukibot-api (闭源):轻雪机器人统计接口
\ No newline at end of file
diff --git a/docs/zh/index.md b/docs/zh/index.md
index 2b240b72..ef58d4cd 100755
--- a/docs/zh/index.md
+++ b/docs/zh/index.md
@@ -18,8 +18,8 @@ hero:
text: 🛠️ 开发
link: ./dev/guide
image:
- light: https://cdn.liteyuki.icu/logos/bot.svg
- dark: https://cdn.liteyuki.icu/logos/bot.svg
+ light: https://cdn.liteyuki.org/logos/bot.svg
+ dark: https://cdn.liteyuki.org/logos/bot.svg
alt: Liteyuki Logo
features: