cicy-desktop 2.1.177 → 2.1.179
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 +6 -6
- package/src/backends/homepage-preload.js +2 -1
- package/src/backends/homepage-react/assets/index-DhqT69Bv.js +377 -0
- package/src/backends/homepage-react/index.html +1 -1
- package/src/backends/sidecar-ipc.js +45 -20
- package/src/sidecar/colima-docker.js +54 -14
- package/src/sidecar/host-mihomo.js +150 -0
- package/src/sidecar/wsl-docker.js +15 -12
- package/workers/render/src/App.css +1 -1
- package/workers/render/src/App.jsx +36 -15
- package/src/backends/homepage-react/assets/index-CidhpFO8.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.179",
|
|
4
4
|
"description": "CiCy - AI-powered operating system browser",
|
|
5
5
|
"main": "src/main.js",
|
|
6
6
|
"bin": {
|
|
@@ -140,11 +140,11 @@
|
|
|
140
140
|
"//optionalDependencies": "docker-only(主人): host cicy-code/mihomo 二进制不再内置 —— cicy-code + mihomo 都只在 docker 容器里跑(npm 装/镜像预装),host 永远不起,所以去掉了 cicy-code-<plat> / cicy-mihomo-<plat> 子包。只留 electron。",
|
|
141
141
|
"optionalDependencies": {
|
|
142
142
|
"electron": "41.0.3",
|
|
143
|
-
"cicy-code-darwin-x64": "2.3.
|
|
144
|
-
"cicy-code-darwin-arm64": "2.3.
|
|
145
|
-
"cicy-code-linux-x64": "2.3.
|
|
146
|
-
"cicy-code-linux-arm64": "2.3.
|
|
147
|
-
"cicy-code-windows-x64": "2.3.
|
|
143
|
+
"cicy-code-darwin-x64": "2.3.22",
|
|
144
|
+
"cicy-code-darwin-arm64": "2.3.22",
|
|
145
|
+
"cicy-code-linux-x64": "2.3.22",
|
|
146
|
+
"cicy-code-linux-arm64": "2.3.22",
|
|
147
|
+
"cicy-code-windows-x64": "2.3.22",
|
|
148
148
|
"cicy-mihomo-darwin-x64": "1.10.4",
|
|
149
149
|
"cicy-mihomo-darwin-arm64": "1.10.4",
|
|
150
150
|
"cicy-mihomo-linux-x64": "1.10.4",
|
|
@@ -165,7 +165,8 @@ contextBridge.exposeInMainWorld("cicy", {
|
|
|
165
165
|
appRestart: () => logInvoke("docker:app-restart"), // supervisorctl 重启 cicy-code
|
|
166
166
|
appDockerRestart: () => logInvoke("docker:app-docker-restart"), // docker restart 整个容器
|
|
167
167
|
appRecreate: () => logInvoke("docker:app-recreate"), // 删容器+重建(换 key,需 confirm)
|
|
168
|
-
|
|
168
|
+
appAuthorizeHostSsh: () => logInvoke("docker:app-authorize-host-ssh"), // 仅 macOS:授权容器经 SSH 访问 Mac
|
|
169
|
+
appChromeProxy: (on) => logInvoke("docker:app-chrome-proxy", on), // 开关:宿主 mihomo 给系统 Chrome 当 per-profile 代理
|
|
169
170
|
appUpdate: () => logInvoke("docker:app-update"),
|
|
170
171
|
appStop: () => logInvoke("docker:app-stop"),
|
|
171
172
|
appUpgrade: () => logInvoke("docker:app-upgrade"),
|