diff --git a/doc/03-CONTRIBUTING.md b/doc/03-CONTRIBUTING.md index 1614964..c7f1fc5 100644 --- a/doc/03-CONTRIBUTING.md +++ b/doc/03-CONTRIBUTING.md @@ -35,14 +35,14 @@ (1) 1. **如果你是 recipe Chef,则你完全负责这个 recipe,如果你拥有写权限,你可以直接推送代码到 `dev` 分支** -2. 如果你是 recipe Sous Chef,则你需要参考 [04-MAINTAINERS.md](./04-MAINTAINERS.md),如果只有你一个人,且你拥有写权限,你可以直接推送代码。如果有多人,则需要提一个 issue,介绍方案,然后 @ 所有 Sous Chef 来 review +2. 如果你是 recipe Cook,则你需要参考 [04-MAINTAINERS.md](./04-MAINTAINERS.md),如果只有你一个人,且你拥有写权限,你可以直接推送代码。如果有多人,则需要提一个 issue,介绍方案,然后 @ 所有 Cook 来 review --- (2) -1. 需要先搜索你修改的部分涉及到的 recipe,然后提 issue @ 所有相关的 recipe Sous Chef 来 review -2. 如果涉及了所有 recipe,则 @ framework Sous Chef,而无需把所有 recipe 的 Sous Chef 都喊过来,但是如果觉得有必要,可以 @ 任意你觉得有能力 review 和能给出建议的人来 review +1. 需要先搜索你修改的部分涉及到的 recipe,然后提 issue @ 所有相关的 recipe Cook 来 review +2. 如果涉及了所有 recipe,则 @ framework Cook,而无需把所有 recipe 的 Cook 都喊过来,但是如果觉得有必要,可以 @ 任意你觉得有能力 review 和能给出建议的人来 review
diff --git a/src/chsrc-main.c b/src/chsrc-main.c index 22c2a18..49a533b 100644 --- a/src/chsrc-main.c +++ b/src/chsrc-main.c @@ -392,11 +392,6 @@ cli_print_target_features (Target_t *target, const char *input_target_name) void cli_print_target_maintain_info (Target_t *target, const char *input_target_name) { - { - char *msg = ENGLISH ? "Maintainer Information:\n" : "维护信息:\n"; - say (bdgreen(msg)); - } - if (target->authors && target->authors_n > 0) { char *msg = ENGLISH ? "Recipe Original Authors: " : "食谱原始作者: "; @@ -429,16 +424,16 @@ cli_print_target_maintain_info (Target_t *target, const char *input_target_name) { - char *msg = ENGLISH ? "Current Sous Chefs: " : "当前副厨: "; - if (target->sous_chefs && target->sous_chefs_n > 0) + char *msg = ENGLISH ? "Current Cooks: " : "当前副厨: "; + if (target->cooks && target->cooks_n > 0) { printf ("%s", bdblue(msg)); - for (size_t i = 0; i < target->sous_chefs_n; i++) + for (size_t i = 0; i < target->cooks_n; i++) { if (i > 0) printf (", "); printf ("%s <%s>", - target->sous_chefs[i].name ? target->sous_chefs[i].name : "Unknown", - target->sous_chefs[i].email ? target->sous_chefs[i].email : "unknown@example.com"); + target->cooks[i].name ? target->cooks[i].name : "Unknown", + target->cooks[i].email ? target->cooks[i].email : "unknown@example.com"); } printf ("\n"); } @@ -622,7 +617,6 @@ get_target (const char *input, TargetOp code, char *option) if (target->setfn) { target->setfn(option); - cli_print_target_maintain_info (target, input); } else chsrc_error (xy_strjoin (3, "暂未对 ", input, " 实现 set 功能,邀您帮助: chsrc issue")); } @@ -631,7 +625,6 @@ get_target (const char *input, TargetOp code, char *option) if (target->resetfn) { target->resetfn(option); - cli_print_target_maintain_info (target, input); } else chsrc_error (xy_strjoin (3, "暂未对 ", input, " 实现 reset 功能,邀您帮助: chsrc issue")); } @@ -640,7 +633,6 @@ get_target (const char *input, TargetOp code, char *option) if (target->getfn) { target->getfn(""); - cli_print_target_maintain_info (target, input); } else chsrc_error (xy_strjoin (3, "暂未对 ", input, " 实现 get 功能,邀您帮助: chsrc issue")); } @@ -667,7 +659,12 @@ get_target (const char *input, TargetOp code, char *option) cli_print_target_available_sources (target->sources, target->sources_n); cli_print_target_features (target, input); + + { + char *msg = ENGLISH ? "Maintainer Information:\n" : "维护信息:\n"; + say (bdgreen(msg)); cli_print_target_maintain_info (target, input); + } } else if (TargetOp_Measure_Source==code) { @@ -675,6 +672,12 @@ get_target (const char *input, TargetOp code, char *option) return true; } + if (TargetOp_Get_Source==code || TargetOp_Set_Source==code || TargetOp_Reset_Source==code) + { + br(); + cli_print_target_maintain_info (target, input); + } + if (TargetOp_Set_Source==code || TargetOp_Measure_Source==code) { cli_notify_lastly_for_users(); diff --git a/src/framework/chef.c b/src/framework/chef.c index c3269fd..0095de9 100644 --- a/src/framework/chef.c +++ b/src/framework/chef.c @@ -161,31 +161,31 @@ chef_set_chef (Target_t *target, char *name, char *email) void -chef_set_sous_chefs (Target_t *target, size_t count, ...) +chef_set_cooks (Target_t *target, size_t count, ...) { if (!target) return; if (count == 0) { - target->sous_chefs = NULL; - target->sous_chefs_n = 0; + target->cooks = NULL; + target->cooks_n = 0; return; } va_list args; va_start(args, count); - target->sous_chefs = xy_malloc0 (count * sizeof(Contributor_t)); - target->sous_chefs_n = count; + target->cooks = xy_malloc0 (count * sizeof(Contributor_t)); + target->cooks_n = count; for (size_t i = 0; i < count; i++) { char *name = va_arg(args, char*); char *email = va_arg(args, char*); - target->sous_chefs[i].name = xy_strdup(name); - target->sous_chefs[i].email = xy_strdup(email); + target->cooks[i].name = xy_strdup(name); + target->cooks[i].email = xy_strdup(email); } va_end(args); diff --git a/src/framework/struct.h b/src/framework/struct.h index 519818b..11dc4f6 100644 --- a/src/framework/struct.h +++ b/src/framework/struct.h @@ -151,9 +151,9 @@ typedef struct Target_t Contributor_t *contributors; size_t contributors_n; - Contributor_t *chef; /* Chef 仅有一个 */ - Contributor_t *sous_chefs; /* Sous Chef 可以有多个 */ - size_t sous_chefs_n; + Contributor_t *chef; /* Chef 仅有一个 */ + Contributor_t *cooks; /* Cook 可以有多个 */ + size_t cooks_n; } Target_t; diff --git a/src/recipe/lang/Clojure.c b/src/recipe/lang/Clojure.c index df3a603..3711162 100644 --- a/src/recipe/lang/Clojure.c +++ b/src/recipe/lang/Clojure.c @@ -16,7 +16,7 @@ pl_clojure_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, FullyCan, NULL, NULL); diff --git a/src/recipe/lang/Dart/Flutter.c b/src/recipe/lang/Dart/Flutter.c index 83b1389..b13e61d 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_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 2, "czyt", "czyt.go@gmail.com", "MadDogOwner", "xiaoran@xrgzs.top"); diff --git a/src/recipe/lang/Dart/Pub.c b/src/recipe/lang/Dart/Pub.c index b1ca213..bfd1f1f 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_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 2, "czyt", "czyt.go@gmail.com", "MadDogOwner", "xiaoran@xrgzs.top"); diff --git a/src/recipe/lang/Go.c b/src/recipe/lang/Go.c index adcee8a..7f6af9a 100644 --- a/src/recipe/lang/Go.c +++ b/src/recipe/lang/Go.c @@ -30,7 +30,7 @@ pl_go_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 2, "czyt", "czyt.go@gmail.com", "Rui Yang", "techoc@foxmail.com"); diff --git a/src/recipe/lang/Haskell.c b/src/recipe/lang/Haskell.c index af3ae78..536be9b 100644 --- a/src/recipe/lang/Haskell.c +++ b/src/recipe/lang/Haskell.c @@ -16,7 +16,7 @@ pl_haskell_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/lang/Java.c b/src/recipe/lang/Java.c index b8c190e..d26b040 100644 --- a/src/recipe/lang/Java.c +++ b/src/recipe/lang/Java.c @@ -16,7 +16,7 @@ pl_java_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "BingChunMoLi", "bingchunmoli@bingchunmoli.com"); diff --git a/src/recipe/lang/JavaScript/Bun.c b/src/recipe/lang/JavaScript/Bun.c index ac7f3aa..3f3780d 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_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Lontten", "lontten@163.com"); diff --git a/src/recipe/lang/JavaScript/Yarn.c b/src/recipe/lang/JavaScript/Yarn.c index 9430ab9..d5662be 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_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Mr. Will", "mr.will.com@outlook.com"); diff --git a/src/recipe/lang/JavaScript/common.h b/src/recipe/lang/JavaScript/common.h index 38a1ad0..aba3608 100644 --- a/src/recipe/lang/JavaScript/common.h +++ b/src/recipe/lang/JavaScript/common.h @@ -23,7 +23,7 @@ pl_js_group_prelude (void) chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 1, "happy game", "happygame1024@gmail.com"); chef_set_contributors (this,0); chef_allow_local_mode (this, PartiallyCan, @@ -59,7 +59,7 @@ pl_js_nodejs_binary_prelude (void) chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_forbid_local_mode (this); diff --git a/src/recipe/lang/JavaScript/npm.c b/src/recipe/lang/JavaScript/npm.c index e4ab4a4..c723d6c 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_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Mr. Will", "mr.will.com@outlook.com"); diff --git a/src/recipe/lang/JavaScript/nvm.c b/src/recipe/lang/JavaScript/nvm.c index 618c8c2..92401ca 100644 --- a/src/recipe/lang/JavaScript/nvm.c +++ b/src/recipe/lang/JavaScript/nvm.c @@ -16,7 +16,7 @@ pl_js_nvm_prelude (void) chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_forbid_local_mode (this); diff --git a/src/recipe/lang/JavaScript/pnpm.c b/src/recipe/lang/JavaScript/pnpm.c index 87b9c59..07e597c 100644 --- a/src/recipe/lang/JavaScript/pnpm.c +++ b/src/recipe/lang/JavaScript/pnpm.c @@ -16,7 +16,7 @@ pl_js_pnpm_prelude (void) chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, FullyCan, NULL, NULL); diff --git a/src/recipe/lang/Julia.c b/src/recipe/lang/Julia.c index 86da566..a5edb71 100644 --- a/src/recipe/lang/Julia.c +++ b/src/recipe/lang/Julia.c @@ -16,7 +16,7 @@ pl_julia_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/lang/Lua.c b/src/recipe/lang/Lua.c index fa1a2f8..783dfe5 100644 --- a/src/recipe/lang/Lua.c +++ b/src/recipe/lang/Lua.c @@ -23,7 +23,7 @@ pl_lua_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/lang/NuGet.c b/src/recipe/lang/NuGet.c index 4c7fc76..a826147 100644 --- a/src/recipe/lang/NuGet.c +++ b/src/recipe/lang/NuGet.c @@ -16,7 +16,7 @@ pl_nuget_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/lang/OCaml.c b/src/recipe/lang/OCaml.c index e69f57a..21a4eff 100644 --- a/src/recipe/lang/OCaml.c +++ b/src/recipe/lang/OCaml.c @@ -16,7 +16,7 @@ pl_ocaml_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/lang/PHP.c b/src/recipe/lang/PHP.c index 947ef2f..5072fa5 100644 --- a/src/recipe/lang/PHP.c +++ b/src/recipe/lang/PHP.c @@ -16,7 +16,7 @@ pl_php_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, FullyCan, NULL, NULL); diff --git a/src/recipe/lang/Perl.c b/src/recipe/lang/Perl.c index 26ef064..8215e88 100644 --- a/src/recipe/lang/Perl.c +++ b/src/recipe/lang/Perl.c @@ -16,7 +16,7 @@ pl_perl_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/lang/Python/PDM.c b/src/recipe/lang/Python/PDM.c index 398c681..ed5084c 100644 --- a/src/recipe/lang/Python/PDM.c +++ b/src/recipe/lang/Python/PDM.c @@ -16,7 +16,7 @@ pl_python_pdm_prelude (void) chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, FullyCan, "支持项目级配置", "Supports project-level configuration"); diff --git a/src/recipe/lang/Python/Poetry.c b/src/recipe/lang/Python/Poetry.c index fe6e08a..8392059 100644 --- a/src/recipe/lang/Python/Poetry.c +++ b/src/recipe/lang/Python/Poetry.c @@ -16,7 +16,7 @@ pl_python_poetry_prelude (void) chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, FullyCan, "Poetry 默认使用项目级换源", "Poetry uses project-level source changing by default"); diff --git a/src/recipe/lang/Python/Rye.c b/src/recipe/lang/Python/Rye.c index c34c82d..26b5050 100644 --- a/src/recipe/lang/Python/Rye.c +++ b/src/recipe/lang/Python/Rye.c @@ -18,7 +18,7 @@ pl_python_rye_prelude (void) chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, FullyCan, "支持项目级配置", "Supports project-level configuration"); diff --git a/src/recipe/lang/Python/common.h b/src/recipe/lang/Python/common.h index a35bac2..b2c7604 100644 --- a/src/recipe/lang/Python/common.h +++ b/src/recipe/lang/Python/common.h @@ -31,10 +31,9 @@ pl_python_group_prelude (void) chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); - chef_set_contributors (this, 2, - "yongxiang", "1926885268@qq.com", - "happy game", "happygame1024@gmail.com"); + chef_set_cooks (this, 1, "happy game", "happygame1024@gmail.com"); + chef_set_contributors (this, 1, + "yongxiang", "1926885268@qq.com"); chef_allow_local_mode (this, PartiallyCan, "部分包管理器支持项目级换源", "Some package managers support project-level source changing"); diff --git a/src/recipe/lang/Python/pip.c b/src/recipe/lang/Python/pip.c index bf49c0c..f36f567 100644 --- a/src/recipe/lang/Python/pip.c +++ b/src/recipe/lang/Python/pip.c @@ -16,7 +16,7 @@ pl_python_pip_prelude (void) chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_forbid_local_mode (this); diff --git a/src/recipe/lang/Python/uv.c b/src/recipe/lang/Python/uv.c index 992024c..89314c1 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_authors (this, 1, "happy game", "happygame1024@gmail.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 2, "ccy", "icuichengyi@gmail.com", "Aoran Zeng", "ccmywish@qq.com"); diff --git a/src/recipe/lang/R.c b/src/recipe/lang/R.c index b2712f1..1bb62f0 100644 --- a/src/recipe/lang/R.c +++ b/src/recipe/lang/R.c @@ -16,7 +16,7 @@ pl_r_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/lang/Ruby/Ruby.c b/src/recipe/lang/Ruby/Ruby.c index 10f0854..1df683f 100644 --- a/src/recipe/lang/Ruby/Ruby.c +++ b/src/recipe/lang/Ruby/Ruby.c @@ -23,7 +23,7 @@ pl_ruby_prelude (void) chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, "Aoran Zeng", "ccmywish@qq.com"); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, PartiallyCan, "支持 bundler. 不支持 gem", "Support bundler. Not support gem"); diff --git a/src/recipe/lang/Rust/Cargo.c b/src/recipe/lang/Rust/Cargo.c index 616e23e..1080028 100644 --- a/src/recipe/lang/Rust/Cargo.c +++ b/src/recipe/lang/Rust/Cargo.c @@ -16,7 +16,7 @@ pl_rust_cargo_prelude (void) chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Mikachu2333", "mikachu.23333@zohomail.com"); diff --git a/src/recipe/lang/Rust/rustup.c b/src/recipe/lang/Rust/rustup.c index be34d78..a5d9422 100644 --- a/src/recipe/lang/Rust/rustup.c +++ b/src/recipe/lang/Rust/rustup.c @@ -19,7 +19,7 @@ pl_rust_rustup_prelude (void) chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 2, "Yangmoooo", "yangmoooo@outlook.com", "Mikachu2333", "mikachu.23333@zohomail.com"); diff --git a/src/recipe/os/APT/Armbian.c b/src/recipe/os/APT/Armbian.c index 0a11e84..77f7d2a 100644 --- a/src/recipe/os/APT/Armbian.c +++ b/src/recipe/os/APT/Armbian.c @@ -16,7 +16,7 @@ os_armbian_prelude () chef_set_authors (this, 1, "Shengwei Chen", "414685209@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 2, "Aoran Zeng", "ccmywish@qq.com", "Yangmoooo", "yangmoooo@outlook.com"); diff --git a/src/recipe/os/APT/Debian.c b/src/recipe/os/APT/Debian.c index 45db016..6a631fe 100644 --- a/src/recipe/os/APT/Debian.c +++ b/src/recipe/os/APT/Debian.c @@ -18,7 +18,7 @@ os_debian_prelude () "Aoran Zeng", "ccmywish@qq.com", "Heng Guo", "2085471348@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 2, "Yangmoooo", "yangmoooo@outlook.com", "GitHub Copilot", "https://github.com/copilot"); diff --git a/src/recipe/os/APT/Kali-Linux.c b/src/recipe/os/APT/Kali-Linux.c index 3fbb454..96be261 100644 --- a/src/recipe/os/APT/Kali-Linux.c +++ b/src/recipe/os/APT/Kali-Linux.c @@ -16,7 +16,7 @@ os_kali_prelude () chef_set_authors (this, 1, "Heng Guo", "2085471348@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 2, "Yangmoooo", "yangmoooo@outlook.com", "Happy Game", "happygame1024@gmail.com"); diff --git a/src/recipe/os/APT/Linux-Lite.c b/src/recipe/os/APT/Linux-Lite.c index 9d979e5..61be3c4 100644 --- a/src/recipe/os/APT/Linux-Lite.c +++ b/src/recipe/os/APT/Linux-Lite.c @@ -16,7 +16,7 @@ os_linuxlite_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Yangmoooo", "yangmoooo@outlook.com"); diff --git a/src/recipe/os/APT/Linux-Mint.c b/src/recipe/os/APT/Linux-Mint.c index 9e85afc..56dd429 100644 --- a/src/recipe/os/APT/Linux-Mint.c +++ b/src/recipe/os/APT/Linux-Mint.c @@ -16,7 +16,7 @@ os_linuxmint_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Happy Game", "happygame1024@gmail.com"); diff --git a/src/recipe/os/APT/ROS.c b/src/recipe/os/APT/ROS.c index 2bcfe28..207823a 100644 --- a/src/recipe/os/APT/ROS.c +++ b/src/recipe/os/APT/ROS.c @@ -16,7 +16,7 @@ os_ros_prelude () chef_set_authors (this, 1, "Heng Guo", "2085471348@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 2, "Aoran Zeng", "ccmywish@qq.com", "zouri", "guoshuaisun@outlook.com"); diff --git a/src/recipe/os/APT/Raspberry-Pi-OS.c b/src/recipe/os/APT/Raspberry-Pi-OS.c index 651e788..6239b5b 100644 --- a/src/recipe/os/APT/Raspberry-Pi-OS.c +++ b/src/recipe/os/APT/Raspberry-Pi-OS.c @@ -18,7 +18,7 @@ os_raspberrypi_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Yangmoooo", "yangmoooo@outlook.com"); diff --git a/src/recipe/os/APT/Termux.c b/src/recipe/os/APT/Termux.c index 9deaf74..1df67d8 100644 --- a/src/recipe/os/APT/Termux.c +++ b/src/recipe/os/APT/Termux.c @@ -16,7 +16,7 @@ os_termux_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/os/APT/Trisquel.c b/src/recipe/os/APT/Trisquel.c index 055dece..c58a497 100644 --- a/src/recipe/os/APT/Trisquel.c +++ b/src/recipe/os/APT/Trisquel.c @@ -18,7 +18,7 @@ os_trisquel_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/os/APT/Ubuntu.c b/src/recipe/os/APT/Ubuntu.c index 34d3d62..f25916d 100644 --- a/src/recipe/os/APT/Ubuntu.c +++ b/src/recipe/os/APT/Ubuntu.c @@ -19,7 +19,7 @@ os_ubuntu_prelude () "Aoran Zeng", "ccmywish@qq.com", "Heng Guo", "2085471348@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Zhao", "1792582687@qq.com"); diff --git a/src/recipe/os/APT/deepin.c b/src/recipe/os/APT/deepin.c index 27e4a17..ee557f3 100644 --- a/src/recipe/os/APT/deepin.c +++ b/src/recipe/os/APT/deepin.c @@ -16,7 +16,7 @@ os_deepin_prelude () chef_set_authors (this, 1, "Heng Guo", "2085471348@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Yangmoooo", "yangmoooo@outlook.com"); diff --git a/src/recipe/os/APT/openKylin.c b/src/recipe/os/APT/openKylin.c index 996aa2b..cbf6f5f 100644 --- a/src/recipe/os/APT/openKylin.c +++ b/src/recipe/os/APT/openKylin.c @@ -19,7 +19,7 @@ os_openkylin_prelude () chef_set_authors (this, 1, "Heng Guo", "2085471348@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); diff --git a/src/recipe/os/Alpine-Linux.c b/src/recipe/os/Alpine-Linux.c index 6fd6b7a..82a5ce2 100644 --- a/src/recipe/os/Alpine-Linux.c +++ b/src/recipe/os/Alpine-Linux.c @@ -16,7 +16,7 @@ os_alpine_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Yangmoooo", "yangmoooo@outlook.com"); diff --git a/src/recipe/os/BSD/FreeBSD.c b/src/recipe/os/BSD/FreeBSD.c index 88c1421..d6bff92 100644 --- a/src/recipe/os/BSD/FreeBSD.c +++ b/src/recipe/os/BSD/FreeBSD.c @@ -16,7 +16,7 @@ os_freebsd_prelude () chef_set_authors (this, 2, "Aoran Zeng", "ccmywish@qq.com", "Heng Guo", "2085471348@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/os/BSD/NetBSD.c b/src/recipe/os/BSD/NetBSD.c index fdba170..0d776a0 100644 --- a/src/recipe/os/BSD/NetBSD.c +++ b/src/recipe/os/BSD/NetBSD.c @@ -16,7 +16,7 @@ os_netbsd_prelude () chef_set_authors (this, 2, "Aoran Zeng", "ccmywish@qq.com", "Heng Guo", "2085471348@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); diff --git a/src/recipe/os/BSD/OpenBSD.c b/src/recipe/os/BSD/OpenBSD.c index 92fa0fb..feb6d11 100644 --- a/src/recipe/os/BSD/OpenBSD.c +++ b/src/recipe/os/BSD/OpenBSD.c @@ -16,7 +16,7 @@ os_openbsd_prelude () chef_set_authors (this, 2, "Heng Guo", "2085471348@qq.com", "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/os/Gentoo-Linux.c b/src/recipe/os/Gentoo-Linux.c index 9174f9a..646405a 100644 --- a/src/recipe/os/Gentoo-Linux.c +++ b/src/recipe/os/Gentoo-Linux.c @@ -16,7 +16,7 @@ os_gentoo_prelude () chef_set_authors (this, 1, "Heng Guo", "2085471348@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); diff --git a/src/recipe/os/OpenWrt.c b/src/recipe/os/OpenWrt.c index c72a566..3714c24 100644 --- a/src/recipe/os/OpenWrt.c +++ b/src/recipe/os/OpenWrt.c @@ -16,7 +16,7 @@ os_openwrt_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 2, "Yangmoooo", "yangmoooo@outlook.com", "happy game", "happygame1024@gmail.com"); diff --git a/src/recipe/os/Solus.c b/src/recipe/os/Solus.c index e69a624..1391c83 100644 --- a/src/recipe/os/Solus.c +++ b/src/recipe/os/Solus.c @@ -16,7 +16,7 @@ os_solus_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); diff --git a/src/recipe/os/Void-Linux.c b/src/recipe/os/Void-Linux.c index 69c764e..ef502bc 100644 --- a/src/recipe/os/Void-Linux.c +++ b/src/recipe/os/Void-Linux.c @@ -16,7 +16,7 @@ os_voidlinux_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Yangmoooo", "yangmoooo@outlook.com"); diff --git a/src/recipe/os/YUM/AlmaLinux.c b/src/recipe/os/YUM/AlmaLinux.c index ae7fa42..e0ea331 100644 --- a/src/recipe/os/YUM/AlmaLinux.c +++ b/src/recipe/os/YUM/AlmaLinux.c @@ -16,7 +16,7 @@ os_almalinux_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Yangmoooo", "yangmoooo@outlook.com"); diff --git a/src/recipe/os/YUM/Anolis-OS.c b/src/recipe/os/YUM/Anolis-OS.c index ccf77e6..c19e7bf 100644 --- a/src/recipe/os/YUM/Anolis-OS.c +++ b/src/recipe/os/YUM/Anolis-OS.c @@ -16,7 +16,7 @@ os_anolis_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/os/YUM/Fedora-Linux.c b/src/recipe/os/YUM/Fedora-Linux.c index 7591697..d23b86a 100644 --- a/src/recipe/os/YUM/Fedora-Linux.c +++ b/src/recipe/os/YUM/Fedora-Linux.c @@ -18,7 +18,7 @@ os_fedora_prelude () "Heng Guo", "2085471348@qq.com", "happy game", "happygame1024@gmail.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 1, "happy game", "happygame1024@gmail.com"); chef_set_contributors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); diff --git a/src/recipe/os/YUM/Rocky-Linux.c b/src/recipe/os/YUM/Rocky-Linux.c index 2aedf3c..36bd37c 100644 --- a/src/recipe/os/YUM/Rocky-Linux.c +++ b/src/recipe/os/YUM/Rocky-Linux.c @@ -16,7 +16,7 @@ os_rockylinux_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "happy game", "happygame1024@gmail.com"); diff --git a/src/recipe/os/YUM/openEuler.c b/src/recipe/os/YUM/openEuler.c index 84b9b62..9b4be7d 100644 --- a/src/recipe/os/YUM/openEuler.c +++ b/src/recipe/os/YUM/openEuler.c @@ -16,7 +16,7 @@ os_openeuler_prelude () chef_set_authors (this, 1, "Heng Guo", "2085471348@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 3, "Aoran Zeng", "ccmywish@qq.com", "Yangmoooo", "yangmoooo@outlook.com", diff --git a/src/recipe/os/openSUSE.c b/src/recipe/os/openSUSE.c index 557ad7d..6d1ff8e 100644 --- a/src/recipe/os/openSUSE.c +++ b/src/recipe/os/openSUSE.c @@ -16,7 +16,7 @@ os_opensuse_prelude () chef_set_authors (this, 1, "Heng Guo", "2085471348@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); diff --git a/src/recipe/os/pacman/Arch-Linux.c b/src/recipe/os/pacman/Arch-Linux.c index f4a665f..01c9ac9 100644 --- a/src/recipe/os/pacman/Arch-Linux.c +++ b/src/recipe/os/pacman/Arch-Linux.c @@ -20,7 +20,7 @@ os_arch_prelude () chef_set_authors (this, 2, "Aoran Zeng", "ccmywish@qq.com", "Heng Guo", "2085471348@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 1, "happy game", "happygame1024@gmail.com"); chef_set_contributors (this, 1, "happy game", "happygame1024@gmail.com"); @@ -125,7 +125,7 @@ os_archlinuxcn_prelude () chef_set_authors (this, 2, "Aoran Zeng", "ccmywish@qq.com", "Heng Guo", "2085471348@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "happy game", "happygame1024@gmail.com"); diff --git a/src/recipe/os/pacman/MSYS2.c b/src/recipe/os/pacman/MSYS2.c index f792083..a5f8e92 100644 --- a/src/recipe/os/pacman/MSYS2.c +++ b/src/recipe/os/pacman/MSYS2.c @@ -16,7 +16,7 @@ os_msys2_prelude () chef_set_authors (this, 1, "Heng Guo", "2085471348@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); diff --git a/src/recipe/os/pacman/Manjaro-Linux.c b/src/recipe/os/pacman/Manjaro-Linux.c index 4b38e74..a9afeca 100644 --- a/src/recipe/os/pacman/Manjaro-Linux.c +++ b/src/recipe/os/pacman/Manjaro-Linux.c @@ -15,7 +15,7 @@ os_manjaro_prelude () chef_set_authors (this, 1, "Heng Guo", "2085471348@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/recipe-template.c b/src/recipe/recipe-template.c index 9f2d3ea..3e31697 100644 --- a/src/recipe/recipe-template.c +++ b/src/recipe/recipe-template.c @@ -62,7 +62,7 @@ void chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Nil Null", "nil@null.org"); diff --git a/src/recipe/ware/Anaconda/Anaconda.c b/src/recipe/ware/Anaconda/Anaconda.c index e02c9e1..62a0db9 100644 --- a/src/recipe/ware/Anaconda/Anaconda.c +++ b/src/recipe/ware/Anaconda/Anaconda.c @@ -18,7 +18,7 @@ wr_anaconda_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 2, "Yangmoooo", "yangmoooo@outlook.com", "yongxiang", "1926885268@qq.com"); diff --git a/src/recipe/ware/CocoaPods.c b/src/recipe/ware/CocoaPods.c index c5bda40..c964d2b 100644 --- a/src/recipe/ware/CocoaPods.c +++ b/src/recipe/ware/CocoaPods.c @@ -16,7 +16,7 @@ wr_cocoapods_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); diff --git a/src/recipe/ware/Docker/Docker.c b/src/recipe/ware/Docker/Docker.c index 44ce5c3..838c36b 100644 --- a/src/recipe/ware/Docker/Docker.c +++ b/src/recipe/ware/Docker/Docker.c @@ -35,7 +35,7 @@ wr_docker_prelude () "happy game", "happygame1024@gmail.com", "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 1, "happy game", "happygame1024@gmail.com"); chef_set_contributors (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/ware/Emacs.c b/src/recipe/ware/Emacs.c index 11f1936..47981fc 100644 --- a/src/recipe/ware/Emacs.c +++ b/src/recipe/ware/Emacs.c @@ -23,7 +23,7 @@ wr_emacs_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/ware/Flatpak.c b/src/recipe/ware/Flatpak.c index 76f1164..d6db49c 100644 --- a/src/recipe/ware/Flatpak.c +++ b/src/recipe/ware/Flatpak.c @@ -16,7 +16,7 @@ wr_flatpak_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Jialin Lyu", "jialinlvcn@aliyun.com"); diff --git a/src/recipe/ware/Guix.c b/src/recipe/ware/Guix.c index de8864c..049b83a 100644 --- a/src/recipe/ware/Guix.c +++ b/src/recipe/ware/Guix.c @@ -16,7 +16,7 @@ wr_guix_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/ware/Homebrew/Homebrew.c b/src/recipe/ware/Homebrew/Homebrew.c index a47520a..566b8e8 100644 --- a/src/recipe/ware/Homebrew/Homebrew.c +++ b/src/recipe/ware/Homebrew/Homebrew.c @@ -18,7 +18,7 @@ wr_homebrew_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Word2VecT", "tangzinan@bupt.edu.cn"); diff --git a/src/recipe/ware/Nix.c b/src/recipe/ware/Nix.c index a16ea97..05c5486 100644 --- a/src/recipe/ware/Nix.c +++ b/src/recipe/ware/Nix.c @@ -16,7 +16,7 @@ wr_nix_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/ware/TeX-Live.c b/src/recipe/ware/TeX-Live.c index 57e432e..86637be 100644 --- a/src/recipe/ware/TeX-Live.c +++ b/src/recipe/ware/TeX-Live.c @@ -18,7 +18,7 @@ wr_tex_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 1, "Mikachu2333", "mikachu.23333@zohomail.com"); diff --git a/src/recipe/ware/WinGet.c b/src/recipe/ware/WinGet.c index 0f91c30..c4b8751 100644 --- a/src/recipe/ware/WinGet.c +++ b/src/recipe/ware/WinGet.c @@ -16,7 +16,7 @@ wr_winget_prelude () chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com"); chef_set_chef (this, NULL, NULL); - chef_set_sous_chefs (this, 0); + chef_set_cooks (this, 0); chef_set_contributors (this, 0); chef_forbid_english(this);