Skip to content

Commit 16dff95

Browse files
committed
修复贡献者id
1 parent d7ca422 commit 16dff95

File tree

11 files changed

+24
-13
lines changed

11 files changed

+24
-13
lines changed

src/chsrc-main.c

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ chsrc_register_contributors ()
5151
{
5252
/* 项目创建者 */
5353
chef_register_contributor ("@ccmywish", "曾奥然", "[email protected]", NULL);
54+
// 该 ID 为 Gitee ID
5455
chef_register_contributor ("@G_I_Y", "郭恒", "[email protected]", NULL);
56+
5557
/* 所有贡献者 (按参与贡献时间排序) */
5658
chef_register_contributor ("@Aaron-212", "Aaron Ruan", "[email protected]", NULL);
5759
chef_register_contributor ("@chenrui333", "Rui Chen", "[email protected]", NULL);
@@ -65,21 +67,30 @@ chsrc_register_contributors ()
6567
chef_register_contributor ("@Word2VecT", "Word2VecT", "[email protected]", NULL);
6668
chef_register_contributor ("@wickdynex", "Xuan", "[email protected]", NULL);
6769
chef_register_contributor ("@Efterklang", "GnixAij", "[email protected]", NULL);
68-
chef_register_contributor ("@ChatGPT", "ChatGPT", "chatgpt.com", NULL);
6970
chef_register_contributor ("@czyt", "czyt", "[email protected]", NULL);
71+
chef_register_contributor ("@XUANJI233", "XUANJI233", "[email protected]", NULL);
72+
chef_register_contributor ("@Yangmoooo", "Yangmoooo", "[email protected]", NULL);
7073
chef_register_contributor ("@zouri", "Zouri", "[email protected]", NULL);
7174
chef_register_contributor ("@xyx1926885268", "Yongxiang", "[email protected]", NULL);
7275
chef_register_contributor ("@YU-7", "YU-7", "[email protected]", NULL);
7376
chef_register_contributor ("@juzeon", "juzeon", "[email protected]", NULL);
7477
chef_register_contributor ("@jialinlvcn", "Jialin Lyu", "[email protected]", NULL);
75-
chef_register_contributor ("@GitHub Copilot", "GitHub Copilot", "github.com/copilot", NULL);
7678
chef_register_contributor ("@Kattos", "ccy", "[email protected]", NULL);
7779
chef_register_contributor ("@xrgzs", "MadDogOwner", "[email protected]", NULL);
7880
chef_register_contributor ("@sanchuanhehe", "sanchuanhehe", "[email protected]", NULL);
7981
chef_register_contributor ("@Mikachu2333", "Mikachu2333", "[email protected]", NULL);
8082
chef_register_contributor ("@techoc", "Rui Yang", "[email protected]", NULL);
8183
chef_register_contributor ("@BingChunMoLi", "BingChunMoLi", "[email protected]", NULL);
84+
// 该 ID 为 Gitee ID
8285
chef_register_contributor ("@hezonglun", "HeZongLun", "[email protected]", NULL);
86+
87+
/**
88+
* AI贡献者:
89+
*
90+
* ChatGPT、GitHub Copilot、DeepSeek
91+
*
92+
* 这几位是贡献者显式说明的,也许还有隐式使用的一些AI并没有被记录下来,可以添加在这里
93+
*/
8394
}
8495

8596
#include "recipe/menu.c"

src/recipe/lang/Dart/Flutter.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pl_dart_flutter_prelude (void)
1616

1717
chef_set_chef (this, NULL);
1818
chef_set_cooks (this, 1, "@ccmywish");
19-
chef_set_contributors (this, 2, "@czyt", "@MadDogOwner");
19+
chef_set_contributors (this, 2, "@czyt", "@xrgzs");
2020

2121
chef_allow_local_mode (this, CanNot, NULL, NULL);
2222
chef_allow_english(this);

src/recipe/lang/Dart/Pub.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pl_dart_prelude (void)
1616

1717
chef_set_chef (this, NULL);
1818
chef_set_cooks (this, 1, "@ccmywish");
19-
chef_set_contributors (this, 2, "@czyt", "@MadDogOwner");
19+
chef_set_contributors (this, 2, "@czyt", "@xrgzs");
2020

2121
chef_allow_local_mode (this, FullyCan, NULL, NULL);
2222
chef_allow_english(this);

src/recipe/lang/Go.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pl_go_prelude ()
3030

3131
chef_set_chef (this, NULL);
3232
chef_set_cooks (this, 1, "@ccmywish");
33-
chef_set_contributors (this, 2, "@czyt", "@RuiYang");
33+
chef_set_contributors (this, 2, "@czyt", "@techoc");
3434

3535
chef_allow_local_mode (this, CanNot, NULL, NULL);
3636
chef_forbid_english(this);

src/recipe/lang/JavaScript/Bun.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pl_js_bun_prelude (void)
1616

1717
chef_set_chef (this, NULL);
1818
chef_set_cooks (this, 1, "@ccmywish");
19-
chef_set_contributors (this, 1, "@Lontten");
19+
chef_set_contributors (this, 1, "@lontten");
2020

2121
chef_allow_local_mode (this, FullyCan, NULL, NULL);
2222
chef_allow_english(this);

src/recipe/lang/JavaScript/Yarn.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pl_js_yarn_prelude (void)
1616

1717
chef_set_chef (this, NULL);
1818
chef_set_cooks (this, 1, "@ccmywish");
19-
chef_set_contributors (this, 1, "@MrWill");
19+
chef_set_contributors (this, 1, "@MrWillCom");
2020

2121
chef_allow_local_mode (this, FullyCan, NULL, NULL);
2222
chef_allow_english(this);

src/recipe/lang/JavaScript/npm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pl_js_npm_prelude (void)
1616

1717
chef_set_chef (this, NULL);
1818
chef_set_cooks (this, 1, "@ccmywish");
19-
chef_set_contributors (this, 1, "@MrWill");
19+
chef_set_contributors (this, 1, "@MrWillCom");
2020

2121
chef_allow_local_mode (this, FullyCan, NULL, NULL);
2222
chef_allow_english(this);

src/recipe/lang/Python/uv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pl_python_uv_prelude (void)
1616

1717
chef_set_chef (this, NULL);
1818
chef_set_cooks (this, 1, "@happy-game");
19-
chef_set_contributors (this, 2, "@ccy", "@Aoran Zeng");
19+
chef_set_contributors (this, 2, "@Kattos", "@ccmywish");
2020

2121
chef_allow_local_mode (this, FullyCan, NULL, NULL);
2222
chef_allow_english(this);

src/recipe/os/APT/Armbian.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ os_armbian_prelude ()
1515
chef_set_sources_last_updated (this, "2024-11-21");
1616

1717
chef_set_chef (this, NULL);
18-
chef_set_cooks (this, 1, "@lovely");
19-
chef_set_contributors (this, 2, "@ccmywish", "@yangmoooo");
18+
chef_set_cooks (this, 1, "@livelycode36");
19+
chef_set_contributors (this, 2, "@ccmywish", "@Yangmoooo");
2020

2121
chef_allow_local_mode (this, CanNot, NULL, NULL);
2222
chef_forbid_english(this);

src/recipe/os/APT/Ubuntu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ os_ubuntu_prelude ()
1717

1818
chef_set_chef (this, NULL);
1919
chef_set_cooks (this, 2, "@ccmywish", "@G_I_Y");
20-
chef_set_contributors (this, 1, "@Zhao");
20+
chef_set_contributors (this, 1, "@XUANJI233");
2121

2222
chef_allow_local_mode (this, CanNot, NULL, NULL);
2323
chef_forbid_english(this);

0 commit comments

Comments
 (0)