Skip to content

v0.8.0

Latest

Choose a tag to compare

@SuperioOne SuperioOne released this 18 Dec 15:45
· 1 commit to master since this release
v0.8.0
8004bbf

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 attached field 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

{
    // other device fields
    "attached": ["192.168.1.2", "192.168.1.3"]
}

v0.8.0

{
    // other device fields
    "attached": [
       { "addr": "192.168.1.2", "name": "padoru" },
       { "addr": "192.168.1.3", "name": null }
    ]
}