Makes the additional layers text autocomplete and the gerber generator use the list of currently active layers > * Add: utils to get dynamic layers > > * Change: Use KiCad standard name for layers > > * Add: description to new util funcs > > * Fix: only include active layers in layer util funcs > > * Fix: infinite loop > > * Change: use util layer functions in processmanager > > * Remove: hardcoded layers > > * Change: use new util layer functions in dialog > > * Change: include comma-separated hint in layer control
13 lines
332 B
Python
13 lines
332 B
Python
import pcbnew # type: ignore
|
|
|
|
baseUrl = 'https://www.jlcpcb.com'
|
|
|
|
netlistFileName = 'netlist.ipc'
|
|
designatorsFileName = 'designators.csv'
|
|
placementFileName = 'positions.csv'
|
|
bomFileName = 'bom.csv'
|
|
gerberArchiveName = 'gerbers.zip'
|
|
outputFolder = 'production'
|
|
bomRowLimit = 200
|
|
|
|
optionsFileName = 'fabrication-toolkit-options.json' |