Add friendly MAC names for connected clients#6
Merged
Conversation
- aliases.py: load/save/set/remove/resolve helpers backed by
~/.config/wifi-channel-optimizer/aliases.json. MACs are normalized to
uppercase-colon form on read and write.
- main.py: convert the CLI from a single command to a group that still
launches the dashboard when invoked bare, and adds three subcommands:
main.py alias set <mac> <name>
main.py alias list
main.py alias remove <mac>
- dashboard.py: ClientsPanel gains a new "Device" column that shows the
friendly name (falling back to raw MAC). WifiDashboard accepts an
aliases dict and otherwise loads the JSON file on startup.
- README.md: document the alias subcommands.
- tests/test_aliases.py: 14 tests covering normalization, JSON roundtrip,
invalid-file handling, mutators, and resolve fallback.
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.
Summary
Tag connected devices with human-readable names so the dashboard shows "Vignesh's iPhone" instead of `AA:BB:CC:DD:EE:FF`.
Test plan