summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.qmake.conf2
-rw-r--r--README2
-rw-r--r--dist/changes-2.1.225
-rw-r--r--src/charts/qchartglobal.h4
4 files changed, 29 insertions, 4 deletions
diff --git a/.qmake.conf b/.qmake.conf
index 5884e73c..de5242f0 100644
--- a/.qmake.conf
+++ b/.qmake.conf
@@ -1,3 +1,3 @@
load(qt_build_config)
-MODULE_VERSION=2.1.1
+MODULE_VERSION=2.1.2
diff --git a/README b/README
index 59fb1467..f9997e6f 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
---------------
-Qt Charts 2.1.1
+Qt Charts 2.1.2
---------------
Qt Charts module provides a set of easy to use chart components. It uses
diff --git a/dist/changes-2.1.2 b/dist/changes-2.1.2
new file mode 100644
index 00000000..e73605e6
--- /dev/null
+++ b/dist/changes-2.1.2
@@ -0,0 +1,25 @@
+Qt Charts 2.1.2
+
+Fixed issues
+------------
+- [QTBUG-54914] Make OpenGL accelerated series obey series visibility
+- [QTBUG-54803] Ensure the chart is drawn whenever the render node is recreated
+- [QTBUG-55098] Fix partial blurriness of the gl accelerated graph
+- [QTBUG-54763] Clarify QML BarSet::values documentation
+- [QTBUG-53073] Fix VXYModelMapper documentation
+- [QTBUG-52654] Print console warning when invalid row/column used in model mapper
+- [QTBUG-52086] Fix BarSet value rounding
+- [QTBUG-53949] Fix axis minimum height in case of multiple axes on same orientation
+- [QTBUG-54401] Fix issues with reverse axes
+ - QChart mapping functions returned unreversed values
+ - Bounding regions of series were incorrect
+ - Mouse events gave wrong positions
+ - Chart scrolling and zooming didn't account for reversed axes
+- [QTBUG-55278] Disconnect boxplot series from chart's dataset correctly
+- [QTBUG-53337] Fix setting axis color properties to black for the first time
+- [QTBUG-55348] Disconnect a series from ChartItem when it is removed from a chart
+- Fix logarithmic axis for area chart
+
+Fixed examples
+--------------
+- [QTBUG-54492] Fix resize handling in Callout example
diff --git a/src/charts/qchartglobal.h b/src/charts/qchartglobal.h
index 76d3cf27..59e476df 100644
--- a/src/charts/qchartglobal.h
+++ b/src/charts/qchartglobal.h
@@ -24,11 +24,11 @@
#include <QtCore/QtGlobal>
-#define QT_CHARTS_VERSION_STR "2.1.1"
+#define QT_CHARTS_VERSION_STR "2.1.2"
/*
QT_CHARTS_VERSION is (major << 16) + (minor << 8) + patch.
*/
-#define QT_CHARTS_VERSION 0x020101
+#define QT_CHARTS_VERSION 0x020102
/*
can be used like #if (QT_CHARTS_VERSION >= QT_CHARTS_VERSION_CHECK(1, 1, 0))
*/