Skip to content

Commit

Permalink
Set as a UI extension (stkb#231, stkb#201)
Browse files Browse the repository at this point in the history
Wasn't being detected as a UI extension by VSCode, so when working with
remote workspaces, it would have to be installed into the remote
workspace.

This also meant that other locally-installed language extensions weren't
being found (vscode.extensions.all didn't contain them?) causing
issue stkb#201, which should be fixed by this.

The option for it to be installed as a workspace extension is still
available but not sure if it should be, and where this would be
necessary.
  • Loading branch information
stkb committed Aug 20, 2020
1 parent 1d5c378 commit 701c9cf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ See also [https://github.com/stkb/vscode-rewrap/releases](https://github.com/stk
## Unreleased

- Fix per-language settings sometimes not applying.
- Declare as a UI extension so it doesn't have to be installed in the remote
workspace (#231); fixes locally-installed language extensions not being found
when used with remote workspaces (#201).


## 1.13.0
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"fill",
"multi-root ready"
],
"version": "1.13.1-beta.5",
"version": "1.14.0-beta.1",
"publisher": "stkb",
"icon": "images/logo.png",
"repository": {
Expand All @@ -25,6 +25,10 @@
"engines": {
"vscode": "^1.45.0"
},
"extensionKind": [
"ui",
"workspace"
],
"categories": [
"Formatters"
],
Expand Down

0 comments on commit 701c9cf

Please sign in to comment.