cicy-desktop 2.1.328 → 2.1.329

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.328",
3
+ "version": "2.1.329",
4
4
  "description": "CiCy - AI-powered operating system browser",
5
5
  "main": "src/main.js",
6
6
  "bin": {
@@ -316,6 +316,14 @@ contextBridge.exposeInMainWorld("cicy", {
316
316
  cloud: {
317
317
  fetch: (url, opts) => logInvoke("cloud:fetch", { url, ...(opts || {}) }),
318
318
  },
319
+ // "+ 面板" dropdown config — which panels the menu offers, in what order, under
320
+ // what name. get() returns every built-in with its current title/enabled state
321
+ // (so the settings UI can render the full list, not just the enabled ones);
322
+ // set() persists and returns the merged result.
323
+ panelMenu: {
324
+ get: () => logInvoke("panelMenu:get"),
325
+ set: (items) => logInvoke("panelMenu:set", items),
326
+ },
319
327
  // CiCy Hub — email sign-in, then every cicy-code instance of that account.
320
328
  hub: {
321
329
  status: () => logInvoke("hub:status"),