summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2017-01-26 10:00:16 +0100
committerLiang Qi <liang.qi@qt.io>2017-01-26 10:00:16 +0100
commit1b88049661176d149fa75bfdc349cf5b7acb21b4 (patch)
tree484b4707198dce381b2fef61aa1fb8dee79160fc
parent04c42632315ee4e9ac22003b572d4877fcbd33f9 (diff)
parent1220a31e6c2f91b34b4a05773621dddab8c4315a (diff)
downloadqtsensors-1b88049661176d149fa75bfdc349cf5b7acb21b4.tar.gz
Merge remote-tracking branch 'origin/5.8.0' into 5.8
Change-Id: Ie2a370961bb6b166af94f8699945c330aa8125c7
-rw-r--r--dist/changes-5.8.041
-rw-r--r--src/imports/sensors/plugins.qmltypes6
-rw-r--r--src/imports/sensors/sensors.cpp6
3 files changed, 47 insertions, 6 deletions
diff --git a/dist/changes-5.8.0 b/dist/changes-5.8.0
new file mode 100644
index 0000000..75920af
--- /dev/null
+++ b/dist/changes-5.8.0
@@ -0,0 +1,41 @@
+Qt 5.8 introduces many new features and improvements as well as bugfixes
+over the 5.7.x series. For more details, refer to the online documentation
+included in this distribution. The documentation is also available online:
+
+ http://doc.qt.io/qt-5/index.html
+
+The Qt version 5.8 series is binary compatible with the 5.7.x series.
+Applications compiled for 5.7 will continue to run with 5.8.
+
+Some of the changes listed in this file include issue tracking numbers
+corresponding to tasks in the Qt Bug Tracker:
+
+ https://bugreports.qt.io/
+
+Each of these identifiers can be entered in the bug tracker to obtain more
+information about a particular change.
+
+****************************************************************************
+* Library *
+****************************************************************************
+
+QtSensors
+---------
+
+ - Converted Qt Sensors module to the new build system changes implied by
+ Qt Lite.
+
+****************************************************************************
+* Platform Specific Changes *
+****************************************************************************
+
+Android
+-------
+
+ - [QTBUG-57184] Fixed incorrect accuracy levels for magnetometer.
+
+
+iOS/macOS
+---------
+
+ - Port the iOS sensors plugin to the other UIKit platforms
diff --git a/src/imports/sensors/plugins.qmltypes b/src/imports/sensors/plugins.qmltypes
index e1857a6..25a992a 100644
--- a/src/imports/sensors/plugins.qmltypes
+++ b/src/imports/sensors/plugins.qmltypes
@@ -4,10 +4,10 @@ import QtQuick.tooling 1.2
// It is used for QML tooling purposes only.
//
// This file was auto-generated by:
-// 'qmlplugindump -nonrelocatable QtSensors 5.7'
+// 'qmlplugindump -nonrelocatable QtSensors 5.8'
Module {
- dependencies: ["QtQuick 2.0"]
+ dependencies: ["QtQuick 2.8"]
Component {
name: "QmlAccelerometer"
prototype: "QmlSensor"
@@ -52,7 +52,7 @@ Module {
exports: [
"QtSensors/Altimeter 5.1",
"QtSensors/Altimeter 5.2",
- "QtSensors/Altimeter 5.7"
+ "QtSensors/Altimeter 5.8"
]
exportMetaObjectRevisions: [0, 0, 0]
}
diff --git a/src/imports/sensors/sensors.cpp b/src/imports/sensors/sensors.cpp
index d1f5bb4..f92ad77 100644
--- a/src/imports/sensors/sensors.cpp
+++ b/src/imports/sensors/sensors.cpp
@@ -222,10 +222,10 @@ public:
qmlRegisterType <QmlSensorGesture >(package, major, minor, "SensorGesture");
- // Register the 5.7 interfaces
+ // Register the 5.8 interfaces
// No API changes, just reintroduce existing interfaces from 5.2
- // Implicitly registers 5.3 - 5.6 too
- minor = 7;
+ // Implicitly registers 5.3 - 5.7 too
+ minor = 8;
qmlRegisterType <QmlAltimeter >(package, major, minor, "Altimeter");
}
};