cicy-desktop 2.1.261 → 2.1.262
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cicy-desktop",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.262",
|
|
4
4
|
"description": "CiCy - AI-powered operating system browser",
|
|
5
5
|
"main": "src/main.js",
|
|
6
6
|
"bin": {
|
|
@@ -139,10 +139,10 @@
|
|
|
139
139
|
"//optionalDependencies": "(2026-06 回调): mac/linux 改回 native cicy-code(:8008,colima 在 16G mac 上压垮内存)→ 重新内置 cicy-code-<plat> / cicy-mihomo-<plat>,localbin.fromBundle 零网络 seed(npm 仅作更新通道,带 npmmirror→npmjs 回退)。这些由 scripts/sync-runtime-deps.cjs 在 tag-push 时同步到最新版。npm 的 os/cpu 字段保证每个平台只装自己那份。Windows 仍走 docker(WSL :8009),它那份 cicy-code-windows 用不到但 bundle 着无害。",
|
|
140
140
|
"optionalDependencies": {
|
|
141
141
|
"electron": "41.0.3",
|
|
142
|
-
"cicy-code-darwin-x64": "2.3.
|
|
143
|
-
"cicy-code-darwin-arm64": "2.3.
|
|
142
|
+
"cicy-code-darwin-x64": "2.3.332",
|
|
143
|
+
"cicy-code-darwin-arm64": "2.3.332",
|
|
144
144
|
"cicy-code-linux-x64": "2.3.331",
|
|
145
|
-
"cicy-code-linux-arm64": "2.3.
|
|
145
|
+
"cicy-code-linux-arm64": "2.3.332",
|
|
146
146
|
"cicy-code-windows-x64": "2.3.193",
|
|
147
147
|
"cicy-mihomo-darwin-x64": "1.10.4",
|
|
148
148
|
"cicy-mihomo-darwin-arm64": "1.10.4",
|
package/src/sidecar/docker.js
CHANGED
|
@@ -35,7 +35,7 @@ const DOCKER_DESKTOP_MIRROR = process.env.CICY_DOCKER_DESKTOP_MIRROR
|
|
|
35
35
|
const PASS_ENV = [
|
|
36
36
|
"CICY_TEAM_TOKEN", "CICY_CODE_VERSION", "NPM_REGISTRY", "CICY_NPM_REGISTRY",
|
|
37
37
|
"CICY_AGENTS", "ENABLE_CDN", "CICY_CLOUDFLARED_TOKEN",
|
|
38
|
-
"CICY_CLOUD_EMAIL", "CICY_CLOUD_TEAM_ID",
|
|
38
|
+
"CICY_CLOUD_EMAIL", "CICY_CLOUD_TEAM_ID", "CICY_CFT",
|
|
39
39
|
];
|
|
40
40
|
|
|
41
41
|
// Resolve the docker CLI. CRITICAL on Windows: right after Docker Desktop
|
|
@@ -675,7 +675,7 @@ async function runContainer({ port = 8008, container = "cicy-code-docker", volum
|
|
|
675
675
|
// Without this, Desktop starts a healthy cicy-code that never registers the
|
|
676
676
|
// requested Cloud account/team even though the variables exist on Windows.
|
|
677
677
|
const inheritedCloudEnv = {};
|
|
678
|
-
for (const key of ["CICY_CLOUD_EMAIL", "CICY_CLOUD_TEAM_ID"]) {
|
|
678
|
+
for (const key of ["CICY_CLOUD_EMAIL", "CICY_CLOUD_TEAM_ID", "CICY_CFT"]) {
|
|
679
679
|
if (process.env[key]) inheritedCloudEnv[key] = process.env[key];
|
|
680
680
|
}
|
|
681
681
|
const envArgs = Object.entries({ ...inheritedCloudEnv, ...(env || {}) })
|