circuitscript 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/libs/std.cst +2 -1
- package/libs/std.cst +2 -1
- package/package.json +1 -1
package/dist/libs/std.cst
CHANGED
|
@@ -428,4 +428,5 @@ def sheet_A6(revision="V1"):
|
|
|
428
428
|
return tmp_sheet
|
|
429
429
|
|
|
430
430
|
document.sheet_type = sheet_A4()
|
|
431
|
-
document.bom.columns = ["refdes", "mpn", "manufacturer", "footprint"]
|
|
431
|
+
document.bom.columns = ["refdes", "mpn", "manufacturer", "footprint"]
|
|
432
|
+
document.bom.group_by = ["mpn", "manufacturer"]
|
package/libs/std.cst
CHANGED
|
@@ -428,4 +428,5 @@ def sheet_A6(revision="V1"):
|
|
|
428
428
|
return tmp_sheet
|
|
429
429
|
|
|
430
430
|
document.sheet_type = sheet_A4()
|
|
431
|
-
document.bom.columns = ["refdes", "mpn", "manufacturer", "footprint"]
|
|
431
|
+
document.bom.columns = ["refdes", "mpn", "manufacturer", "footprint"]
|
|
432
|
+
document.bom.group_by = ["mpn", "manufacturer"]
|