cicy-desktop 2.1.270 → 2.1.272

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.
@@ -67,7 +67,7 @@ jobs:
67
67
  - name: Build Linux AppImage
68
68
  shell: bash
69
69
  env:
70
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
70
+ GH_TOKEN: ${{ secrets.CICY_RELEASE_GH_TOKEN }}
71
71
  CICY_OBFUSCATE: "1" # 发版混淆 JS(prebuild 主进程 + Vite 渲染层),仅 release CI
72
72
  run: |
73
73
  set -euo pipefail
@@ -110,7 +110,7 @@ jobs:
110
110
  shell: bash
111
111
  env:
112
112
  CSC_IDENTITY_AUTO_DISCOVERY: "false"
113
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
113
+ GH_TOKEN: ${{ secrets.CICY_RELEASE_GH_TOKEN }}
114
114
  CICY_OBFUSCATE: "1" # 发版混淆 JS(prebuild 主进程 + Vite 渲染层),仅 release CI
115
115
  run: |
116
116
  set -euo pipefail
@@ -136,12 +136,11 @@ jobs:
136
136
  - name: Ensure draft GitHub release exists
137
137
  shell: bash
138
138
  env:
139
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
139
+ GH_TOKEN: ${{ secrets.CICY_RELEASE_GH_TOKEN }}
140
140
  run: |
141
141
  gh release create "${{ steps.meta.outputs.tag }}" \
142
- --repo "$GITHUB_REPOSITORY" \
142
+ --repo "cicy-ai/cicy-desktop" \
143
143
  --title "CiCy Desktop v${{ steps.meta.outputs.version }}" \
144
- --target "$GITHUB_SHA" \
145
144
  --generate-notes \
146
145
  --draft \
147
146
  2>/dev/null || echo "release already exists, continuing"
@@ -149,7 +148,7 @@ jobs:
149
148
  - name: Build and publish PKG installers
150
149
  shell: bash
151
150
  env:
152
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
151
+ GH_TOKEN: ${{ secrets.CICY_RELEASE_GH_TOKEN }}
153
152
  run: |
154
153
  set -euo pipefail
155
154
  VER="${{ steps.meta.outputs.version }}"
@@ -184,7 +183,7 @@ jobs:
184
183
  pkgbuild --root "$ROOT" --component-plist "$PLIST" --scripts "$SCR" \
185
184
  --identifier com.cicy.desktop --version "$VER" --install-location / "$PKG"
186
185
  gh release upload "${{ steps.meta.outputs.tag }}" "$PKG" \
187
- --repo "$GITHUB_REPOSITORY" --clobber
186
+ --repo "cicy-ai/cicy-desktop" --clobber
188
187
  echo "uploaded $PKG ($(du -h "$PKG" | cut -f1))"
189
188
  done
190
189
 
@@ -72,12 +72,11 @@ jobs:
72
72
  # uploaded. Promoted to non-draft + latest in the final step.
73
73
  shell: bash
74
74
  env:
75
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
75
+ GH_TOKEN: ${{ secrets.CICY_RELEASE_GH_TOKEN }}
76
76
  run: |
77
77
  gh release create "${{ steps.meta.outputs.tag }}" \
78
- --repo "$GITHUB_REPOSITORY" \
78
+ --repo "cicy-ai/cicy-desktop" \
79
79
  --title "CiCy Desktop v${{ steps.meta.outputs.version }}" \
80
- --target "$GITHUB_SHA" \
81
80
  --generate-notes \
82
81
  --draft \
83
82
  2>/dev/null || echo "release already exists, continuing"
@@ -86,7 +85,7 @@ jobs:
86
85
  # --publish always uploads .exe + latest.yml to the release created above.
87
86
  shell: powershell
88
87
  env:
89
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
88
+ GH_TOKEN: ${{ secrets.CICY_RELEASE_GH_TOKEN }}
90
89
  CICY_OBFUSCATE: "1" # 发版混淆 JS(prebuild 主进程 + Vite 渲染层),仅 release CI
91
90
  run: |
92
91
  if (Test-Path dist) { Remove-Item -Recurse -Force dist }
@@ -177,9 +176,9 @@ jobs:
177
176
  # existing clients will pick up the new version on its next poll.
178
177
  shell: bash
179
178
  env:
180
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
179
+ GH_TOKEN: ${{ secrets.CICY_RELEASE_GH_TOKEN }}
181
180
  run: |
182
181
  gh release edit "${{ steps.meta.outputs.tag }}" \
183
- --repo "$GITHUB_REPOSITORY" \
182
+ --repo "cicy-ai/cicy-desktop" \
184
183
  --draft=false \
185
184
  --latest
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cicy-desktop",
3
- "version": "2.1.270",
3
+ "version": "2.1.272",
4
4
  "description": "CiCy - AI-powered operating system browser",
5
5
  "main": "src/main.js",
6
6
  "bin": {
@@ -143,10 +143,10 @@
143
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 着无害。",
144
144
  "optionalDependencies": {
145
145
  "electron": "41.0.3",
146
- "cicy-code-darwin-x64": "2.3.405",
147
- "cicy-code-darwin-arm64": "2.3.405",
148
- "cicy-code-linux-x64": "2.3.405",
149
- "cicy-code-linux-arm64": "2.3.405",
146
+ "cicy-code-darwin-x64": "2.3.546",
147
+ "cicy-code-darwin-arm64": "2.3.546",
148
+ "cicy-code-linux-x64": "2.3.546",
149
+ "cicy-code-linux-arm64": "2.3.546",
150
150
  "cicy-code-windows-x64": "2.3.193",
151
151
  "cicy-mihomo-darwin-x64": "1.10.4",
152
152
  "cicy-mihomo-darwin-arm64": "1.10.4",