display overhaul, compatibility with legacy plugins, fixes

This commit is contained in:
marios
2022-05-26 04:00:18 +03:00
parent 74438a3145
commit 4b923c1dc7
20 changed files with 2014 additions and 229 deletions
+6 -3
View File
@@ -5,10 +5,13 @@
"name": "Debug",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/plugin_loader/main.py",
"preLaunchTask": "Stop Service",
"program": "${workspaceFolder}/backend/main.py",
"cwd": "${workspaceFolder}/backend",
"console": "integratedTerminal",
"justMyCode": true
"env": {
"PLUGIN_PATH": "/home/deck/homebrew/plugins"
},
"preLaunchTask": "Build frontend"
}
]
}
+6 -1
View File
@@ -5,6 +5,11 @@
"label": "Stop Service",
"type": "shell",
"command":"systemctl --user stop plugin_loader",
}
},
{
"label": "Build frontend",
"type": "shell",
"command":"cd ${workspaceFolder}/frontend; npm run build",
}
]
}