aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntti Kokko <antti.kokko@qt.io>2019-10-31 13:26:55 +0200
committerUlf Hermann <ulf.hermann@qt.io>2019-11-07 12:01:48 +0100
commit179c4b689d1a7b9e9edb71ddf545dc237bca6704 (patch)
tree63f4353c5b83b5d3efcbce625c53c4a7f6953a42
parent3230bc549c16a075c72653f3dc468a2c36cdd86a (diff)
Add changes file for Qt 5.12.6v5.12.6
+ 4d080635872fbb77a2adfb736d3f108b62cc058a Remove HACKING file + 4b944cb61fb3ceee2f1b743823e4a83b686bafd6 Fix loading of ES modules when using CONFIG += qtquickcompiler + 0ec16fb93db6ad6792b3269838211485e8af464b Add missing HoverHandler docs + 8577f12bf4dfd9adfe8c5b85a3712bf1cc5ba0c3 Fix build with -no-feature-quick-sprite + 35acc9fc3c41446bacbbfe754f7f494de7f62411 QQuickTextNodeEngine: don't create background when its alpha is 0 + eeb00570679c447f4701a92cd2e836f098724979 Visit lists iteratively when parsing QML + db3dd029d7cd911712102efd5ea71868494f9f6f Fix various accumulator-saving problems + 44600c6b5da91a6b28f642486ca898b68fbdb675 Check if the filters are different before triggering an update + 72b95fc8cac5b9275317f4e5fe74f64aa97a3437 lancelot graphics test: various fixes + ee8f5482d6ba8ffa0faf2bbf25569d59f3467fc8 Revert accidental change to test262 + 2f16944d45e1ade14ad086a547a9673b1ceba7bc Allow semicolon after property declaration + 128ba80362be4e8cf13147307eb9c652c4b5f124 PathView: grab mouse on press if already moving + da74e8fbb91b680d7783daa1595baa3ecc92cb2e PathView: reduce velocity by linear decay model if release is delayed + 803151f460509332a1fc8142e1b7659a42f70690 Handle "interesting" stationary touchpoints as if they moved + 409807a022f65af86413ae09b5befff1eb99e727 Make QQmlValueTypeFactory::valueType() and isValueType() consistent + 4c42cedf8211f88689e784d52265eae21ba1e4ca Bump version Change-Id: I614f9e90ebf23cfd59273e53c46a0e40116b5e8b Reviewed-by: Ulf Hermann <ulf.hermann@qt.io> Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
-rw-r--r--dist/changes-5.12.647
1 files changed, 47 insertions, 0 deletions
diff --git a/dist/changes-5.12.6 b/dist/changes-5.12.6
new file mode 100644
index 0000000000..bbf8e77008
--- /dev/null
+++ b/dist/changes-5.12.6
@@ -0,0 +1,47 @@
+Qt 5.12.6 is a bug-fix release. It maintains both forward and backward
+compatibility (source and binary) with Qt 5.12.0 through 5.12.5.
+
+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-77761] Fix loading of EcmaScript modules when using the Qt Quick
+ Compiler.
+ - [QTBUG-77954] Fix parsing errors when using a semicolon after an object
+ literal in property bindings.
+ - [QTBUG-76866] Fix crash with null value type objects.
+ - [QTBUG-74087] The JavaScript engine will parse lists iteratively now,
+ using less stack space. This allows for more complex JavaScript to be
+ parsed.
+
+****************************************************************************
+* QtQuick *
+****************************************************************************
+
+ - [QTBUG-76137] QQuickTextNodeEngine: don't create a new rectangle node as
+ the background of text when the alpha of it is 0.
+ - [QTBUG-77173][QTBUG-59620][QTBUG-59052] QQuickPathView: Fix stopping and
+ snapping behavior when interrupting the movement with a mouse click.
+ - [QTBUG-77418] QQuickListView: Respect highlight properties after changing
+ currentIndex.
+ - [QTBUG-77142] Also deliver touch points to MultiPointTouchArea if only
+ secondary properties, like pressure, have changed.
+ - [QTBUG-78468] FolderListModel: Avoid infinite update loop over name
+ filters on iOS.
+ - Add documentation for HoverHandler.