From 48789ec0b2c3232c4b155d8ba01a262f80ff0474 Mon Sep 17 00:00:00 2001 From: Frederik Gladhorn Date: Mon, 14 Oct 2019 09:41:50 +0200 Subject: Bump version Change-Id: I8ceb2c83adf60e9bdc42a9112dfb3fa4ab1b5727 --- .qmake.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.qmake.conf b/.qmake.conf index 1ed62c5ac..543d0a842 100644 --- a/.qmake.conf +++ b/.qmake.conf @@ -1,3 +1,3 @@ load(qt_build_config) -MODULE_VERSION = 5.13.1 +MODULE_VERSION = 5.13.2 -- cgit v1.2.3 From 7644b60a09c00c1641f9ad270f3d13dbe509b3c9 Mon Sep 17 00:00:00 2001 From: Antti Kokko Date: Mon, 14 Oct 2019 10:28:55 +0300 Subject: Add changes file for Qt 5.13.2 Change-Id: I996c1caa7a31493a2bc889764070cb34041fd132 Reviewed-by: Paul Wicking --- dist/changes-5.13.2 | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 dist/changes-5.13.2 diff --git a/dist/changes-5.13.2 b/dist/changes-5.13.2 new file mode 100644 index 000000000..e3bb833f0 --- /dev/null +++ b/dist/changes-5.13.2 @@ -0,0 +1,20 @@ +Qt 5.13.2 is a bug-fix release. It maintains both forward and backward +compatibility (source and binary) with Qt 5.13.0 through 5.13.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/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 bf9557850ede7e49d1546ac6180acecf8786f87f Mon Sep 17 00:00:00 2001 From: Jani Heikkinen Date: Tue, 15 Oct 2019 09:12:17 +0300 Subject: Document Third-Party Code changes in Qt 5.13.2 The changes where obtained by running qtattributionsscanner -output-format json in the sources of both Qt 5.13.1 and Qt 5.13.2 checkouts, and diff'ing these. Task-number: QTBUG-78366 Change-Id: I2fb10082fd001da60a4fbc2bacccb84bd5c4dd29 Reviewed-by: Paul Wicking --- doc/src/legal/licensechanges.qdoc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/src/legal/licensechanges.qdoc b/doc/src/legal/licensechanges.qdoc index 11475d1bf..d27e29363 100644 --- a/doc/src/legal/licensechanges.qdoc +++ b/doc/src/legal/licensechanges.qdoc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2018 The Qt Company Ltd. +** Copyright (C) 2019 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the documentation of the Qt Toolkit. @@ -36,6 +36,13 @@ \section1 Qt 5.13.2 + \section2 Qt GUI Module + + \list + \li \l{X Server helper} was added under X11 License and Historical Permission Notice and Disclaimer license. + \li \l{Adobe Glyph List For New Fonts} version 1.7 was added under BSD 3-Clause \"New\" or \"Revised\" License. + \endlist + \section2 Qt SQL Module \l{SQLite} got updated to upstream version 3.29.0. -- cgit v1.2.3 From 0ee725e8a6f9242437da736f78dedf2bf1425b57 Mon Sep 17 00:00:00 2001 From: Andy Shaw Date: Wed, 23 Oct 2019 11:21:11 +0200 Subject: Add doc about the workaround for turning off predictive text on Android Change-Id: I1038d40b8a65676c7e0fd4da67c4e8860c95b094 Reviewed-by: Kavindra Palaraja --- doc/src/platforms/android-platform-notes.qdoc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/doc/src/platforms/android-platform-notes.qdoc b/doc/src/platforms/android-platform-notes.qdoc index 6baed10f3..8780a11a9 100644 --- a/doc/src/platforms/android-platform-notes.qdoc +++ b/doc/src/platforms/android-platform-notes.qdoc @@ -177,4 +177,14 @@ to build separate APKs for each architecture, so that each APK only contains the binaries required for the targeted architecture. For more information about this, see the Android documentation about \l{http://developer.android.com/google/play/publishing/multiple-apks.html}{Multiple APK Support}. + + \section1 Known Issues + + Due to a bug on some devices, when you turn off predictive text with \c ImhNoPredictiveText, + this property will be ignored and predictive text will still be enabled. To work around this, + set the \c QT_ANDROID_ENABLE_WORKAROUND_TO_DISABLE_PREDICTIVE_TEXT environment variable to \c 1. + However, one side effect is that this environment variable can cause a problem with other + keyboards such as Gboard. If you use a language like Japanese, with Gboard, only a QWERTY + keyboard is displayed. This environment variable is queried each time the keyboard is displayed, + so it's possible to toggle the workaround on and off, as necessary. */ -- cgit v1.2.3 From 58b25da3163ce78eb2748768cbae80f5fe3d1397 Mon Sep 17 00:00:00 2001 From: Kavindra Palaraja Date: Fri, 25 Oct 2019 15:32:47 +0200 Subject: Doc: Mention the need for a writable location for Android SDK and NDK Change-Id: I2490fce8e70efcb82e071680ee726f6f314a92a6 Fixes: QTBUG-73547 Reviewed-by: BogDan Vatra --- doc/src/platforms/android.qdoc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/src/platforms/android.qdoc b/doc/src/platforms/android.qdoc index b35de320a..c33aeae3c 100644 --- a/doc/src/platforms/android.qdoc +++ b/doc/src/platforms/android.qdoc @@ -167,6 +167,10 @@ earlier. For more details, refer to the \l{https://developer.android.com/studio/intro/update.html}{Android Studio} documentation. +\note Make sure to unpack the Android SDK and NDK to a writeable location that Qt Creator +can access later. Otherwise, Qt Creator won't be able to use \c sdkmanager or find all +components even if they were installed manually. + \section2 Updating the Android SDK The command line tools provided by the Android SDK Tools package also enables updating -- cgit v1.2.3 From fe230a199306888f11ac62e8a056f64048943906 Mon Sep 17 00:00:00 2001 From: Assam Boudjelthia Date: Mon, 4 Nov 2019 10:32:04 +0200 Subject: Fix typo in code block closing tag Change-Id: I4032fbe406bffe8b2d8e2e7251e879eb48553139 Reviewed-by: Leena Miettinen --- doc/src/platforms/android-building.qdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/platforms/android-building.qdoc b/doc/src/platforms/android-building.qdoc index c33851d13..66b8218e1 100644 --- a/doc/src/platforms/android-building.qdoc +++ b/doc/src/platforms/android-building.qdoc @@ -176,11 +176,11 @@ set "ANDROID_BUILD_TOOLS_REVISION=21.1.2" set "ANDROID_NDK_PATH=" set "ANDROID_TOOLCHAIN_VERSION=4.9" - \encode + \endcode Depending on which NDK you have downloaded, add its path: \code set "ANDROID_NDK_HOST=windows-x86_64" - \encdode + \endcode or \code set "ANDROID_NDK_HOST=windows" -- cgit v1.2.3