Update iBeacon format to have underscores (#2930)

* Update iBeacon format to have underscores

* Update change log
This commit is contained in:
Daniel Shokouhi 2022-10-01 12:57:01 -07:00 committed by GitHub
parent 79802c18a8
commit 070a839b74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
package io.homeassistant.companion.android.bluetooth.ble
fun <T> name(uuid: T, major: T, minor: T): String {
return "$uuid $major.$minor"
return "${uuid}_${major}_$minor"
}

View file

@ -2,7 +2,7 @@
<changelog xmlns:tools="http://schemas.android.com/tools"
tools:ignore="MissingDefaultResource">
<release version="2022.10 - Phone" versioncode="2">
<change>&lt;b&gt;Breaking Change:&lt;/b&gt; BLE Transmitter and Beacon Monitor sensor now report beacon attributes in "UUID Major.Minor" format.</change>
<change>&lt;b&gt;Breaking Change:&lt;/b&gt; BLE Transmitter and Beacon Monitor sensor now report beacon attributes in "UUID_Major_Minor" format.</change>
<change>&lt;b&gt;Breaking Change:&lt;/b&gt; Only update Geocoded Location sensor with location updates, if the new setting is enabled.</change>
<change>&lt;b&gt;Breaking Change:&lt;/b&gt; Add Bluetooth Connect permission to Beacon Monitor sensor for Android 12+.</change>
<change>Add dynamic color sensor for supported devices</change>