@pixelbyte-software/pixcode 1.36.0 → 1.36.2
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/README.md +15 -0
- package/README.tr.md +15 -0
- package/dist/assets/{index-OkHfhUMk.js → index-B1PlYTuj.js} +167 -167
- package/dist/assets/{index-BzRaZegN.css → index-Dx7QyTSN.css} +1 -1
- package/dist/index.html +2 -2
- package/dist/openapi.yaml +1 -1
- package/dist/sw.js +8 -0
- package/dist-server/server/modules/orchestration/workflows/workflow.routes.js +27 -2
- package/dist-server/server/modules/orchestration/workflows/workflow.routes.js.map +1 -1
- package/dist-server/server/modules/providers/list/opencode/opencode-sessions.provider.js +60 -3
- package/dist-server/server/modules/providers/list/opencode/opencode-sessions.provider.js.map +1 -1
- package/dist-server/server/opencode-cli.js +24 -1
- package/dist-server/server/opencode-cli.js.map +1 -1
- package/dist-server/server/opencode-response-handler.js +4 -0
- package/dist-server/server/opencode-response-handler.js.map +1 -1
- package/dist-server/server/routes/agent.js +7 -4
- package/dist-server/server/routes/agent.js.map +1 -1
- package/package.json +2 -1
- package/scripts/smoke/provider-rest-api.mjs +124 -0
- package/server/modules/orchestration/workflows/workflow.routes.ts +29 -2
- package/server/modules/providers/list/opencode/opencode-sessions.provider.ts +57 -3
- package/server/opencode-cli.js +24 -1
- package/server/opencode-response-handler.js +4 -0
- package/server/routes/agent.js +6 -3
package/README.md
CHANGED
|
@@ -203,6 +203,21 @@ Download desktop builds from GitHub releases:
|
|
|
203
203
|
|
|
204
204
|
Releases: <https://github.com/alicomert/pixcode/releases/latest>
|
|
205
205
|
|
|
206
|
+
#### macOS Gatekeeper: "Pixcode is damaged"
|
|
207
|
+
|
|
208
|
+
Current macOS desktop builds are unsigned. If macOS says `Pixcode is damaged and can't be opened. You should move it to the Trash`, first make sure the DMG came from the official Pixcode GitHub Releases page, then:
|
|
209
|
+
|
|
210
|
+
1. Open the DMG and drag `Pixcode.app` into `/Applications`.
|
|
211
|
+
2. Double-click `Fix Gatekeeper.command` inside the mounted DMG.
|
|
212
|
+
3. Pixcode will remove the quarantine flag from `/Applications/Pixcode.app` and open normally.
|
|
213
|
+
|
|
214
|
+
Manual fallback:
|
|
215
|
+
|
|
216
|
+
```bash
|
|
217
|
+
xattr -dr com.apple.quarantine "/Applications/Pixcode.app"
|
|
218
|
+
open "/Applications/Pixcode.app"
|
|
219
|
+
```
|
|
220
|
+
|
|
206
221
|
### Linux daemon
|
|
207
222
|
|
|
208
223
|
For a server/VDS setup:
|
package/README.tr.md
CHANGED
|
@@ -202,6 +202,21 @@ GitHub releases üzerinden indir:
|
|
|
202
202
|
|
|
203
203
|
Releases: <https://github.com/alicomert/pixcode/releases/latest>
|
|
204
204
|
|
|
205
|
+
#### macOS Gatekeeper: "Pixcode hasar görmüş"
|
|
206
|
+
|
|
207
|
+
Şu an macOS desktop build'leri Apple Developer ID ile imzalı/notarize değil. macOS `Pixcode hasar görmüş ve açılamıyor. Çöp kutusuna taşınsın mı?` benzeri bir uyarı gösterirse, önce DMG dosyasını resmi Pixcode GitHub Releases sayfasından indirdiğinden emin ol, sonra:
|
|
208
|
+
|
|
209
|
+
1. DMG'yi aç ve `Pixcode.app` dosyasını `/Applications` içine sürükle.
|
|
210
|
+
2. DMG içindeki `Fix Gatekeeper.command` dosyasına çift tıkla.
|
|
211
|
+
3. Pixcode, `/Applications/Pixcode.app` üzerindeki quarantine bayrağını kaldırıp uygulamayı açar.
|
|
212
|
+
|
|
213
|
+
Manuel çözüm:
|
|
214
|
+
|
|
215
|
+
```bash
|
|
216
|
+
xattr -dr com.apple.quarantine "/Applications/Pixcode.app"
|
|
217
|
+
open "/Applications/Pixcode.app"
|
|
218
|
+
```
|
|
219
|
+
|
|
205
220
|
### Linux daemon
|
|
206
221
|
|
|
207
222
|
VDS/sunucu kullanımı için:
|