aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordevThijs <ownedthijs@gmail.com>2020-01-09 21:57:04 +0100
committerjaseg <git@jaseg.net>2020-01-10 07:49:18 +0100
commit0c8aa84aec430067225aa470d59bb24a8462fe8a (patch)
tree038343a5276a1325178ea95c87acd6b3431922f8
parent29a20da87fae96cf89e082f8b0d4e194b662b55e (diff)
downloadgerbolyze-0c8aa84aec430067225aa470d59bb24a8462fe8a.tar.gz
gerbolyze-0c8aa84aec430067225aa470d59bb24a8462fe8a.tar.bz2
gerbolyze-0c8aa84aec430067225aa470d59bb24a8462fe8a.zip
Add .gko ending for Altium board outline layer
Altium does not have a formally standardized layer for the board outline. We now recognize both mechanical layer 1 and the keepout layer.
-rwxr-xr-xgerbolyze.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gerbolyze.py b/gerbolyze.py
index 47a9e33..ea74676 100755
--- a/gerbolyze.py
+++ b/gerbolyze.py
@@ -294,14 +294,14 @@ LAYER_SPEC = {
'silk': '.gto|-F_SilkS.gbr|-F.SilkS.gbr|.plc',
'mask': '.gts|-F_Mask.gbr|-F.Mask.gbr|.stc',
'copper': '.gtl|-F_Cu.gbr|-F.Cu.gbr|.cmp',
- 'outline': '.gm1|-Edge_Cuts.gbr|-Edge.Cuts.gbr|.gmb',
+ 'outline': '.gko|.gm1|-Edge_Cuts.gbr|-Edge.Cuts.gbr|.gmb',
},
'bottom': {
'paste': '.gbp|-B_Paste.gbr|-B.Paste.gbr|.pms',
'silk': '.gbo|-B_SilkS.gbr|-B.SilkS.gbr|.pls',
'mask': '.gbs|-B_Mask.gbr|-B.Mask.gbr|.sts',
'copper': '.gbl|-B_Cu.gbr|-B.Cu.gbr|.sol',
- 'outline': '.gm1|-Edge_Cuts.gbr|-Edge.Cuts.gbr|.gmb'
+ 'outline': '.gko|.gm1|-Edge_Cuts.gbr|-Edge.Cuts.gbr|.gmb'
},
}