0.12 release
[imager-graph.git] / Changes
CommitLineData
54ada35d 1Revision history for Perl extension Imager::Graph.
35574351 2
26e10a94
TC
3Imager-Graph 0.12 - 12 May 2015
4=================
5
00a8ede2
TC
6 - increase tolerances on images with filled circles drawn on them to
7 account for the circle drawing change in Imager 1.002.
8 https://rt.cpan.org/Ticket/Display.html?id=103328
9
dabc0313
TC
10Imager-Graph 0.11 - 30 Jun 2014
11=================
12
13 - POD fixes based on a report from Stefan Limbache, and also reported
14 by Slaven Rezić after I failed to do a release.
15 https://rt.cpan.org/Ticket/Display.html?id=95949
3481944f
TC
16
17 - skip POD tests unless AUTOMATED_TESTING or IMAGER_AUTHOR_TESTING is
18 set.
19
04928663 20Imager-Graph 0.10 - 7 May 2012
5a50139d
TC
21=================
22
23 - loosen up image comparisons - the rounding change in Imager 0.90
24 made small changes to many pixels in fountain fills
40ed55fe
TC
25 https://rt.cpan.org/Ticket/Display.html?id=76955
26 It should fix the following too.
27 https://rt.cpan.org/Ticket/Display.html?id=68031
5a50139d 28
75194412
TC
29 - negative_bg (or set via set_negative_background()) can now be a
30 fill.
31 https://rt.cpan.org/Ticket/Display.html?id=59532
32
33 - calculation of the zero position for horizontal charts was broken,
34 this resulted charts with negative data values having the
35 negative_bg color filled from the left side of the chart off the
36 right side of the image.
37
9d6470db
TC
38 - Imager::Graph now requires at least perl 5.6.
39
5f8e3c28
TC
40 - hoisted the common cmpimg() function into a separate test module
41
42 - convert shipped comparison images from ppm to png to reduce size
43
b9c7037e
TC
44Imager-Graph 0.09 - 05 Aug 2010
45=================
46
47Bug fixes:
48
49 - refresh the t10_lin_fount test image
50
51 - avoid use_automatic_axis() for the second area test, since systems
52 without Chart::Math::Axis will produce a different image.
53
851c8918 54Imager-Graph 0.08 - 03 Aug 2010
56b495c0
TC
55=================
56
57Now depends on Imager 0.75.
58
59More cool changes from Patrick Michaud:
60
61 - Area charts
86f73dc2
TC
62 https://rt.cpan.org/Ticket/Display.html?id=7
63
56b495c0
TC
64Other changes:
65
86f73dc2
TC
66 - horizonal_gridlines (vertical charts) and vertical_gridlines
67 (horizontal charts) are now features and can be enabled like other
56b495c0
TC
68 features (or disabled)
69
70 - hoisted the dashed-line drawing into Imager::Graph::_line() and
71 added a _get_line() method to retrieve line style information.
72
73 - features enabled earlier in the style list can now be disabled with
74 a feature "no{stylename}" when features are supplied as an arrayref
75 or scalar. eg. "nograph_outline". If you supply features as a hashref
76 you can disable a feature with:
77 { stylename => 0 }
78
86f73dc2
TC
79 - for vertical and horizontal charts, allow the outline of the graph
80 area (graph_outline) to be disabled (with nograph_outline in
81 features.) or styled (graph.outline)
56b495c0 82
86f73dc2
TC
83 - for vertical and horizontal charts, allow the fill of the graph
84 area to be controlled separately from the base bg (graph.fill)
56b495c0
TC
85
86 - tests
87
88Bug fixes:
89
90 - generate y-axis tic-label widths baed on the labels actually used.
91
92 - make draw() idempotent for vertical charts
93
86f73dc2 94 - multiple calls to draw() no longer return the same image object
56b495c0
TC
95
96 - labels supplied to draw() are now used for vertical and horizontal
97 charts
98
5057a68f
TC
99 - Imager::Graph::Horizontal::add_column_data_series() renamed to
100 add_bar_data_series() and now adds the series as a "bar" series.
101 add_column_data_series() did nothing useful for a horizontal chart.
102
56b495c0 103
aac2cfef
TC
104Imager-Graph 0.07 - 21 May 2009
105=================
106
107Lots of cool changes from Patrick Michaud:
108
109 - added Bar, Column. StackedColumn and Line charts.
110 https://rt.cpan.org/Ticket/Display.html?id=5 [*]
111
112 - new ocean style
113
114 - new ocean_flat style
115
116 - methods to set chart style attributes, in addition to the style
117 parameters passed to draw().
118
119Bug fixes:
120
121 - missing a font parameter when we have a chart with text no longer
122 results in an exception, but in a false returned and a message in
123 error() as with other errors.
124 https://rt.cpan.org/Ticket/Display.html?id=2872
125
126 - the mono style now disables anti-aliasing by default
127
128[*] this was the oldest open bug on rt.cpan.org, now #7 is, still an
129Imager-Graph issue
130
68a6c9c6 131Imager-Graph 0.06 - 21 April 2008
f2351bc7
TC
132=================
133
134 - Removed ancient Imager cruft from the documentation
135
379c5b02
TC
136 - round the dimensions used within the legend to integers to prevent
137 later truncation from causing uneven output.
138
33a928b7
TC
139 - add horizontal legend boxes
140
7b94e723
TC
141 - add a new style "primary" which is primary_red with a light grey
142 background, and made that the default, so the default graphs aren't
143 quite so ugly.
144
26c93f46
TC
145 - zero-sized segments were drawn as covering the whole pie. Skip
146 drawing zero sized segments.
147 https://rt.cpan.org/Ticket/Display.html?id=34813
148
3c9a5609
TC
149 - round the pie radius down to avoid running over the edge of the
150 image
151
320f5a49
TC
152 - changed the pie maxsegments default to 0.01 from 0.05
153
154 - removed the obsolete pie blur style information
155
156 - documented some of the pie chart specific style settings
157
158 - changed the default drop shadow style to a translucent fill so the
159 background can show through.
160
f041f3f9 161Imager-Graph 0.05 - 17 December 2007
c96fb3d1
TC
162=================
163
164This release is an attempt to work around the inconsistent text output
165issues.
166
167 - created Imager::Font::Test which simply outputs boxes instead of
168 text to produce consistent graph images for comparison.
169
170
4f3ce9fd 171Imager-Graph 0.04 - 11 December 2007
bfcf9414
TC
172=================
173
4f3ce9fd
TC
174This is a clean up release, removing code required for ancient
175releases of Imager, and otherwise modernizing the code.
176
bfcf9414
TC
177 - skip all tests if we can't load the font
178
179 - Save test results to ppm, so we can generate images even if we don't
180 have PNG support in Imager.
181
182 - instead of the old draw-no-aa-then-blur-the-result hack, we now use
183 arc()'s aa option
184
185 - tests now use Test::More
186
187 - remove the old circle fudge hack, since Imager fixed arc fills a
188 while ago
189
190 - strictify Makefile.PL, include the LICENSE, use the correct version
191 check for including the extra WriteMakefile keys
192
54ada35d
TC
193 - various changes for Kwalitee
194
bb0de914
TC
195 - remove fancy_fills check, we now depend on an Imager release that
196 supports fountain fills.
197
bfcf9414
TC
198Imager-Graph 0.02 Sat Oct 6 20:36:31 2001
199=================
200
35574351
TC
201 - replace ImUgly.ttf with a new version where % renders on my older PC
202 - remove some old test code that printed the Imager version
203 - moved into local CVS to simplify cross-platform tests
204
bfcf9414
TC
205Imager-Graph 0.01 Tue Sep 12 23:03:25 2001
206=================
207
35574351
TC
208 - original version; created by h2xs 1.19
209 - can draw some nice pie graphs