From d0cd32798fa9c36dc4294ed78596ed2b798d37f8 Mon Sep 17 00:00:00 2001 From: Antti Kokko Date: Tue, 30 Jul 2019 11:25:41 +0300 Subject: Add changes file for Qt 5.13.1 + a826da7d9bee9bd96c84ceaba5f102f66fc538cd myscript: dependency update + 7a3c5d43967727b5c12dc4ac3c8034bc752478c4 Bump version + 56c783d8fd93b8d3e13555da6fa398ddb09cce97 Use correct path to lib dir + 9d6cdde0ae4213eb7cc53baab22e183f3c93507d Add changes file for Qt 5.12.4 + 676ea1da22f63420974314ad7937c088377bd6ed Bump version + 47d15b1378621041f612b395ded685fa4e6fbbd0 Bump version + 6143eec2525af08e6aab895bcf64c2745a427f13 Doc: Replace example file lists with links to code.qt.io Change-Id: I899c78d98482d0ccd27f38a272e7cb74804de644 Reviewed-by: Mitch Curtis --- dist/changes-5.13.1 | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 dist/changes-5.13.1 diff --git a/dist/changes-5.13.1 b/dist/changes-5.13.1 new file mode 100644 index 00000000..57ebdbeb --- /dev/null +++ b/dist/changes-5.13.1 @@ -0,0 +1,20 @@ +Qt 5.13.1 is a bug-fix release. It maintains both forward and backward +compatibility (source and binary) with Qt 5.13.0. + +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.13 series is binary compatible with the 5.12.x series. +Applications compiled for 5.12 will continue to run with 5.13. + +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. + + - This release contains only minor code improvements. -- cgit v1.2.3 From 0ae9f37f9771f0b6536b28202e46c21d5995f13e Mon Sep 17 00:00:00 2001 From: Antti Kokko Date: Tue, 20 Aug 2019 13:16:24 +0300 Subject: Add changes file for Qt 5.12.5 + 47d15b1378621041f612b395ded685fa4e6fbbd0 Bump version Change-Id: I0fef9fb39b56a2f53b6661d4d80182c4e22ed365 Reviewed-by: Mitch Curtis --- dist/changes-5.12.5 | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 dist/changes-5.12.5 diff --git a/dist/changes-5.12.5 b/dist/changes-5.12.5 new file mode 100644 index 00000000..e8be9316 --- /dev/null +++ b/dist/changes-5.12.5 @@ -0,0 +1,20 @@ +Qt 5.12.5 is a bug-fix release. It maintains both forward and backward +compatibility (source and binary) with Qt 5.12.0 through 5.12.4. + +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. + + - This release contains only minor code improvements. -- cgit v1.2.3 From 21e5ab030d2f735560b7ab381dfaf8d468c247ff Mon Sep 17 00:00:00 2001 From: Jarkko Koivikko Date: Tue, 3 Sep 2019 22:21:17 +0300 Subject: Remove incorrect QML singleton registration - Commit 5260805b162030a6900bacf46d2a55b69075ae09 added an incorrect QML singleton registration which will cause duplicate instances of the singleton with application using inconsistent QtVirtualKeyboard imports. - This registration is also unnecessary and can be removed, since the version number is already registered with the other components. Change-Id: I7ef9688d08ca2ec0a697f7de4159140951f096a7 Reviewed-by: Mitch Curtis --- src/import/qtquickvirtualkeyboardplugin.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/import/qtquickvirtualkeyboardplugin.cpp b/src/import/qtquickvirtualkeyboardplugin.cpp index 9fa769e8..ba866023 100644 --- a/src/import/qtquickvirtualkeyboardplugin.cpp +++ b/src/import/qtquickvirtualkeyboardplugin.cpp @@ -145,9 +145,6 @@ void QtQuickVirtualKeyboardPlugin::registerTypes(const char *uri) qmlRegisterType(QUrl(componentsPath + QLatin1String("SelectionControl.qml")), uri, 2, 1, "SelectionControl"); qmlRegisterType(QUrl(componentsPath + QLatin1String("InputModeKey.qml")), uri, 2, 3, "InputModeKey"); - // New revisions in 5.12. - qmlRegisterSingletonType(uri, 2, 4, "InputContext", createInputContextModule); - // Auto-increment the import to stay in sync with ALL future QtQuick minor versions qmlRegisterModule(uri, 2, QT_VERSION_MINOR); } -- cgit v1.2.3