Commit Graph
8614 Commits
Author SHA1 Message Date
NeilandClaude Opus 4.6 38c5b6b970 fix: stabilize active worktree order in 'recent' sort (#116)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-26 12:51:05 -07:00
JinjingandClaude Opus 4.6 406f95b072 style: adjust worktree card comment styling and status indicator padding (#115)
Remove italic from comment text and tweak status indicator top padding from 3px to 2px.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-26 08:21:39 -07:00
JinjingandClaude Opus 4.6 149acf26bb fix: address review findings in updater flow (#114)
- Add console.error logging to startup update check catch block
- Add state guard to downloadUpdate() to prevent calls outside 'available' state
- Track and dismiss 'available' toast when download starts or completes
- Include version number in downloading status text

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-26 07:35:52 -07:00
Neil 6650289dcb Update README.md 2026-03-26 01:48:34 -07:00
Neil 8b8ef58245 Revise README heading and add link
Updated heading structure and added link formatting.
2026-03-26 01:48:01 -07:00
Neil e0c90f0c06 Update project title link in README 2026-03-26 01:47:22 -07:00
Neil 954678011a Fix Markdown link formatting in README 2026-03-26 01:46:22 -07:00
Neil 4a3e1e2b1f Update README.md 2026-03-26 01:46:00 -07:00
Jinjing 00f82f9004 1.0.44 v1.0.44 2026-03-26 00:28:52 -07:00
JinjingandClaude Opus 4.6 d127b2cfb3 feat: polish UI with softer borders, smaller labels, and PR state colors (#113)
Soften border opacity across UI components, move label default to text-xs,
simplify worktree group tones, and color PR icons by state.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-26 00:20:58 -07:00
NeilandClaude Opus 4.6 27b29a0f8d fix: make release publish atomic to prevent update 404s (#112)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-26 00:02:31 -07:00
Neil c04275a5f2 1.0.43 v1.0.43 2026-03-25 23:45:50 -07:00
NeilandClaude Opus 4.6 f473e3f53e fix: exclude xterm helper textarea from editable target check (#111)
PR #103 added a blanket isEditableTarget() guard that inadvertently
matched xterm.js's internal <textarea class="xterm-helper-textarea">,
blocking Cmd+D (split pane), Shift+Enter (newline), and all other
terminal shortcuts whenever the terminal was focused.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-25 23:44:30 -07:00
JinjingandClaude Opus 4.6 8adecbecce feat: replace monospace body font with Geist Sans (#110)
Switch the app-wide font from SF Mono/monospace to Geist Sans for a
more polished, modern UI. Bundle the variable woff2 font in assets for
cross-platform support. Remove font-mono from sidebar and settings
components while keeping monospace in terminal/editor contexts.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-25 23:16:22 -07:00
JinjingandClaude Opus 4.6 902e2271b9 fix: handle orphaned worktree deletion with disk cleanup (#109)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-25 23:14:48 -07:00
JinjingandClaude Opus 4.6 69978c93f5 test: expand test coverage and extract worktree logic into testable module (#108)
Add comprehensive tests for worktree parsing, GitHub check status derivation,
hooks YAML parsing, persistence store, layout serialization, store cascades,
and terminal helpers. Extract pure functions from worktrees.ts into
worktree-logic.ts for better testability.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-25 22:34:20 -07:00
Neil 951ab72d7b 1.0.42 v1.0.42 2026-03-25 22:27:15 -07:00
NeilandClaude Opus 4.6 3d4ed411c5 feat: editable diff views for unstaged changes (#107)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-25 22:25:36 -07:00
Neil 0bea9aa4ff Clickable Claude Code #PR (#106) 2026-03-25 22:24:19 -07:00
NeilandClaude Opus 4.6 0785dd7b7b fix: fetch latest remote before worktree creation & improve settings spacing (#105)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-25 22:16:11 -07:00
JinjingandClaude Opus 4.6 4c0eee235b fix: extract path-security helpers, add tests, and improve type safety (#102)
* fix: extract path-security helpers and refactor IPC modules

- Extracted path-security helpers from filesystem.ts into filesystem-auth.ts to fix max-lines lint error (402 -> 293 lines)
- Extracted duplicated ENOENT detection into isENOENT() helper to eliminate code duplication
- Fixed missing curly braces on single-line if-return in isDescendantOrEqual (lint violation)
- Replaced any with unknown in test files to satisfy lint rules
- All tests passing (29/29)
- Lint clean (0 errors, 0 warnings)

* fix: bundle preload deps for sandbox mode and fix editor test types

The sandbox: true change in createMainWindow broke the app because
electron-vite was externalizing @electron-toolkit/preload, producing
a require() call that fails in sandboxed preload scripts. Exclude it
from externalization so it gets bundled inline.

Also fix type errors in editor.test.ts from the partial store setup.

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

---------

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-25 09:59:19 -07:00
JinjingandClaude Opus 4.6 6aab126edb fix: prevent terminal shortcuts from intercepting keystrokes in editable elements (#103)
Replace fragile tagName checks with a robust isEditableTarget() helper that
covers input, textarea, select, and contenteditable elements. Also add
Cmd/Ctrl+Enter support and stopPropagation to the WorktreeMetaDialog comment
textarea so Enter doesn't trigger terminal handlers.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-25 09:52:46 -07:00
Jinjing a53903ffb5 1.0.41 v1.0.41 2026-03-25 09:38:22 -07:00
Jinjing ddc8a78744 Display PR checks and title updates (#101)
- Add PR checks panel to right sidebar
- Stream checks from GitHub API
- Update PR title real-time with loading state
- Add error logging and dependency fixes
- Fix linting issues (curly braces, exhaustive deps)
2026-03-25 09:29:39 -07:00
NeilandClaude Opus 4.6 0b9624ec70 feat: linux-friendly keyboard shortcuts (#93)
* feat: make keyboard shortcuts work with Ctrl on Linux/Windows

All Cmd+X shortcuts now also respond to Ctrl+X on non-Mac platforms.
Tooltip hints show platform-appropriate modifier symbols.

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

* docs: add cross-platform guidelines to AGENTS.md

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

---------

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-24 22:21:14 -07:00
Jinjing 8da05ff386 1.0.40 v1.0.40 2026-03-24 21:57:37 -07:00
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