Skip to content

Commit 89b062f

Browse files
authored
Merge pull request #2 from AlliotTech/feat/repo-url-replace
Feat/repo url replace
2 parents f49639b + 31a9508 commit 89b062f

82 files changed

Lines changed: 138 additions & 138 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/.vuepress/components/HomePage.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</template>
1010
<script setup lang="ts">
1111
import HopeHomePage from "vuepress-theme-hope/components/HomePage";
12-
import HomeAds from "./HomeAds.vue";
12+
// import HomeAds from "./HomeAds.vue";
1313
import { ClientOnly } from "@vuepress/client";
1414
1515
</script>

docs/.vuepress/components/Pricing.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ let data = {
1616
],
1717
btns: [{
1818
text: 'Download',
19-
link: 'https://github.com/alist-org/alist/releases'
19+
link: 'https://github.com/AlliotTech/openalist/releases'
2020
},
2121
{
2222
text: "Sponsor",
@@ -87,7 +87,7 @@ if (location.pathname.startsWith("/zh/")) {
8787
],
8888
btns: [{
8989
text: '下载',
90-
link: 'https://github.com/alist-org/alist/releases',
90+
link: 'https://github.com/AlliotTech/openalist/releases',
9191
}, {
9292
text: "赞助",
9393
link: "/zh/guide/sponsor.html",

docs/.vuepress/navbar/en.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const en = navbar([
1313
children: [
1414
{
1515
text: "Discussion",
16-
link: "https://github.com/alist-org/alist/discussions",
16+
link: "https://github.com/AlliotTech/openalist/discussions",
1717
},
1818
{ text: "Telegram", link: "https://t.me/alist_chat" },
1919
{ text: "Discord", link: "https://discord.gg/F4ymsH4xv2" },
@@ -31,6 +31,6 @@ export const en = navbar([
3131
{
3232
text: "Github",
3333
icon: "iconfont icon-github",
34-
link: "https://github.com/alist-org/alist",
34+
link: "https://github.com/AlliotTech/openalist",
3535
},
3636
]);

docs/.vuepress/navbar/zh.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const zh = navbar([
1313
children: [
1414
{
1515
text: "Discussion",
16-
link: "https://github.com/alist-org/alist/discussions",
16+
link: "https://github.com/AlliotTech/openalist/discussions",
1717
},
1818
{ text: "Telegram", link: "https://t.me/alist_chat" },
1919
{ text: "Discord", link: "https://discord.gg/F4ymsH4xv2" },
@@ -31,6 +31,6 @@ export const zh = navbar([
3131
{
3232
text: "Github",
3333
icon: "iconfont icon-github",
34-
link: "https://github.com/alist-org/alist",
34+
link: "https://github.com/AlliotTech/openalist",
3535
},
3636
])

docs/.vuepress/public/beta.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# INSTALL_PATH='/opt/alist'
44
VERSION='beta'
55

6-
URL_PREFIX='https://github.com/alist-org/alist/releases/download/beta/'
6+
URL_PREFIX='https://github.com/AlliotTech/openalist/releases/download/beta/'
77

88
if [ ! -n "$2" ]; then
99
INSTALL_PATH='/opt/alist'

docs/.vuepress/public/v3-en.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ fi
3939
#######################
4040
# GitHub settings
4141
GH_PROXY='' # Can be modified if proxy is needed
42-
GH_DOWNLOAD_URL="${GH_PROXY}https://github.com/alist-org/alist/releases/latest/download"
42+
GH_DOWNLOAD_URL="${GH_PROXY}https://github.com/AlliotTech/openalist/releases/latest/download"
4343
#######################
4444

4545
# Color configuration

docs/.vuepress/public/v3.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ fi
3838
# 配置部分
3939
#######################
4040
# GitHub 相关配置
41-
GH_DOWNLOAD_URL="${GH_PROXY}https://github.com/alist-org/alist/releases/latest/download"
41+
GH_DOWNLOAD_URL="${GH_PROXY}https://github.com/AlliotTech/openalist/releases/latest/download"
4242
#######################
4343

4444
# 颜色配置
@@ -198,11 +198,11 @@ INSTALL() {
198198
# 如果用户输入了代理地址,则使用代理拼接下载链接
199199
if [ -n "$proxy_input" ]; then
200200
GH_PROXY="$proxy_input"
201-
GH_DOWNLOAD_URL="${GH_PROXY}https://github.com/alist-org/alist/releases/latest/download"
201+
GH_DOWNLOAD_URL="${GH_PROXY}https://github.com/AlliotTech/openalist/releases/latest/download"
202202
echo -e "${GREEN_COLOR}已使用代理地址: $GH_PROXY${RES}"
203203
else
204204
# 如果不需要代理,直接使用默认链接
205-
GH_DOWNLOAD_URL="https://github.com/alist-org/alist/releases/latest/download"
205+
GH_DOWNLOAD_URL="https://github.com/AlliotTech/openalist/releases/latest/download"
206206
echo -e "${GREEN_COLOR}使用默认 GitHub 地址进行下载${RES}"
207207
fi
208208

@@ -330,11 +330,11 @@ UPDATE() {
330330
# 如果用户输入了代理地址,则使用代理拼接下载链接
331331
if [ -n "$proxy_input" ]; then
332332
GH_PROXY="$proxy_input"
333-
GH_DOWNLOAD_URL="${GH_PROXY}https://github.com/alist-org/alist/releases/latest/download"
333+
GH_DOWNLOAD_URL="${GH_PROXY}https://github.com/AlliotTech/openalist/releases/latest/download"
334334
echo -e "${GREEN_COLOR}已使用代理地址: $GH_PROXY${RES}"
335335
else
336336
# 如果不需要代理,直接使用默认链接
337-
GH_DOWNLOAD_URL="https://github.com/alist-org/alist/releases/latest/download"
337+
GH_DOWNLOAD_URL="https://github.com/AlliotTech/openalist/releases/latest/download"
338338
echo -e "${GREEN_COLOR}使用默认 GitHub 地址进行下载${RES}"
339339
fi
340340

docs/.vuepress/theme.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export default hopeTheme(
122122
{
123123
path: "/",
124124
title: 'Kind tips',
125-
content: '<i class="fa-solid fa-light-emergency-on fa-bounce" style="color: #ff0000;"></i>&nbsp;<span style="color:rgb(255, 0, 0);font-weight:bold;">Please check the reminder content carefully</span><br/><br/>1.<span style="color:blue; font-weight:bold;">The new version v3.25.0 has updated the new password method, and the acquisition method has also been changed. For details, please refer to the documentation page of your own installation method</span><br/>2.v3.25.1 Aliyun_open can choose to mount the backup disk or resource library by itself, for details <a href="/guide/drivers/aliyundrive_open.html#drive-type">Click to view for details</a><br/>3.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/>4.<a href="/guide/drivers/139.html">139Cloud</a>and<a href="/guide/drivers/189.html">189Cloud</a>For details of changes, please view the document by yourself, respectively<br/>5.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/>6. AList v3.30.0 will no longer support Win7/Server2008 because Go does not support it. <a href="https://github.com/golang/go/issues/64622">Click to view detailed instructions</a> .<br/>7.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>',
125+
content: '<i class="fa-solid fa-light-emergency-on fa-bounce" style="color: #ff0000;"></i>&nbsp;<span style="color:rgb(255, 0, 0);font-weight:bold;">Please check the reminder content carefully</span><br/><br/>1.<span style="color:blue; font-weight:bold;">The new version v3.25.0 has updated the new password method, and the acquisition method has also been changed. For details, please refer to the documentation page of your own installation method</span><br/>2.v3.25.1 Aliyun_open can choose to mount the backup disk or resource library by itself, for details <a href="/guide/drivers/aliyundrive_open.html#drive-type">Click to view for details</a><br/>3.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/>4.<a href="/guide/drivers/139.html">139Cloud</a>and<a href="/guide/drivers/189.html">189Cloud</a>For details of changes, please view the document by yourself, respectively<br/>5.v3.20.1version Breaking Changes <a href="https://github.com/AlliotTech/openalist/discussions/4702">View detailed description</a>, go to <a href="/config/configuration.html#scheme">Configure documentation page</a><br/>6. AList v3.30.0 will no longer support Win7/Server2008 because Go does not support it. <a href="https://github.com/golang/go/issues/64622">Click to view detailed instructions</a> .<br/>7.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>',
126126
actions: [
127127
// {
128128
// text: "Aliyun open",
@@ -131,7 +131,7 @@ export default hopeTheme(
131131
// },
132132
// {
133133
// text: "GitHub",
134-
// link: "https://github.com/alist-org/alist/discussions/4572",
134+
// link: "https://github.com/AlliotTech/openalist/discussions/4572",
135135
// type: "primary",
136136
// },
137137
// {
@@ -145,7 +145,7 @@ export default hopeTheme(
145145
{
146146
path: "/zh",
147147
title: '温馨提示',
148-
content: '<i class="fa-solid fa-light-emergency-on fa-bounce" style="color: #ff0000;"></i>&nbsp;<span style="color:rgb(255, 0, 0);font-weight:bold;">请仔细查看弹窗提示内容</span><br/><br/>1.<span style="color:blue; font-weight:bold;">v3.25.1新版更新了新的密码方式,获取方式也进行了更改,详细说明请看自己安装方式的文档页面内</span><br/><br/>2.v3.25.1阿里云盘open可以自行选择挂载备份盘或者资源库,详情<a href="/zh/guide/drivers/aliyundrive_open.html#云盘类型">详情点击查看</a><br/><br/>3.AList版本大于v3.22.1,新版本新增单点登录自动注册为AList账户,点击查看<a href="/zh/guide/advanced/sso.html#单点登录自动注册为alist帐号">详细说明</a><br/><br/>4.<a href="/zh/guide/drivers/139.html">移动云盘</a>和<a href="/zh/guide/drivers/189.html">天翼云</a>分别有改动详情请自行查看文档<br/><br/>5.v3.20.1的版本破坏性更新<a href="https://github.com/alist-org/alist/discussions/4702">查看详细说明</a>,前往<a href="/zh/config/configuration.html#scheme">配置文档页面</a><br/><br/>6.AList v3.30.0版本开始将不再支持Win7/Server2008,因为Go不支持了,<a href="https://github.com/golang/go/issues/64622">点击查看详细说明</a>.<br/><br/><span style="color:rgb(255, 0, 0);font-weight:bold;">7.添加云盘后请及时配置[防盗/元信息]等措施,防止被[爬虫/其他人]恶意[访问/分享]导致帐号被[冻结/禁用].</span></span>',
148+
content: '<i class="fa-solid fa-light-emergency-on fa-bounce" style="color: #ff0000;"></i>&nbsp;<span style="color:rgb(255, 0, 0);font-weight:bold;">请仔细查看弹窗提示内容</span><br/><br/>1.<span style="color:blue; font-weight:bold;">v3.25.1新版更新了新的密码方式,获取方式也进行了更改,详细说明请看自己安装方式的文档页面内</span><br/><br/>2.v3.25.1阿里云盘open可以自行选择挂载备份盘或者资源库,详情<a href="/zh/guide/drivers/aliyundrive_open.html#云盘类型">详情点击查看</a><br/><br/>3.AList版本大于v3.22.1,新版本新增单点登录自动注册为AList账户,点击查看<a href="/zh/guide/advanced/sso.html#单点登录自动注册为alist帐号">详细说明</a><br/><br/>4.<a href="/zh/guide/drivers/139.html">移动云盘</a>和<a href="/zh/guide/drivers/189.html">天翼云</a>分别有改动详情请自行查看文档<br/><br/>5.v3.20.1的版本破坏性更新<a href="https://github.com/AlliotTech/openalist/discussions/4702">查看详细说明</a>,前往<a href="/zh/config/configuration.html#scheme">配置文档页面</a><br/><br/>6.AList v3.30.0版本开始将不再支持Win7/Server2008,因为Go不支持了,<a href="https://github.com/golang/go/issues/64622">点击查看详细说明</a>.<br/><br/><span style="color:rgb(255, 0, 0);font-weight:bold;">7.添加云盘后请及时配置[防盗/元信息]等措施,防止被[爬虫/其他人]恶意[访问/分享]导致帐号被[冻结/禁用].</span></span>',
149149
actions: [
150150
// {
151151
// text: "阿里云open",
@@ -154,7 +154,7 @@ export default hopeTheme(
154154
// },
155155
// {
156156
// text: "GitHub",
157-
// link: "https://github.com/alist-org/alist/discussions/4572",
157+
// link: "https://github.com/AlliotTech/openalist/discussions/4572",
158158
// type: "primary",
159159
// },
160160
// {

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ actions:
1111
type: primary
1212

1313
- text: GitHub🌱
14-
link: https://github.com/alist-org/alist
14+
link: https://github.com/AlliotTech/openalist
1515

1616
features:
1717
- title: Easy to Use

docs/config/configuration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ The database configuration, which is by default `sqlite3`. Available options are
241241
"db_file": "data\\data.db", //Database location, used by sqlite3
242242
"table_prefix": "x_", //database table name prefix
243243
"ssl_mode": "", //To control the encryption options during the SSL handshake, the parameters can be searched by themselves, or check the answer from ChatGPT below
244-
"dsn": "" // https://github.com/alist-org/alist/pull/6031
244+
"dsn": "" // https://github.com/AlliotTech/openalist/pull/6031
245245
},
246246
```
247247

@@ -362,8 +362,8 @@ Where data is stored when using **`bleve`** index.
362362

363363
If this item is set, the front -end file of this option is preferred to render, support the use of other front -end files, and the back -end continues to use the original application
364364

365-
- https://github.com/alist-org/alist/issues/5531
366-
- https://github.com/alist-org/alist/discussions/6110
365+
- https://github.com/AlliotTech/openalist/issues/5531
366+
- https://github.com/AlliotTech/openalist/discussions/6110
367367

368368
Upload the front -end file (dist) to the `data` folder of the application, and then fill in this way. The disadvantage is that if you update each time, you need to change the file manually
369369

0 commit comments

Comments
 (0)