Compare commits

...
3 Commits
Author SHA1 Message Date
cneicy 0dfdcca9ba fix(workspace): pin UniTask consumer source
Validate ShrinkSDK Workspace / unity (push) Failing after 2m28s
2026-08-26 06:48:31 +08:00
cneicy d1f0f44bd6 fix(installer): publish manifest-based bootstrap 2026-08-26 06:48:14 +08:00
cneicy 9c17781bbf ci(workspace): stabilize standalone package hosts 2026-08-26 06:47:35 +08:00
27 changed files with 34 additions and 28 deletions
+1 -1
View File
@@ -104,7 +104,7 @@ ShrinkSDK Workspace/
| `com.cneicy.shrink-network-integration-eventbus` | 0.1.1 | 网络事件广播、裁决结果与 delta 去重 |
| `com.cneicy.shrink-network-integration-app` | 0.1.0 | Network App installer/原生 Context 组件 |
| `com.cneicy.shrink-shared-codegen` | 0.1.0 | App、Command、Network 共用的 Editor-only IL 后处理注册表生成器 |
| `com.cneicy.shrink-installer` | 0.1.2 | 安全合并公开 registry、显示诊断并固定版本安装 Starter 或选定模块的 Editor 引导包 |
| `com.cneicy.shrink-installer` | 0.1.3 | 安全合并公开 registry、显示诊断并固定版本安装 Starter 或选定模块的 Editor 引导包 |
`ShrinkShared.CodeGen` 不反向引用业务 asmdef,只按程序集名与类型全名读取 Cecil 元数据,因此业务包可以依赖它而不形成包循环。
+1 -1
View File
@@ -1,6 +1,6 @@
{
"dependencies": {
"com.cysharp.unitask": "https://github.com/Cysharp/UniTask.git?path=src/UniTask/Assets/Plugins/UniTask",
"com.cysharp.unitask": "https://github.com/Cysharp/UniTask.git?path=src/UniTask/Assets/Plugins/UniTask#7c0f199fe0d3fc528024488ccd671e6c7b27745b",
"com.gamebooom.unity.mcp": "https://github.com/FunplayAI/funplay-unity-mcp.git",
"com.unity.collab-proxy": "2.12.4",
"com.unity.entities": "1.0.11",
+2 -2
View File
@@ -1,11 +1,11 @@
{
"dependencies": {
"com.cysharp.unitask": {
"version": "https://github.com/Cysharp/UniTask.git?path=src/UniTask/Assets/Plugins/UniTask",
"version": "https://github.com/Cysharp/UniTask.git?path=src/UniTask/Assets/Plugins/UniTask#7c0f199fe0d3fc528024488ccd671e6c7b27745b",
"depth": 0,
"source": "git",
"dependencies": {},
"hash": "a9e27c03d411d2fca01cc7410c24c97cd77cb539"
"hash": "7c0f199fe0d3fc528024488ccd671e6c7b27745b"
},
"com.gamebooom.unity.mcp": {
"version": "https://github.com/FunplayAI/funplay-unity-mcp.git",
+2 -2
View File
@@ -37,9 +37,9 @@ https://git.crash.work/ShrinkSDK/ShrinkEventBus.git#v2.0.0
也可先通过固定标签安装 Editor 引导包:
```text
https://git.crash.work/ShrinkSDK/Installer.git#v0.1.2
https://git.crash.work/ShrinkSDK/Installer.git#v0.1.3
```
随后在 Unity 打开 `ShrinkSDK/Packages`。安装器只合并 `com.cneicy` registry 并安装内置目录中的固定版本不写认证信息不复制模板到 `Assets`
随后在 Unity 打开 `ShrinkSDK/Packages`。安装器只合并 `com.cneicy` registry,并将内置目录中的固定版本及其必要的固定 UniTask revision 写入 manifest;它不写认证信息,也不复制模板到 `Assets`
发布、子模块迁移和独立开发宿主生成规则位于 [Tools/RepositoryMigration/Initialize-ShrinkSdkPackageRepositories.ps1](Tools/RepositoryMigration/Initialize-ShrinkSdkPackageRepositories.ps1)。架构约束与跨包验证要求见 [DESIGN.md](DESIGN.md)。
@@ -240,6 +240,11 @@ jobs:
shell: bash
run: |
set -eu
machine_id_file="/root/.local/share/unity3d/Unity/.machine-id"
if test -s "$machine_id_file"; then
cat "$machine_id_file" > /etc/machine-id
echo "Unity machine identity restored"
fi
unity_bin="$(command -v unity-editor || command -v unity || command -v Unity || true)"
test -n "$unity_bin"
"$unity_bin" \
@@ -265,6 +270,7 @@ jobs:
)
dependencies = [ordered]@{
'com.unity.test-framework' = '1.1.33'
'com.cysharp.unitask' = 'https://github.com/Cysharp/UniTask.git?path=src/UniTask/Assets/Plugins/UniTask#7c0f199fe0d3fc528024488ccd671e6c7b27745b'
$PackageName = 'file:../../..'
}
}
@@ -179,7 +179,7 @@ if (Test-Path -LiteralPath $consumerRoot) {
New-Item -ItemType Directory -Path $packagesPath, $assetsEditorPath, $projectSettingsPath -Force | Out-Null
$dependencies = [ordered]@{
'com.cysharp.unitask' = 'https://github.com/Cysharp/UniTask.git?path=src/UniTask/Assets/Plugins/UniTask'
'com.cysharp.unitask' = 'https://github.com/Cysharp/UniTask.git?path=src/UniTask/Assets/Plugins/UniTask#7c0f199fe0d3fc528024488ccd671e6c7b27745b'
'com.unity.nuget.newtonsoft-json' = '3.2.2'
'com.unity.test-framework' = '1.1.33'
'com.unity.textmeshpro' = '3.0.7'