aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntti Kokko <antti.kokko@qt.io>2020-10-27 10:02:10 +0200
committerMitch Curtis <mitch.curtis@qt.io>2020-10-28 08:29:39 +0100
commit16f27dfa3588c2bf377568ce00bf534af48c9558 (patch)
tree03fe3f96f130045b8f4e9a96487e192d2b3fc68c
parenta0899012f44806957d0254c8e76cca97adb624f6 (diff)
Add changes file for Qt 5.15.2v5.15.2
- 6822a725cffd20a21475c57d7195465c59f5903b tst_qquickpopup: fix setOverlayParentToNull test - 2abdd399bf359e2459e4ae7c6456736087aa1c32 Add changes file for Qt 5.15.1 + 1740afc07950fb0ae3aca0aad2534191805ff672 Material: fix binding loops when binding between attached properties + 454ca2f441ae3d400255471a7ebe850c6779ad0e Update the text when the inputted value is out of range + 50f3c1b5551228d932f302a06580c70a3a77c336 Unregister the accessible observer before deleting the private object + 59aaf903cc54a7cfba00ec3859ca59292f4cbf4a Allow the preparation of the exit transition even if it did have focus + 1e8d3ffa5fb95699d18af5639ffeb90054b71856 Don't trigger a close due to a release if we did not get a press + f2c5b91201bd3df8de9f47fe71a9d0f2f5b76882 Bump version + 68a916d8ec4ff964bb1310b4065494e9e041499e QQuickMenu: fix contentModel memory leak + 43c9cc30a26f7fb482248115eec418128a1add0f QQuickMenu: fix heap-use-after-free + b6280dd207746f32092f5cb2b55b8c5f8ffa44b9 Add setAcceptTouchEvents() in controls that handle touch events + 88bdce23e260cce2d3a163997d9032c3e6fac858 Specify the QtQuick dependency of templates also in qmldir + 51a57c7ea852151235b692475f08915edb16bb90 Only add a shortcut if the sequence is not empty + c9e58c2168450fd3b1fe3aca3dd143d5fd0db8c5 ScrollView: document how you can make ScrollView scroll in only one direction + a1b0f708e6a22297bdd8af2cf8c461de5da7a16e Add changes file for Qt 5.12.10 + 1a3d27b017fae0471a82870b28e1e808bc2aac33 QQuickAbstractButton: don't accept key release if we're not pressed + a0899012f44806957d0254c8e76cca97adb624f6 Remove qtxmlpatterns from requirements Pick-to: dev 5.15 Change-Id: Ic01c73f9d43154a59a41589d4eea185d072cc9f8 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
-rw-r--r--dist/changes-5.15.242
1 files changed, 42 insertions, 0 deletions
diff --git a/dist/changes-5.15.2 b/dist/changes-5.15.2
new file mode 100644
index 00000000..e71e2bf3
--- /dev/null
+++ b/dist/changes-5.15.2
@@ -0,0 +1,42 @@
+Qt 5.15.2 is a bug-fix release. It maintains both forward and backward
+compatibility (source and binary) with Qt 5.15.1.
+
+For more details, refer to the online documentation included in this
+distribution. The documentation is also available online:
+
+ https://doc.qt.io/qt-5.15/index.html
+
+The Qt version 5.15 series is binary compatible with the 5.14.x series.
+Applications compiled for 5.14 will continue to run with 5.15.
+
+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.
+
+****************************************************************************
+* Controls *
+****************************************************************************
+
+ - [QTBUG-83698] Fixed issue where a menu opened by pressing enter (handled
+ via attached Keys property) would instantly trigger the first menu
+ item.
+ - [QTBUG-86851] QQuickMenu: fixed memory leak due to contentModel not being
+ deleted. Also fixed a heap-use-after-free that was exposed by the
+ previously mentioned fix.
+ - [QTBUG-85884] Fixed expected item not getting focus when a dialog closes.
+ - [QTBUG-85719] Fixed SpinBox failing to validate input correctly after
+ previous input was out of range.
+
+****************************************************************************
+* Styles *
+****************************************************************************
+
+Material
+--------
+
+ - [QTBUG-85699] Fixed binding loops when binding between attached
+ properties.