Update template

This commit is contained in:
Aoran Zeng
2024-10-04 02:21:54 +08:00
parent d9e6840399
commit 423b041a91
22 changed files with 194 additions and 193 deletions

View File

@@ -92,19 +92,19 @@ pl_dart_flutter_setsrc (char *option)
FeatInfo
pl_dart_flutter_feat (char *option)
{
FeatInfo fi = {0};
FeatInfo f = {0};
fi.can_get = true;
fi.can_reset = false;
f.can_get = true;
f.can_reset = false;
fi.cap_locally = CanNot;
fi.locally = NULL;
fi.can_english = true;
f.cap_locally = CanNot;
f.locally = NULL;
f.can_english = true;
fi.can_user_define = true;
f.can_user_define = true;
fi.note = "该换源通过写入环境变量实现若多次换源请手动清理profile文件";
return fi;
f.note = "该换源通过写入环境变量实现若多次换源请手动清理profile文件";
return f;
}
def_target_gsf(pl_dart_flutter);

View File

@@ -85,19 +85,19 @@ pl_dart_setsrc (char *option)
FeatInfo
pl_dart_feat (char *option)
{
FeatInfo fi = {0};
FeatInfo f = {0};
fi.can_get = true;
fi.can_reset = false;
f.can_get = true;
f.can_reset = false;
fi.cap_locally = CanNot;
fi.locally = NULL;
fi.can_english = true;
f.cap_locally = CanNot;
f.locally = NULL;
f.can_english = true;
fi.can_user_define = true;
f.can_user_define = true;
fi.note = "该换源通过写入环境变量实现若多次换源请手动清理profile文件";
return fi;
f.note = "该换源通过写入环境变量实现若多次换源请手动清理profile文件";
return f;
}
def_target_gsf(pl_dart);