Skip to content

Commit 8f2c6a7

Browse files
authored
prepare v0.2.0 (#93)
* prepare v0.2.0 * update readme * fix typo * update readme
1 parent 7c14eae commit 8f2c6a7

File tree

4 files changed

+40
-10
lines changed

4 files changed

+40
-10
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Change Log
22

3+
## 0.2.0
4+
5+
- new: Implements Selection of Render Engine - #85 fixes #69
6+
7+
<img width="576" alt="Screenshot 2022-03-31 at 22 46 36" src="https://user-images.githubusercontent.com/27259/161146471-6fb269df-5e3a-4f71-ab6e-37391b33c09c.png">
8+
9+
- new: Provide color decorator - #86 fixes #77
10+
11+
<img width="472" alt="image" src="https://user-images.githubusercontent.com/2865694/163130099-30227a10-e471-4fe0-9564-1d3338f09726.png">
12+
13+
- new: Hover Information - #88 fixes #76
14+
15+
<img width="303" alt="Screenshot 2022-04-01 at 13 05 39" src="https://user-images.githubusercontent.com/27259/161251962-6aa3792c-70da-4f48-a9fa-5933012fede2.png">
16+
17+
- fix: Clicking on the background brings it to foreground, covering the nodes - #90 fixes #70
18+
19+
- new: Show Diagnostic errors in the editor's "Problems" view - #89 fixes #75
20+
21+
<img width="576" alt="image" src="https://user-images.githubusercontent.com/2865694/163143275-05f0547b-ce69-43ce-af66-ed76b1f7aa88.png">
22+
23+
- new: Improved CompletionProvider - #91
24+
- update: Webview UI toolkit updated to 1.0.0 #92
25+
326
## 0.1.2
427
- new: active editor window: context menu -> Preview Graphviz / DOT (beside) - #67
528

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ A VSCode extension that provides syntax highlighting, snippets, and an interacti
1919
* Interactive edge tracing. Click on a node to highlight incoming and outgoing edges (`ESC` to unselect).
2020
* Search for nodes in the graph.
2121
* Export the graph as `svg` or `dot`.
22-
* Configurable render options & tracing preference: e.g. `transitionDelay`, `transitionDuration`.
22+
* Hover Provider, Color Picker, Diagnostics Provider, and AutoCompletion
23+
* Configurable render engine, render options & tracing preference: e.g. `transitionDelay`, `transitionDuration`.
2324
* Available on [github.dev](https://github.dev), [vscode.dev](https://vscode.dev)
2425
* Developers: you can pass a callback function that receives the webPanel when executing the preview command. This allows you to override functionality that is provided by the webPanel, like handlers for click/dblClick events.
2526

package-lock.json

Lines changed: 14 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "graphviz-interactive-preview",
33
"displayName": "Graphviz Interactive Preview",
44
"description": "Graphviz (dot) Interactive Preview",
5-
"version": "0.1.2",
5+
"version": "0.2.0",
66
"keywords": [
77
"dot",
88
"graphviz",

0 commit comments

Comments
 (0)