aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.qmake.conf2
-rw-r--r--dist/changes-5.13.018
-rw-r--r--src/effects/RadialGradient.qml10
-rw-r--r--src/effects/doc/qtgraphicaleffects.qdocconf2
-rw-r--r--src/effects/effects_plugin.pro2
-rw-r--r--src/effects/plugins.qmltypes4
6 files changed, 32 insertions, 6 deletions
diff --git a/.qmake.conf b/.qmake.conf
index b5454e5..1ed62c5 100644
--- a/.qmake.conf
+++ b/.qmake.conf
@@ -1,3 +1,3 @@
load(qt_build_config)
-MODULE_VERSION = 5.12.5
+MODULE_VERSION = 5.13.1
diff --git a/dist/changes-5.13.0 b/dist/changes-5.13.0
new file mode 100644
index 0000000..ebb4be1
--- /dev/null
+++ b/dist/changes-5.13.0
@@ -0,0 +1,18 @@
+Qt 5.13 introduces many new features and improvements as well as bugfixes
+over the 5.12.x series. 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.
diff --git a/src/effects/RadialGradient.qml b/src/effects/RadialGradient.qml
index ff46aac..52b3ff3 100644
--- a/src/effects/RadialGradient.qml
+++ b/src/effects/RadialGradient.qml
@@ -85,7 +85,10 @@ Item {
property bool cached: false
/*!
- The HorizontalOffset and verticalOffset properties define the offset in
+ \qmlproperty real RadialGradient::horizontalOffset
+ \qmlproperty real RadialGradient::verticalOffset
+
+ The horizontalOffset and verticalOffset properties define the offset in
pixels for the center point of the gradient compared to the item center.
The values range from -inf to inf. By default, these properties are set
@@ -127,7 +130,10 @@ Item {
property real verticalOffset: 0.0
/*!
- The HorizontalRadius and verticalRadius properties define the shape and
+ \qmlproperty real RadialGradient::horizontalRadius
+ \qmlproperty real RadialGradient::verticalRadius
+
+ The horizontalRadius and verticalRadius properties define the shape and
size of the radial gradient. If the radiuses are equal, the shape of the
gradient is a circle. If the horizontal and vertical radiuses differ,
the shape is elliptical. The radiuses are given in pixels.
diff --git a/src/effects/doc/qtgraphicaleffects.qdocconf b/src/effects/doc/qtgraphicaleffects.qdocconf
index c3c8754..27d8917 100644
--- a/src/effects/doc/qtgraphicaleffects.qdocconf
+++ b/src/effects/doc/qtgraphicaleffects.qdocconf
@@ -1,8 +1,10 @@
include($QT_INSTALL_DOCS/global/qt-module-defaults.qdocconf)
+include($QT_INSTALL_DOCS/config/exampleurl-qtgraphicaleffects.qdocconf)
project = QtGraphicalEffects
description = Qt Graphical Effects Reference Documentation
version = $QT_VERSION
+moduleheader =
qhp.projects = QtGraphicalEffects
diff --git a/src/effects/effects_plugin.pro b/src/effects/effects_plugin.pro
index e889236..48b1030 100644
--- a/src/effects/effects_plugin.pro
+++ b/src/effects/effects_plugin.pro
@@ -2,7 +2,7 @@ CXX_MODULE = qml
TARGET = qtgraphicaleffectsplugin
TARGETPATH = QtGraphicalEffects
QT += quick qml
-IMPORT_VERSION = 1.0
+IMPORT_VERSION = 1.$$QT_MINOR_VERSION
QML_FILES = \
Blend.qml \
BrightnessContrast.qml \
diff --git a/src/effects/plugins.qmltypes b/src/effects/plugins.qmltypes
index 8cbeeb7..7c2924c 100644
--- a/src/effects/plugins.qmltypes
+++ b/src/effects/plugins.qmltypes
@@ -4,8 +4,8 @@ import QtQuick.tooling 1.2
// It is used for QML tooling purposes only.
//
// This file was auto-generated by:
-// 'qmlplugindump -nonrelocatable QtGraphicalEffects 1.0'
+// 'qmlplugindump -nonrelocatable QtGraphicalEffects 1.13'
Module {
- dependencies: ["QtQuick 2.0", "QtQuick.Window 2.1"]
+ dependencies: ["QtQuick 2.12", "QtQuick.Window 2.12"]
}