Commit Graph
188 Commits
Author SHA1 Message Date
JinjingandClaude Opus 4.6 bcf134c19f fix: clear stale agent working indicators when title stops updating (#100)
Adds clearWorkingIndicators to strip spinner/prefix/keyword markers from
terminal titles after 3s of data flow without a title update, preventing
the UI from showing a stuck "working" status after an agent exits.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-24 21:43:19 -07:00
Jinjing 624786d4cd fix: stream file search results and cancel stale searches (#99) 2026-03-24 21:30:35 -07:00
Jinjing 9c5a1f48bb Add PR checks workflow and Vitest coverage (#97) 2026-03-24 20:53:38 -07:00
Jinjing 431c14d0a4 1.0.39 v1.0.39 2026-03-24 20:38:56 -07:00
JinjingandClaude Opus 4.6 bd78551935 refactor: modularize main process and Terminal component (#96)
Extract main process into focused modules (startup, window, menu, IPC
registration) and decompose the monolithic Terminal component into
TerminalShell, useTerminalTabs, useTerminalShortcuts, and
useTerminalSaveDialog hooks.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-24 20:17:34 -07:00
Jinjing 2b9e5d7486 fix: persist repo sidebar filters (#94) 2026-03-24 20:05:44 -07:00
Jinjing f5dc4de2a8 fix: sync pty size after terminal appearance changes (#95) 2026-03-24 19:52:56 -07:00
NeilandClaude Opus 4.6 c7eeef4e8c feat: add worktree rename (display name) (#90)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-24 19:03:15 -07:00
NeilandClaude Opus 4.6 556f31abcd feat: drag-and-drop reordering for editor file tabs (#86)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-24 19:03:13 -07:00
NeilandClaude Opus 4.6 04e85504bb fix: allow Option+Backspace word-delete in input fields (#89)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-24 19:02:57 -07:00
Jinjing 53ce1c06b0 fix: refresh GitHub status on active worktree reselect (#92) 2026-03-24 19:01:20 -07:00
Jinjing 2ea8fa3a02 1.0.38 v1.0.38 2026-03-24 18:31:24 -07:00
JinjingandClaude Opus 4.6 524b815e35 fix: stop sending cursor style escape sequences to PTY as input (#91)
The cursor style sequence (e.g. \e[5 q) was being sent to the shell via
sendInput(), causing literal "[5 q" text to appear in the terminal. The
shell doesn't interpret DECSCUSR sequences. Cursor style is already
correctly applied via xterm.js terminal options.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-24 18:29:54 -07:00
Jinjing 56dda7a637 1.0.37 v1.0.37 2026-03-24 16:19:55 -07:00
Jinjing 9f35358d1c feat: support multi-repo sidebar filtering (#88) 2026-03-24 16:15:26 -07:00
JinjingandClaude Opus 4.6 083c272723 fix: restore sidebar text contrast and lowercase repo names (#87)
Revert low-contrast text styles from PR #85 (worktree name, branch, repo
badge, group headers) back to full contrast. Force repo names to lowercase.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-24 16:14:53 -07:00
Jinjing b4ce469711 1.0.36 v1.0.36 2026-03-24 14:55:43 -07:00
JinjingandClaude Opus 4.6 4aef937358 feat: improve sidebar worktree card design and add EIO/EPIPE crash guard (#85)
Redesign worktree cards with cleaner layout, inline PR state/CI badges,
and refined group headers. Hide redundant repo badge when grouped by repo.
Add uncaughtException handler to prevent crash on IPC pipe errors during quit.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-24 14:50:43 -07:00
JinjingandClaude Opus 4.6 0eed79fd4a fix: update sortOrder on worktree activation for correct recent sorting (#84)
When a worktree is activated, update its sortOrder timestamp so that
the "recent" sort reflects the actual last-accessed time.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-24 09:17:31 -07:00
JinjingandClaude Opus 4.6 a0d8ba1e18 fix: route clipboard writes through Electron IPC to prevent NSPasteboard contention (#83)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-24 09:15:38 -07:00
Neil a4ef06b18f 1.0.35 v1.0.35 2026-03-24 00:34:04 -07:00
NeilandClaude Opus 4.6 34c3fbe9e0 feat: drag files from explorer sidebar to terminal (#82)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-24 00:33:45 -07:00
Jinjing c1f6d84392 1.0.34 v1.0.34 2026-03-24 00:04:28 -07:00
NeilandClaude Opus 4.6 02b603b580 feat: copy path to line from editor tab and line number gutter (#79)
* feat: add copy path/relative path to line in editor tab context menu

Tracks cursor line position from Monaco editor and adds context menu
options to copy file path with line number anchor (e.g. path#L59).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix: add copy path to line in Monaco editor context menu

Adds "Copy Path to Line" and "Copy Relative Path to Line" as Monaco
editor context menu actions so they appear on right-click anywhere in
the editor. Also handles right-click on line number gutter to show
the context menu there too.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix: use Radix context menu for line number gutter right-click

Replaces Monaco's built-in context menu with a Radix DropdownMenu for
the line number gutter, matching the VSCode approach of intercepting
the gutter right-click and showing a custom menu. Shows the clicked
line number in the menu items.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix: simplify gutter context menu to just path-to-line options

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 23:49:37 -07:00
JinjingandClaude Opus 4.6 d9facf1b9c fix: prevent app crash on macOS reactivation by deduplicating IPC handlers (#81)
When macOS re-activates the app after all windows are closed, `createWindow()` is called
again but IPC handlers from the previous window were still registered, causing duplicate
handler errors and crashes. This fix removes stale handlers before re-registering them
in pty, repos, and worktrees modules, and ensures repo/worktree handlers + auto-updater
are also set up on activate. Includes minor lint/style cleanups across the codebase.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 23:44:12 -07:00
JinjingandClaude Opus 4.6 598f7c17fa feat: display CI build status on worktree cards (#80)
Show CI check status icons (success/failure/pending) next to the branch
name on worktree cards. Return 'neutral' instead of 'pending' when no
CI checks exist to avoid showing a misleading spinner. Fix lint errors
in client.ts (curly braces, array-type).

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 23:36:57 -07:00
NeilandClaude Opus 4.6 1dff41c6d7 feat: add VS Code-style file search and icon activity bar (#78)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 23:28:05 -07:00
JinjingandClaude Opus 4.6 20cfa1f279 feat: add clickable file path links in terminal (#77)
- Add terminal link detection that recognizes file paths with optional
  line:column suffixes and opens them in the editor or externally
- Split shell IPC into separate openUrl, openFilePath, openFileUri, and
  pathExists handlers with proper URL/path validation
- Register xterm link providers per pane with path existence caching
- Support OSC 8 hyperlinks for http(s) and file: protocols
- Add editor-reveal-location custom event for jumping to line/column

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 23:17:41 -07:00
JinjingandClaude Opus 4.6 417a49bc1b feat: unify worktree meta editing into single dialog with double-click support (#76)
Merge the separate "Link Issue" and "Edit Comment" modals into a single
"Edit Worktree Details" dialog. Add double-click on worktree cards to
open the unified editor. Context menu items now focus the relevant field.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 23:06:44 -07:00
Jinjing 2ef0a64cfa 1.0.33 v1.0.33 2026-03-23 21:43:02 -07:00
Jinjing 6426dea050 1.0.32 2026-03-23 21:41:46 -07:00
JinjingandClaude Opus 4.6 810934ac65 fix: use generation tracking to prevent killing new PTYs on renderer reload (#74)
The did-finish-load handler was killing all PTY processes, including ones
spawned during the current page load. This caused blank terminals when a
race between renderer reload and PTY creation occurred. Now each PTY is
tagged with a load generation counter, and only PTYs from previous
generations are killed on reload.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 21:33:16 -07:00
Jinjing aed7a6c1f6 1.0.31 v1.0.31 2026-03-23 17:16:26 -07:00
Jinjing a5f4d71bb4 1.0.30 2026-03-23 17:15:20 -07:00
JinjingandClaude Opus 4.6 82425df6ea fix: remount terminal panes after shutdown to restore PTY connections (#73)
When all PTYs are dead after shutdown, bump a generation counter on
terminal tabs so React remounts TerminalPane components with fresh
PTY connections instead of showing stale terminals.

Also converts interfaces to type aliases in types.ts to satisfy linter.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 17:10:28 -07:00
JinjingandClaude Opus 4.6 9853bba8ba fix: resolve TS build errors in EditorPanel and context menu (#72)
- Return empty fragment instead of null to satisfy JSX.Element return type
- Remove unused paneTransportsRef parameter and PtyTransport import

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 17:06:44 -07:00
JinjingandClaude Opus 4.6 29119e1d6d fix: resolve TypeScript build errors for unused variable and return type (#71)
Remove unused `paneTransportsRef` from context menu hook and fix
`EditorPanel` return type to allow `null`.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 16:56:57 -07:00
JinjingandClaude Opus 4.6 5c461c8021 Add AGENTS.md and CLAUDE.md configuration files (#70)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 16:49:12 -07:00
Jinjing b02a4a6d1a 1.0.29 v1.0.29 2026-03-23 16:48:44 -07:00
JinjingandClaude Opus 4.6 e0fc58cc56 fix: bundle Monaco workers locally and fix JSX/TSX language detection (#69)
Use Vite worker imports to bundle Monaco web workers instead of relying on CDN,
and correct language IDs for .tsx/.jsx files to typescriptreact/javascriptreact.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 16:47:13 -07:00
Jinjing 2163c67035 fix: scope editor files and tabs per worktree (#68) 2026-03-23 16:45:00 -07:00
NeilandClaude Opus 4.6 90d1da84fb fix: use autoUpdater.quitAndInstall() on macOS to actually apply updates (#62)
The previous approach used app.relaunch() + app.quit() to avoid a crash
dialog, but this created a race condition where the app relaunches the
old version before electron-updater's installer replaces the .app bundle.

Instead, use autoUpdater.quitAndInstall() on all platforms with proper
cleanup beforehand (kill PTY processes, flush store, destroy windows) to
ensure a clean exit without crash dialogs.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 16:39:16 -07:00
JinjingandClaude Opus 4.6 81d8a2c10c fix: improve text wrapping in delete worktree dialog (#67)
Add break-all to worktree name and use proper flex layout for error
messages to prevent long text from overflowing the dialog.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 16:38:08 -07:00
Jinjing 051c25f90e 1.0.28 v1.0.28 2026-03-23 16:35:13 -07:00
JinjingandClaude Opus 4.6 5765791bb9 refactor: extract TerminalPane hooks and modularize terminal themes (#66)
Split the monolithic TerminalPane component into focused custom hooks
(lifecycle, context menu, global effects, dark mode detection) and break
the large terminal-themes-data file into organized modules.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 16:31:29 -07:00
Jinjing 3a650b4196 fix: route terminal paste through electron clipboard (#65) 2026-03-23 16:27:50 -07:00
JinjingandClaude Opus 4.6 ecbbe3bfc9 fix: clear repo filter after creating worktree instead of auto-filtering (#64)
Previously, creating a worktree would auto-filter the sidebar to the
current repo, which could be confusing. Now clears the filter so all
worktrees remain visible, relying on revealWorktreeInSidebar to scroll
to the newly created worktree.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 16:26:20 -07:00
JinjingandClaude Opus 4.6 cd14506142 chore: add CLAUDE.md and gitignore package-lock.json (#63)
* feat: use Enter to submit and Shift+Enter for line break in comment editor

Closes #48

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* chore: add CLAUDE.md and gitignore package-lock.json

Enforce pnpm usage for AI agents and prevent stray npm lock files.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 16:22:24 -07:00
JinjingandClaude Opus 4.6 b6b1a27990 fix: allow single-digit values in NumberField input (#58) (#60)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 16:16:59 -07:00
JinjingandClaude Opus 4.6 67aa2af2f3 feat: use Enter to submit and Shift+Enter for line break in comment editor (#61)
Closes #48

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 16:14:37 -07:00