Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfixes & documentation updates #40

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- [launch] Socket-based launch quickstart components now support auto-assigned ports [#33](https://github.com/eclipse-glsp/glsp-vscode-integration/pull/33)
- [launch ] Provide `NodeGlspVscodeServer` to enable direct server integration in the extension context without a dedicated server process [#37](https://github.com/eclipse-glsp/glsp-vscode-integration/pull/37)
- [diagram] Fixed a bug that prevented proper server-side disposal of diagram sessions [#40](https://github.com/eclipse-glsp/glsp-vscode-integration/pull/40)

### Breaking Changes

Expand All @@ -15,6 +16,8 @@
- Renamed `GlspServerLauncher` -> `GLSPSocketServerLauncher`
- Replaced `serverPort` property of `SocketGlspVscodeServerOptions` with `connectionOptions`
- Added `start()` and `onReady` to `GlspVscodeServer` interface
- [API] Refactored `GlspVscodeConnector.onSelectionUpdate` event [#40](https://github.com/eclipse-glsp/glsp-vscode-integration/pull/40)
- `Event<string[]>` -> `Event<{selectedElementIDs:string[], deselectedElementIDs:[]}>`

## [v1.0.0 - 30/06/2022](https://github.com/eclipse-glsp/glsp-client/releases/tag/v1.0.0)

Expand Down
8 changes: 7 additions & 1 deletion example/workflow/extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,12 @@
"command": "workflow.layout",
"when": "activeCustomEditorId == 'workflow.glspDiagram'"
},
{
"key": "alt+e",
"mac": "alt+e",
"command": "workflow.exportAsSVG",
"when": "activeCustomEditorId == 'workflow.glspDiagram'"
},
{
"key": "Ctrl+4",
"mac": "cmd+4",
Expand Down Expand Up @@ -197,8 +203,8 @@
"devDependencies": {
"@eclipse-glsp-examples/workflow-server": "next",
"@eclipse-glsp/vscode-integration": "1.1.0-next",
"@vscode/codicons": "^0.0.25",
"@types/vscode": "^1.54.0",
"@vscode/codicons": "^0.0.25",
"path": "^0.12.7",
"reflect-metadata": "^0.1.13",
"ts-loader": "^6.2.1",
Expand Down
1 change: 1 addition & 0 deletions packages/vscode-integration-webview/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ This package helps you to implement a [VS Code Webview](https://code.visualstudi
In addition to this repository, the related source code can be found here:

- <https://github.com/eclipse-glsp/glsp-server>
- <https://github.com/eclipse-glsp/glsp-server-node>
- <https://github.com/eclipse-glsp/glsp-client>

## More information
Expand Down
Loading