Skip to content

Commit 619f32e

Browse files
authored
sso related (#244)
1 parent 79ea33c commit 619f32e

File tree

25 files changed

+362
-56
lines changed

25 files changed

+362
-56
lines changed

docs/.vuepress/config.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,22 @@ export default defineUserConfig({
1717
// async: true,
1818
},
1919
],
20+
[
21+
"link",
22+
{
23+
type: "text/css",
24+
rel: "stylesheet",
25+
href: "https://npm.elemecdn.com/[email protected]/css/fontawesome.min.css",
26+
media: "all"
27+
}
28+
],
29+
[
30+
"link",
31+
{
32+
href: "https://npm.elemecdn.com/[email protected]/css/all.min.css",
33+
rel: "stylesheet"
34+
}
35+
],
2036
// [
2137
// "script",
2238
// {
53 KB
Loading
5.6 KB
Loading
47.8 KB
Loading
49.6 KB
Loading
23.5 KB
Loading

docs/.vuepress/theme.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ export default hopeTheme(
131131
{
132132
path: "/",
133133
title: 'Kind tips',
134-
content: '<span style="color:rgb(255, 0, 0);font-weight:bold;">Please check the reminder content carefully</span></br></br>1.The original API https://api.nn.ci is blocked by SNI </br>2.Alibaba Cloud Plate and applications using this API are all affected. For specific solutions, please check the two options below.<br/>3.<a href="/guide/drivers/139.html">139Cloud</a>和<a href="/guide/drivers/189.html">189Cloud</a>For details of changes, please view the document by yourself, respectively</br>4.v3.20.1version Breaking Changes <a href="https://github.com/alist-org/alist/discussions/4702">View detailed description</a>, go to <a href="/config/configuration.html#scheme">Configure documentation page</a></br>5.123 Cloud disk anti-leeching problem <a href="/guide/drivers/123.html#usage-issues">Click to view</a></span>',
134+
content: '<span style="color:rgb(255, 0, 0);font-weight:bold;">Please check the reminder content carefully</span></br></br>1.The new version of AList version greater than v3.22.1 adds single sign-on to automatically register as an AList account, click to view the <a href="/guide/advanced/sso.html#sso-automatically-registers-as-an-alist-account">detailed description</a></br>2.<a href="/guide/drivers/139.html">139Cloud</a>和<a href="/guide/drivers/189.html">189Cloud</a>For details of changes, please view the document by yourself, respectively</br>3.v3.20.1version Breaking Changes <a href="https://github.com/alist-org/alist/discussions/4702">View detailed description</a>, go to <a href="/config/configuration.html#scheme">Configure documentation page</a></br>4.123 Cloud disk anti-leeching problem <a href="/guide/drivers/123.html#usage-issues">Click to view</a><br/>5.<span style="color:blue; font-weight:bold;">After adding the cloud disk, please configure [anti-theft/meta information] and other measures in time to prevent the account from being [frozen/disabled] due to malicious [access/sharing] by [crawlers/others].</span></span>',
135135
actions: [
136136
// {
137137
// text: "Aliyun open",
@@ -154,7 +154,7 @@ export default hopeTheme(
154154
{
155155
path: "/zh",
156156
title: '温馨提示',
157-
content: '<span style="color:rgb(255, 0, 0);font-weight:bold;">请仔细查看弹窗提示内容</span></br></br>1.原API https://api.nn.ci被sni阻断</br>2.阿里云盘以及其他使用此API的都受影响,具体解决办法请查看下方两个选项二选一查看</br>3.<a href="/zh/guide/drivers/139.html">移动云盘</a>和<a href="/zh/guide/drivers/189.html">天翼云</a>分别有改动详情请自行查看文档</br>4.v3.20.1的版本破坏性更新<a href="https://github.com/alist-org/alist/discussions/4702">查看详细说明</a>,前往<a href="/zh/config/configuration.html#scheme">配置文档页面</a></br>5.123云盘防盗链问题<a href="/zh/guide/drivers/123.html#使用问题">点击查看</a></span>',
157+
content: '<span style="color:rgb(255, 0, 0);font-weight:bold;">请仔细查看弹窗提示内容</span></br></br>1.AList版本大于v3.22.1,新版本新增单点登录自动注册为AList账户,点击查看<a href="/zh/guide/advanced/sso.html#单点登录自动注册为alist帐号">详细说明</a></br>2.<a href="/zh/guide/drivers/139.html">移动云盘</a>和<a href="/zh/guide/drivers/189.html">天翼云</a>分别有改动详情请自行查看文档</br>3.v3.20.1的版本破坏性更新<a href="https://github.com/alist-org/alist/discussions/4702">查看详细说明</a>,前往<a href="/zh/config/configuration.html#scheme">配置文档页面</a></br>4.123云盘防盗链问题<a href="/zh/guide/drivers/123.html#使用问题">点击查看</a><br/>5.<span style="color:blue; font-weight:bold;">添加云盘后请及时配置[防盗/元信息]等措施,防止被[爬虫/其他人]恶意[访问/分享]导致帐号被[冻结/禁用].</span></span>',
158158
actions: [
159159
// {
160160
// text: "阿里云open",

docs/config/site.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,15 @@ The announcement of the `alist`, such as `### Hello\nWelcome to use Alist`. We s
6060

6161
- If you don't want to display it, you can clear the contents of the announcement to not display it.
6262

63-
63+
If you think the `x` button in the upper right corner is in the way, you can use the following CSS to remove it
64+
65+
```css
66+
<style>
67+
.notify-render .hope-close-button {
68+
display: none;
69+
}
70+
</style>
71+
```
6472

6573
### **Pagination type**
6674

docs/guide/advanced/ipa.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,13 @@ Recommended to use [ipa-renamer](https://github.com/Xhofe/ipa-renamer) to rename
4040

4141
@tab How to change the name of the computer version
4242

43-
<ArtPlayer
44-
src="https://hub.onmicrosoft.cn/public/video/wechat?wxv=wxv_2786278463950405640&raw=true"
45-
poster="/img/advanced/video.png"
46-
/>
43+
<BiliBili bvid="BV1bT411N7tT" ratio="16:9" low-quality no-danmaku />
4744

4845
**If the video fails, you can watch it here: https://b23.tv/oLvHHC8**
4946

5047
@tab how to change the name of the IOS 16 mobile phone
5148

52-
<ArtPlayer
53-
src="https://hub.onmicrosoft.cn/public/video/weibo?uid=7821998556&cursor=4871961534007938&raw=true"
54-
/>
49+
<BiliBili bvid="BV1kX4y1X7vo"/>
5550

5651
**If the video fails, you can watch it here:https://b23.tv/GxGG8Dn**
5752

docs/guide/advanced/offline-download.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,6 @@ The above two methods are most likely caused by the qBittorrent software itself,
100100

101101
**qBittorrent** Video Tutorials
102102

103-
<ArtPlayer
104-
src="https://hub.onmicrosoft.cn/public/video/wechat?wxv=wxv_2804817007920660481&hd=2&raw=true"
105-
poster="/img/advanced/qbittorrent.png"
106-
/>
103+
<BiliBili bvid="BV1NT411q7EN" />
107104

108105
**If the video fails, you can watch it here: https://b23.tv/J34qDiG**

0 commit comments

Comments
 (0)