VS Code extension update - v1.1.6#6
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the VS Code extension to v1.1.6, focusing on Catalog access, hosted skill browser entry points, Activity Bar ordering/icon updates, and release notes.
Changes:
- Adds commands/UI paths to open the hosted skill browser and reliably focus the Catalog panel.
- Reorders views to Modules → Catalog → Outputs and updates Activity Bar icon assets.
- Bumps extension version and adds changelog entries for 1.1.5/1.1.6.
Reviewed changes
Copilot reviewed 6 out of 11 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
extension/webview-ui/main.ts |
Adds a Catalog header link that posts an openSkillBrowser message. |
extension/src/views/catalogWebviewProvider.ts |
Handles the webview message by opening the hosted skill browser URL. |
extension/src/extension.ts |
Registers Catalog focus and web skill browser commands. |
extension/src/constants.ts |
Adds shared view container and hosted skill browser URL constants. |
extension/package.json |
Bumps version, updates activation events, view order, commands, menu action, and Activity Bar icon references. |
extension/package-lock.json |
Updates lockfile package version metadata. |
extension/media/activity-bar-icon.svg |
Removes the previous single Activity Bar SVG. |
extension/media/activity-bar-icon-light.svg |
Adds a light-theme Activity Bar SVG. |
extension/media/activity-bar-icon-dark.svg |
Adds a dark-theme Activity Bar SVG. |
extension/CHANGELOG.md |
Adds 1.1.5 and 1.1.6 release notes. |
Files not reviewed (1)
- extension/package-lock.json: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
42
to
+44
| "icon": { | ||
| "light": "media/activity-bar-icon.svg", | ||
| "dark": "media/activity-bar-icon.svg" | ||
| "light": "media/activity-bar-icon-light.svg", | ||
| "dark": "media/activity-bar-icon-dark.svg" |
| <h2>Catalog</h2> | ||
| <div class="header-row"> | ||
| <h2>Catalog</h2> | ||
| <a href="#" id="open-web">Full skill browser ↗</a> |
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.
No description provided.