SchrodingersGat / KiBoM

Configurable BoM generation tool for KiCad EDA (http://kicad.org/)
MIT License
352 stars 95 forks source link

Added "join" to join fields like voltage, current, etc. with the value #115

Closed set-soft closed 3 years ago

set-soft commented 3 years ago

Description

1 nF 50 V isn't the same as 1 nF 100 V and having separated columns for each possible modifier is an overkill. Joining the fields to the value is compact and natural.

How to use

Define a section named [JOIN]. In this section each entry is the name of a field, followed by the name of the fields that will be added to its column. Use tab (ASCII 9) as separator. Example:

[JOIN]
Value   Voltage Current Power   Tolerance

This will attach the voltage, current, power and tolerance fields to the value field.

This patch replaces #81 and is smaller and more generic.

SchrodingersGat commented 3 years ago

I have merged this and added some documentation into README.md