Skip to content

Commit eb1473f

Browse files
committed
Workaround for KiCad 8.0.8
See yaqwsx#784
1 parent 24ba8ba commit eb1473f

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
kikit (1.6.0-6) stable; urgency=medium
2+
3+
* KiCad 8.0.8 project setting workaround
4+
5+
-- Salvador Eduardo Tropea <salvador@inti.gob.ar> Thu, 23 Jan 2025 12:01:12 -0300
6+
17
kikit (1.6.0-5) stable; urgency=medium
28

39
* KiCad 9 detection

kikit/panelize.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -584,10 +584,6 @@ def save(self, reconstructArcs: bool=False, refillAllZones: bool=False,
584584
zone.SetZoneName(newName)
585585
self.board.Save(self.filename)
586586

587-
self.makeLayersVisible() # as they are not in KiCAD 6
588-
self.transferProjectSettings()
589-
self.writeCustomDrcRules()
590-
591587
# Remove cuts
592588
for cut, _ in vcuts:
593589
self.board.Remove(cut)
@@ -625,6 +621,11 @@ def save(self, reconstructArcs: bool=False, refillAllZones: bool=False,
625621
fillerTool.Fill(zonesToRefill)
626622

627623
fillBoard.Save(self.filename)
624+
625+
self.makeLayersVisible() # as they are not in KiCAD 6
626+
self.transferProjectSettings()
627+
self.writeCustomDrcRules()
628+
628629
self._adjustPageSize()
629630

630631
def _getRefillEdges(self, reconstructArcs: bool):

0 commit comments

Comments
 (0)