Skip to content

Commit

Permalink
[vscode] v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chanhx committed Sep 24, 2023
1 parent 2aac2bf commit 2b153d5
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 6 deletions.
12 changes: 9 additions & 3 deletions editors/code/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
# Change Log

## 0.1.1 (2023.6.17)
## 0.2.0 (2023.9.24)

### Fixed
### Features

* Focus won't get cleared when dragging the graph
* Export call graph

## 0.1.2 (2023.9.7)

### Fixed

* Edges are not rendered for some languages or certain calls

## 0.1.1 (2023.6.17)

### Fixed

* Focus won't get cleared when dragging the graph
4 changes: 2 additions & 2 deletions editors/code/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 18 additions & 1 deletion editors/code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "crabviz",
"displayName": "Crabviz",
"description": "interactive call graph generator",
"version": "0.1.2",
"version": "0.2.0",
"publisher": "chanhx",
"author": {
"name": "Chan HoCheung"
Expand All @@ -23,25 +23,42 @@
],
"activationEvents": [],
"main": "./dist/extension.js",
"enabledApiProposals": [
"contribWebviewContext"
],
"contributes": {
"commands": [
{
"command": "crabviz.generateCallGraph",
"title": "Crabviz: Generate Call Graph"
},
{
"command": "crabviz.exportCallGraph",
"title": "Export Call Graph"
}
],
"menus": {
"commandPalette": [
{
"command": "crabviz.generateCallGraph",
"when": "never"
},
{
"command": "crabviz.exportCallGraph",
"when": "never"
}
],
"explorer/context": [
{
"command": "crabviz.generateCallGraph",
"group": "crabviz"
}
],
"webview/context": [
{
"command": "crabviz.exportCallGraph",
"when": "webviewId == 'crabviz.callgraph'"
}
]
}
},
Expand Down

0 comments on commit 2b153d5

Please sign in to comment.