Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/version_check' into intf-discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
kaelemc committed Feb 1, 2025
2 parents 49620b4 + d7df20a commit 5abb4fe
Show file tree
Hide file tree
Showing 8 changed files with 457 additions and 237 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

19 changes: 14 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"displayName": "Containerlab",
"icon": "resources/containerlab.png",
"description": "Manages containerlab topologies in VS Code",
"version": "0.4.0",
"version": "0.4.1",
"engines": {
"vscode": "^1.70.0"
},
Expand All @@ -18,7 +18,6 @@
],
"main": "./out/extension.js",
"activationEvents": [
"onCommand:your.extension.command",
"onStartupFinished"
],
"categories": [
Expand Down Expand Up @@ -377,7 +376,7 @@
},
{
"command": "containerlab.inspectOneLab",
"when": "viewItem =~ /containerlabLab/",
"when": "viewItem == containerlabLabDeployed",
"group": "navigation@7"
},
{
Expand Down Expand Up @@ -591,7 +590,7 @@
},
"containerlab.sudoEnabledByDefault": {
"type": "boolean",
"default": true,
"default": false,
"description": "Whether to prepend 'sudo' to all containerlab commands by default."
},
"containerlab.refreshInterval": {
Expand All @@ -607,6 +606,16 @@
"default": {},
"markdownDescription": "Change the default exec action for node when using the 'attach' command. Enter in the mapping between the kind and command.\n\nFor example: `{\"nokia_srlinux\": \"sr_cli\"}` means that `docker exec -it <container> sr_cli` will be executed if `<container>` is the `nokia_srlinux` kind."
},
"containerlab.drawioDefaultTheme": {
"type": "string",
"enum": [
"nokia_modern",
"nokia",
"grafana"
],
"default": "nokia_modern",
"description": "Default theme to use when generating DrawIO graphs."
},
"containerlab.wsl.wiresharkPath": {
"type": "string",
"default": "/mnt/c/Program Files/Wireshark/wireshark.exe",
Expand All @@ -617,7 +626,7 @@
"default": "",
"scope": "machine",
"markdownDescription": "The hostname to use for connections to/from this host. Can be either DNS resolvable hostname, or an IPv4/6 address. Used for packet capture.\n\n**Note:** A configured hostname for *this session of VS Code* takes precedence. (Command palette: **Containerlab: Configure session hostname**)"
}
}
}
}
},
Expand Down
Loading

0 comments on commit 5abb4fe

Please sign in to comment.