Add recognize support for eagle old file extensions.
This commit is contained in:
parent
c7f3bc2f22
commit
8805b75a41
1 changed files with 11 additions and 10 deletions
|
|
@ -45,51 +45,52 @@ hints = [
|
|||
name=['art', 'internal', 'pgp', 'pwr', 'gnd', 'ground',
|
||||
'gp1', 'gp2', 'gp3', 'gp4', 'gt5', 'gp6',
|
||||
'In1.Cu', 'In2.Cu', 'In3.Cu', 'In4.Cu',
|
||||
'group3', 'group4', 'group5', 'group6', 'group7', 'group8', ],
|
||||
'group3', 'group4', 'group5', 'group6', 'group7', 'group8',
|
||||
'copper_top_l1', 'copper_inner_l2', 'copper_inner_l3', 'copper_bottom_l4', ],
|
||||
regex='',
|
||||
content=[]
|
||||
),
|
||||
Hint(layer='topsilk',
|
||||
ext=['gto', 'sst', 'plc', 'ts', 'skt', 'topsilk', ],
|
||||
name=['sst01', 'topsilk', 'silk', 'slk', 'sst', 'F.SilkS'],
|
||||
ext=['gto', 'sst', 'plc', 'ts', 'skt', 'topsilk'],
|
||||
name=['sst01', 'topsilk', 'silk', 'slk', 'sst', 'F.SilkS', 'silkscreen_top'],
|
||||
regex='',
|
||||
content=[]
|
||||
),
|
||||
Hint(layer='bottomsilk',
|
||||
ext=['gbo', 'ssb', 'pls', 'bs', 'skb', 'bottomsilk', ],
|
||||
name=['bsilk', 'ssb', 'botsilk', 'bottomsilk', 'B.SilkS'],
|
||||
ext=['gbo', 'ssb', 'pls', 'bs', 'skb', 'bottomsilk'],
|
||||
name=['bsilk', 'ssb', 'botsilk', 'bottomsilk', 'B.SilkS', 'silkscreen_bottom'],
|
||||
regex='',
|
||||
content=[]
|
||||
),
|
||||
Hint(layer='topmask',
|
||||
ext=['gts', 'stc', 'tmk', 'smt', 'tr', 'topmask', ],
|
||||
name=['sm01', 'cmask', 'tmask', 'mask1', 'maskcom', 'topmask',
|
||||
'mst', 'F.Mask', ],
|
||||
'mst', 'F.Mask', 'soldermask_top'],
|
||||
regex='',
|
||||
content=[]
|
||||
),
|
||||
Hint(layer='bottommask',
|
||||
ext=['gbs', 'sts', 'bmk', 'smb', 'br', 'bottommask', ],
|
||||
name=['sm', 'bmask', 'mask2', 'masksold', 'botmask', 'bottommask',
|
||||
'msb', 'B.Mask', ],
|
||||
'msb', 'B.Mask', 'soldermask_bottom'],
|
||||
regex='',
|
||||
content=[]
|
||||
),
|
||||
Hint(layer='toppaste',
|
||||
ext=['gtp', 'tm', 'toppaste', ],
|
||||
name=['sp01', 'toppaste', 'pst', 'F.Paste'],
|
||||
name=['sp01', 'toppaste', 'pst', 'F.Paste', 'solderpaste_top'],
|
||||
regex='',
|
||||
content=[]
|
||||
),
|
||||
Hint(layer='bottompaste',
|
||||
ext=['gbp', 'bm', 'bottompaste', ],
|
||||
name=['sp02', 'botpaste', 'bottompaste', 'psb', 'B.Paste', ],
|
||||
name=['sp02', 'botpaste', 'bottompaste', 'psb', 'B.Paste', 'solderpaste_bottom'],
|
||||
regex='',
|
||||
content=[]
|
||||
),
|
||||
Hint(layer='outline',
|
||||
ext=['gko', 'outline', ],
|
||||
name=['BDR', 'border', 'out', 'outline', 'Edge.Cuts', ],
|
||||
name=['BDR', 'border', 'out', 'outline', 'Edge.Cuts', 'profile'],
|
||||
regex='',
|
||||
content=[]
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue