##// END OF EJS Templates
Updated Charts version and README file for release...
Titta Heikkala -
r2693:57eb7a330245
parent child
Show More
@@ -1,5 +1,5
1 ----------------------
1 ----------------------
2 Qt Charts Add-on 1.3.1
2 Qt Charts Add-on 1.4.0
3 ----------------------
3 ----------------------
4
4
5 What's in Qt Charts
5 What's in Qt Charts
@@ -79,41 +79,36 if you want to do it yourself. Creating the documentation using Qt4 also works,
79 pages are not generated correctly, such as the 'List of All Members' page for all C++ and
79 pages are not generated correctly, such as the 'List of All Members' page for all C++ and
80 QML APIs in .qch documentation.
80 QML APIs in .qch documentation.
81
81
82 Main Changes between 1.3.0 and 1.3.1
82 Main Changes between 1.3.1 and 1.4.0
83 ====================================
83 ====================================
84
84
85 - New Qt theme template added
85 - New: Added possibility to set brush image for AreaSeries, BarSet, BoxPlotSeries,
86 BoxSet, PieSlice and ScatterSeries by specifying 'brushFilename'
87 - New: Added possibility to show series point values for line, spline and scatter series
88 - New: Added possibility to position the bar value labels
86
89
87 Bug Fixes and minor new features
90 Bug Fixes and minor new features
88 ================================
91 ================================
89
92
90 - New: Added new hovered signal for bar charts with index information
93 - New: Added count property for QBoxPlotSeries
91 - New: Added example of using dynamically generated image as a brush for scatter series
94 - New: Added option to set markers in legend in reverse order
92 - New: Added HTML support for pie slice labels
95 - New: Install the plugins.qmltypes file for Qt Quick 2 requested by Qt Creator
93 - New: Added possibility to build Charts without demos and examples
96 - New: Added clear function for BarCategoryAxis
94 - Fixed: Theme initialization performance for bar series is improved
97 - Fixed: Assert failure with percent bar series zero values
95 - Fixed: Documentation generated against Qt5
98 - Fixed: Updated files generated with Qt Creator for demos
96 - Fixed: Pie chart label is truncated if there's not enough space for the label
99 - Fixed: DeclarativeChart::legend property marked as constant
97 - Fixed: Legend item truncation to start with the longest item
100 - Fixed: Crash with ScatterChartItem mouse events
98 - Fixed: Vertical and horizontal truncation of labels in bar chart
101 - Fixed: Build for iOS and for building the QtQuick2 plugin statically
99 - Fixed: Dynamic qml axis switch
102 - Fixed: Setting values for BarSet using Qt.point
100 - Fixed: Crash with empty QAreaSeries
103 - Fixed: Bar category rendering for empty category
101 - Fixed: Missing legend when printing a chart that is not shown
104 - Fixed: QBoxSet color setting
102 - Fixed: Crash when zooming
105 - Fixed: Mouse event handling for pie
103 - Fixed: Chart geometry calculated only for visible items
106 - Fixed: Legend truncation
104 - Fixed: Alignment for multiline items
107 - Fixed: Scatter series color
105 - Alignment can be set for multiline items using format:
108 - Fixed: Crash in ChartDataSet::attachAxis()
106 "<p align=\"center\">multiline<br\>item</p>"
109 - Fixed: Added missing library directory
107 - Fixed: Removed redundancy when setting the axis title
110 - Fixed: Added Charts directory to include path
108 - Fixed: Mouse event handling with rubber band
111 - Fixed: NOMINMAX definition
109 - Fixed: logarithmic axis point calculation for zero and negative values
110 - Fixed: Chart build on Solaris
111 - Fixed: Axis creation with createDefaultAxes() when series of different types are present
112 - Fixed: Debug information text color changed to gray to make it visible with all themes
113 - Fixed: Min and max conflict with standard macros on Windows
114 - Fixed: Chart build with QT_NO_TEXTSTREAM definition
115 - Fixed: Chart build with QT_NO_RUBBERBAND definition
116 - Fixed: Chart build with QT_NO_GRAPHICSEFFECT definition
117
112
118 Known issues
113 Known issues
119 ============
114 ============
@@ -20,8 +20,8 feature.files = $$PWD/features/qtcommercialchart.prf
20 INSTALLS += feature
20 INSTALLS += feature
21
21
22 # docs
22 # docs
23 CHARTS_VERSION = 1.3.1
23 CHARTS_VERSION = 1.4.0
24 CHARTS_VERSION_TAG = 131
24 CHARTS_VERSION_TAG = 140
25
25
26 contains(QT_MAJOR_VERSION, 5) {
26 contains(QT_MAJOR_VERSION, 5) {
27 QDOC_CONFFILE = qcharts-qt5.qdocconf
27 QDOC_CONFFILE = qcharts-qt5.qdocconf
@@ -1,6 +1,6
1 project = Qt Charts
1 project = Qt Charts
2 description = Library for creating charts
2 description = Library for creating charts
3 version = 1.3.1
3 version = 1.4.0
4
4
5 sourcedirs = ../../src \
5 sourcedirs = ../../src \
6 ../../examples \
6 ../../examples \
@@ -64,7 +64,7
64
64
65 Add an import line to your *.qml file:
65 Add an import line to your *.qml file:
66 \code
66 \code
67 import QtCommercial.Chart 1.3
67 import QtCommercial.Chart 1.4
68 \endcode
68 \endcode
69
69
70 \raw HTML
70 \raw HTML
@@ -1,3 +1,3
1 /*!
1 /*!
2 \qmlmodule QtCommercial.Chart 1.3
2 \qmlmodule QtCommercial.Chart 1.4
3 */
3 */
@@ -23,11 +23,11
23
23
24 #include <qglobal.h>
24 #include <qglobal.h>
25
25
26 #define QTCOMMERCIALCHART_VERSION_STR "1.3.1"
26 #define QTCOMMERCIALCHART_VERSION_STR "1.4.0"
27 /*
27 /*
28 QTCOMMERCIALCHART_VERSION is (major << 16) + (minor << 8) + patch.
28 QTCOMMERCIALCHART_VERSION is (major << 16) + (minor << 8) + patch.
29 */
29 */
30 #define QTCOMMERCIALCHART_VERSION 0x010301
30 #define QTCOMMERCIALCHART_VERSION 0x010400
31 /*
31 /*
32 can be used like #if (QTCOMMERCIALCHART_VERSION >= QTCOMMERCIALCHART_VERSION_CHECK(1, 1, 0))
32 can be used like #if (QTCOMMERCIALCHART_VERSION >= QTCOMMERCIALCHART_VERSION_CHECK(1, 1, 0))
33 */
33 */
General Comments 0
You need to be logged in to leave comments. Login now