Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

0.3.0

Compare
Choose a tag to compare
@mannodermaus mannodermaus released this 14 Sep 08:15
· 60 commits to 2.x since this release

From this version onwards, RxBonjour is available through jcenter. No need to include the jitpack.io repository anymore! Please review the artifact ID, as it has changed from com.github.aurae:RxBonjour:{version} to com.github.aurae:rxbonjour:{version} (note the all-lowercase).

Added IP address distinction for IPv4 and IPv6

  • Thanks @IvBaranov!
  • BonjourService#getHost() still works the same, but favors the IPv4 address over IPv6 if both are present
  • New API: Inet4Address BonjourService#getV4Host() returns the IPv4 address of a service, if any
  • New API: Inet6Address BonjourService#getV6Host() returns the IPv6 address of a service, if any
  • fixes #6

Documentation

  • Improved docs for BonjourService methods

Internals

  • Implemented the Builder pattern for BonjourService (fixes #7)