summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dist/changes-5.5.143
-rw-r--r--src/bluetooth/doc/src/bluetooth-le-overview.qdoc2
-rw-r--r--src/bluetooth/qbluetoothdeviceinfo.cpp5
3 files changed, 49 insertions, 1 deletions
diff --git a/dist/changes-5.5.1 b/dist/changes-5.5.1
new file mode 100644
index 00000000..e3770265
--- /dev/null
+++ b/dist/changes-5.5.1
@@ -0,0 +1,43 @@
+Qt 5.5.1 is a bug-fix release. It maintains both forward and backward
+compatibility (source and binary) with Qt 5.5.0.
+
+For more details, refer to the online documentation included in this
+distribution. The documentation is also available online:
+
+ http://doc.qt.io/qt-5.5/
+
+The Qt version 5.5 series is binary compatible with the 5.4.x series.
+Applications compiled for 5.4 will continue to run with 5.5.
+
+Some of the changes listed in this file include issue tracking numbers
+corresponding to tasks in the Qt Bug Tracker:
+
+ http://bugreports.qt.io/
+
+Each of these identifiers can be entered in the bug tracker to obtain more
+information about a particular change.
+
+****************************************************************************
+* Library *
+****************************************************************************
+
+QtBluetooth
+-----------
+
+ - Fixed several minor documentation issues.
+
+
+****************************************************************************
+* Platform Specific Changes *
+****************************************************************************
+
+Linux/BlueZ
+-----------
+
+ - QLowEnergyCharacteristic
+ * Fixed reading of PropertyTypes which caused some bits to be set due to
+ missing initialization.
+
+ - [QTBUG-47028] Fixed endless loop in QLowEnergyService::discoverDetails().
+
+ - Minor performance improvements when processing ATT_OP_READ_BY_TYPE_REQUESTS.
diff --git a/src/bluetooth/doc/src/bluetooth-le-overview.qdoc b/src/bluetooth/doc/src/bluetooth-le-overview.qdoc
index 909beae2..70d9908a 100644
--- a/src/bluetooth/doc/src/bluetooth-le-overview.qdoc
+++ b/src/bluetooth/doc/src/bluetooth-le-overview.qdoc
@@ -35,7 +35,7 @@ Low Energy devices.
\tableofcontents
The Qt Bluetooth Low Energy API was introduced by Qt 5.4. Since Qt 5.5 the API
- is frozen and a compatibility guarantee is given for future releases.
+ is final and a compatibility guarantee is given for future releases.
At the moment, Qt supports the Bluetooth Low Energy central role.
For more details on this limitation see below.
diff --git a/src/bluetooth/qbluetoothdeviceinfo.cpp b/src/bluetooth/qbluetoothdeviceinfo.cpp
index 37ba4e11..0a66c2c2 100644
--- a/src/bluetooth/qbluetoothdeviceinfo.cpp
+++ b/src/bluetooth/qbluetoothdeviceinfo.cpp
@@ -614,6 +614,11 @@ void QBluetoothDeviceInfo::setDeviceUuid(const QBluetoothUuid &uuid)
/*!
Returns a unique identifier for a Bluetooth device without an address.
+ In general, this uuid is invalid on every platform but OS X and iOS.
+ It is used as a workaround for those two platforms as they do not
+ provide Bluetooth addresses for found Bluetooth Low Energy devices.
+ Every other platform uses \l address() instead.
+
\sa setDeviceUuid()
\since 5.5
*/