Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ For more details or to discuss releases, please visit the

## [Unreleased]

## [0.9.3] - 2026-07-15

- KiCad HTTP API: parts are now named by their IPN, so a placed symbol's library
link reads like `gplm:REG-0000-0005` instead of the part description.

## [0.9.2] - 2026-07-15

- TUI: an active search or parametric filter now stays applied after copying,
Expand Down
9 changes: 7 additions & 2 deletions kicad_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -399,9 +399,12 @@ func (s *KiCadServer) getPartsByCategory(categoryID string) []KiCadPartSummary {
partID = fmt.Sprintf("%s-unknown-%d", categoryID, len(parts))
}

// KiCad displays the name as the schematic library link, so use
// the IPN rather than the description
partName = partID

// Get description
if descIdx >= 0 && len(row) > descIdx {
partName = row[descIdx]
partDesc = row[descIdx]
}

Expand Down Expand Up @@ -503,7 +506,9 @@ func (s *KiCadServer) getPartDetail(partID string) *KiCadPartDetail {
}
}

partName := values["Description"]
// KiCad displays the name as the schematic library link, so use
// the IPN rather than the description
partName := partID
symbolID := values["Symbol"]
fields := s.buildFields(category, file.Headers, values)

Expand Down
Loading