-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathplugin.json
More file actions
30 lines (30 loc) · 764 Bytes
/
Copy pathplugin.json
File metadata and controls
30 lines (30 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"$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"
]
}
]
}