Merged
Conversation
added 3 commits
April 6, 2026 01:51
- 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
- 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
a91f469 to
a47c672
Compare
added 2 commits
April 6, 2026 02:01
Restore main's changes: remove unused CommentSide import, use Pick<DisposableStore> type, add updatedAt to mock thread
…astic-2.0 license
amandal0903
added a commit
that referenced
this pull request
Apr 5, 2026
* 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
---------
amandal0903
added a commit
that referenced
this pull request
Apr 5, 2026
* 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
amandal0903
added a commit
that referenced
this pull request
Apr 5, 2026
* 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
amandal0903
added a commit
that referenced
this pull request
Apr 5, 2026
* 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)
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.
Summary
publishes GitHub Release; installed app polls for updates and shows an update banner at the bottom of the orchestrator sidebar with [Update] → [Downloading...] → [Restart] flow