Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tortmayr committed Nov 9, 2023
1 parent c341367 commit 5aeeb4d
Show file tree
Hide file tree
Showing 12 changed files with 1,373 additions and 1,318 deletions.
99 changes: 67 additions & 32 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -18,7 +18,7 @@ The example can be used to try out different GLSP features, as well as several a
As the example is fully open source, you can also use it as a blueprint for a custom implementation of a GLSP diagram editor.
See [our project website](https://www.eclipse.org/glsp/documentation/#workflowoverview) for an overview of the workflow example and all components implementing it.

![Workflow Diagram](/documentation/standalone-diagram.gif)
https://github.com/eclipse-glsp/glsp-client/assets/2311075/7436ab37-a68d-448a-8c44-a312760376c3

### How to start the Workflow Diagram example?

Expand Down
Binary file removed documentation/standalone-diagram.gif
Binary file not shown.
4 changes: 2 additions & 2 deletions examples/workflow-glsp/package.json
@@ -1,6 +1,6 @@
{
"name": "@eclipse-glsp-examples/workflow-glsp",
"version": "1.1.0-next",
"version": "2.0.0",
"description": "GLSP diagrams for the Workflow DSL",
"keywords": [
"glsp",
Expand Down Expand Up @@ -43,7 +43,7 @@
"watch": "tsc -w"
},
"dependencies": {
"@eclipse-glsp/client": "1.1.0-next",
"@eclipse-glsp/client": "~2.0.0",
"balloon-css": "^0.5.0"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions examples/workflow-standalone/package.json
@@ -1,6 +1,6 @@
{
"name": "workflow-standalone",
"version": "1.1.0-next",
"version": "2.0.0",
"private": true,
"description": "Standalone browser-app for the Workflow example",
"homepage": "https://www.eclipse.org/glsp/",
Expand Down Expand Up @@ -31,8 +31,8 @@
"watch": "tsc -w -p ./tsconfig.json"
},
"dependencies": {
"@eclipse-glsp-examples/workflow-glsp": "1.1.0-next",
"@eclipse-glsp/client": "1.1.0-next"
"@eclipse-glsp-examples/workflow-glsp": "~2.0.0",
"@eclipse-glsp/client": "~2.0.0"
},
"devDependencies": {
"@types/shelljs": "0.8.12",
Expand Down
2 changes: 1 addition & 1 deletion examples/workflow-standalone/scripts/config.json
@@ -1,4 +1,4 @@
{
"fileName": "workflow-server",
"version": "next"
"version": "2.0.1"
}
2 changes: 1 addition & 1 deletion lerna.json
@@ -1,5 +1,5 @@
{
"version": "1.0.0",
"version": "2.0.0",
"npmClient": "yarn",
"command": {
"run": {
Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "parent",
"version": "1.0.0",
"version": "2.0.0",
"private": true,
"workspaces": [
"packages/*",
Expand All @@ -27,7 +27,7 @@
"watch": "lerna run --parallel watch"
},
"devDependencies": {
"@eclipse-glsp/dev": "1.1.0-next.3b7f01d.144",
"@eclipse-glsp/dev": "~2.0.0",
"@types/lodash": "4.14.191",
"@types/node": "16.x",
"lerna": "^7.1.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/client/package.json
@@ -1,6 +1,6 @@
{
"name": "@eclipse-glsp/client",
"version": "1.1.0-next",
"version": "2.0.0",
"description": "A sprotty-based client for GLSP",
"keywords": [
"eclipse",
Expand Down Expand Up @@ -47,7 +47,7 @@
"watch": "tsc -w"
},
"dependencies": {
"@eclipse-glsp/sprotty": "1.1.0-next",
"@eclipse-glsp/sprotty": "~2.0.0",
"autocompleter": "^9.1.0",
"file-saver": "^2.0.5",
"lodash": "4.17.21"
Expand Down
7 changes: 4 additions & 3 deletions packages/glsp-sprotty/package.json
@@ -1,6 +1,6 @@
{
"name": "@eclipse-glsp/sprotty",
"version": "1.1.0-next",
"version": "2.0.0",
"description": "Augmented reexport of the sprotty API for GLSP",
"homepage": "https://www.eclipse.org/glsp/",
"bugs": "https://github.com/eclipse-glsp/glsp/issues",
Expand Down Expand Up @@ -34,10 +34,11 @@
"watch": "tsc -w"
},
"dependencies": {
"@eclipse-glsp/protocol": "1.1.0-next",
"@eclipse-glsp/protocol": "~2.0.0",
"autocompleter": "^9.1.0",
"snabbdom": "^3.5.1",
"sprotty": "0.15.0-next.044bba2.13"
"sprotty": "1.0.0",
"sprotty-protocol": "1.0.0"
},
"devDependencies": {
"@types/jsdom": "^21.1.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/package.json
@@ -1,6 +1,6 @@
{
"name": "@eclipse-glsp/protocol",
"version": "1.1.0-next",
"version": "2.0.0",
"description": "The protocol definition for client-server communication in GLSP",
"keywords": [
"eclipse",
Expand Down

0 comments on commit 5aeeb4d

Please sign in to comment.