From c22ccb607a918d6366a63d3d61f30ea8fbbc40da Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Mon, 25 May 2020 18:31:31 -0300 Subject: [PATCH] Fixed: All pcbnew plot formats generated gerber job files --- CHANGELOG.md | 3 +++ kiplot/kiplot.py | 2 ++ 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c796e77..16f16a40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Tolerate config files without outputs +### Fixed +- All pcbnew plot formats generated gerber job files + ## [0.2.4] - 2020-05-19 ### Changed - Now kicad-automation-scripts 1.3.1 or newer is needed. diff --git a/kiplot/kiplot.py b/kiplot/kiplot.py index 56709f0d..3173a18f 100644 --- a/kiplot/kiplot.py +++ b/kiplot/kiplot.py @@ -773,6 +773,8 @@ class Plotter(object): # in general, false, but gerber will set it back later po.SetUseGerberAttributes(False) + # Only useful for gerber outputs + po.SetCreateGerberJobFile(False) if output.options.type == PCfg.OutputOptions.GERBER: self._configure_gerber_opts(po, output)