From 0c8aa84aec430067225aa470d59bb24a8462fe8a Mon Sep 17 00:00:00 2001 From: devThijs Date: Thu, 9 Jan 2020 21:57:04 +0100 Subject: 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. --- gerbolyze.py | 4 ++-- 1 file 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' }, } -- cgit