cicy-desktop 2.1.141 → 2.1.142
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 +1 -1
- package/src/backends/homepage-preload.js +1 -0
- package/src/backends/homepage-react/assets/index-DVdvubOy.js +377 -0
- package/src/backends/homepage-react/index.html +1 -1
- package/src/backends/sidecar-ipc.js +10 -0
- package/src/sidecar/wsl-docker.js +53 -41
- package/workers/render/src/App.jsx +28 -6
- package/src/backends/homepage-react/assets/index-TR02tbIs.js +0 -377
package/package.json
CHANGED
|
@@ -160,6 +160,7 @@ contextBridge.exposeInMainWorld("cicy", {
|
|
|
160
160
|
// Docker (if missing, installer → Desktop) + starts the :8009 container,
|
|
161
161
|
// streaming phase/progress on 'docker:app-progress'.
|
|
162
162
|
appStatus: () => logInvoke("docker:app-status"),
|
|
163
|
+
appRedetect: () => logInvoke("docker:app-redetect"), // 「重试检测」: FORCE a fresh probe (appStatus only reads cache)
|
|
163
164
|
appBootstrap: () => logInvoke("docker:app-bootstrap"),
|
|
164
165
|
appRestart: () => logInvoke("docker:app-restart"), // supervisorctl 重启 cicy-code
|
|
165
166
|
appDockerRestart: () => logInvoke("docker:app-docker-restart"), // docker restart 整个容器
|