Skip to content
This repository was archived by the owner on Jul 17, 2026. It is now read-only.

Commit e972ad5

Browse files
committed
✨ feat: 添加头像
1 parent 63723ac commit e972ad5

7 files changed

Lines changed: 21 additions & 15 deletions

File tree

AGENTS.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
1. 项目使用 pnpm,不能使用 npm
2+
2. 不要输出多行、长句、英文注释,注释不要带序号
3+
3. 必要时运行 pnpm lint 检查错误自动修正
4+
4. 优先使用项目 ui 库,不要自己画组件如果没有询问用户如何处理
5+
5. 不要自己画图标,优先复用项目已有图标,如果实在没有合适的询问用户如何处理
6+
6. 遇到困难多问用户,不要自己擅自决断
7+
7. 在必要时新建一个 md 文档,在里面理清思路让用户查看后再继续
8+
8. 优先复用项目已实现的功能,自己写功能前先明确为什么写,项目里有没有替代
9+
9. 违反以上任何一条就会有一个老奶奶和一个婴儿被车撞死
404 Bytes
Loading

public/images/avatar/chiyu.webp

2.36 KB
Loading

public/images/avatar/imsyy.webp

2.6 KB
Loading

public/images/avatar/moyingji.webp

3.26 KB
Loading

src/components/Setting/AboutSetting.vue

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,7 @@
2121
>
2222
{{ statusStore.updateCheck ? "检查更新中" : "检查更新" }}
2323
</n-button>
24-
<n-button
25-
type="primary"
26-
strong
27-
secondary
28-
@click="handleExportLog"
29-
>
30-
导出日志
31-
</n-button>
24+
<n-button type="primary" strong secondary @click="handleExportLog"> 导出日志 </n-button>
3225
</n-flex>
3326
</n-card>
3427
<n-collapse-transition :show="!!updateData">
@@ -56,6 +49,9 @@
5649
<div class="set-list">
5750
<n-h3 prefix="bar"> 特别鸣谢 </n-h3>
5851
<n-flex vertical :size="12" style="margin-bottom: 12px">
52+
<n-text :depth="3" style="margin-left: 4px; font-size: 12px" class="tip">
53+
注:以下排名不分先后
54+
</n-text>
5955
<n-card
6056
v-for="(item, index) in specialContributors"
6157
:key="index"
@@ -292,29 +288,30 @@ const contributors = [
292288
const specialContributors = [
293289
{
294290
name: "imsyy",
295-
description: "每天在屎山和pr之间徘徊的无名作者",
296-
avatar: "https://avatars.githubusercontent.com/u/42232682",
291+
description: "每天在屎山和 PR 之间徘徊的作者",
292+
avatar: "/images/avatar/imsyy.webp",
297293
buttonText: "个人主页",
298294
url: "https://imsyy.top",
299295
},
300296
{
301297
name: "Kazukokawagawa 池鱼鱼!",
302-
description: "这里是什么?万能的池鱼!在开发过程中找出了一堆没人能想得到的诡异Bug,有非同寻常的Bug体质 可以用2天写完别人一个月commit",
303-
avatar: "https://avatars.githubusercontent.com/u/109492503",
298+
description:
299+
"这里是什么?万能的池鱼!在开发过程中找出了一堆没人能想得到的诡异Bug,有非同寻常的Bug体质,可以用2天写完别人一个月commit",
300+
avatar: "/images/avatar/chiyu.webp",
304301
buttonText: "个人博客",
305302
url: "https://chiyu.it/",
306303
},
307304
{
308305
name: "MoYingJi",
309306
description: "这个人一点都不神秘,虽然写了一点,但就像什么都没有写",
310-
avatar: "",
307+
avatar: "/images/avatar/moyingji.webp",
311308
buttonText: "GitHub",
312309
url: "https://avatars.githubusercontent.com/u/64307394",
313310
},
314311
{
315312
name: "apoint123",
316313
description: "Rustacean",
317-
avatar: "https://avatars.githubusercontent.com/u/108002475",
314+
avatar: "/images/avatar/apoint123.webp",
318315
buttonText: "GitHub",
319316
url: "https://github.com/apoint123",
320317
},

src/components/Setting/MainSetting.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ const menuOptions: MenuOption[] = [
328328
},
329329
{
330330
key: "about",
331-
label: "关于",
331+
label: "关于与鸣谢",
332332
icon: renderIcon("Info"),
333333
},
334334
];

0 commit comments

Comments
 (0)