Skip to content

Commit 20fd252

Browse files
committed
chore(release): version packages
@open-codesign/desktop 0.2.0 → 0.3.0 (3 minor: local workspace preview, HTTP proxy setting, TLS verification toggle; 5 patch: ChatGPT subscription image OAuth, comment-mode copy, desktop navigation hardening, workspace watcher fallback, no-sandbox when root). Consumed 9 changesets accumulated since v0.2.0 (2026-05-09).
1 parent f2bc0cd commit 20fd252

26 files changed

Lines changed: 125 additions & 62 deletions

.changeset/chatgpt-image-oauth.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

.changeset/comment-mode-copy.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/desktop-navigation-boundary.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/feat-tls-verify-toggle.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/harden-workspace-watcher-fallback.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/local-workspace-preview.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/proxy-settings.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/v02-subscription-copy.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

apps/desktop/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# @open-codesign/desktop
22

3+
## 0.3.0
4+
5+
### Minor Changes
6+
7+
- 6cbb639: feat(desktop): add per-provider "Disable TLS verification" toggle for custom and imported providers. Unblocks connections to corporate gateways with self-signed or private-CA certificates that Node 22's built-in fetch cannot otherwise accept. Built-in providers (Anthropic, OpenAI, OpenRouter, Ollama) remain unaffected. (#229)
8+
- 7a1977d: Add workspace-backed design creation, file browsing, project rebinding, and local preview modes, including a packaged preview runtime dependency fix so desktop builds include `ms` for `puppeteer-core`/`debug`.
9+
- bf86fea: Add an HTTP proxy field to Settings → Advanced. The configured URL is applied to both Chromium's network stack and Node's HTTP(S)\_PROXY env vars, takes effect immediately, and persists across restarts.
10+
11+
### Patch Changes
12+
13+
- 7a1977d: Allow image generation to use the signed-in ChatGPT subscription OAuth path.
14+
15+
The image asset provider list now includes ChatGPT subscription alongside
16+
OpenAI API and OpenRouter. When selected, `generate_image_asset` calls the
17+
ChatGPT Codex Responses backend with the stored OAuth bearer token instead of
18+
requiring an OpenAI API key.
19+
20+
- 8ea4bff: Update comment mode copy for saving comments and adding saved comments to chat.
21+
- 8efd7e3: Harden desktop navigation so workspace Markdown links cannot replace the app window.
22+
- f2bc0cd: Harden the workspace files watcher: fall back to polling for any filesystem watch error (previously only EPERM / EACCES / EISDIR), explicitly covering EINVAL, ENOSPC, and ERR_FEATURE_UNAVAILABLE_ON_PLATFORM that surface on Windows UNC paths, full disks, and Bun runtimes. Unknown FS errors now degrade gracefully instead of breaking the Files panel. (#352)
23+
- Fix `pnpm dev` and Puppeteer preview spawns failing immediately when launched as uid 0 (root) — common inside containers, dev VMs, and CI runners. Both call sites now pass `--no-sandbox` to the spawned Chromium process when `process.getuid() === 0`, leaving the macOS / Windows / non-root Linux launch paths unchanged. (#356)
24+
- 7a1977d: Refresh v0.2 user-facing copy for ChatGPT subscription sign-in and current provider support.
25+
326
## 0.2.0
427

528
### Minor Changes

apps/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@open-codesign/desktop",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"private": true,
55
"description": "Prompt-to-design desktop app for HTML prototypes, decks, and marketing assets.",
66
"author": "Open CoDesign Maintainers <maintainers@opencowork.ai>",

0 commit comments

Comments
 (0)