-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
13 additions
and
5 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
"description": "Learning environment for digital hardware design with Yosys and nextpnr.", | ||
"repository": "github:EDAcation/vscode-edacation", | ||
"license": "MIT", | ||
"version": "0.5.5", | ||
"version": "0.5.6", | ||
"contributors": [ | ||
"Danielle Huisman <[email protected]> (https://github.com/DanielleHuisman)", | ||
"Daan Middelkoop <[email protected]>", | ||
|
@@ -35,8 +35,16 @@ | |
"type": "string", | ||
"markdownDescription": "Specifies the tool provider used to run Yosys and Nextpnr. See the [docs](https://github.com/EDAcation/vscode-edacation/blob/main/docs/tool-provider.md) for more information.", | ||
"default": "native-managed", | ||
"enum": ["native-managed", "native-host", "web"], | ||
"enumItemLabels": ["Native (Managed)", "Native (Host)", "Web"], | ||
"enum": [ | ||
"native-managed", | ||
"native-host", | ||
"web" | ||
], | ||
"enumItemLabels": [ | ||
"Native (Managed)", | ||
"Native (Host)", | ||
"Web" | ||
], | ||
"enumDescriptions": [ | ||
"Let EDAcation install and manage native Yosys & Nextpnr tools on your system. Only available on VSCode for Desktop on certain platforms.", | ||
"Use native Yosys & Nextpnr tools that are already present on the system. Requires said tools to be available in PATH. Only available on VSCode for Desktop.", | ||
|