cicy-desktop 2.1.242 → 2.1.244
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 +5 -5
- package/src/backends/homepage-preload.js +1 -2
- package/src/backends/homepage-react/assets/index-DqFJ0g1T.js +377 -0
- package/src/backends/homepage-react/index.html +1 -1
- package/src/backends/homepage.html +2 -0
- package/src/backends/local-teams.js +7 -1
- package/src/backends/sidecar-ipc.js +3 -70
- package/src/cloud/cloud-client.js +29 -0
- package/src/i18n/locales/en.json +30 -1
- package/src/i18n/locales/fr.json +30 -1
- package/src/i18n/locales/ja.json +30 -1
- package/src/i18n/locales/zh-CN.json +30 -1
- package/src/sidecar/cicy-code.js +1 -24
- package/src/sidecar/wsl-docker.js +0 -4
- package/workers/render/src/App.jsx +36 -90
- package/src/backends/homepage-react/assets/index-CCx0HFAk.js +0 -377
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cicy-desktop",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.244",
|
|
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.
|
|
144
|
-
"cicy-code-linux-x64": "2.3.
|
|
145
|
-
"cicy-code-linux-arm64": "2.3.
|
|
142
|
+
"cicy-code-darwin-x64": "2.3.205",
|
|
143
|
+
"cicy-code-darwin-arm64": "2.3.205",
|
|
144
|
+
"cicy-code-linux-x64": "2.3.205",
|
|
145
|
+
"cicy-code-linux-arm64": "2.3.205",
|
|
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",
|
|
@@ -133,8 +133,7 @@ contextBridge.exposeInMainWorld("cicy", {
|
|
|
133
133
|
update: () => logInvoke("sidecar:update"),
|
|
134
134
|
getPublic: () => logInvoke("sidecar:get-public"), // 局域网访问开关状态
|
|
135
135
|
setPublic: (on) => logInvoke("sidecar:set-public", on), // 设开关 + 自动重启 cicy-code
|
|
136
|
-
|
|
137
|
-
setCft: (cfg) => logInvoke("sidecar:set-cft", cfg), // 设配置 + 自动重启 cicy-code
|
|
136
|
+
tunnelStatus:() => logInvoke("tunnel:status"), // 账号套餐 {ok,tier,tunnelLimit}(级别徽章用)
|
|
138
137
|
getDood: () => logInvoke("sidecar:get-dood"), // 容器内使用 Docker(DooD)开关状态
|
|
139
138
|
setDood: (on) => logInvoke("sidecar:set-dood", on), // 设开关 + 重建容器 + 装 docker CLI
|
|
140
139
|
// live {op, phase, status, message, progress?} events during update —
|