Skip to content

Main release#75

Merged
amandal0903 merged 14 commits intoreleasefrom
main-release
Apr 5, 2026
Merged

Main release#75
amandal0903 merged 14 commits intoreleasefrom
main-release

Conversation

@amandal0903
Copy link
Copy Markdown
Collaborator

No description provided.

amandal0903 and others added 14 commits April 6, 2026 03:06
* 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
@amandal0903 amandal0903 merged commit 84d6e63 into release Apr 5, 2026
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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant