cicy-desktop 2.1.327 → 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 +5 -5
- package/src/backends/homepage-preload.js +8 -0
- package/src/backends/homepage-react/assets/index-CppodgBn.js +377 -0
- package/src/backends/homepage-react/index.html +1 -1
- package/src/backends/hub-client.js +6 -0
- package/src/main.js +11 -0
- package/src/tabbrowser/panel-menu-store.js +87 -0
- package/src/tabbrowser/panel-menu.js +13 -18
- package/src/tabbrowser/panel-presets.js +28 -4
- package/src/tools/index.js +1 -0
- package/src/tools/panel-menu-tools.js +80 -0
- package/src/utils/hub-trust.js +106 -34
- package/test/facebook-matrix.test.js +10 -2
- package/test/panel-menu-config.test.js +96 -0
- package/test/rpc-guard-owner-hub.test.js +17 -2
- package/workers/render/src/App.jsx +154 -0
- package/src/backends/homepage-react/assets/index-Cj1zsmOl.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.329",
|
|
4
4
|
"description": "CiCy - AI-powered operating system browser",
|
|
5
5
|
"main": "src/main.js",
|
|
6
6
|
"bin": {
|
|
@@ -144,10 +144,10 @@
|
|
|
144
144
|
"//optionalDependencies": "(2026-06 回调): mac/linux 改回 native cicy-code(:8008,colima 在 16G mac 上压垮内存)→ 重新内置 cicy-code-<plat> / cicy-mihomo-<plat>,localbin.fromBundle 零网络 seed(npm 仅作更新通道,带 npmmirror→npmjs 回退)。这些由 scripts/sync-runtime-deps.cjs 在 tag-push 时同步到最新版。npm 的 os/cpu 字段保证每个平台只装自己那份。Windows 仍走 docker(WSL :8009),它那份 cicy-code-windows 用不到但 bundle 着无害。",
|
|
145
145
|
"optionalDependencies": {
|
|
146
146
|
"electron": "41.0.3",
|
|
147
|
-
"cicy-code-darwin-x64": "2.3.
|
|
148
|
-
"cicy-code-darwin-arm64": "2.3.
|
|
149
|
-
"cicy-code-linux-x64": "2.3.
|
|
150
|
-
"cicy-code-linux-arm64": "2.3.
|
|
147
|
+
"cicy-code-darwin-x64": "2.3.596",
|
|
148
|
+
"cicy-code-darwin-arm64": "2.3.596",
|
|
149
|
+
"cicy-code-linux-x64": "2.3.596",
|
|
150
|
+
"cicy-code-linux-arm64": "2.3.596",
|
|
151
151
|
"cicy-code-windows-x64": "2.3.193",
|
|
152
152
|
"cicy-mihomo-darwin-x64": "1.10.4",
|
|
153
153
|
"cicy-mihomo-darwin-arm64": "1.10.4",
|
|
@@ -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"),
|