From 0db1ded255b79f69017dae10d7448112a34255f1 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Sun, 11 Feb 2024 15:05:17 -0300 Subject: [PATCH] [Fixed][Netlist] Problems for comps in PCB but not SCH Missing UUID Fixes #578 --- CHANGELOG.md | 4 ++++ kibot/kiplot.py | 1 + 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4216a53..376b3f91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.6.5] - Unreleased +### Fixed +- Netlist generation problems with components on the PCB but not in schematic. + (#578) ## [1.6.4] - 2024-02-02 ### Added diff --git a/kibot/kiplot.py b/kibot/kiplot.py index c9af20ff..02cae420 100644 --- a/kibot/kiplot.py +++ b/kibot/kiplot.py @@ -274,6 +274,7 @@ def create_component_from_footprint(m, ref): c.name = m.GetValue() c.sheet_path_h = c.lib = '' c.project = GS.sch_basename + c.id = m.m_Uuid.AsString() if hasattr(m, 'm_Uuid') else '' # Basic fields # Reference f = SchematicField()