From c8818e4923cd150eb1ca1fc12c073413e9a1be67 Mon Sep 17 00:00:00 2001 From: Aoran Zeng Date: Fri, 22 Aug 2025 14:36:55 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E5=91=BD=E5=90=8D=E4=B8=BA=20`chef=5F?= =?UTF-8?q?set=5Fsauciers()`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/framework/chef.c | 2 +- src/recipe/lang/Clojure.c | 2 +- src/recipe/lang/Dart/Flutter.c | 2 +- src/recipe/lang/Dart/Pub.c | 2 +- src/recipe/lang/Go.c | 2 +- src/recipe/lang/Haskell.c | 2 +- src/recipe/lang/Java.c | 2 +- src/recipe/lang/JavaScript/Bun.c | 2 +- src/recipe/lang/JavaScript/Yarn.c | 2 +- src/recipe/lang/JavaScript/common.h | 4 ++-- src/recipe/lang/JavaScript/npm.c | 2 +- src/recipe/lang/JavaScript/nvm.c | 2 +- src/recipe/lang/JavaScript/pnpm.c | 2 +- src/recipe/lang/Julia.c | 2 +- src/recipe/lang/Lua.c | 2 +- src/recipe/lang/NuGet.c | 2 +- src/recipe/lang/OCaml.c | 2 +- src/recipe/lang/PHP.c | 2 +- src/recipe/lang/Perl.c | 2 +- src/recipe/lang/Python/PDM.c | 2 +- src/recipe/lang/Python/Poetry.c | 2 +- src/recipe/lang/Python/Rye.c | 2 +- src/recipe/lang/Python/common.h | 2 +- src/recipe/lang/Python/pip.c | 2 +- src/recipe/lang/Python/uv.c | 2 +- src/recipe/lang/R.c | 2 +- src/recipe/lang/Ruby/Ruby.c | 2 +- src/recipe/lang/Rust/Cargo.c | 2 +- src/recipe/lang/Rust/rustup.c | 2 +- src/recipe/os/APT/Armbian.c | 2 +- src/recipe/os/APT/Debian.c | 2 +- src/recipe/os/APT/Kali-Linux.c | 2 +- src/recipe/os/APT/Linux-Lite.c | 2 +- src/recipe/os/APT/Linux-Mint.c | 2 +- src/recipe/os/APT/ROS.c | 2 +- src/recipe/os/APT/Raspberry-Pi-OS.c | 2 +- src/recipe/os/APT/Termux.c | 2 +- src/recipe/os/APT/Trisquel.c | 2 +- src/recipe/os/APT/Ubuntu.c | 2 +- src/recipe/os/APT/deepin.c | 2 +- src/recipe/os/APT/openKylin.c | 2 +- src/recipe/os/Alpine-Linux.c | 2 +- src/recipe/os/BSD/FreeBSD.c | 2 +- src/recipe/os/BSD/NetBSD.c | 2 +- src/recipe/os/BSD/OpenBSD.c | 2 +- src/recipe/os/Gentoo-Linux.c | 2 +- src/recipe/os/OpenWrt.c | 2 +- src/recipe/os/Solus.c | 2 +- src/recipe/os/Void-Linux.c | 2 +- src/recipe/os/YUM/AlmaLinux.c | 2 +- src/recipe/os/YUM/Anolis-OS.c | 2 +- src/recipe/os/YUM/Fedora-Linux.c | 2 +- src/recipe/os/YUM/Rocky-Linux.c | 2 +- src/recipe/os/YUM/openEuler.c | 2 +- src/recipe/os/openSUSE.c | 2 +- src/recipe/os/pacman/Arch-Linux.c | 4 ++-- src/recipe/os/pacman/MSYS2.c | 2 +- src/recipe/os/pacman/Manjaro-Linux.c | 2 +- src/recipe/recipe-template.c | 2 +- src/recipe/ware/Anaconda/Anaconda.c | 2 +- src/recipe/ware/CocoaPods.c | 2 +- src/recipe/ware/Docker/Docker.c | 2 +- src/recipe/ware/Emacs.c | 2 +- src/recipe/ware/Flatpak.c | 2 +- src/recipe/ware/Guix.c | 2 +- src/recipe/ware/Homebrew/Homebrew.c | 2 +- src/recipe/ware/Nix.c | 2 +- src/recipe/ware/TeX-Live.c | 2 +- src/recipe/ware/WinGet.c | 2 +- 69 files changed, 71 insertions(+), 71 deletions(-) diff --git a/src/framework/chef.c b/src/framework/chef.c index 2ba5b21..9268b9b 100644 --- a/src/framework/chef.c +++ b/src/framework/chef.c @@ -255,7 +255,7 @@ chef_set_cooks (Target_t *target, size_t count, ...) } void -chef_set_contributors (Target_t *target, uint32_t count, ...) +chef_set_sauciers (Target_t *target, uint32_t count, ...) { xy_cant_be_null (target); diff --git a/src/recipe/lang/Clojure.c b/src/recipe/lang/Clojure.c index 105b5c6..96eafd5 100644 --- a/src/recipe/lang/Clojure.c +++ b/src/recipe/lang/Clojure.c @@ -15,7 +15,7 @@ pl_clojure_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@hezonglun"); + chef_set_sauciers (this, 1, "@hezonglun"); chef_allow_local_mode (this, FullyCan, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/lang/Dart/Flutter.c b/src/recipe/lang/Dart/Flutter.c index 6363bc3..895713e 100644 --- a/src/recipe/lang/Dart/Flutter.c +++ b/src/recipe/lang/Dart/Flutter.c @@ -15,7 +15,7 @@ pl_dart_flutter_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 2, "@czyt", "@xrgzs"); + chef_set_sauciers (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 99117e3..d0a685c 100644 --- a/src/recipe/lang/Dart/Pub.c +++ b/src/recipe/lang/Dart/Pub.c @@ -15,7 +15,7 @@ pl_dart_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 2, "@czyt", "@xrgzs"); + chef_set_sauciers (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 7cc5edc..6d58e33 100644 --- a/src/recipe/lang/Go.c +++ b/src/recipe/lang/Go.c @@ -29,7 +29,7 @@ pl_go_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 2, "@czyt", "@techoc"); + chef_set_sauciers (this, 2, "@czyt", "@techoc"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/lang/Haskell.c b/src/recipe/lang/Haskell.c index 7231432..ad6461b 100644 --- a/src/recipe/lang/Haskell.c +++ b/src/recipe/lang/Haskell.c @@ -15,7 +15,7 @@ pl_haskell_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/lang/Java.c b/src/recipe/lang/Java.c index 548700d..4d5eadd 100644 --- a/src/recipe/lang/Java.c +++ b/src/recipe/lang/Java.c @@ -15,7 +15,7 @@ pl_java_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@BingChunMoLi"); + chef_set_sauciers (this, 1, "@BingChunMoLi"); 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 ebd8a16..bf3d3a9 100644 --- a/src/recipe/lang/JavaScript/Bun.c +++ b/src/recipe/lang/JavaScript/Bun.c @@ -15,7 +15,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_sauciers (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 65532ae..a80515f 100644 --- a/src/recipe/lang/JavaScript/Yarn.c +++ b/src/recipe/lang/JavaScript/Yarn.c @@ -15,7 +15,7 @@ pl_js_yarn_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@MrWillCom"); + chef_set_sauciers (this, 1, "@MrWillCom"); chef_allow_local_mode (this, FullyCan, NULL, NULL); chef_allow_english(this); diff --git a/src/recipe/lang/JavaScript/common.h b/src/recipe/lang/JavaScript/common.h index ec40cca..2ff97fd 100644 --- a/src/recipe/lang/JavaScript/common.h +++ b/src/recipe/lang/JavaScript/common.h @@ -24,7 +24,7 @@ pl_js_group_prelude (void) chef_set_chef (this, "@happy-game"); - chef_set_contributors (this,0); + chef_set_sauciers (this,0); chef_allow_local_mode (this, PartiallyCan, "支持 npm, yarn v2, pnpm, 不支持 yarn v1", @@ -58,7 +58,7 @@ pl_js_nodejs_binary_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_allow_english(this); diff --git a/src/recipe/lang/JavaScript/npm.c b/src/recipe/lang/JavaScript/npm.c index ff832e4..c359ddf 100644 --- a/src/recipe/lang/JavaScript/npm.c +++ b/src/recipe/lang/JavaScript/npm.c @@ -15,7 +15,7 @@ pl_js_npm_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@MrWillCom"); + chef_set_sauciers (this, 1, "@MrWillCom"); chef_allow_local_mode (this, FullyCan, NULL, NULL); chef_allow_english(this); diff --git a/src/recipe/lang/JavaScript/nvm.c b/src/recipe/lang/JavaScript/nvm.c index cc65e1b..91676ab 100644 --- a/src/recipe/lang/JavaScript/nvm.c +++ b/src/recipe/lang/JavaScript/nvm.c @@ -15,7 +15,7 @@ pl_js_nvm_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_allow_english(this); diff --git a/src/recipe/lang/JavaScript/pnpm.c b/src/recipe/lang/JavaScript/pnpm.c index 40b8694..42577ba 100644 --- a/src/recipe/lang/JavaScript/pnpm.c +++ b/src/recipe/lang/JavaScript/pnpm.c @@ -15,7 +15,7 @@ pl_js_pnpm_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, FullyCan, NULL, NULL); chef_allow_english(this); diff --git a/src/recipe/lang/Julia.c b/src/recipe/lang/Julia.c index 539e6af..f225b57 100644 --- a/src/recipe/lang/Julia.c +++ b/src/recipe/lang/Julia.c @@ -15,7 +15,7 @@ pl_julia_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_allow_english(this); diff --git a/src/recipe/lang/Lua.c b/src/recipe/lang/Lua.c index 7f943d4..738689d 100644 --- a/src/recipe/lang/Lua.c +++ b/src/recipe/lang/Lua.c @@ -22,7 +22,7 @@ pl_lua_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/lang/NuGet.c b/src/recipe/lang/NuGet.c index c67a725..19b0bea 100644 --- a/src/recipe/lang/NuGet.c +++ b/src/recipe/lang/NuGet.c @@ -15,7 +15,7 @@ pl_nuget_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/lang/OCaml.c b/src/recipe/lang/OCaml.c index 6da10ba..a70cdd2 100644 --- a/src/recipe/lang/OCaml.c +++ b/src/recipe/lang/OCaml.c @@ -15,7 +15,7 @@ pl_ocaml_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/lang/PHP.c b/src/recipe/lang/PHP.c index 339b8a2..228beda 100644 --- a/src/recipe/lang/PHP.c +++ b/src/recipe/lang/PHP.c @@ -15,7 +15,7 @@ pl_php_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, FullyCan, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/lang/Perl.c b/src/recipe/lang/Perl.c index efbb7a2..f107370 100644 --- a/src/recipe/lang/Perl.c +++ b/src/recipe/lang/Perl.c @@ -15,7 +15,7 @@ pl_perl_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@hezonglun"); + chef_set_sauciers (this, 1, "@hezonglun"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/lang/Python/PDM.c b/src/recipe/lang/Python/PDM.c index 1cb7396..276298e 100644 --- a/src/recipe/lang/Python/PDM.c +++ b/src/recipe/lang/Python/PDM.c @@ -15,7 +15,7 @@ pl_python_pdm_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, FullyCan, "支持项目级配置", "Supports project-level configuration"); chef_allow_english(this); diff --git a/src/recipe/lang/Python/Poetry.c b/src/recipe/lang/Python/Poetry.c index 24e185a..02e9580 100644 --- a/src/recipe/lang/Python/Poetry.c +++ b/src/recipe/lang/Python/Poetry.c @@ -15,7 +15,7 @@ pl_python_poetry_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, FullyCan, "Poetry 默认使用项目级换源", "Poetry uses project-level source changing by default"); chef_allow_english(this); diff --git a/src/recipe/lang/Python/Rye.c b/src/recipe/lang/Python/Rye.c index 10ea91c..709809f 100644 --- a/src/recipe/lang/Python/Rye.c +++ b/src/recipe/lang/Python/Rye.c @@ -17,7 +17,7 @@ pl_python_rye_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, FullyCan, "支持项目级配置", "Supports project-level configuration"); chef_allow_english(this); diff --git a/src/recipe/lang/Python/common.h b/src/recipe/lang/Python/common.h index 5cbf712..1233e48 100644 --- a/src/recipe/lang/Python/common.h +++ b/src/recipe/lang/Python/common.h @@ -30,7 +30,7 @@ pl_python_group_prelude (void) chef_set_chef (this, "@happy-game"); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@xyx1926885268"); + chef_set_sauciers (this, 1, "@xyx1926885268"); chef_allow_local_mode (this, PartiallyCan, "部分包管理器支持项目级换源", "Some package managers support project-level source changing"); chef_allow_english(this); diff --git a/src/recipe/lang/Python/pip.c b/src/recipe/lang/Python/pip.c index b4a27f0..db26c49 100644 --- a/src/recipe/lang/Python/pip.c +++ b/src/recipe/lang/Python/pip.c @@ -15,7 +15,7 @@ pl_python_pip_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_allow_english(this); diff --git a/src/recipe/lang/Python/uv.c b/src/recipe/lang/Python/uv.c index f56d9fe..83f90b1 100644 --- a/src/recipe/lang/Python/uv.c +++ b/src/recipe/lang/Python/uv.c @@ -15,7 +15,7 @@ pl_python_uv_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@happy-game"); - chef_set_contributors (this, 2, "@Kattos", "@ccmywish"); + chef_set_sauciers (this, 2, "@Kattos", "@ccmywish"); chef_allow_local_mode (this, FullyCan, NULL, NULL); chef_allow_english(this); diff --git a/src/recipe/lang/R.c b/src/recipe/lang/R.c index f6d625d..3583a6d 100644 --- a/src/recipe/lang/R.c +++ b/src/recipe/lang/R.c @@ -15,7 +15,7 @@ pl_r_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@hezonglun"); + chef_set_sauciers (this, 1, "@hezonglun"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/lang/Ruby/Ruby.c b/src/recipe/lang/Ruby/Ruby.c index 065e025..00842f8 100644 --- a/src/recipe/lang/Ruby/Ruby.c +++ b/src/recipe/lang/Ruby/Ruby.c @@ -22,7 +22,7 @@ pl_ruby_prelude (void) chef_set_chef (this, "@ccmywish"); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, PartiallyCan, "支持 bundler. 不支持 gem", "Support bundler. Not support gem"); chef_allow_english(this); diff --git a/src/recipe/lang/Rust/Cargo.c b/src/recipe/lang/Rust/Cargo.c index 68afe0a..770d9c2 100644 --- a/src/recipe/lang/Rust/Cargo.c +++ b/src/recipe/lang/Rust/Cargo.c @@ -15,7 +15,7 @@ pl_rust_cargo_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@Mikachu2333"); + chef_set_sauciers (this, 1, "@Mikachu2333"); chef_allow_local_mode (this, PartiallyCan, "可以基于本项目换源吗?请帮助确认", "Can it change sources based on this project? Please help confirm"); chef_forbid_english (this); diff --git a/src/recipe/lang/Rust/rustup.c b/src/recipe/lang/Rust/rustup.c index bebb773..401fb3f 100644 --- a/src/recipe/lang/Rust/rustup.c +++ b/src/recipe/lang/Rust/rustup.c @@ -18,7 +18,7 @@ pl_rust_rustup_prelude (void) chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 2, "@Yangmoooo", "@Mikachu2333"); + chef_set_sauciers (this, 2, "@Yangmoooo", "@Mikachu2333"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english (this); diff --git a/src/recipe/os/APT/Armbian.c b/src/recipe/os/APT/Armbian.c index 573022b..619a077 100644 --- a/src/recipe/os/APT/Armbian.c +++ b/src/recipe/os/APT/Armbian.c @@ -15,7 +15,7 @@ os_armbian_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@livelycode36"); - chef_set_contributors (this, 2, "@ccmywish", "@Yangmoooo"); + chef_set_sauciers (this, 2, "@ccmywish", "@Yangmoooo"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/APT/Debian.c b/src/recipe/os/APT/Debian.c index 8a8ebcc..01c871e 100644 --- a/src/recipe/os/APT/Debian.c +++ b/src/recipe/os/APT/Debian.c @@ -15,7 +15,7 @@ os_debian_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 2, "@ccmywish", "@G_I_Y"); - chef_set_contributors (this, 1, "@Yangmoooo"); + chef_set_sauciers (this, 1, "@Yangmoooo"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/APT/Kali-Linux.c b/src/recipe/os/APT/Kali-Linux.c index 15a0e14..1e2be74 100644 --- a/src/recipe/os/APT/Kali-Linux.c +++ b/src/recipe/os/APT/Kali-Linux.c @@ -15,7 +15,7 @@ os_kali_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@G_I_Y"); - chef_set_contributors (this, 2, "@Yangmoooo", "@happy-game"); + chef_set_sauciers (this, 2, "@Yangmoooo", "@happy-game"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/APT/Linux-Lite.c b/src/recipe/os/APT/Linux-Lite.c index 997992c..40c282f 100644 --- a/src/recipe/os/APT/Linux-Lite.c +++ b/src/recipe/os/APT/Linux-Lite.c @@ -15,7 +15,7 @@ os_linuxlite_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@Yangmoooo"); + chef_set_sauciers (this, 1, "@Yangmoooo"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/APT/Linux-Mint.c b/src/recipe/os/APT/Linux-Mint.c index 6f51882..e18b2dc 100644 --- a/src/recipe/os/APT/Linux-Mint.c +++ b/src/recipe/os/APT/Linux-Mint.c @@ -15,7 +15,7 @@ os_linuxmint_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@happy-game"); + chef_set_sauciers (this, 1, "@happy-game"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/APT/ROS.c b/src/recipe/os/APT/ROS.c index 618d247..10a94ee 100644 --- a/src/recipe/os/APT/ROS.c +++ b/src/recipe/os/APT/ROS.c @@ -15,7 +15,7 @@ os_ros_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@G_I_Y"); - chef_set_contributors (this, 2, "@ccmywish", "@zouri"); + chef_set_sauciers (this, 2, "@ccmywish", "@zouri"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/APT/Raspberry-Pi-OS.c b/src/recipe/os/APT/Raspberry-Pi-OS.c index c52cb49..11dae96 100644 --- a/src/recipe/os/APT/Raspberry-Pi-OS.c +++ b/src/recipe/os/APT/Raspberry-Pi-OS.c @@ -17,7 +17,7 @@ os_raspberrypi_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@Yangmoooo"); + chef_set_sauciers (this, 1, "@Yangmoooo"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/APT/Termux.c b/src/recipe/os/APT/Termux.c index bdceded..0b78b7d 100644 --- a/src/recipe/os/APT/Termux.c +++ b/src/recipe/os/APT/Termux.c @@ -15,7 +15,7 @@ os_termux_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/APT/Trisquel.c b/src/recipe/os/APT/Trisquel.c index c162724..6047c43 100644 --- a/src/recipe/os/APT/Trisquel.c +++ b/src/recipe/os/APT/Trisquel.c @@ -17,7 +17,7 @@ os_trisquel_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); 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 92f5400..c9b8a82 100644 --- a/src/recipe/os/APT/Ubuntu.c +++ b/src/recipe/os/APT/Ubuntu.c @@ -16,7 +16,7 @@ os_ubuntu_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 2, "@ccmywish", "@G_I_Y"); - chef_set_contributors (this, 1, "@XUANJI233"); + chef_set_sauciers (this, 1, "@XUANJI233"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/APT/deepin.c b/src/recipe/os/APT/deepin.c index ab094d4..637ffa6 100644 --- a/src/recipe/os/APT/deepin.c +++ b/src/recipe/os/APT/deepin.c @@ -15,7 +15,7 @@ os_deepin_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@G_I_Y"); - chef_set_contributors (this, 1, "@Yangmoooo"); + chef_set_sauciers (this, 1, "@Yangmoooo"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/APT/openKylin.c b/src/recipe/os/APT/openKylin.c index 625d1f0..3201938 100644 --- a/src/recipe/os/APT/openKylin.c +++ b/src/recipe/os/APT/openKylin.c @@ -18,7 +18,7 @@ os_openkylin_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@G_I_Y"); - chef_set_contributors (this, 1, "@ccmywish"); + chef_set_sauciers (this, 1, "@ccmywish"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/Alpine-Linux.c b/src/recipe/os/Alpine-Linux.c index 657a76c..0183abc 100644 --- a/src/recipe/os/Alpine-Linux.c +++ b/src/recipe/os/Alpine-Linux.c @@ -15,7 +15,7 @@ os_alpine_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@Yangmoooo"); + chef_set_sauciers (this, 1, "@Yangmoooo"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_allow_english(this); diff --git a/src/recipe/os/BSD/FreeBSD.c b/src/recipe/os/BSD/FreeBSD.c index cffcf0d..e8fe85a 100644 --- a/src/recipe/os/BSD/FreeBSD.c +++ b/src/recipe/os/BSD/FreeBSD.c @@ -15,7 +15,7 @@ os_freebsd_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 2, "@ccmywish", "@G_I_Y"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/BSD/NetBSD.c b/src/recipe/os/BSD/NetBSD.c index d5daacf..87f4f36 100644 --- a/src/recipe/os/BSD/NetBSD.c +++ b/src/recipe/os/BSD/NetBSD.c @@ -15,7 +15,7 @@ os_netbsd_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 2, "@ccmywish", "@G_I_Y"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/os/BSD/OpenBSD.c b/src/recipe/os/BSD/OpenBSD.c index 2e5afce..e5d61fc 100644 --- a/src/recipe/os/BSD/OpenBSD.c +++ b/src/recipe/os/BSD/OpenBSD.c @@ -15,7 +15,7 @@ os_openbsd_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 2, "@G_I_Y", "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/Gentoo-Linux.c b/src/recipe/os/Gentoo-Linux.c index 7cd56ac..4e5d3a3 100644 --- a/src/recipe/os/Gentoo-Linux.c +++ b/src/recipe/os/Gentoo-Linux.c @@ -15,7 +15,7 @@ os_gentoo_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@G_I_Y"); - chef_set_contributors (this, 1, "@ccmywish"); + chef_set_sauciers (this, 1, "@ccmywish"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_allow_english(this); diff --git a/src/recipe/os/OpenWrt.c b/src/recipe/os/OpenWrt.c index 5b5efa7..36315e8 100644 --- a/src/recipe/os/OpenWrt.c +++ b/src/recipe/os/OpenWrt.c @@ -15,7 +15,7 @@ os_openwrt_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 2, "@Yangmoooo", "@happy-game"); + chef_set_sauciers (this, 2, "@Yangmoooo", "@happy-game"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_allow_english(this); diff --git a/src/recipe/os/Solus.c b/src/recipe/os/Solus.c index 966e83f..1ec4bbd 100644 --- a/src/recipe/os/Solus.c +++ b/src/recipe/os/Solus.c @@ -15,7 +15,7 @@ os_solus_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/os/Void-Linux.c b/src/recipe/os/Void-Linux.c index 6f17aec..12c0fa4 100644 --- a/src/recipe/os/Void-Linux.c +++ b/src/recipe/os/Void-Linux.c @@ -15,7 +15,7 @@ os_voidlinux_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@Yangmoooo"); + chef_set_sauciers (this, 1, "@Yangmoooo"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/YUM/AlmaLinux.c b/src/recipe/os/YUM/AlmaLinux.c index 5e709d5..3b5b509 100644 --- a/src/recipe/os/YUM/AlmaLinux.c +++ b/src/recipe/os/YUM/AlmaLinux.c @@ -15,7 +15,7 @@ os_almalinux_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@Yangmoooo"); + chef_set_sauciers (this, 1, "@Yangmoooo"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/YUM/Anolis-OS.c b/src/recipe/os/YUM/Anolis-OS.c index 4127f9c..38f0e9f 100644 --- a/src/recipe/os/YUM/Anolis-OS.c +++ b/src/recipe/os/YUM/Anolis-OS.c @@ -15,7 +15,7 @@ os_anolis_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/YUM/Fedora-Linux.c b/src/recipe/os/YUM/Fedora-Linux.c index 1b744d4..6cd61f2 100644 --- a/src/recipe/os/YUM/Fedora-Linux.c +++ b/src/recipe/os/YUM/Fedora-Linux.c @@ -15,7 +15,7 @@ os_fedora_prelude () chef_set_chef (this, "@happy-game"); chef_set_cooks (this, 2, "@G_I_Y", "@happy-game"); - chef_set_contributors (this, 1, "@ccmywish"); + chef_set_sauciers (this, 1, "@ccmywish"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/YUM/Rocky-Linux.c b/src/recipe/os/YUM/Rocky-Linux.c index 051047b..96a9d48 100644 --- a/src/recipe/os/YUM/Rocky-Linux.c +++ b/src/recipe/os/YUM/Rocky-Linux.c @@ -15,7 +15,7 @@ os_rockylinux_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@happy-game"); + chef_set_sauciers (this, 1, "@happy-game"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/YUM/openEuler.c b/src/recipe/os/YUM/openEuler.c index 47f68b1..3670f65 100644 --- a/src/recipe/os/YUM/openEuler.c +++ b/src/recipe/os/YUM/openEuler.c @@ -15,7 +15,7 @@ os_openeuler_prelude () chef_set_cooks (this, 1, "@G_I_Y"); chef_set_chef (this, NULL); - chef_set_contributors (this, 3, "@ccmywish", "@Yangmoooo", "@happy-game"); + chef_set_sauciers (this, 3, "@ccmywish", "@Yangmoooo", "@happy-game"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/openSUSE.c b/src/recipe/os/openSUSE.c index 8a3cb38..6573850 100644 --- a/src/recipe/os/openSUSE.c +++ b/src/recipe/os/openSUSE.c @@ -15,7 +15,7 @@ os_opensuse_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 2, "@ccmywish", "@G_I_Y"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/pacman/Arch-Linux.c b/src/recipe/os/pacman/Arch-Linux.c index af01323..e9f695b 100644 --- a/src/recipe/os/pacman/Arch-Linux.c +++ b/src/recipe/os/pacman/Arch-Linux.c @@ -18,7 +18,7 @@ os_arch_prelude () chef_set_chef (this, "@happy-game"); chef_set_cooks (this, 2, "@ccmywish", "@G_I_Y"); - chef_set_contributors (this, 1, "@happy-game"); + chef_set_sauciers (this, 1, "@happy-game"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); @@ -120,7 +120,7 @@ os_archlinuxcn_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 2, "@ccmywish", "@G_I_Y"); - chef_set_contributors (this, 1, "@happy-game"); + chef_set_sauciers (this, 1, "@happy-game"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/pacman/MSYS2.c b/src/recipe/os/pacman/MSYS2.c index 08dcfa0..49e31b6 100644 --- a/src/recipe/os/pacman/MSYS2.c +++ b/src/recipe/os/pacman/MSYS2.c @@ -15,7 +15,7 @@ os_msys2_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@G_I_Y"); - chef_set_contributors (this, 1, "@ccmywish"); + chef_set_sauciers (this, 1, "@ccmywish"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/os/pacman/Manjaro-Linux.c b/src/recipe/os/pacman/Manjaro-Linux.c index a1731fe..1859897 100644 --- a/src/recipe/os/pacman/Manjaro-Linux.c +++ b/src/recipe/os/pacman/Manjaro-Linux.c @@ -14,7 +14,7 @@ os_manjaro_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@G_I_Y"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/recipe-template.c b/src/recipe/recipe-template.c index 1d2c2d1..729409f 100644 --- a/src/recipe/recipe-template.c +++ b/src/recipe/recipe-template.c @@ -68,7 +68,7 @@ void chef_set_chef (this, "@ccmywish"); // recipe 负责人 chef_set_cooks (this, 2, "@ccmywish", "@nilnull"); // recipe 核心作者 // 做了贡献?将自己的信息加在这里! - chef_set_contributors (this, 2, "@nulnone", "@someone"); + chef_set_sauciers (this, 2, "@nulnone", "@someone"); chef_allow_local_mode (this, PartiallyCan, "具体说明是否支持项目级换源...", "Tell users the local mode support"); diff --git a/src/recipe/ware/Anaconda/Anaconda.c b/src/recipe/ware/Anaconda/Anaconda.c index 8536d92..3b8bbb6 100644 --- a/src/recipe/ware/Anaconda/Anaconda.c +++ b/src/recipe/ware/Anaconda/Anaconda.c @@ -17,7 +17,7 @@ wr_anaconda_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 2, "@Yangmoooo", "@xyx1926885268"); + chef_set_sauciers (this, 2, "@Yangmoooo", "@xyx1926885268"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/ware/CocoaPods.c b/src/recipe/ware/CocoaPods.c index 78a4aed..108db3a 100644 --- a/src/recipe/ware/CocoaPods.c +++ b/src/recipe/ware/CocoaPods.c @@ -15,7 +15,7 @@ wr_cocoapods_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); diff --git a/src/recipe/ware/Docker/Docker.c b/src/recipe/ware/Docker/Docker.c index 8c9ebc2..aa119c8 100644 --- a/src/recipe/ware/Docker/Docker.c +++ b/src/recipe/ware/Docker/Docker.c @@ -32,7 +32,7 @@ wr_docker_prelude () chef_set_chef (this, "@happy-game"); chef_set_cooks (this, 2, "@happy-game", "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/ware/Emacs.c b/src/recipe/ware/Emacs.c index 1e8663a..a983f4c 100644 --- a/src/recipe/ware/Emacs.c +++ b/src/recipe/ware/Emacs.c @@ -22,7 +22,7 @@ wr_emacs_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); 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 47d06c7..fd2d13b 100644 --- a/src/recipe/ware/Flatpak.c +++ b/src/recipe/ware/Flatpak.c @@ -15,7 +15,7 @@ wr_flatpak_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@jialinlvcn"); + chef_set_sauciers (this, 1, "@jialinlvcn"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/ware/Guix.c b/src/recipe/ware/Guix.c index 5b39725..d6497db 100644 --- a/src/recipe/ware/Guix.c +++ b/src/recipe/ware/Guix.c @@ -15,7 +15,7 @@ wr_guix_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/ware/Homebrew/Homebrew.c b/src/recipe/ware/Homebrew/Homebrew.c index baf2ea6..665d86c 100644 --- a/src/recipe/ware/Homebrew/Homebrew.c +++ b/src/recipe/ware/Homebrew/Homebrew.c @@ -17,7 +17,7 @@ wr_homebrew_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@Word2VecT"); + chef_set_sauciers (this, 1, "@Word2VecT"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_allow_english(this); diff --git a/src/recipe/ware/Nix.c b/src/recipe/ware/Nix.c index 72b8756..7aca1a9 100644 --- a/src/recipe/ware/Nix.c +++ b/src/recipe/ware/Nix.c @@ -15,7 +15,7 @@ wr_nix_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 0); + chef_set_sauciers (this, 0); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/ware/TeX-Live.c b/src/recipe/ware/TeX-Live.c index 10d89f1..fa034ac 100644 --- a/src/recipe/ware/TeX-Live.c +++ b/src/recipe/ware/TeX-Live.c @@ -17,7 +17,7 @@ wr_tex_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@Mikachu2333"); + chef_set_sauciers (this, 1, "@Mikachu2333"); chef_allow_local_mode (this, CanNot, NULL, NULL); chef_forbid_english(this); diff --git a/src/recipe/ware/WinGet.c b/src/recipe/ware/WinGet.c index 2bd3265..8f08ac8 100644 --- a/src/recipe/ware/WinGet.c +++ b/src/recipe/ware/WinGet.c @@ -15,7 +15,7 @@ wr_winget_prelude () chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); - chef_set_contributors (this, 1, "@Mikachu2333"); + chef_set_sauciers (this, 1, "@Mikachu2333"); chef_forbid_english(this); chef_allow_user_define(this);