diff --git a/src/chsrc-main.c b/src/chsrc-main.c index 68f5dc7..559a4b1 100644 --- a/src/chsrc-main.c +++ b/src/chsrc-main.c @@ -51,7 +51,9 @@ chsrc_register_contributors () { /* 项目创建者 */ chef_register_contributor ("@ccmywish", "曾奥然", "ccmywish@qq.com", NULL); + // 该 ID 为 Gitee ID chef_register_contributor ("@G_I_Y", "郭恒", "2085471348@qq.com", NULL); + /* 所有贡献者 (按参与贡献时间排序) */ chef_register_contributor ("@Aaron-212", "Aaron Ruan", "aaron212cn@outlook.com", NULL); chef_register_contributor ("@chenrui333", "Rui Chen", "rui@chenrui.dev", NULL); @@ -65,21 +67,30 @@ chsrc_register_contributors () chef_register_contributor ("@Word2VecT", "Word2VecT", "tangzinan@bupt.edu.cn", NULL); chef_register_contributor ("@wickdynex", "Xuan", "wick.dynex@qq.com", NULL); chef_register_contributor ("@Efterklang", "GnixAij", "gaojiaxing0220@gmail.com", NULL); - chef_register_contributor ("@ChatGPT", "ChatGPT", "chatgpt.com", NULL); chef_register_contributor ("@czyt", "czyt", "czyt.go@gmail.com", NULL); + chef_register_contributor ("@XUANJI233", "XUANJI233", "xuanji233@outlook.com", NULL); + chef_register_contributor ("@Yangmoooo", "Yangmoooo", "yangmoooo@outlook.com", NULL); chef_register_contributor ("@zouri", "Zouri", "guoshuaisun@outlook.com", NULL); chef_register_contributor ("@xyx1926885268", "Yongxiang", "1926885268@qq.com", NULL); chef_register_contributor ("@YU-7", "YU-7", "2747046473@qq.com", NULL); chef_register_contributor ("@juzeon", "juzeon", "skyjuzheng@gmail.com", NULL); chef_register_contributor ("@jialinlvcn", "Jialin Lyu", "jialinlvcn@aliyun.com", NULL); - chef_register_contributor ("@GitHub Copilot", "GitHub Copilot", "github.com/copilot", NULL); chef_register_contributor ("@Kattos", "ccy", "icuichengyi@gmail.com", NULL); chef_register_contributor ("@xrgzs", "MadDogOwner", "xiaoran@xrgzs.top", NULL); chef_register_contributor ("@sanchuanhehe", "sanchuanhehe", "wyihe5520@gmail.com", NULL); chef_register_contributor ("@Mikachu2333", "Mikachu2333", "mikachu.23333@zohomail.com", NULL); chef_register_contributor ("@techoc", "Rui Yang", "techoc@foxmail.com", NULL); chef_register_contributor ("@BingChunMoLi", "BingChunMoLi", "bingchunmoli@bingchunmoli.com", NULL); + // 该 ID 为 Gitee ID chef_register_contributor ("@hezonglun", "HeZongLun", "hezonglun123456@outlook.com", NULL); + + /** + * AI贡献者: + * + * ChatGPT、GitHub Copilot、DeepSeek + * + * 这几位是贡献者显式说明的,也许还有隐式使用的一些AI并没有被记录下来,可以添加在这里 + */ } #include "recipe/menu.c" diff --git a/src/recipe/lang/Dart/Flutter.c b/src/recipe/lang/Dart/Flutter.c index 241673b..ae04192 100644 --- a/src/recipe/lang/Dart/Flutter.c +++ b/src/recipe/lang/Dart/Flutter.c @@ -16,7 +16,7 @@ pl_dart_flutter_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 2, "@czyt", "@MadDogOwner"); + chef_set_contributors (this, 2, "@czyt", "@xrgzs"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_allow_english(this); diff --git a/src/recipe/lang/Dart/Pub.c b/src/recipe/lang/Dart/Pub.c index 558c898..fa3990f 100644 --- a/src/recipe/lang/Dart/Pub.c +++ b/src/recipe/lang/Dart/Pub.c @@ -16,7 +16,7 @@ pl_dart_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 2, "@czyt", "@MadDogOwner"); + chef_set_contributors (this, 2, "@czyt", "@xrgzs"); chef_allow_local_mode (this, FullyCan, NULL, NULL); chef_allow_english(this); diff --git a/src/recipe/lang/Go.c b/src/recipe/lang/Go.c index d717052..f1b9ae4 100644 --- a/src/recipe/lang/Go.c +++ b/src/recipe/lang/Go.c @@ -30,7 +30,7 @@ pl_go_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 2, "@czyt", "@RuiYang"); + chef_set_contributors (this, 2, "@czyt", "@techoc"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/lang/JavaScript/Bun.c b/src/recipe/lang/JavaScript/Bun.c index 498c6f3..394c22f 100644 --- a/src/recipe/lang/JavaScript/Bun.c +++ b/src/recipe/lang/JavaScript/Bun.c @@ -16,7 +16,7 @@ pl_js_bun_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@Lontten"); + chef_set_contributors (this, 1, "@lontten"); chef_allow_local_mode (this, FullyCan, NULL, NULL); chef_allow_english(this); diff --git a/src/recipe/lang/JavaScript/Yarn.c b/src/recipe/lang/JavaScript/Yarn.c index f686103..8c4c1a2 100644 --- a/src/recipe/lang/JavaScript/Yarn.c +++ b/src/recipe/lang/JavaScript/Yarn.c @@ -16,7 +16,7 @@ pl_js_yarn_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@MrWill"); + chef_set_contributors (this, 1, "@MrWillCom"); chef_allow_local_mode (this, FullyCan, NULL, NULL); chef_allow_english(this); diff --git a/src/recipe/lang/JavaScript/npm.c b/src/recipe/lang/JavaScript/npm.c index 2c9b99b..93d5b8e 100644 --- a/src/recipe/lang/JavaScript/npm.c +++ b/src/recipe/lang/JavaScript/npm.c @@ -16,7 +16,7 @@ pl_js_npm_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@MrWill"); + chef_set_contributors (this, 1, "@MrWillCom"); chef_allow_local_mode (this, FullyCan, NULL, NULL); chef_allow_english(this); diff --git a/src/recipe/lang/Python/uv.c b/src/recipe/lang/Python/uv.c index 9f2c64b..e81fb3b 100644 --- a/src/recipe/lang/Python/uv.c +++ b/src/recipe/lang/Python/uv.c @@ -16,7 +16,7 @@ pl_python_uv_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@happy-game"); - chef_set_contributors (this, 2, "@ccy", "@Aoran Zeng"); + chef_set_contributors (this, 2, "@Kattos", "@ccmywish"); chef_allow_local_mode (this, FullyCan, NULL, NULL); chef_allow_english(this); diff --git a/src/recipe/os/APT/Armbian.c b/src/recipe/os/APT/Armbian.c index f864de6..f0728e8 100644 --- a/src/recipe/os/APT/Armbian.c +++ b/src/recipe/os/APT/Armbian.c @@ -15,8 +15,8 @@ os_armbian_prelude () chef_set_sources_last_updated (this, "2024-11-21"); chef_set_chef (this, NULL); - chef_set_cooks (this, 1, "@lovely"); - chef_set_contributors (this, 2, "@ccmywish", "@yangmoooo"); + chef_set_cooks (this, 1, "@livelycode36"); + chef_set_contributors (this, 2, "@ccmywish", "@Yangmoooo"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/APT/Ubuntu.c b/src/recipe/os/APT/Ubuntu.c index 2454b0c..8895d6f 100644 --- a/src/recipe/os/APT/Ubuntu.c +++ b/src/recipe/os/APT/Ubuntu.c @@ -17,7 +17,7 @@ os_ubuntu_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 2, "@ccmywish", "@G_I_Y"); - chef_set_contributors (this, 1, "@Zhao"); + chef_set_contributors (this, 1, "@XUANJI233"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/ware/Flatpak.c b/src/recipe/ware/Flatpak.c index 56de2d0..572c523 100644 --- a/src/recipe/ware/Flatpak.c +++ b/src/recipe/ware/Flatpak.c @@ -16,7 +16,7 @@ wr_flatpak_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@jialinlv"); + chef_set_contributors (this, 1, "@jialinlvcn"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this);