Commit Graph
2946 Commits
Author SHA1 Message Date
Jinjing 5d8e69a235 feat: auto-reveal active file in explorer on tab switch (#380)
* feat: auto-reveal active file in explorer on tab switch

Adds useFileExplorerAutoReveal hook that scrolls the file explorer to
show the active editor file when switching tabs, mirroring VS Code's
explorer.autoReveal behavior. Files already visible in the tree get
scrolled to directly; files with collapsed ancestors trigger the reveal
machinery with flash disabled to avoid visual noise.

* refactor: extract file explorer handlers to fix max-lines lint rule

Move handleClick, handleDoubleClick, and handleWheelCapture into a
dedicated useFileExplorerHandlers hook to bring FileExplorer.tsx under
the 400-line limit.
2026-04-07 22:09:50 -07:00
Jinjing f61ef05866 1.1.1-rc.0 v1.1.1-rc.0 2026-04-07 20:35:33 -07:00
Jinwoo HongandClaude Opus 4.6 f6ec69c969 feat: add WSL support for repos on WSL filesystems (#375)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-07 21:02:36 -04:00
Jinwoo Hong beb62ff580 feat: add PR comments to checks panel (#376) 2026-04-07 17:58:40 -07:00
Brennan BensonandClaude Opus 4.6 755690b5a2 fix: keep-alive editor panes to preserve scroll position (#373)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-07 17:28:22 -07:00
Jinwoo HongandClaude Opus 4.6 dd4e7b8497 feat: enhance Add Repo with modal flow and clone from URL (#372)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-07 13:31:18 -07:00
Neil 2ff0f107e8 1.1.0 v1.1.0 2026-04-07 13:26:45 -07:00
NeilandClaude Opus 4.6 165502121b feat: polish markdown preview and rich editor (#369)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-07 13:03:43 -07:00
Matheus NogueiraandClaude Opus 4.6 9e431e6ca7 feat: unified tabs system with titlebar integration (#371)
* feat: add unified TabsSlice and tab bar UX improvements

Introduce content-agnostic Tab/TabGroup model (Step 1 of unified tabs
migration). TabsSlice coexists alongside legacy TerminalSlice/EditorSlice
and provides unified CRUD, neighbor selection, preview replacement, pin
support, and session hydration from both legacy and unified formats.

Also fixes several tab bar UX issues:
- Tab bar always visible (even with 1 tab)
- New terminal tabs appear at end of tab bar, not index 0
- Closing last terminal with editor files open switches to editor view
  instead of deactivating the worktree
- New terminal tabs receive focus immediately

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

* refactor: extract tabs-helpers, tabs-hydration, and reconcile-order modules

Split tabs.ts (503 countable lines) and useTerminalTabs.ts (325 countable
lines) to stay under the max-lines lint limit without eslint-disable:

- tabs-helpers.ts: pure lookup/update functions + generic patchTab helper
- tabs-hydration.ts: session hydration for unified and legacy formats
- reconcile-order.ts: shared tab order reconciliation (was duplicated in
  TabBar.tsx, useTerminalTabs unifiedTabs memo, handleNewTab, and
  handleCloseTabsToRight)

Includes tests for all three extracted modules (29 new tests).

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

* feat: move tab bar into the titlebar row

Render the TabBar inside the titlebar via a React portal, sharing the
same row as the "Orca" title. The left section of the titlebar matches
the sidebar width so tabs start exactly where the sidebar ends.

This saves ~36px of vertical space by eliminating the separate tab bar
row. Empty space after tabs remains window-draggable; individual tabs
and the "+" button opt out with -webkit-app-region: no-drag.

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

* fix: prevent middle-click paste when closing tabs

Close tabs on auxclick instead of mousedown for middle-click. Closing on
mousedown removed the tab element before mouseup fired, causing the
mouseup to fall through to the terminal canvas and trigger an X11
primary selection paste on Linux.

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

* refactor: extract terminal tab actions to fix lint errors

Memoize `tabs` and `worktreeFiles` to fix useMemo unstable dependency
warnings. Extract action callbacks (close, activate, create, etc.) into
terminal-tab-actions.ts to bring useTerminalTabs.ts under the 300-line
max-lines limit.

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

---------

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-07 16:33:25 -03:00
Neil 019fb5fc50 1.0.100 v1.0.100 2026-04-07 01:35:43 -07:00
Neil 900adb16c7 1.0.99 v1.0.99 2026-04-07 01:35:38 -07:00
Neil 09c5e76694 fix: exit expanded mode before splitting pane (#368) 2026-04-07 01:00:19 -07:00
Neil 0f65b11962 fix: terminal content not resizing on pane expand (#367) 2026-04-07 00:48:29 -07:00
Jinjing cb8da71749 1.0.98 v1.0.98 2026-04-07 00:22:15 -07:00
Jinjing d7633c9875 move GitHub star button to bottom of landing page and auto-hide (#366)
Reposition the star button below the shortcuts section at the page
bottom. Hide it entirely once the user has both added a repo and
starred the project, so it doesn't distract returning users.
2026-04-07 00:21:56 -07:00
Jinjing d652a6c30a 1.0.97 v1.0.97 2026-04-07 00:17:28 -07:00
Jinjing c652990bb5 refactor: replace allowPrerelease workaround with generic feed URL (#365)
* fix(renderer): fix unescaped quote lint error in GeneralPane

* refactor: replace allowPrerelease workaround with generic feed URL

Use electron-updater's generic provider pointed at GitHub's
/releases/latest/download/ so the manifest always comes from the latest
stable release. This eliminates the client-side RC filtering, the GitHub
releases API fallback, and the manual-download path entirely.
2026-04-07 00:16:19 -07:00
Neil 4de80194c7 fix: resolve posix_spawnp failure on macOS Intel (#364) 2026-04-07 00:13:51 -07:00
Neil 0f1a2b4892 1.0.96 v1.0.96 2026-04-06 23:32:51 -07:00
Neil f787d675c4 min release age = 1 day 2026-04-06 23:32:45 -07:00
Neil f305bc6279 1.0.95 2026-04-06 23:30:52 -07:00
NeilandClaude Opus 4.6 03a7077597 feat: add pn tc command using typescript-native (tsgo) (#363)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 23:27:29 -07:00
NeilandClaude Opus 4.6 c0b6687e13 feat: add native desktop notifications (#180)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 23:24:02 -07:00
NeilandClaude Opus 4.6 af43e3daaa fix: clean up settings page header and scrollbars (#362)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 23:09:39 -07:00
NeilandClaude Opus 4.6 450b2a2842 perf: eliminate useEffect anti-patterns causing extra re-renders (#361)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 23:02:23 -07:00
Jinwoo HongandClaude Opus 4.6 9b2b85c59d feat: add non-git folder support (#356)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 22:54:02 -07:00
NeilandClaude Opus 4.6 37ae8ce525 feat: add Star on GitHub button to landing page (#360)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 22:45:00 -07:00
Jinjing cdbb233bf2 1.0.95-rc.0 v1.0.95-rc.0 2026-04-06 22:21:26 -07:00
Brennan BensonandClaude Opus 4.6 001846ccc3 feat: preserve scroll position per file in editor (#349)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 22:14:12 -07:00
Jinjing 499bde7b2e fix: correctly capture data-file path in dev environment (#357) 2026-04-06 21:49:15 -07:00
Jinjing e5f10f8092 feat: preserve opened editor files across app restarts (#355)
Persist edit-mode files in the workspace session so they are restored
on restart. Diffs and conflict views are intentionally excluded as they
depend on transient git state.
2026-04-06 20:48:52 -07:00
Jinwoo HongandClaude Opus 4.6 2939caf476 fix: make persistence data file path lazy so dev mode uses orca-dev (#354)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 19:12:22 -07:00
Jinjing 9236cd70b6 1.0.94 v1.0.94 2026-04-06 18:36:25 -07:00
Jinjing adf0c69867 1.0.94-rc.2 v1.0.94-rc.2 2026-04-06 18:10:07 -07:00
Jinjing 36085a0b89 fix: exclude RC/prerelease versions from auto-updater (#350)
* fix: fall back to stable release when electron-updater picks an RC

When the latest GitHub release is an RC, electron-updater (with
allowPrerelease enabled) reports it as available and never considers
older stable releases. Previously the code simply rejected the RC and
sent not-available, silently hiding real stable updates.

Now the update-available handler calls findFallbackReleaseVersion()
when it detects a prerelease, which queries the GitHub releases API
(filtering out prereleases/drafts) to find the newest stable version
newer than what's running and offers it as a manual download.

* fix: persist check timestamp when RC fallback fetch fails

The .catch path in the update-available RC handler was missing
recordCompletedUpdateCheck(), which meant a failed GitHub API call
during fallback would not persist the check timestamp. On next app
launch the interval check could fire immediately instead of waiting
the full 36 hours.
2026-04-06 18:02:41 -07:00
Jinjing 5d6fb3923f feat: add file duplicate to file explorer context menu (#351)
* feat: add file duplicate option to file explorer context menu

* fix: address review findings
2026-04-06 17:39:31 -07:00
Matheus Nogueira 132e033292 Scope zoom shortcuts to editor content outside terminal tabs (#348) 2026-04-06 21:07:08 -03:00
Matheus Nogueira e42ae3f0f0 Fix terminal zoom shortcuts on Linux layouts (#347) 2026-04-06 20:42:55 -03:00
Brennan BensonandClaude Opus 4.6 697c963986 fix: dynamic estimateSize for worktree cards to prevent overlap (#346)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 16:35:48 -07:00
Jinjing 85dd635598 fix: address review findings (#345) 2026-04-06 15:33:59 -07:00
Jinjing 455612e6da 1.0.94-rc.1 v1.0.94-rc.1 2026-04-06 15:23:21 -07:00
Jinjing fdbd08e085 fix: unpack out/shared/ from asar so CLI cross-directory imports resolve (#344)
The CLI entry-point (out/cli/) requires modules from out/shared/ (e.g.
runtime-bootstrap). Without unpacking both directories, Node's require()
fails when the CLI runs outside the asar archive.
2026-04-06 15:03:05 -07:00
Jinwoo HongandClaude Opus 4.6 d4a2d25942 feat: add Cmd/Ctrl+L to toggle right sidebar visibility (#343)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 14:42:48 -07:00
Jinjing 5c67bd1bee 1.0.94-rc.0 v1.0.94-rc.0 2026-04-06 14:39:26 -07:00
Jinjing 6c423f15f0 feat: improve terminal font compatibility across platforms (#342)
* feat: improve terminal compatibility with default fonts across platforms

Add cross-platform monospace font fallback chain (SF Mono, Menlo, Monaco,
Cascadia Mono, Consolas, DejaVu Sans Mono, Liberation Mono) so the terminal
renders correctly on macOS, Windows, and Linux out of the box.

- Platform-aware default font in settings (SF Mono / Cascadia Mono / DejaVu)
- buildFontFamily deduplicates user font against full fallback chain
- Error handling for pty spawn failures with user-facing error banner
- Zero-dimension diagnostic when terminal container has no layout
- WebGL context loss / unavailability logging for debugging

* feat: improve terminal font fallback and pty error handling

- Add cross-platform terminal font fallbacks
- Surface pty spawn errors to terminal UI
- Fix max-lines eslint error in TerminalPane
- Fix curly braces eslint error in constants.ts
2026-04-06 14:33:33 -07:00
Jinjing fb7ea89e7e docs: update orca-cli skill to support worktree comment updates as default agent behavior (#341)
Add guidance for coding agents to keep worktree comments updated at meaningful
checkpoints, making work-in-progress status visible in the Orca UI without
explicit user requests.
2026-04-06 13:57:41 -07:00
Neil c2da8124e9 1.0.93 v1.0.93 2026-04-06 13:34:02 -07:00
NeilandClaude Opus 4.6 d50807f7c3 fix: cmd+w closes active terminal pane, not entire tab (#335)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 13:33:48 -07:00
Jinjing 39b972fc64 1.0.92 v1.0.92 2026-04-06 12:55:44 -07:00
Jinjing 67f47ed036 1.0.92-rc.3 v1.0.92-rc.3 2026-04-06 12:48:45 -07:00