cicy-desktop 2.1.160 → 2.1.161

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.160",
3
+ "version": "2.1.161",
4
4
  "description": "CiCy - AI-powered operating system browser",
5
5
  "main": "src/main.js",
6
6
  "bin": {
@@ -155,9 +155,9 @@ contextBridge.exposeInMainWorld("cicy", {
155
155
  ipcRenderer.on("docker:bootstrap-progress", handler);
156
156
  return () => ipcRenderer.removeListener("docker:bootstrap-progress", handler);
157
157
  },
158
- // Docker-版 cicy-code on :8009 (the homepage "Docker cicy-code" card).
158
+ // Docker-版 cicy-code on :8008 (the homepage "Docker cicy-code" card).
159
159
  // appStatus → { installed, running, port, platform }; appBootstrap installs
160
- // Docker (if missing, installer → Desktop) + starts the :8009 container,
160
+ // Docker (if missing, installer → Desktop) + starts the :8008 container,
161
161
  // streaming phase/progress on 'docker:app-progress'.
162
162
  appStatus: () => logInvoke("docker:app-status"),
163
163
  appRedetect: () => logInvoke("docker:app-redetect"), // 「重试检测」: FORCE a fresh probe (appStatus only reads cache)
@@ -168,7 +168,7 @@ contextBridge.exposeInMainWorld("cicy", {
168
168
  appUpdate: () => logInvoke("docker:app-update"),
169
169
  appStop: () => logInvoke("docker:app-stop"),
170
170
  appUpgrade: () => logInvoke("docker:app-upgrade"),
171
- // Open :8009 with the live container token (refuses if it can't read it).
171
+ // Open :8008 with the live container token (refuses if it can't read it).
172
172
  appOpen: () => logInvoke("docker:app-open"),
173
173
  onAppProgress: (cb) => {
174
174
  const handler = (_e, ev) => { try { cb(ev); } catch {} };