summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge remote-tracking branch 'origin/5.11' into devQt Forward Merge Bot2018-04-213-5/+5
|\| | | | | | | Change-Id: Idb9dc88c742d8b407fabe72465024ebafb6886cb
| * Bump Qt sensors qml import versions in doc and qmltypesAlex Blasche2018-04-193-5/+5
| | | | | | | | | | Change-Id: If3027bc22486bec4b4b02eea85497578c8bb1b1a Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
* | Merge remote-tracking branch 'origin/5.11' into devQt Forward Merge Bot2018-03-311-1/+0
|\| | | | | | | Change-Id: Ic5f355f57f0705055bd7ffb34312e8b7d75ebe85
| * Doc: Remove incorrect \relates commandv5.11.0-beta4v5.11.0-beta3Topi Reinio2018-03-261-1/+0
| | | | | | | | | | | | | | | | | | QDoc cannot handle the case of setting a class to be related to another class (unless they are nested); adding \relates to another class will overwrite the class output page. Change-Id: I9978b915b339e4e1baafb708012b6fdf9a3b9aad Reviewed-by: Martin Smith <martin.smith@qt.io>
* | Merge remote-tracking branch 'origin/5.11' into devQt Forward Merge Bot2018-03-241-1/+1
|\| | | | | | | Change-Id: I26f7bef6fb93bc1ddb00b9af13d9582e1a973f07
| * Doc: Fix libclang related warning for templated methodPaul Wicking2018-03-201-1/+1
| | | | | | | | | | | | | | Corrected method signature in documentation. Change-Id: I86343f9e0bd4df04a4c24f6d7c02be663ebac0d9 Reviewed-by: Topi Reiniƶ <topi.reinio@qt.io>
* | Merge remote-tracking branch 'origin/5.11' into devQt Forward Merge Bot2018-02-273-0/+56
|\| | | | | | | Change-Id: I97b86fef841d6dd8dbb04243b762bb6bc4980b63
| * Merge remote-tracking branch 'origin/5.9' into 5.11v5.11.0-beta2v5.11.0-beta1Liang Qi2018-02-180-0/+0
| |\ | | | | | | | | | | | | | | | | | | Conflicts: .qmake.conf Change-Id: I62b5d4414939e0a67ba3271fee71ed9c7ccce5fb
| | * Bump versionOswald Buddenhagen2018-02-021-1/+1
| | | | | | | | | | | | Change-Id: Ie9b041de105795aa1494f4064227acbda830f3fd
| * | Merge remote-tracking branch 'origin/5.10.1' into 5.11v5.11.0-alpha1Liang Qi2018-02-141-0/+30
| |\ \ | | | | | | | | | | | | Change-Id: I3b97bac9f46a38e25f68c028eee0290e2fb47f19
| | * | Add changes file for Qt 5.10.1v5.10.1Alex Blasche2018-02-051-0/+30
| | | | | | | | | | | | | | | | | | | | Change-Id: I2946cfab276a7b3a225d7c20c666a10c0eb38ff5 Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
| * | | Merge remote-tracking branch 'origin/5.10' into 5.11Liang Qi2018-02-122-0/+26
| |\| | | | | | | | | | | | | | Change-Id: I666569a09a42196d834e9aa97be706cc2551e7bf
| | * | qtlite: Skip building examples when configured with no-feature-itemviews5.10Rainer Keller2018-01-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Task-number: QTBUG-53141 Change-Id: I98086d0c1877b8345ee76553eea19738023aebae Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
| | * | Merge remote-tracking branch 'origin/5.9' into 5.10Liang Qi2018-01-241-0/+25
| | |\| | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: .qmake.conf Change-Id: If889421e172ff4f2f2f562d95518120556bdc97b
| | | * Merge remote-tracking branch 'origin/5.9.4' into 5.9Liang Qi2018-01-181-0/+25
| | | |\ | | | | | | | | | | | | | | | Change-Id: I14e05ef2ecc6dedd9cf69dfa10e75d62703f0781
| | | | * Add changes file for Qt 5.9.4v5.9.4Alex Blasche2018-01-081-0/+25
| | | |/ | | | | | | | | | | | | | | | | Change-Id: I98faeda1640fdb2a659887700722f8e8ad464f89 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
| | | * Bump versionOswald Buddenhagen2017-12-121-1/+1
| | | | | | | | | | | | | | | | Change-Id: Ib1403a428870bf7852aa190d965aa6e33163ca0a
| | | * Merge remote-tracking branch 'origin/5.9.3' into 5.9Liang Qi2017-11-231-0/+24
| | | |\ | | | | | | | | | | | | | | | Change-Id: I2c4fe1b393daaa7213162972da915d694420e9e6
| | * | | testSingleGestures: Fix for case of multiple gesturesAlexander Volkov2018-01-241-10/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This test fails sometimes for the twist gesture data, because it contains 3 gestures. QTRY_COMPARE_WITH_TIMEOUT usually stops comparison after recognition of the first gesture, but it may make the first comparison after more than one gesture has been recognized and thus fail the test. Add a new column to the test data with a list of gestures that should be recognized and use the list in QTRY_COMPARE_WITH_TIMEOUT. It will make the error message more informative if the test will fail, and should make the test pass on all configurations. Task-number: QTBUG-65861 Change-Id: Icfd86831b527da4933da2a20f45ccf9617862eac Reviewed-by: Lorn Potter <lorn.potter@gmail.com> (cherry picked from commit e3b6a54a75482c5ddd91dab50a86629053c69a2e)
* | | | | Bump versionOswald Buddenhagen2018-02-191-1/+1
|/ / / / | | | | | | | | | | | | Change-Id: I279529e9c2f15e94af75cfdc87fcaf37bb266aaa
* | | | Merge remote-tracking branch 'origin/5.10' into devLiang Qi2018-01-206-2/+6437
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: .qmake.conf Change-Id: I17dec1cd2d4934710663e5fa97c926a65fe301e5
| * | | Add binary compatibility file for QtSensors for 5.10Milla Pohjanheimo2018-01-081-0/+6386
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | File to test binary compatibility for 5.10 added Change-Id: Ic86425ada00f5c3804d50fff6d2e8618b2bc923e Reviewed-by: Sergio Ahumada <sahumada@texla.cl> Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
| * | | Bump versionOswald Buddenhagen2017-12-201-1/+1
| | | | | | | | | | | | | | | | Change-Id: I31a1be224350f83ed196fce7b0891cdc2b146e15
| * | | Doc: correct clang error messageNico Vertriest2017-12-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | qsensorbackend.cpp:149: (qdoc) warning: clang found diagnostics parsing \fn QSensorBackend::setReading(T *reading) Change-Id: I274c9eea76eab9071f47d8bebcfd163d5867281a Reviewed-by: Topi Reiniƶ <topi.reinio@qt.io>
| * | | Merge remote-tracking branch 'origin/5.10.0' into 5.10Liang Qi2017-12-082-0/+46
| |\ \ \ | | | | | | | | | | | | | | | Change-Id: Id68b9d931c42bd42797da900970527ab650ad55f
| | * | | Add changes file for Qt 5.10.0v5.10.0-rc3v5.10.0-rc2v5.10.0-rc1v5.10.0Antti Kokko2017-11-221-0/+22
| | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I3db88fb59739620cf9cba4d41a32196173aef429 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
| | * | | Merge remote-tracking branch 'origin/5.9.3' into 5.10.0Liang Qi2017-11-211-0/+24
| | |\ \ \ | | | | |/ | | | |/| | | | | | Change-Id: I905bedf79caa0b3e86a8fc2a21374f7d347c5f08
| | | * | Add changes file for Qt 5.9.3v5.9.3Alex Blasche2017-11-081-0/+24
| | | |/ | | | | | | | | | | | | | | | | | | | | Task-number: QTBUG-64195 Change-Id: I7b7d462f1bcc61437e69dcaad495e4082759c594 Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
| * | / Register all Sensor QML types under latest Qt version tagAlex Blasche2017-12-082-1/+4
| |/ / | | | | | | | | | | | | | | | | | | No new types were introduced in Qt 5.10. Change-Id: I0f172fc46c23e296bdb29f39b7d30a616e7beb0b Reviewed-by: J-P Nurmi <jpnurmi@qt.io>
* | | Fix device orientation angles provided by QTiltSensorAndre de la Rocha2017-12-271-24/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The device orientation angles provided by QTiltSensor were being incorrectly calculated from the accelerator sensor measurements, in all supported devices. This resulted in a restricted range of values reported for the roll angle, thus making non-equivalent device orientations, like a tablet lying horizontally with the screen up, and the flipped configuration with the screen down, report equivalent orientation angles, making it impossible to distinguish between them. Task-number: QTBUG-57898 Change-Id: I82c1d4d2c1eab435f389b89dbb537fa7b349cbf1 Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
* | | Merge remote-tracking branch 'origin/5.10' into devLiang Qi2017-11-203-1/+54
|\| | | | | | | | | | | Change-Id: I11b81861a0dcd8380374060161550690812ff96d
| * | Update to new QRandomGenerator APIv5.10.0-beta4Thiago Macieira2017-11-031-1/+1
| | | | | | | | | | | | | | | Change-Id: I69f37f9304f24709a823fffd14e676c097712329 Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
| * | Merge remote-tracking branch 'origin/5.9' into 5.10Liang Qi2017-10-302-0/+53
| |\| | | | | | | | | | | | | | | | | | | Conflicts: .qmake.conf Change-Id: Ifc771970d7157e22bb7be3b10dcd153f619248a2
| | * Bump versionOswald Buddenhagen2017-10-061-1/+1
| | | | | | | | | | | | Change-Id: I806f614fee7b0e5ec24acbdb0cf605808a9215b9
| | * Add changes file for Qt 5.9.2v5.9.2Jani Heikkinen2017-09-251-0/+24
| | | | | | | | | | | | | | | | | | Task-number: QTBUG-62752 Change-Id: I250e56e71707057bb1c2a62883a74069be763dd9 Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
| | * Add changes file for Qt 5.6.3Alex Blasche2017-08-301-0/+29
| | | | | | | | | | | | | | | | | | Task-number: QTBUG-62714 Change-Id: Ifacdde543fca22846ed1bfddbd445c58a508a559 Reviewed-by: Christian Stromme <christian.stromme@qt.io>
* | | Add missing override and remove redundant virtualAlexander Volkov2017-11-1446-123/+123
| | | | | | | | | | | | | | | Change-Id: I51c0fc424f44ae68c3c1c4cf6377e7701ee5a0dd Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
* | | testSingleGestures: Fix for case of multiple gesturesAlexander Volkov2017-11-141-10/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This test fails sometimes for the twist gesture data, because it contains 3 gestures. QTRY_COMPARE_WITH_TIMEOUT usually stops comparison after recognition of the first gesture, but it may make the first comparison after more than one gesture has been recognized and thus fail the test. Add a new column to the test data with a list of gestures that should be recognized and use the list in QTRY_COMPARE_WITH_TIMEOUT. It will make the error message more informative if the test will fail, and should make the test pass on all configurations. Change-Id: Icfd86831b527da4933da2a20f45ccf9617862eac Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
* | | add sensor plugin for TI sensortagLorn Potter2017-10-0225-0/+2210
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ChangeLog][QSensorBackend] Support for TI Sensortag sensor board. Introduce env var QT_SENSORTAG_ID for specifying a specific sensor tag. On mac, this is the sensortag uuid, on linux it is the sensor tag's bluetooth address. Change-Id: I7c5db8dac15ddbfdb0709bd6462759b4a70d32b7 Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
* | | Replace Q_DECL_OVERRIDE with overrideKevin Funk2017-09-215-13/+13
| | | | | | | | | | | | | | | Change-Id: Ib258bbc787f43e563fff8af8151ceae87471c672 Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
* | | Android: remove support for local/debug deploymentJake Petroules2017-09-065-22/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This removes the pre-dexed JAR files activated by the absence of the bundled_jar_file CONFIG option, as versions of Android >= 5 no longer support this deployment mechanism. Now, the "bundled" JARs simply become normal JARs containing class files, and are neither activated by a bundled_jar_file CONFIG entry nor do they have a -bundled suffix in the file's base name. Task-number: QTBUG-62995 Change-Id: I23fe81254efee5517453f73b1938026257ddb7a6 Reviewed-by: BogDan Vatra <bogdan@kdab.com>
* | | Bump versionFrederik Gladhorn2017-09-041-1/+1
|/ / | | | | | | Change-Id: Ief37a011e8f584933e3e330e7ca9dda67cf78cf5
* | Merge remote-tracking branch 'origin/5.9' into devv5.10.0-beta3v5.10.0-beta2v5.10.0-beta1v5.10.0-alpha1Liang Qi2017-08-163-77/+6093
|\| | | | | | | | | | | | | Conflicts: .qmake.conf Change-Id: Ib23a0c24c0ec5758dd0799a443c5e43ce7c5f35b
| * Update binary compatibility files for Qt5.9.0 for QtSensorsMilla Pohjanheimo2017-08-151-0/+6065
| | | | | | | | | | | | | | Binary compatibility files updated. Change-Id: I5c712e1bee1e791731ee4a5f6573478ee680cd6e Reviewed-by: Sergio Ahumada <sahumada@texla.cl>
| * Use QDeadlineTimer to greatly simplify dummy plugin implementationJake Petroules2017-07-111-77/+2
| | | | | | | | | | Change-Id: Ibda65cd63dcf277730044da04ee30b68513f95ee Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
| * Bump versionOswald Buddenhagen2017-06-301-1/+1
| | | | | | | | Change-Id: I6c2057daf8e3bd1e976e853ac701ce955774f194
| * Add changes file for 5.9.1v5.9.1Alex Blasche2017-06-231-0/+26
| | | | | | | | | | Change-Id: I60cc5ae40cd5ada028e38e78234089035aa6f68d Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
* | Be consistent about values related to pi (radian / degree ratio)Edward Welbourne2017-07-062-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use JavaScript's Math.PI to compute 180 / pi (the number of degrees in one radian), rather than a hand-coded value for this constant. Store the result in a readonly property double to avoid repeating the computation. Tweak the pitch and roll calculations to use more apt Math methods: use hypot rather than sqrt of a sum of squares, and use atan2 instead of a tan of a ratio (whose denominator is always positive, so this doesn't change which angle we get). Task-number: QTBUG-58083 Change-Id: Ic3f865dfcbd9b02a0b93f065995d850386aef18c Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io> Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
* | Use QRandomGenerator instead of q?randThiago Macieira2017-06-301-2/+2
| | | | | | | | | | Change-Id: Icd0e0d4b27cb4e5eb892fffd14b5285d43f4afbf Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
* | Merge remote-tracking branch 'origin/5.9' into devLiang Qi2017-06-07117-2582/+7218
|\| | | | | | | | | | | | | Conflicts: .qmake.conf Change-Id: Iac052b07a815ed6bcaea42109895e323342c5d71