feat: Scheme 显示名称、打包结果按类型显示、错误分类

- Scheme 配置新增 displayName 字段,下拉框和任务列表显示友好名称
- Ad_Hoc 类型显示下载二维码,App_Store 类型显示 IPA 下载链接
- 新增 error_category 错误分类(证书/描述文件/编译/依赖等)
- 打包服务增加详细错误分析和分类
This commit is contained in:
shen
2026-06-07 09:23:43 +08:00
parent 6f4f625c56
commit 898ec01560
8 changed files with 426 additions and 28 deletions
+1
View File
@@ -34,6 +34,7 @@ class TaskResponse(BaseModel):
qr_code_path: Optional[str]
build_dir: Optional[str]
error_message: Optional[str]
error_category: Optional[str] = None
config_json: Optional[str]
class Config: