Releases: tintinweb/vscode-interactive-graphviz
Releases · tintinweb/vscode-interactive-graphviz
Version 0.3.5
Version 0.3.4
0.3.4
- fix: A bug could lead to the web view crashing when another extension created a DOT document (with automatically open enabled) and then executes the preview command - #138
Version 0.3.3
0.3.3
- update: API - Allow caller to define view options (preserveFocus, vieColumn) - #132
- fix: "openAutomatically" creates a new URI object. When revealing the graph for an already rendered
.dot
file the extension would open another render view because the lookup if the panel already exists fails asvscode.URI
objects are not singletons (new vscode.Uri("hi") != new vscode.Uri("hi")
. in order to fix this we now indexvscode.Uri.toString()
in theURI -> panelObject
mapping. - #131 #132 - update: dependencies
Version 0.3.2
0.3.2
- new: Added option for not focusing on the newly created preview (focus stays on the editor) (default:
true
, setting:graphviz-interactive-preview.preserveFocus
) - #125 - new: Automatically open the preview when opening files with the DOT-Language (default:
true
, setting:graphviz-interactive-preview.openAutomatically
) - #122 - new: Added (experimental) configuration option to use VSCode's Theme Colors (default:
false
, setting:graphviz-interactive-preview.view.themeColors
) - #72 #120 - new: given an URI and no content the content is read from the URI - #119
- fix: Also Dim Node Background color - #115
- update: dependencies
Version 0.3.1
Version 0.3.0
Version 0.2.1
Version 0.2.0
Version 0.1.2
Version 0.1.1
0.1.1
- new: the extension now bundles dot language support, syntax highlighting, snippets from vscode-graphviz with permission from the author @joaompinto - #62
- new: completion provider - #62
- new: Allow case insensitive matching in search - #64, #65