summaryrefslogtreecommitdiffstats
path: root/dist
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'origin/5.7' into 5.8Liang Qi2017-01-181-2/+2
|\ | | | | | | Change-Id: I6b8a6bdcc849b76a596d17d3b15e8e1efa58a28c
| * Fix reference to macOS in the 5.7.1 changelog5.7Jake Petroules2016-12-081-2/+2
| | | | | | | | | | | | | | This amends d884d20c5530b67fbd2fba35cdb71a9f969196be Change-Id: I6f600ed7739f698405076fb567bc71174e205125 Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
* | Add changes file for 5.8.0Alex Blasche2016-12-071-0/+76
|/ | | | | | Change-Id: I4e8bf5189295a68e80087fbc4640bd5a57b4bee5 Reviewed-by: Oliver Wolff <oliver.wolff@qt.io> Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
* Add changes file for 5.7.1v5.7.1Jani Heikkinen2016-11-021-0/+79
| | | | | | Change-Id: I3060846f47faa59a2350da0f44a86746eb9ddf7c Reviewed-by: Timur Pocheptsov <timur.pocheptsov@theqtcompany.com> Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
* Merge remote-tracking branch 'origin/5.6' into 5.7Liang Qi2016-09-161-0/+73
|\ | | | | | | Change-Id: I3eec9a22565585d4fc40831d609a3083ce99a52c
| * Add changes file for 5.6.2v5.6.2Alex Blasche2016-09-121-0/+73
| | | | | | | | | | Change-Id: Id0c8f14ef466011a3fec0db1f3042e5f540eeaa3 Reviewed-by: Kai Koehne <kai.koehne@qt.io>
* | Mention license change in 5.7.0 changelog.v5.7.0Kai Koehne2016-06-081-3/+20
| | | | | | | | | | | | | | Task-number: QTBUG-53913 Change-Id: I0bd8a21a01531d530ba09d94a6fb839c4e43c630 Reviewed-by: Sami Makkonen <sami.makkonen@qt.io> Reviewed-by: Jani Heikkinen <jani.heikkinen@qt.io>
* | Merge 5.7 into 5.7.0Oswald Buddenhagen2016-05-201-0/+60
|\| | | | | | | Change-Id: I5406c601fa05e347a7c7558e42fb05029799ff27
| * Add changelog for 5.6.1 releaseAlex Blasche2016-05-191-0/+60
| | | | | | | | | | Change-Id: If81642830835e45a7465d9872413d1e94953319e Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
* | Add changelog for Qt 5.7.0 releaseAlex Blasche2016-05-201-0/+39
|/ | | | | Change-Id: Ic683b32daa35fc771f848046b26fd6edfdaaa0c7 Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
* Add changelog for QtBluetooth/QtNfc 5.6.0 releaseAlex Blasche2016-01-261-0/+89
| | | | | Change-Id: I1422ab23ef1abd812eb5523105cbadc8ef1aa015 Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
* Add changelog for QtConnectivity 5.5.1 releasev5.5.1Alex Blasche2015-09-231-0/+43
| | | | | Change-Id: Icc2f8debeef8c58f008155c9ab5e68e1d5c33835 Reviewed-by: Timur Pocheptsov <timur.pocheptsov@theqtcompany.com>
* Add changelog for Qt 5.5.0 releaseAlex Blasche2015-06-081-0/+105
| | | | | Change-Id: If87264deae64c863701633f2d6ff4bd6f3c4d8b0 Reviewed-by: Timur Pocheptsov <Timur.Pocheptsov@digia.com>
* Add QtConnectivity release notes for Qt 5.4.2v5.4.2Alex Blasche2015-04-221-0/+50
| | | | | Change-Id: I1733dc2b63c491b4facfa7683865723406eb5812 Reviewed-by: Timur Pocheptsov <Timur.Pocheptsov@digia.com>
* Add changelog for QtBluetooth/QtNfc 5.4.1 release.Alex Blasche2015-01-291-0/+38
| | | | | Change-Id: I1f4f3ace78b4619a43581182d885c479314a7603 Reviewed-by: Aaron McCarthy <mccarthy.aaron@gmail.com>
* Fix spelling mistake in change logsv5.4.0-rc1Alex Blasche2014-11-181-1/+1
| | | | | Change-Id: Ia82082ce24c98b69697b348dc20164b8ec034a0b Reviewed-by: Leena Miettinen <riitta-leena.miettinen@theqtcompany.com>
* Add change log for Qt 5.4.0 releaseAlex Blasche2014-11-171-0/+99
| | | | | | | Change-Id: I9eca03f01ba01e9952c28c6d4bd14f656aa5d838 Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com> Reviewed-by: Timur Pocheptsov <Timur.Pocheptsov@digia.com> Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
* Fix L2CP socket connectionsv5.3.2Alex Blasche2014-08-271-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | L2CP's psm (the RFCOMM port equivalent) was never published via SDP. Therefore the service client could not get the required information to connect to the server. After this patch Qt properly publishes the psm. Also, QBluetoothSocket::connect() initiated a service discovery to obtain the missing psm. Since the published SDP entry didn't contain one, protocolServiceMultiplexer() always returned 0 and another service discovery was initiated. This caused a crash inside QBluetoothSocket because the 1st QBluetoothServiceDiscoveryAgent instance was deleted in favor of the 2nd. The patch changes the client behavior such that it doesn't crash if the service discovery didn't turn up a valid psm/port. It improves the robustness in case of an error and avoids a second service discovery (which wouldn't turn up more information anyway). The bug only affected Bluez as it is the only platform supporting pure L2CP sockets. Last but not least a capability to test L2CP sockets was added to bttestui. Change-Id: I46c88a67c2baa4782ea908e645dcd4db9422dbba Reviewed-by: Fabian Bumberger <fbumberger@rim.com>
* Add changelog for QtBluetooth & QtNfc 5.3.2 release.Alex Blasche2014-08-131-0/+47
| | | | | Change-Id: Id21197134f525d6835664a2b2f27ca48d405406c Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
* Add changelog for upcoming Qt 5.3.1 release.Alex Blasche2014-06-041-0/+89
| | | | | | Change-Id: I8343a3a474e3b6378b24c08182d767262111ec19 Reviewed-by: Sergio Ahumada <sahumada@blackberry.com> Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
* Minor changelog clarification and other "nice-ifications"v5.3.0-rc1v5.3.0Alex Blasche2014-04-301-4/+3
| | | | | | Change-Id: I1eee55a970a7ed5e1813d70ec254ed0348d1e567 Reviewed-by: Oleg Shparber <trollixx@gmail.com> Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
* Add Qt 5.3.0 change log for QtNfc and QtBluetoothAlex Blasche2014-04-151-0/+154
| | | | | Change-Id: Id489adfe1cfb4c652907e67950b8a12bf1c18c8c Reviewed-by: Fabian Bumberger <fbumberger@rim.com>
* Update changelog for 5.2.1v5.2.1Thiago Macieira2014-01-231-10/+5
| | | | | Change-Id: Ie67e598578628663fff9cee7b0f82200f575f2b2 Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
* Add change log for 5.2.1Alex Blasche2014-01-131-0/+63
Change-Id: I12b294e9d3db91a1580b022ccae9dacb5b841ae0 Reviewed-by: Kai Koehne <kai.koehne@digia.com>