summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2018-04-11 12:20:06 +0200
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2018-04-11 12:20:06 +0200
commit0c112f5980a39d370a90c34f8dfb778a6bd6a780 (patch)
treed2f60c06dc3ed49c9a7723dd89cf4b3ea2902fe3
parent664355914b94ba7cd16d8d681599519f6488c5fd (diff)
parent502f06a5617477a83f881963589de1b2fcce0b7c (diff)
downloadqttools-0c112f5980a39d370a90c34f8dfb778a6bd6a780.tar.gz
Merge remote-tracking branch 'origin/5.9.5' into 5.9
Change-Id: Icc83b97dc7ff6bce1a0d80fdbd0318c5b0ab6146
-rw-r--r--dist/changes-5.9.534
-rw-r--r--src/assistant/assistant/mainwindow.cpp2
2 files changed, 35 insertions, 1 deletions
diff --git a/dist/changes-5.9.5 b/dist/changes-5.9.5
new file mode 100644
index 000000000..eb9f82612
--- /dev/null
+++ b/dist/changes-5.9.5
@@ -0,0 +1,34 @@
+Qt 5.9.5 is a bug-fix release. It maintains both forward and backward
+compatibility (source and binary) with Qt 5.9.0.
+
+For more details, refer to the online documentation included in this
+distribution. The documentation is also available online:
+
+http://doc.qt.io/qt-5/index.html
+
+The Qt version 5.9 series is binary compatible with the 5.8.x series.
+Applications compiled for 5.8 will continue to run with 5.9.
+
+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.
+
+****************************************************************************
+* Qt 5.9.5 Changes *
+****************************************************************************
+
+windeployqt
+-----------
+
+ - The Qt3DAnimation dll is now deployed when the module is used.
+
+macdeployqt
+-----------
+
+ - [QTBUG-65844] Added support for selecting the file system type to use
+ when building a .dmg file. Defaults to HFS+ to support a wider range
+ of macOS versions.
diff --git a/src/assistant/assistant/mainwindow.cpp b/src/assistant/assistant/mainwindow.cpp
index dba6b724e..2ceb86d3b 100644
--- a/src/assistant/assistant/mainwindow.cpp
+++ b/src/assistant/assistant/mainwindow.cpp
@@ -911,7 +911,7 @@ void MainWindow::showAboutDialog()
"<p>Version %2</p>"
"<p>Browser: %3</p></center>"
"<p>Copyright (C) %4 The Qt Company Ltd.</p>")
- .arg(tr("Qt Assistant"), QLatin1String(QT_VERSION_STR), browser, QStringLiteral("2017")),
+ .arg(tr("Qt Assistant"), QLatin1String(QT_VERSION_STR), browser, QStringLiteral("2018")),
resources);
QLatin1String path(":/qt-project.org/assistant/images/assistant-128.png");
aboutDia.setPixmap(QString(path));