Merged
Conversation
* Support inline diff view and add GitHub-style L/R comment labels
- Remove forced side-by-side mode that blocked inline diff view
- Restore useInlineViewWhenSpaceIsLimited default to true
- Add GitHub-style line labels: L{n} for original, R{n} for modified
- Fix race condition in getDocumentComments via EditorOption.inDiffEditor fallback
- Show comments from both sides in inline mode on the modified editor
- Refresh widgets when user toggles between split and inline view
- Use diff computation result for consistent labels between creation and restoration
- Add 18 unit tests for controller side/label detection logic
* Fix type errors in comment controller test
- Remove unused CommentSide import
- Add missing updatedAt field to mock getThread return
- Use Pick<DisposableStore, 'add'> to match ensureNoDisposablesAreLeakedInTestSuite return type
* Fix diff stats to combine committed and local changes in a single pass
The old logic used an either/or approach: show committed-against-base
stats OR local working-tree changes, never both. This meant uncommitted
edits were invisible when the branch had commits ahead.
Replace with a single `git diff --numstat baseRef` that compares the
base ref directly to the working tree, capturing committed + staged +
unstaged changes in one accurate numstat without double-counting.
Untracked files are still added separately.
Also document the diff stats calculation in CLAUDE.md/copilot-instructions.md
and add 6 new test cases covering: .claude/ exclusion, large untracked files,
file deletions, staged+unstaged overlap, and the full combined scenario.
* Add auto-update system with GitHub Releases and orchestrator banner
- Add GitHub Actions workflow (release-dmg.yml) that builds arm64/x64
DMGs and zips on push to release branch, publishes GitHub Release
- Add WorkstreamsUpdateService that polls GitHub Releases API, downloads
update zip, extracts .app, and swaps on restart via helper script
- Add update banner to orchestrator sidebar bottom with three states:
[Update]/[Changelog] → [Downloading...] → [Restart]/[Changelog]
- Add changelogUrl field to IUpdate interface for release page links
- Configure product.json with updateUrl and quality for update checks
* Support inline diff view and add GitHub-style L/R comment labels
- Remove forced side-by-side mode that blocked inline diff view
- Restore useInlineViewWhenSpaceIsLimited default to true
- Add GitHub-style line labels: L{n} for original, R{n} for modified
- Fix race condition in getDocumentComments via EditorOption.inDiffEditor fallback
- Show comments from both sides in inline mode on the modified editor
- Refresh widgets when user toggles between split and inline view
- Use diff computation result for consistent labels between creation and restoration
- Add 18 unit tests for controller side/label detection logic
* Set initial version to 0.1.0
* Fix conflict resolution in comment controller test
Restore main's changes: remove unused CommentSide import, use Pick<DisposableStore> type, add updatedAt to mock thread
* Update package.json: bump to 0.2.0, set Workstream Labs author and Elastic-2.0 license
---------
* Support inline diff view and add GitHub-style L/R comment labels
- Remove forced side-by-side mode that blocked inline diff view
- Restore useInlineViewWhenSpaceIsLimited default to true
- Add GitHub-style line labels: L{n} for original, R{n} for modified
- Fix race condition in getDocumentComments via EditorOption.inDiffEditor fallback
- Show comments from both sides in inline mode on the modified editor
- Refresh widgets when user toggles between split and inline view
- Use diff computation result for consistent labels between creation and restoration
- Add 18 unit tests for controller side/label detection logic
* Fix type errors in comment controller test
- Remove unused CommentSide import
- Add missing updatedAt field to mock getThread return
- Use Pick<DisposableStore, 'add'> to match ensureNoDisposablesAreLeakedInTestSuite return type
* Use git-branch icon for local branch to distinguish from worktrees
* Set VS Code API version in product.json to fix extension activation
Built-in extensions like json-language-features require vscode ^1.91.0
but the app reported 0.2.0 (from package.json). Adding the version to
product.json prevents the fallback and reports the correct API version.
* fix: version
* Support inline diff view and add GitHub-style L/R comment labels
- Remove forced side-by-side mode that blocked inline diff view
- Restore useInlineViewWhenSpaceIsLimited default to true
- Add GitHub-style line labels: L{n} for original, R{n} for modified
- Fix race condition in getDocumentComments via EditorOption.inDiffEditor fallback
- Show comments from both sides in inline mode on the modified editor
- Refresh widgets when user toggles between split and inline view
- Use diff computation result for consistent labels between creation and restoration
- Add 18 unit tests for controller side/label detection logic
* Fix type errors in comment controller test
- Remove unused CommentSide import
- Add missing updatedAt field to mock getThread return
- Use Pick<DisposableStore, 'add'> to match ensureNoDisposablesAreLeakedInTestSuite return type
* Fix diff stats to combine committed and local changes in a single pass
The old logic used an either/or approach: show committed-against-base
stats OR local working-tree changes, never both. This meant uncommitted
edits were invisible when the branch had commits ahead.
Replace with a single `git diff --numstat baseRef` that compares the
base ref directly to the working tree, capturing committed + staged +
unstaged changes in one accurate numstat without double-counting.
Untracked files are still added separately.
Also document the diff stats calculation in CLAUDE.md/copilot-instructions.md
and add 6 new test cases covering: .claude/ exclusion, large untracked files,
file deletions, staged+unstaged overlap, and the full combined scenario.
* Use git-branch icon for local branch to distinguish from worktrees
* Main release (#71)
* Add end-to-end auto-update system (#69)
* Add auto-update system with GitHub Releases and orchestrator banner
- Add GitHub Actions workflow (release-dmg.yml) that builds arm64/x64
DMGs and zips on push to release branch, publishes GitHub Release
- Add WorkstreamsUpdateService that polls GitHub Releases API, downloads
update zip, extracts .app, and swaps on restart via helper script
- Add update banner to orchestrator sidebar bottom with three states:
[Update]/[Changelog] → [Downloading...] → [Restart]/[Changelog]
- Add changelogUrl field to IUpdate interface for release page links
- Configure product.json with updateUrl and quality for update checks
* Support inline diff view and add GitHub-style L/R comment labels
- Remove forced side-by-side mode that blocked inline diff view
- Restore useInlineViewWhenSpaceIsLimited default to true
- Add GitHub-style line labels: L{n} for original, R{n} for modified
- Fix race condition in getDocumentComments via EditorOption.inDiffEditor fallback
- Show comments from both sides in inline mode on the modified editor
- Refresh widgets when user toggles between split and inline view
- Use diff computation result for consistent labels between creation and restoration
- Add 18 unit tests for controller side/label detection logic
* Set initial version to 0.1.0
* Fix conflict resolution in comment controller test
Restore main's changes: remove unused CommentSide import, use Pick<DisposableStore> type, add updatedAt to mock thread
* Update package.json: bump to 0.2.0, set Workstream Labs author and Elastic-2.0 license
---------
* Test b (#70)
* Support inline diff view and add GitHub-style L/R comment labels
- Remove forced side-by-side mode that blocked inline diff view
- Restore useInlineViewWhenSpaceIsLimited default to true
- Add GitHub-style line labels: L{n} for original, R{n} for modified
- Fix race condition in getDocumentComments via EditorOption.inDiffEditor fallback
- Show comments from both sides in inline mode on the modified editor
- Refresh widgets when user toggles between split and inline view
- Use diff computation result for consistent labels between creation and restoration
- Add 18 unit tests for controller side/label detection logic
* Fix type errors in comment controller test
- Remove unused CommentSide import
- Add missing updatedAt field to mock getThread return
- Use Pick<DisposableStore, 'add'> to match ensureNoDisposablesAreLeakedInTestSuite return type
* Use git-branch icon for local branch to distinguish from worktrees
* Set VS Code API version in product.json to fix extension activation
Built-in extensions like json-language-features require vscode ^1.91.0
but the app reported 0.2.0 (from package.json). Adding the version to
product.json prevents the fallback and reports the correct API version.
* fix: version
* fix: icon
* bump version to 0.2.1
* Test release! (#72)
* Add end-to-end auto-update system (#69)
* Add auto-update system with GitHub Releases and orchestrator banner
- Add GitHub Actions workflow (release-dmg.yml) that builds arm64/x64
DMGs and zips on push to release branch, publishes GitHub Release
- Add WorkstreamsUpdateService that polls GitHub Releases API, downloads
update zip, extracts .app, and swaps on restart via helper script
- Add update banner to orchestrator sidebar bottom with three states:
[Update]/[Changelog] → [Downloading...] → [Restart]/[Changelog]
- Add changelogUrl field to IUpdate interface for release page links
- Configure product.json with updateUrl and quality for update checks
* Support inline diff view and add GitHub-style L/R comment labels
- Remove forced side-by-side mode that blocked inline diff view
- Restore useInlineViewWhenSpaceIsLimited default to true
- Add GitHub-style line labels: L{n} for original, R{n} for modified
- Fix race condition in getDocumentComments via EditorOption.inDiffEditor fallback
- Show comments from both sides in inline mode on the modified editor
- Refresh widgets when user toggles between split and inline view
- Use diff computation result for consistent labels between creation and restoration
- Add 18 unit tests for controller side/label detection logic
* Set initial version to 0.1.0
* Fix conflict resolution in comment controller test
Restore main's changes: remove unused CommentSide import, use Pick<DisposableStore> type, add updatedAt to mock thread
* Update package.json: bump to 0.2.0, set Workstream Labs author and Elastic-2.0 license
---------
* Test b (#70)
* Support inline diff view and add GitHub-style L/R comment labels
- Remove forced side-by-side mode that blocked inline diff view
- Restore useInlineViewWhenSpaceIsLimited default to true
- Add GitHub-style line labels: L{n} for original, R{n} for modified
- Fix race condition in getDocumentComments via EditorOption.inDiffEditor fallback
- Show comments from both sides in inline mode on the modified editor
- Refresh widgets when user toggles between split and inline view
- Use diff computation result for consistent labels between creation and restoration
- Add 18 unit tests for controller side/label detection logic
* Fix type errors in comment controller test
- Remove unused CommentSide import
- Add missing updatedAt field to mock getThread return
- Use Pick<DisposableStore, 'add'> to match ensureNoDisposablesAreLeakedInTestSuite return type
* Use git-branch icon for local branch to distinguish from worktrees
* Set VS Code API version in product.json to fix extension activation
Built-in extensions like json-language-features require vscode ^1.91.0
but the app reported 0.2.0 (from package.json). Adding the version to
product.json prevents the fallback and reports the correct API version.
* fix: version
* fix: icon
* bump version to 0.2.1
* move release workflow to repo root .github/workflows/ so GitHub discovers it
* bump version to 0.2.2
* Main release (#73)
* Test relese 2 (#74)
* Main release (#75)
* Resolved branch containing changes both from 'release' & 'main' (#77)
…ations, remove debug console.warn
* Redesign landing page and add download flow with Azure analytics - Custom landing page (CustomHome.vue) replacing default VitePress home - Custom nav bar, hero with product screenshot, feature showcases, capabilities grid, FAQ accordion - /download page with Apple Silicon / Intel architecture picker - Post-download setup instructions - Azure Function backend for download tracking (arch, user-agent, IP, timestamp) in Azure Table Storage - Download count from GitHub releases API - Fonts: IBM Plex Sans + Lilex - VitePress nav/sidebar hidden on custom pages via route-based class toggle - Adapted to new docs/ location (moved from apps/cli/docs/) * Remove capabilities grid section, polish doc page styling - Remove "Built for serious development" 9-card grid from landing page - Style VitePress doc pages: consistent IBM Plex Sans font, dark nav/sidebar, refined search bar, Lilex for code blocks * Landing page polish: icons extraction, trusted-by section, nav cleanup - Extract all inline SVGs into reusable icon components (icons/ folder) - Add "Trusted by world-class developers" section with company logos - Add Discord link to nav, remove Reference link - Remove search from doc pages - Remove all nav border/divider artifacts - Remove italic from trusted heading, reorder companies - IBM Plex Serif font loaded (unused for now) * Update features, CTA, footer, favicon, animations, and trusted section - Replace feature showcases with 5 new sections: orchestrate, agents, isolation, review loop, LSP terminal - Slide-in animations: left for normal, right for reversed showcases - Remove CTA card, replace with clean monospace heading + download button - Add proper footer with logo, links, Discord/GitHub icons, copyright - Change favicon to codicon tasklist - Fix footer z-index behind background layer - Remove IBM Plex Serif (unused), keep trusted heading non-italic - Remove Arcana from companies, reorder LinkedIn first * Download dropdown, post-install instructions, animation polish - Replace full-page arch picker with inline dropdown on all download buttons - Download page auto-starts DMG from query param, shows install steps - Install steps: open DMG, drag to Applications, xattr -cr command with explanation, launch - Add install instructions to docs/getting-started/installation.md and README - Fix showcase animations: text from left, image from right independently - Restore image card borders, smaller dropdown, remove chips * Landing page: hero GIF, nav overhaul, feature screenshots, doc nav polish Replace static hero image with 30s sped-up screen recording GIF. Extract NavBar component shared across home and download pages. Add new feature screenshots, reorder VitePress doc nav (search → links → icons → toggle), add Discord social link, minimal search bar styling, and pre-aggregated download counter for faster API reads.
…ane (#89) Extensions marketplace — Move Extensions to the sidebar activity bar; configure Open VSX as the gallery for searching/installing language extensions. VS Code API version decoupling — Separate vscodeVersion (1.104.0) from app version (0.2.9) in product.json so extensions using vscode-languageclient work in production builds. Orchestrator pane redesign — flat layout with diff stats badges, right-aligned delete icon on hover, and custom SVG icons for branch/PR states (open, merged, closed, draft). PR info fetched via gh CLI with 60s cache. Update tooltip — Add close button to the original update tooltip. SCM cleanup — Remove PR status from worktree rows; always show Extensions sidebar; disable worktree auto-detection in SCM.
* fix: ignore updated icons * Add cache save steps to CI workflows and cache release pipeline PR workflows used actions/cache/restore but never saved, so the cache was never populated. Add actions/cache/save steps for node_modules and built-in extensions across all platform test workflows. Add full node_modules caching to the release pipeline with npm ci, retry logic, and skip binary downloads during install. Fix pre-commit hook maxBuffer overflow when staged files exist at both repo root and apps/desktop with different sizes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Merge from main