Skip to content

Commit 6b1668e

Browse files
committed
fix: 新增社区页面,修改安装脚本地址
1 parent efd61ce commit 6b1668e

File tree

12 files changed

+113
-16
lines changed

12 files changed

+113
-16
lines changed

docs/.vuepress/components/Pricing.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { ref } from 'vue'
55
66
const showContactModal = ref(false)
77
8-
const qrCode = ref('https://oss.hutool.cn/hutool/kefu/m%20p.jpg?Content-Disposition=attachment%3B%20filename%3D%22kefu%2Fm%20p.jpg%22&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=admin%2F20250515%2F%2Fs3%2Faws4_request&X-Amz-Date=20250515T064327Z&X-Amz-Expires=432000&X-Amz-SignedHeaders=host&X-Amz-Signature=3d7c19f17b395a37f19b240264e81474d64f2588e820c5c98c6ce6db5467829e')
8+
const qrCode = ref('https://oss.hutool.cn/hutool/kefu/WechatIMG659.jpg?Content-Disposition=attachment%3B%20filename%3D%22kefu%2FWechatIMG659.jpg%22&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=admin%2F20250521%2F%2Fs3%2Faws4_request&X-Amz-Date=20250521T033551Z&X-Amz-Expires=432000&X-Amz-SignedHeaders=host&X-Amz-Signature=80705eb9d83b08197efb61cfe90cb7446e93f195291d3f226d00fbe55592d4fa')
99
1010
let data = {
1111
pricing: [

docs/.vuepress/navbar/en.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const en = navbar([
1616
link: "https://github.com/alist-org/alist/discussions",
1717
},
1818
{ text: "Telegram", link: "https://t.me/alist_chat" },
19-
{ text: "Discord", link: "https://discord.gg/F4ymsH4xv2" },
19+
{ text: "Wechat/QQ", link: "/community/" }
2020
],
2121
},
2222
{

docs/.vuepress/navbar/zh.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const zh = navbar([
1616
link: "https://github.com/alist-org/alist/discussions",
1717
},
1818
{ text: "Telegram", link: "https://t.me/alist_chat" },
19-
{ text: "Discord", link: "https://discord.gg/F4ymsH4xv2" },
19+
{ text: "微信/QQ", link: "zh/community/" },
2020
],
2121
},
2222
{
231 KB
Loading
232 KB
Loading
159 KB
Loading
159 KB
Loading

docs/.vuepress/sidebar/zh.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ export const zh = sidebar({
1717
text: "配置",
1818
icon: "iconfont icon-config",
1919
prefix: "config/",
20-
children: [
21-
"config",
22-
],
20+
children: ["", "configuration"],
2321
},
2422
{
2523
text: "常见问题",

docs/.vuepress/styles/index.scss

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,18 @@ html[data-theme="dark"] .wwads {
2525
html[data-theme="dark"] .wwads-text {
2626
color: #9e9e9e !important;
2727
}
28+
.qr-img-row {
29+
display: flex;
30+
align-items: center;
31+
gap: 24px; /* 两张图片的间距 */
32+
}
33+
.qr-img-row + .qr-img-row {
34+
margin-top: 20px;
35+
}
36+
.qr-img {
37+
max-width: 300px !important;
38+
height: auto;
39+
cursor: pointer;
40+
transition: box-shadow 0.2s;
41+
z-index: 1;
42+
}

docs/community/README.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<!-- ---
2+
sidebar: false
3+
--- -->
4+
5+
# Community
6+
7+
Welcome to the AList community! Here you can:
8+
9+
- Exchange experiences with other users
10+
- Get the latest project updates
11+
- Report issues or make suggestions
12+
- Participate in community discussions
13+
14+
## Join Us
15+
16+
### WeChat/QQ Groups
17+
18+
Scan the QR code below to join our WeChat/QQ groups:
19+
20+
<div class="qr-img-row">
21+
<img src="/img/ss/qq%20group01.pic.jpg" alt="QQ 群二维码" class="qr-img" />
22+
<img src="/img/ss/qq%20group02.pic.jpg" alt="QQ 群二维码" class="qr-img" />
23+
</div>
24+
<div class="qr-img-row">
25+
<img src="/img/ss/wechat%20group01.pic.jpg" alt="wechat 群二维码" class="qr-img" />
26+
<img src="/img/ss/wechat%20group02.pic.jpg" alt="QQ 群二维码" class="qr-img" />
27+
</div>
28+
29+
### Telegram
30+
31+
Join our Telegram group: [AList Chat](https://t.me/alist_chat)
32+
33+
### GitHub Discussions
34+
35+
Join our GitHub Discussions: [AList Discussions](https://github.com/alist-org/alist/discussions)
36+
37+
## Community Rules
38+
39+
1. Be friendly and respectful
40+
2. Use appropriate language
41+
3. Discuss topics in the right channels
42+
4. Follow the service terms of each platform

0 commit comments

Comments
 (0)