github SuperioOne/nut_webgui v0.8.0

18 hours ago

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 }
    ]
}

Don't miss a new nut_webgui release

NewReleases is sending notifications on new releases.