cicy-desktop 2.1.265 → 2.1.267
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/build/icon.icns +0 -0
- package/build/icon.ico +0 -0
- package/build/icon.png +0 -0
- package/build/icon.svg +32 -8
- package/build/icons/icon-1024.png +0 -0
- package/build/icons/icon-128.png +0 -0
- package/build/icons/icon-16.png +0 -0
- package/build/icons/icon-24.png +0 -0
- package/build/icons/icon-256.png +0 -0
- package/build/icons/icon-32.png +0 -0
- package/build/icons/icon-48.png +0 -0
- package/build/icons/icon-512.png +0 -0
- package/build/icons/icon-64.png +0 -0
- package/build/icons/icon-96.png +0 -0
- package/build/icons/trayTemplate-16.png +0 -0
- package/build/icons/trayTemplate-16@2x.png +0 -0
- package/build/icons/trayTemplate-22.png +0 -0
- package/build/icons/trayTemplate-22@2x.png +0 -0
- package/build/icons/trayTemplate-32.png +0 -0
- package/build/icons/trayTemplate-32@2x.png +0 -0
- package/build/trayIcon.png +0 -0
- package/build/trayIcon.svg +27 -0
- package/build/trayTemplate.png +0 -0
- package/build/trayTemplate.svg +22 -11
- package/build/trayTemplate@2x.png +0 -0
- package/package.json +9 -5
- package/src/backends/homepage-react/assets/{index-BdDyCznZ.js → index-phbKLx1E.js} +14 -14
- package/src/backends/homepage-react/favicon-256.png +0 -0
- package/src/backends/homepage-react/favicon.svg +7 -8
- package/src/backends/homepage-react/index.html +1 -1
- package/src/backends/ipc.js +2 -2
- package/src/tools/tab-browser-tools.js +2 -2
- package/src/tray.js +4 -2
- package/workers/render/public/favicon-256.png +0 -0
- package/workers/render/public/favicon.svg +7 -8
- package/workers/render/src/App.css +1 -1
- package/workers/render/src/App.jsx +26 -12
package/build/icon.icns
CHANGED
|
Binary file
|
package/build/icon.ico
CHANGED
|
Binary file
|
package/build/icon.png
CHANGED
|
Binary file
|
package/build/icon.svg
CHANGED
|
@@ -1,12 +1,36 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="none">
|
|
2
2
|
<defs>
|
|
3
|
-
<linearGradient id="
|
|
4
|
-
<stop stop-color="#
|
|
5
|
-
<stop offset="
|
|
6
|
-
<stop offset="1" stop-color="#1E3A8A"/>
|
|
3
|
+
<linearGradient id="orbit" x1="118" y1="104" x2="397" y2="407" gradientUnits="userSpaceOnUse">
|
|
4
|
+
<stop stop-color="#7772D8"/>
|
|
5
|
+
<stop offset="1" stop-color="#3F82B8"/>
|
|
7
6
|
</linearGradient>
|
|
7
|
+
<filter id="shadow" x="8" y="12" width="496" height="500" filterUnits="userSpaceOnUse">
|
|
8
|
+
<feDropShadow dx="0" dy="10" stdDeviation="12" flood-color="#111827" flood-opacity="0.18"/>
|
|
9
|
+
</filter>
|
|
8
10
|
</defs>
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
11
|
+
|
|
12
|
+
<!-- White rounded application tile; transparent corners preserve the native
|
|
13
|
+
macOS/Windows icon silhouette. -->
|
|
14
|
+
<rect x="32" y="26" width="448" height="448" rx="104" fill="#FFFFFF"
|
|
15
|
+
stroke="#E5E7EB" stroke-width="4" filter="url(#shadow)"/>
|
|
16
|
+
|
|
17
|
+
<!-- CiCy mark from the supplied logo.svg, kept geometrically unchanged. -->
|
|
18
|
+
<path d="M256 68
|
|
19
|
+
311 161
|
|
20
|
+
419 162
|
|
21
|
+
366 256
|
|
22
|
+
419 350
|
|
23
|
+
311 351
|
|
24
|
+
256 444
|
|
25
|
+
201 351
|
|
26
|
+
93 350
|
|
27
|
+
146 256
|
|
28
|
+
93 162
|
|
29
|
+
201 161
|
|
30
|
+
256 68Z"
|
|
31
|
+
stroke="url(#orbit)"
|
|
32
|
+
stroke-width="52"
|
|
33
|
+
stroke-linecap="round"
|
|
34
|
+
stroke-linejoin="round"/>
|
|
35
|
+
<circle cx="256" cy="256" r="30" fill="url(#orbit)"/>
|
|
12
36
|
</svg>
|
|
Binary file
|
package/build/icons/icon-128.png
CHANGED
|
Binary file
|
package/build/icons/icon-16.png
CHANGED
|
Binary file
|
package/build/icons/icon-24.png
CHANGED
|
Binary file
|
package/build/icons/icon-256.png
CHANGED
|
Binary file
|
package/build/icons/icon-32.png
CHANGED
|
Binary file
|
package/build/icons/icon-48.png
CHANGED
|
Binary file
|
package/build/icons/icon-512.png
CHANGED
|
Binary file
|
package/build/icons/icon-64.png
CHANGED
|
Binary file
|
package/build/icons/icon-96.png
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="none">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="orbit" x1="118" y1="104" x2="397" y2="407" gradientUnits="userSpaceOnUse">
|
|
4
|
+
<stop stop-color="#7772D8"/>
|
|
5
|
+
<stop offset="1" stop-color="#3F82B8"/>
|
|
6
|
+
</linearGradient>
|
|
7
|
+
</defs>
|
|
8
|
+
<!-- Colored transparent tray variant for Windows/Linux. -->
|
|
9
|
+
<path d="M256 68
|
|
10
|
+
311 161
|
|
11
|
+
419 162
|
|
12
|
+
366 256
|
|
13
|
+
419 350
|
|
14
|
+
311 351
|
|
15
|
+
256 444
|
|
16
|
+
201 351
|
|
17
|
+
93 350
|
|
18
|
+
146 256
|
|
19
|
+
93 162
|
|
20
|
+
201 161
|
|
21
|
+
256 68Z"
|
|
22
|
+
stroke="url(#orbit)"
|
|
23
|
+
stroke-width="52"
|
|
24
|
+
stroke-linecap="round"
|
|
25
|
+
stroke-linejoin="round"/>
|
|
26
|
+
<circle cx="256" cy="256" r="30" fill="url(#orbit)"/>
|
|
27
|
+
</svg>
|
package/build/trayTemplate.png
CHANGED
|
Binary file
|
package/build/trayTemplate.svg
CHANGED
|
@@ -1,12 +1,23 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="none">
|
|
2
|
+
<!-- Monochrome transparent tray variant of the supplied CiCy logo.
|
|
3
|
+
Electron marks this as a macOS Template image, so black is recolored by
|
|
4
|
+
the system for light/dark menu bars. Never add a background here. -->
|
|
5
|
+
<path d="M256 68
|
|
6
|
+
311 161
|
|
7
|
+
419 162
|
|
8
|
+
366 256
|
|
9
|
+
419 350
|
|
10
|
+
311 351
|
|
11
|
+
256 444
|
|
12
|
+
201 351
|
|
13
|
+
93 350
|
|
14
|
+
146 256
|
|
15
|
+
93 162
|
|
16
|
+
201 161
|
|
17
|
+
256 68Z"
|
|
18
|
+
stroke="#000000"
|
|
19
|
+
stroke-width="52"
|
|
20
|
+
stroke-linecap="round"
|
|
21
|
+
stroke-linejoin="round"/>
|
|
22
|
+
<circle cx="256" cy="256" r="30" fill="#000000"/>
|
|
12
23
|
</svg>
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cicy-desktop",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.267",
|
|
4
4
|
"description": "CiCy - AI-powered operating system browser",
|
|
5
5
|
"main": "src/main.js",
|
|
6
6
|
"bin": {
|
|
@@ -58,6 +58,10 @@
|
|
|
58
58
|
"from": "build/trayTemplate@2x.png",
|
|
59
59
|
"to": "build/trayTemplate@2x.png"
|
|
60
60
|
},
|
|
61
|
+
{
|
|
62
|
+
"from": "build/trayIcon.png",
|
|
63
|
+
"to": "build/trayIcon.png"
|
|
64
|
+
},
|
|
61
65
|
{
|
|
62
66
|
"from": "build/icon.ico",
|
|
63
67
|
"to": "build/icon.ico"
|
|
@@ -139,10 +143,10 @@
|
|
|
139
143
|
"//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 着无害。",
|
|
140
144
|
"optionalDependencies": {
|
|
141
145
|
"electron": "41.0.3",
|
|
142
|
-
"cicy-code-darwin-x64": "2.3.
|
|
143
|
-
"cicy-code-darwin-arm64": "2.3.
|
|
144
|
-
"cicy-code-linux-x64": "2.3.
|
|
145
|
-
"cicy-code-linux-arm64": "2.3.
|
|
146
|
+
"cicy-code-darwin-x64": "2.3.394",
|
|
147
|
+
"cicy-code-darwin-arm64": "2.3.394",
|
|
148
|
+
"cicy-code-linux-x64": "2.3.394",
|
|
149
|
+
"cicy-code-linux-arm64": "2.3.394",
|
|
146
150
|
"cicy-code-windows-x64": "2.3.193",
|
|
147
151
|
"cicy-mihomo-darwin-x64": "1.10.4",
|
|
148
152
|
"cicy-mihomo-darwin-arm64": "1.10.4",
|