Added
- Reverse DNS lookup to find and display host names of the attached client IPs (#37).
- TOML v1.1.0 support.
Fixed
- Topology graph nodes sometimes disappears after a re-render.
Changed
- (BREAKING) The
attachedfield in the device response now returns an array of objects instead of strings in the JSON API. This is a minor but breaking change.
^v0.7.0
v0.8.0
{
// other device fields
"attached": [
{ "addr": "192.168.1.2", "name": "padoru" },
{ "addr": "192.168.1.3", "name": null }
]
}
{ // other device fields "attached": ["192.168.1.2", "192.168.1.3"] }