Add LedFx debugger for VS Code

This commit is contained in:
Shaun Eccles-Smith 2021-04-24 13:50:36 +10:00
parent 5ffb49c558
commit 76868047f9
3 changed files with 38 additions and 4 deletions

2
.gitignore vendored
View File

@ -63,8 +63,6 @@ formatting_test.bat
# Misc
.devcontainer/ledfx-config.yml
.vscode/launch.json
win.spec
frontend/*.eslintcache
*.eslintcache

36
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,36 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: LedFx",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}\\ledfx\\__main__.py",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Python: LedFx Verbose Logging",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}\\ledfx\\__main__.py",
"args": ["-vv"],
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true
}
]
}

View File

@ -8,8 +8,8 @@ Our pip package will be rebuilt automatically when new releases are pushed - we
| Version | Supported |
| ------- | ------------------ |
| 0.10.2 | :white_check_mark: |
| <0.10.2 | :x: |
| 1.0.0 | :white_check_mark: |
| <1.0.0 | :x: |
## Reporting a Vulnerability