whitequark / kicad-boardview

KiCAD to Boardview exporter reads KiCAD PCB layout files and writes ASCII Boardview files
BSD Zero Clause License
152 stars 23 forks source link

Fixed code for compatibility with KiCad 8, updated dead link. #13

Closed sabogalc closed 6 months ago

sabogalc commented 6 months ago

The pcbnew plugin interface link was a 404, so I updated it to the current link.

More importantly, the code breaks on KiCad 8 with the below error. image

To fix this, I just changed pad.GetParent().IsFlipped() to pad.IsFlipped() and this fixed the error.

whitequark commented 6 months ago

Does this still work on KiCAD 6..7?

sabogalc commented 6 months ago

Still works perfect on 7, I can install 6 on another machine to test that.