同步 AGC 0.1.6 主线
Project CI / Repository checks (pull_request) Successful in 3m52s
Project CI / Frontend tests (pull_request) Successful in 4m57s
Project CI / Backend tests (pull_request) Successful in 6m32s
Project CI / Native shell tests (pull_request) Successful in 15m32s

合并最新 master 的标准版版本升级

保留 Game Chat 完全删除并更新版本一致性门禁

纳入资源编辑与直接运行时修复
This commit is contained in:
2026-08-25 15:28:36 +08:00
11 changed files with 75 additions and 22 deletions
+1 -1
View File
@@ -174,7 +174,7 @@ export function collectNpmWorkspaceErrors(rootDir) {
);
}
const expectedWorkspaceVersion =
workspacePath === 'apps/ai-game-creator-shell' ? '0.1.5' : '0.1.0';
workspacePath === 'apps/ai-game-creator-shell' ? '0.1.6' : '0.1.0';
if (manifest.version !== expectedWorkspaceVersion) {
errors.push(
`${manifestPath}: workspace version must be ${expectedWorkspaceVersion}`,
+1 -1
View File
@@ -79,7 +79,7 @@ function createValidFixture() {
name: workspaceNames[workspacePath],
private: true,
version:
workspacePath === 'apps/ai-game-creator-shell' ? '0.1.5' : '0.1.0',
workspacePath === 'apps/ai-game-creator-shell' ? '0.1.6' : '0.1.0',
dependencies: localDependencies[workspacePath],
};
writeJson(rootDir, `${workspacePath}/package.json`, manifest);