feat: Show device friendly name and details in COM port sidebar list - #261
Draft
SuperStudio with Copilot wants to merge 2 commits into
Draft
feat: Show device friendly name and details in COM port sidebar list#261SuperStudio with Copilot wants to merge 2 commits into
SuperStudio with Copilot wants to merge 2 commits into
Conversation
- Display friendlyName as a secondary line under COM port path - Add hover tooltip with manufacturer, VID/PID, serial number, PnP ID - Update filteredSerialPorts search to also match friendlyName and manufacturer - Add i18n keys: friendlyName, manufacturer, serialNumber (zh-CN & en-US) Closes #259 Co-authored-by: SuperStudio <72286854+SuperStudio@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add device names to COM port list for better identification
feat: Show device friendly name and details in COM port sidebar list
Aug 24, 2026
|
大佬 这个是否可以先释放个版本出来 |
Owner
|
这个等另外一个pr提上来,合入后就尽快发布 |
辛苦大佬,谢谢 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When multiple USB-to-serial adapters are connected, the sidebar only showed bare
COMxlabels — making it impossible to distinguish e.g.USB-Enhanced-SERIAL-A CH344 (COM4)fromUSB-Enhanced-SERIAL-B CH344 (COM6). The backend already returnedfriendlyNameand other metadata; only the UI needed updating.Changes
ConnectionSidebar.vueport.friendlyNameas a secondary line beneath the COM path when presentel-tooltip(right-side, hover-triggered) that surfaces:useConnectionSidebar.tsfilteredSerialPortssearch to also match againstfriendlyNameandmanufacturer, so typing "CH344" or "FTDI" filters correctlyi18n (
zh-CN.json,en-US.json)sidebar.friendlyName,sidebar.manufacturer,sidebar.serialNumberkeysAfter this change, a port card renders as:
and hovering shows full device details including VID/PID and serial number — critical for distinguishing multiple identical FTDI devices.