Skip to content

Commit f2b9c70

Browse files
authored
Fix extension failure in remote SSH (#204)
In case of remote sessions, this makes the extension run on the users local machine, fixing binary dependency issues.
1 parent 8974f21 commit f2b9c70

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
# 0.8.1
4+
5+
## Fixed
6+
7+
- Extension not working in remote SSH session ([#201](https://github.com/selfint/code-blocks/issues/201)). The extension now runs on the local host rather than the remote. This means that parsers are now installed only once, and `npm` is required only on the local machine.
8+
39
# 0.8.0
410

511
## Added

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"color": "#6295E3",
1818
"theme": "dark"
1919
},
20-
"version": "0.8.0",
20+
"version": "0.8.1",
2121
"private": true,
2222
"license": "MIT",
2323
"engines": {
@@ -36,6 +36,9 @@
3636
"visualization"
3737
],
3838
"preview": false,
39+
"extensionKind": [
40+
"ui"
41+
],
3942
"activationEvents": [
4043
"onLanguage"
4144
],

0 commit comments

Comments
 (0)