From ceda610eadb6b5b975876df3d7943e0f672f2dc2 Mon Sep 17 00:00:00 2001 From: Aoran Zeng Date: Tue, 24 Feb 2026 12:02:27 +0800 Subject: [PATCH] =?UTF-8?q?`Clojure`=20=E4=B8=BA=E6=89=8B=E5=8A=A8?= =?UTF-8?q?=E6=8D=A2=E6=BA=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/recipe/lang/Clojure.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/recipe/lang/Clojure.c b/src/recipe/lang/Clojure.c index 3e3ed86..d849f76 100644 --- a/src/recipe/lang/Clojure.c +++ b/src/recipe/lang/Clojure.c @@ -10,14 +10,18 @@ pl_clojure_prelude () chef_prep_this (pl_clojure, s); chef_set_created_on (this, "2023-09-10"); - chef_set_last_updated (this, "2025-08-10"); + chef_set_last_updated (this, "2026-02-24"); chef_set_sources_last_updated (this, "2025-08-21"); chef_set_chef (this, NULL); chef_set_cooks (this, 1, "@ccmywish"); chef_set_sauciers (this, 1, "@hezonglun"); - chef_allow_local_mode (this, FullyCan, NULL, NULL); + chef_set_scope_cap (this, ProjectScope, ScopeCap_Able_And_Implemented); + chef_set_scope_cap (this, UserScope, ScopeCap_Able_And_Implemented); + chef_set_scope_cap (this, SystemScope, ScopeCap_Unable); + chef_set_default_scope (this, UserScope); + chef_deny_english(this); chef_allow_user_define(this); @@ -51,5 +55,6 @@ pl_clojure_setsrc (char *option) println (config); } + chsrc_determine_chgtype (ChgType_Manual); chsrc_conclude (&source); }