Skip to content

Commit

Permalink
[Fixed][Netlist] Problems for comps in PCB but not SCH
Browse files Browse the repository at this point in the history
Missing UUID

Fixes #578
  • Loading branch information
set-soft committed Feb 11, 2024
1 parent 85785db commit 0db1ded
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions kibot/kiplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 0db1ded

Please sign in to comment.