|
59 | 59 | <category>_<target>_prelude (void) |
60 | 60 | { |
61 | 61 | use_this(<category>_<target>); |
62 | | - chef_allow_gsr(<category>_<target>); //代表支持 Get Set Reset 三种操作 |
63 | | - // chef_allow_s(<category>_<target>); //以此类推 |
| 62 | + chef_allow_gsr(<category>_<target>); // 代表支持 Get Set Reset 三种操作 |
| 63 | + // chef_allow_s(<category>_<target>); // 以此类推 |
64 | 64 | // chef_allow_gs(<category>_<target>); |
65 | 65 | // chef_allow_sr(<category>_<target>); |
66 | 66 |
|
67 | | - chef_set_created_on (this, "2024-08-09"); //文件创建日期 |
68 | | - chef_set_last_updated (this, "2025-08-12"); //文件最后一次更新日期 |
69 | | - chef_set_sources_last_updated (this, "2025-08-11"); //镜像站点最后一次更新日期 |
| 67 | + chef_set_created_on (this, "2024-08-09"); // 文件创建日期 |
| 68 | + chef_set_last_updated (this, "2025-08-12"); // 文件最后一次更新日期 |
| 69 | + chef_set_sources_last_updated (this, "2025-08-11"); // 镜像站点最后一次更新日期 |
70 | 70 |
|
71 | | - chef_set_authors ( this, 1, "Aoran Zeng", "[email protected]"); //作者 |
| 71 | + chef_set_authors ( this, 1, "Aoran Zeng", "[email protected]"); // 作者 |
72 | 72 | chef_set_chef (this, NULL, NULL); |
73 | | - chef_set_cooks (this, 0); //想一直为它贡献和更新?将自己加在这里! |
74 | | - chef_set_contributors (this, 1, //为它做了贡献?将自己的信息加在这里! |
| 73 | + chef_set_cooks (this, 0); // 想一直为它贡献和更新?将自己加在这里! |
| 74 | + chef_set_contributors (this, 1, // 为它做了贡献?将自己的信息加在这里! |
75 | 75 | |
76 | 76 |
|
77 | 77 |
|
78 | 78 | chef_allow_local_mode (this, PartiallyCan, "具体说明是否支持项目级换源...", "Tell users the local mode support"); |
79 | 79 |
|
80 | | - // chef_allow_english(this); //项目是否支持英文 |
| 80 | + // chef_allow_english(this); // 项目是否支持英文 |
81 | 81 | chef_forbid_english(this); |
82 | 82 |
|
83 | | - // chef_allow_user_define(this); //是否支持用户自定义镜像源 |
| 83 | + // chef_allow_user_define(this); // 是否支持用户自定义镜像源 |
84 | 84 | chef_forbid_user_define(this); |
85 | 85 |
|
86 | 86 | chef_set_note ("中文备注说明...", "English note..."); |
|
143 | 143 | } |
144 | 144 |
|
145 | 145 |
|
146 | | -//最后,别忘了将自己的文件加入 menu.c 和 chsrc-main.c 之中嗷~ |
| 146 | +// 最后,请将自己的文件加入到 menu.c 和 chsrc-main.c 对应的位置 |
| 147 | +// 形式可以参考其附近的其他食谱 |
0 commit comments