Skip to content

Commit 73f554a

Browse files
authored
Merge pull request #3 from AlliotTech/feat/change-url
fix: update repository URLs and links to point to AlliotTech
2 parents b7f47d5 + 0ffb5d0 commit 73f554a

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
"packageManager": "pnpm@9.9.0",
1111
"repository": {
1212
"type": "git",
13-
"url": "git+https://github.com/alist-org/alist-web.git"
13+
"url": "git+https://github.com/AlliotTech/openalist-web.git"
1414
},
1515
"bugs": {
16-
"url": "https://github.com/alist-org/alist/issues"
16+
"url": "https://github.com/AlliotTech/openalist/issues"
1717
},
1818
"files": [
1919
"dist"
2020
],
21-
"homepage": "https://alist.nn.ci",
21+
"homepage": "https://alist.iots.vip",
2222
"scripts": {
2323
"crowdin:upload": "crowdin upload sources --auto-update",
2424
"crowdin:download": "crowdin download --verbose",

src/components/markdown.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1313,7 +1313,7 @@
13131313
word-break: break-all;
13141314
}
13151315

1316-
/* https://github.com/alist-org/alist/issues/6929 */
1316+
/* https://github.com/AlliotTech/openalist/issues/6929 */
13171317
.katex-display .frac-line {
13181318
border-bottom-width: 0.04em;
13191319
}

src/lang/en/login.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"otp-tips": "Input your OTP Code",
66
"remember": "Remember me",
77
"forget": "Forget password?",
8-
"forget_url": "https://alist.nn.ci/faq/howto.html#how-to-get-password-if-i-forget-it",
8+
"forget_url": "https://alist.iots.vip/faq/howto.html#how-to-get-password-if-i-forget-it",
99
"clear": "Clear",
1010
"login": "Login",
1111
"use_guest": "Browse as a guest",

src/pages/home/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const Footer = () => {
1010
return (
1111
<VStack class="footer" w="$full" py="$4">
1212
<HStack spacing="$1">
13-
<Anchor href="https://github.com/alist-org/alist" external>
13+
<Anchor href="https://github.com/AlliotTech/openalist" external>
1414
{t("home.footer.powered_by")}
1515
</Anchor>
1616
<span>|</span>

src/pages/manage/sidemenu_items.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ export const side_menu_items: SideMenuItem[] = [
195195
{
196196
title: "manage.sidemenu.docs",
197197
icon: FaSolidBook,
198-
to: "https://alist.nn.ci",
198+
to: "https://alist.iots.vip",
199199
role: UserRole.GUEST,
200200
external: true,
201201
},

src/store/settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const setSettings = (items: Record<string, string>) => {
88
})
99
const version = settings["version"] || "Unknown"
1010
console.log(
11-
`%c AList %c ${version} %c https://github.com/alist-org/alist`,
11+
`%c AList %c ${version} %c https://github.com/AlliotTech/openalist`,
1212
"color: #fff; background: #5f5f5f",
1313
"color: #fff; background: #70c6be",
1414
"",

src/utils/hash.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sha256 from "sha256"
22

3-
const hash_salt = "https://github.com/alist-org/alist"
3+
const hash_salt = "https://github.com/AlliotTech/openalist"
44

55
export function hashPwd(pwd: string) {
66
return sha256(`${pwd}-${hash_salt}`)

0 commit comments

Comments
 (0)