nathanpc / build-bom

A simple Perl script to build BOMs from schematic files
http://nathanpc.github.io/build-bom/
MIT License
1 stars 0 forks source link

Component ID's cut off in newest KiCad #4

Closed Virtex6 closed 10 years ago

Virtex6 commented 10 years ago

The Script cut off the last Value of the Components ID. I've fixed that with replacing the Line 133 "while ($cmpblock =~ /(.+)[^;\n]/g) {" with "while ($cmpblock =~ /(.+)[^\n]/g) {"

nathanpc commented 10 years ago

Thanks very much for pointing this out.