Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit6f995d4

Browse files
committed
fix: replace static files image domain
1 parentc9b1261 commit6f995d4

25 files changed

+71
-71
lines changed

‎components/kun/milkdown/plugins/components/video/videoPlugin.tsx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export const videoInputRule = $inputRule(
8888
(ctx)=>
8989
newInputRule(
9090
// Matches format: {{kun-video="video url"}}
91-
// eg: {{kun-video="https://s.touchgaloss.cfd/2023/05/f15179024920231109233759.mp4"}}
91+
// eg: {{kun-video="https://cloud.touchgaloss.com/2023/05/f15179024920231109233759.mp4"}}
9292
/{{kun-video="(?<src>[^"]+)?"?\}}/,
9393
(state,match,start,end)=>{
9494
const[matched,src='']=match

‎components/redirect/Container.tsx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const KunRedirectContainer = () => {
3131
<LinkisExternalhref="https://www.sailingnet.pro/">
3232
<Image
3333
alt={kunMoyuMoe.title}
34-
src="https://s.touchgaloss.cfd/2024/09/6e194add9120240905110255.webp"
34+
src="https://cloud.touchgaloss.com/2024/09/6e194add9120240905110255.webp"
3535
/>
3636
</Link>
3737
</div>

‎config/friend.json‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"friends": [
33
{
44
"name":"TouchGal",
5-
"avatar":"https://s.touchgaloss.cfd/2024/06/8b9411844520240614204452.webp",
5+
"avatar":"https://cloud.touchgaloss.com/2024/06/8b9411844520240614204452.webp",
66
"label":"TouchGal 是一个一站式 Galgame 文化社区。提供Galgame 论坛、Galgame 下载等服务。承诺永久免费, 高质量。为Galgame 爱好者提供一片净土!",
77
"link":"https://www.touchgal.us"
88
},
@@ -26,7 +26,7 @@
2626
},
2727
{
2828
"name":"Mikiacg",
29-
"avatar":"https://s.touchgaloss.cfd/2024/06/33a35b632820240624201041.jpg",
29+
"avatar":"https://cloud.touchgaloss.com/2024/06/33a35b632820240624201041.jpg",
3030
"label":"免费优质精品游戏库",
3131
"link":"https://www.mikiacg.com"
3232
},
@@ -56,7 +56,7 @@
5656
},
5757
{
5858
"name":"绯玉丸の小仓库",
59-
"avatar":"https://s.touchgaloss.cfd/202410182231668.avif",
59+
"avatar":"https://cloud.touchgaloss.com/202410182231668.avif",
6060
"label":"绯玉丸の小仓库专注收录各类网络黑科技~",
6161
"link":"http://feiyuwanovo.ysepan.com"
6262
},
@@ -68,7 +68,7 @@
6868
},
6969
{
7070
"name":"次元城动画",
71-
"avatar":"https://s.touchgaloss.cfd/uploads/20250209211123235.avif",
71+
"avatar":"https://cloud.touchgaloss.com/uploads/20250209211123235.avif",
7272
"label":"次元城动画是一个一站式追番平台,在为日漫爱好者提供业内首屈一指的超高画质体验的同时,我们还拥有海量的番剧资源,更有完善的追番社交环境!",
7373
"link":"https://www.cycity.pro"
7474
},

‎config/moyu-moe.ts‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const KUN_SITE_NAME = 'TouchGal'
55
constKUN_SITE_MENTION='@touchgal'
66
constKUN_SITE_TITLE='TouchGal - 一站式Galgame文化社区!'
77
constKUN_SITE_IMAGE=
8-
'https://s.touchgaloss.cfd/uploads/20241217174250074.avif'
8+
'https://cloud.touchgaloss.com/uploads/20241217174250074.avif'
99
constKUN_SITE_DESCRIPTION=
1010
'TouchGal 是一个一站式 Galgame 文化社区。提供Galgame 论坛、Galgame 下载等服务。承诺永久免费, 高质量。为Galgame 爱好者提供一片净土!'
1111
constKUN_SITE_URL='https://www.touchgal.us'
@@ -68,7 +68,7 @@ export const kunMoyuMoe: KunSiteConfig = {
6868
},
6969
domain:{
7070
main:KUN_SITE_URL,
71-
imageBed:'https://s.touchgaloss.cfd',
71+
imageBed:'https://cloud.touchgaloss.com',
7272
storage:KUN_SITE_URL,
7373
kungal:KUN_SITE_URL,
7474
telegram_group:KUN_SITE_TELEGRAM_GROUP,

‎migration/backup/_fixPatchBanner.mjs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const fixPatchBanner = async () => {
1313
awaitprisma.patch.update({
1414
where:{id:p.id},
1515
data:{
16-
banner:`https://s.touchgaloss.cfd/patch/${p.id}/banner/banner.avif`
16+
banner:`https://cloud.touchgaloss.com/patch/${p.id}/banner/banner.avif`
1717
}
1818
})
1919
}

‎migration/replaceNewImageDomain.mjs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import path from 'path'
44

55
constprisma=newPrismaClient()
66
constDOMAIN='img.touchgalstatic.org'
7-
constNEW_DOMAIN='s.touchgaloss.cfd'
7+
constNEW_DOMAIN='cloud.touchgaloss.com'
88
constBATCH_SIZE=100
99
constSCHEMA_PATH=path.resolve(process.cwd(),'prisma','schema.prisma')
1010

‎next.config.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const nextConfig: NextConfig = {
3434
},
3535
{
3636
protocol:'https',
37-
hostname:'s.touchgaloss.cfd',
37+
hostname:'cloud.touchgaloss.com',
3838
port:'',
3939
pathname:'/**'
4040
}

‎posts/notice/common.mdx‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title:网站说明和常见问题
3-
banner:'https://s.touchgaloss.cfd/uploads/43c0efcc83c5530e91354c12f4bd7736.avif'
3+
banner:'https://cloud.touchgaloss.com/uploads/43c0efcc83c5530e91354c12f4bd7736.avif'
44
description:'本文为GalGame玩家和本站用户提供了常见问题解答,涵盖了游戏下载、解压、运行、转区、模拟器使用等方面。文章详细介绍了如何获取最新网址、防止失联、解决游戏打不开的问题、运行PE游戏的方法,以及本站资源下载和访问问题的解决方案。此外,还提供了相关工具和教程的链接,帮助用户更好地享受GalGame。如有未覆盖的问题,欢迎提供反馈'
55
date:2025-2-6
66
authorUid:1
77
authorName:'Palentum'
8-
authorAvatar:'https://s.touchgaloss.cfd/user/avatar/user_1/avatar-mini.avif'
8+
authorAvatar:'https://cloud.touchgaloss.com/user/avatar/user_1/avatar-mini.avif'
99
authorHomepage:'https://www.arnebiae.com'
1010
pin:true
1111
---

‎posts/notice/domainio.mdx‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title:域名更换通知
3-
banner:'https://s.touchgaloss.cfd/uploads/20250630225117118.avif'
3+
banner:'https://cloud.touchgaloss.com/uploads/20250630225117118.avif'
44
description:'由于不可抗力,TouchGal网站已更换新域名为 www.touchgal.us,并希望用户能帮忙互相转告和宣传。'
55
date:2025-6-30
66
authorUid:1
77
authorName:'Palentum'
8-
authorAvatar:'https://s.touchgaloss.cfd/user/avatar/user_1/avatar-mini.avif'
8+
authorAvatar:'https://cloud.touchgaloss.com/user/avatar/user_1/avatar-mini.avif'
99
authorHomepage:'https://www.arnebiae.com'
1010
pin:false
1111
---

‎posts/notice/donate.mdx‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title:捐赠赞助和财务公开
3-
banner:'https://s.touchgaloss.cfd/uploads/20250206034927549.avif'
3+
banner:'https://cloud.touchgaloss.com/uploads/20250206034927549.avif'
44
description:'TouchGal是一个自2023年1月10日上线以来,始终坚持免费、高质量原则的Galgame资源与社区网站。网站由@Palentum一人维护,无盈利目的,所有资源免费且无任何变相收费。网站使用高成本的对象存储服务,广告极少,源代码开源。2024年9月10日,网站从次元城动漫独立,所有开销由@Palentum自费支持。网站每月支出包括服务器、CDN和存储费用,收入为零。捐赠款项将用于支付网站运营成本,多余部分将捐赠至慈善组织。捐赠可通过支付宝、微信或加密货币进行。'
55
date:2025-2-5
66
authorUid:1
77
authorName:'Palentum'
8-
authorAvatar:'https://s.touchgaloss.cfd/user/avatar/user_1/avatar-mini.avif'
8+
authorAvatar:'https://cloud.touchgaloss.com/user/avatar/user_1/avatar-mini.avif'
99
authorHomepage:'https://www.arnebiae.com'
1010
pin:true
1111
---
@@ -80,16 +80,16 @@ TouchGal 是一个免费的,极低门槛的集资源与补丁下载和社区
8080

8181
T9zHnsii6YfuXqXVpgK5EBitCaxhdvSz8b
8282

83-
![image-20250206033450826](https://s.touchgaloss.cfd/uploads/20250206033454234.avif)
83+
![image-20250206033450826](https://cloud.touchgaloss.com/uploads/20250206033454234.avif)
8484

8585
####Polygon链
8686

8787
0xd6b7601cfA6D5987F7580Bca8b4D126A8869CeF4
8888

89-
![image-20250206033800399](https://s.touchgaloss.cfd/uploads/20250206033802140.avif)
89+
![image-20250206033800399](https://cloud.touchgaloss.com/uploads/20250206033802140.avif)
9090

9191
####ERC20链
9292

9393
0x852d60C8a7C954495944319c42853587e09B13f2
9494

95-
![image-20250206034052219](https://s.touchgaloss.cfd/uploads/20250206034053620.avif)
95+
![image-20250206034052219](https://cloud.touchgaloss.com/uploads/20250206034053620.avif)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp