Skip to content

Commit 6c06dfe

Browse files
committed
Blueprint 0.6.0
1 parent 1f80777 commit 6c06dfe

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
lines changed

blueprint-compiler

Submodule blueprint-compiler updated from 592ed7a to c587c13

data/app.metainfo.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<description>
5151
<ul>
5252
<li>Add support for JavaScript diagnostics</li>
53+
<li>Blueprint 0.6.0</li>
5354
</ul>
5455
</description>
5556
</release>

re.sonny.Workbench.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
{
5757
"type": "git",
5858
"url": "https://gitlab.gnome.org/sonny/blueprint-compiler",
59-
"commit": "592ed7acab26f1633c03b0cd703a9cf2b7f09cb9"
59+
"commit": "c587c13a96efa79954e3ac3b9dfd8751e32e5a25"
6060
}
6161
]
6262
},

src/langs/blueprint/blueprint.js

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,7 @@ export function setup({ data_dir }) {
7373
uri,
7474
version: ++document_version,
7575
},
76-
// FIXME: https://gitlab.gnome.org/jwestman/blueprint-compiler/-/merge_requests/84
77-
contentChanges: [buffer.text],
76+
contentChanges: [{text: buffer.text}],
7877
})
7978
.catch(logError);
8079
});
@@ -94,11 +93,8 @@ export function setup({ data_dir }) {
9493
);
9594
const lspc = new LSPClient([
9695
// "/home/sonny/Projects/Workbench/blueprint-compiler/blueprint-compiler.py",
97-
// "/app/bin/blueprint-compiler",
98-
"blueprint-compiler",
96+
"/app/bin/blueprint-compiler",
9997
"lsp",
100-
"--logfile",
101-
file_blueprint_logs.get_path(),
10298
]);
10399
lspc.connect("exit", () => {
104100
console.debug("blueprint language server exit");
@@ -138,8 +134,7 @@ export function setup({ data_dir }) {
138134
uri,
139135
version: ++document_version,
140136
},
141-
// FIXME: https://gitlab.gnome.org/jwestman/blueprint-compiler/-/merge_requests/84
142-
contentChanges: [buffer.text],
137+
contentChanges: [{text: buffer.text}],
143138
});
144139

145140
const [{ xml }] = await once(

0 commit comments

Comments
 (0)