在 Makelore 构建并预检静态发布产物

This commit is contained in:
2026-08-12 21:19:39 +08:00
parent 3a80625fe2
commit 5b44864265
26 changed files with 1275 additions and 217 deletions

View File

@@ -57,7 +57,7 @@ function failureFromVersion(version: BuildVersion): WorksPublishFailure {
}
function buttonLabel(phase: PublishPhase): string {
if (phase === 'submitting') return '正在检查并提交…';
if (phase === 'submitting') return '正在生成本次构建结果…';
if (phase === 'polling') return '正在等待云端检查…';
if (phase === 'succeeded') return '已提交,等待运营审核';
if (phase === 'uncertain') return '已提交,请稍后查看';
@@ -181,9 +181,9 @@ export function ProjectPublishAction({ project, projectType }: ProjectPublishAct
className="max-w-md text-xs font-medium text-muted-foreground"
>
{phase === 'submitting'
? 'Makelore 正在自动检查、打包并提交项目,不需要准备 ZIP。'
? 'Makelore 正在本地安装依赖、生成本次构建结果并提交,不需要准备 ZIP。'
: phase === 'polling'
? '本地预览检查已完成,项目已上传,正在等待云端受控构建与平台校验。'
? '本次构建结果已通过本地预览检查并上传,正在等待平台校验。'
: '已提交,等待运营审核。审核通过后会直接发布。'}
</p>
) : null}