cicy-desktop 2.1.112 → 2.1.114

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.112",
3
+ "version": "2.1.114",
4
4
  "description": "CiCy - AI-powered operating system browser",
5
5
  "main": "src/main.js",
6
6
  "bin": {
@@ -164,6 +164,8 @@ contextBridge.exposeInMainWorld("cicy", {
164
164
  appRestart: () => logInvoke("docker:app-restart"),
165
165
  appStop: () => logInvoke("docker:app-stop"),
166
166
  appUpgrade: () => logInvoke("docker:app-upgrade"),
167
+ // Open :8009 with the live container token (refuses if it can't read it).
168
+ appOpen: () => logInvoke("docker:app-open"),
167
169
  onAppProgress: (cb) => {
168
170
  const handler = (_e, ev) => { try { cb(ev); } catch {} };
169
171
  ipcRenderer.on("docker:app-progress", handler);