0
mirror of https://github.com/bbenchoff/OrthoRoute.git synced 2026-08-31 00:06:33 +00:00
Files
OrthoRoute/plugin.json
2026-07-29 21:44:17 -07:00

31 lines
764 B
JSON

{
"$schema": "https://go.kicad.org/api/schemas/v1",
"identifier": "com.github.bbenchoff.orthoroute",
"name": "OrthoRoute",
"description": "GPU-accelerated PCB autorouter using PathFinder negotiated congestion on a Manhattan lattice.",
"runtime": {
"type": "python",
"min_version": "3.11"
},
"actions": [
{
"identifier": "route-board",
"name": "Launch OrthoRoute",
"description": "Open OrthoRoute for the active PCB",
"show-button": true,
"scopes": [
"pcb"
],
"entrypoint": "kicad_plugin.py",
"icons-light": [
"graphics/icon24.png",
"graphics/icon64.png"
],
"icons-dark": [
"graphics/icon24.png",
"graphics/icon64.png"
]
}
]
}