Fixed KiBoM mounting hole regex
- Applied to the Footprint
- The ac39118 fix only affected the Part
Related to SchrodingersGat/KiBoM#169
Fixes #201
This commit is contained in:
parent
9b6b336847
commit
b206d417ca
|
|
@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
### Fixed
|
||||
- Components with mounting hole where excluded (#201)
|
||||
|
||||
## [1.1.0] - 2022-05-24
|
||||
### Added
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ DEFAULT_EXCLUDE = [{'column': ColumnList.COL_REFERENCE, 'regex': '^TP[0-9]*'},
|
|||
{'column': ColumnList.COL_PART, 'regex': 'solder.*jump'},
|
||||
{'column': ColumnList.COL_PART, 'regex': 'test.*point'},
|
||||
{'column': ColumnList.COL_FP, 'regex': 'test.*point'},
|
||||
{'column': ColumnList.COL_FP, 'regex': 'mount.*hole'},
|
||||
{'column': ColumnList.COL_FP, 'regex': '^mount.*hole'},
|
||||
{'column': ColumnList.COL_FP, 'regex': 'fiducial'},
|
||||
]
|
||||
KICOST_NAME_TRANSLATIONS = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue