aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntti Kokko <antti.kokko@qt.io>2020-01-16 15:22:28 +0200
committerUlf Hermann <ulf.hermann@qt.io>2020-01-21 10:55:27 +0100
commitd762ea24b56d03d449c330626ff9b76f7663ad8d (patch)
tree2cfecf6b44b4f5605620b7a80f60105b1f5c8de2
parent7ff9e3c3959c2ef1d7c95c8d2a1d277ccb2752a9 (diff)
Add changes file for Qt 5.12.7v5.12.7
+ 1b5bb04b0e092a214328b90dae5eb15f128fb677 Bump version + 5dad0afa9e0905bd384878327f19cc7faf3d8d9f MultiPointTouchArea: stop ignoring Qt-synthesized mouse events + 33d93478aa2a53983dd6a02588db2dc0ccbe694d Set the screen on the QOpenGLContext to be the same as the window + ff6bd91f580fa5ddae2d02f32b9d83be4374a445 MouseArea: react to touch ungrab + e93a471dfde3c3b08d41eac53e595129ca520c68 Particle system: fix infinite loop after running for many hours + 6dff64714e3683c1af6164f99ffe23b3a0001be1 TapHandler: don't reject stationary touchpoints + d18f6c27af18c2cf4090b456349196e9f563e9b3 QQuickBehavior: Check that animation is not semi-deleted + 7ff9e3c3959c2ef1d7c95c8d2a1d277ccb2752a9 On QQmlEngine destruction drop singletons before type loader Change-Id: I1ce787590e47c62f3d0781443b3c02ac449eefe3 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
-rw-r--r--dist/changes-5.12.741
1 files changed, 41 insertions, 0 deletions
diff --git a/dist/changes-5.12.7 b/dist/changes-5.12.7
new file mode 100644
index 0000000000..0f9d52a725
--- /dev/null
+++ b/dist/changes-5.12.7
@@ -0,0 +1,41 @@
+Qt 5.12.7 is a bug-fix release. It maintains both forward and backward
+compatibility (source and binary) with Qt 5.12.0 through 5.12.6.
+
+For more details, refer to the online documentation included in this
+distribution. The documentation is also available online:
+
+https://doc.qt.io/qt-5/index.html
+
+The Qt version 5.12 series is binary compatible with the 5.11.x series.
+Applications compiled for 5.11 will continue to run with 5.12.
+
+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.
+
+****************************************************************************
+* QtQml *
+****************************************************************************
+
+ - [QTBUG-80840] Singletons are dropped before the type loader when a
+ QQmlEngine is destroyed, so that singletons that load types on
+ destruction don't crash.
+
+****************************************************************************
+* QtQuick *
+****************************************************************************
+
+ - [QTBUG-75750][QTBUG-78818] MultiPointTouchArea now handles mouse events
+ synthesized by Qt.
+ - QQuickWidget now gets the right screen information and can create a
+ QOpenGLContext compatible with its window.
+ - [QTBUG-77624] MouseArea now reacts to touch ungrab events.
+ - [QTBUG-64138] An infinite loop in the particle system triggered after
+ many hours of run-time is now avoided.
+ - [QTBUG-76954] TapHandler now accepts stationary touch points.
+ - [QTBUG-80070] A crash resulting from an interaction between Loader,
+ animations, and behaviors is avoided.