Skip to content

Commit 5aeeb4d

Browse files
committed
v2.0.0
1 parent c341367 commit 5aeeb4d

File tree

12 files changed

+1373
-1318
lines changed

12 files changed

+1373
-1318
lines changed

CHANGELOG.md

Lines changed: 67 additions & 32 deletions
Large diffs are not rendered by default.

README.md

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

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

2323
### How to start the Workflow Diagram example?
2424

-705 KB
Binary file not shown.

examples/workflow-glsp/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-glsp-examples/workflow-glsp",
3-
"version": "1.1.0-next",
3+
"version": "2.0.0",
44
"description": "GLSP diagrams for the Workflow DSL",
55
"keywords": [
66
"glsp",
@@ -43,7 +43,7 @@
4343
"watch": "tsc -w"
4444
},
4545
"dependencies": {
46-
"@eclipse-glsp/client": "1.1.0-next",
46+
"@eclipse-glsp/client": "~2.0.0",
4747
"balloon-css": "^0.5.0"
4848
},
4949
"devDependencies": {

examples/workflow-standalone/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "workflow-standalone",
3-
"version": "1.1.0-next",
3+
"version": "2.0.0",
44
"private": true,
55
"description": "Standalone browser-app for the Workflow example",
66
"homepage": "https://www.eclipse.org/glsp/",
@@ -31,8 +31,8 @@
3131
"watch": "tsc -w -p ./tsconfig.json"
3232
},
3333
"dependencies": {
34-
"@eclipse-glsp-examples/workflow-glsp": "1.1.0-next",
35-
"@eclipse-glsp/client": "1.1.0-next"
34+
"@eclipse-glsp-examples/workflow-glsp": "~2.0.0",
35+
"@eclipse-glsp/client": "~2.0.0"
3636
},
3737
"devDependencies": {
3838
"@types/shelljs": "0.8.12",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"fileName": "workflow-server",
3-
"version": "next"
3+
"version": "2.0.1"
44
}

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0",
2+
"version": "2.0.0",
33
"npmClient": "yarn",
44
"command": {
55
"run": {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parent",
3-
"version": "1.0.0",
3+
"version": "2.0.0",
44
"private": true,
55
"workspaces": [
66
"packages/*",
@@ -27,7 +27,7 @@
2727
"watch": "lerna run --parallel watch"
2828
},
2929
"devDependencies": {
30-
"@eclipse-glsp/dev": "1.1.0-next.3b7f01d.144",
30+
"@eclipse-glsp/dev": "~2.0.0",
3131
"@types/lodash": "4.14.191",
3232
"@types/node": "16.x",
3333
"lerna": "^7.1.1",

packages/client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-glsp/client",
3-
"version": "1.1.0-next",
3+
"version": "2.0.0",
44
"description": "A sprotty-based client for GLSP",
55
"keywords": [
66
"eclipse",
@@ -47,7 +47,7 @@
4747
"watch": "tsc -w"
4848
},
4949
"dependencies": {
50-
"@eclipse-glsp/sprotty": "1.1.0-next",
50+
"@eclipse-glsp/sprotty": "~2.0.0",
5151
"autocompleter": "^9.1.0",
5252
"file-saver": "^2.0.5",
5353
"lodash": "4.17.21"

packages/glsp-sprotty/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-glsp/sprotty",
3-
"version": "1.1.0-next",
3+
"version": "2.0.0",
44
"description": "Augmented reexport of the sprotty API for GLSP",
55
"homepage": "https://www.eclipse.org/glsp/",
66
"bugs": "https://github.com/eclipse-glsp/glsp/issues",
@@ -34,10 +34,11 @@
3434
"watch": "tsc -w"
3535
},
3636
"dependencies": {
37-
"@eclipse-glsp/protocol": "1.1.0-next",
37+
"@eclipse-glsp/protocol": "~2.0.0",
3838
"autocompleter": "^9.1.0",
3939
"snabbdom": "^3.5.1",
40-
"sprotty": "0.15.0-next.044bba2.13"
40+
"sprotty": "1.0.0",
41+
"sprotty-protocol": "1.0.0"
4142
},
4243
"devDependencies": {
4344
"@types/jsdom": "^21.1.3",

0 commit comments

Comments
 (0)