loosen up comparisons to handle the rounding change in Imager 0.90
[imager-graph.git] / Changes
1 Revision history for Perl extension Imager::Graph.
2
3 Imager-Graph 0.10 - unreleased
4 =================
5
6  - loosen up image comparisons - the rounding change in Imager 0.90
7    made small changes to many pixels in fountain fills
8
9 Imager-Graph 0.09 - 05 Aug 2010
10 =================
11
12 Bug fixes:
13
14  - refresh the t10_lin_fount test image
15
16  - avoid use_automatic_axis() for the second area test, since systems
17    without Chart::Math::Axis will produce a different image.
18
19 Imager-Graph 0.08 - 03 Aug 2010
20 =================
21
22 Now depends on Imager 0.75.
23
24 More cool changes from Patrick Michaud:
25
26  - Area charts
27    https://rt.cpan.org/Ticket/Display.html?id=7
28
29 Other changes:
30
31  - horizonal_gridlines (vertical charts) and vertical_gridlines
32    (horizontal charts) are now features and can be enabled like other
33    features (or disabled)
34
35  - hoisted the dashed-line drawing into Imager::Graph::_line() and
36    added a _get_line() method to retrieve line style information.
37
38  - features enabled earlier in the style list can now be disabled with
39    a feature "no{stylename}" when features are supplied as an arrayref
40    or scalar. eg. "nograph_outline".  If you supply features as a hashref
41    you can disable a feature with:
42      { stylename => 0 }
43
44  - for vertical and horizontal charts, allow the outline of the graph
45    area (graph_outline) to be disabled (with nograph_outline in
46    features.) or styled (graph.outline)
47
48  - for vertical and horizontal charts, allow the fill of the graph
49    area to be controlled separately from the base bg (graph.fill)
50
51  - tests
52
53 Bug fixes:
54
55  - generate y-axis tic-label widths baed on the labels actually used.
56
57  - make draw() idempotent for vertical charts
58
59  - multiple calls to draw() no longer return the same image object
60
61  - labels supplied to draw() are now used for vertical and horizontal
62    charts
63
64  - Imager::Graph::Horizontal::add_column_data_series() renamed to
65    add_bar_data_series() and now adds the series as a "bar" series.
66    add_column_data_series() did nothing useful for a horizontal chart.
67
68
69 Imager-Graph 0.07 - 21 May 2009
70 =================
71
72 Lots of cool changes from Patrick Michaud:
73
74  - added Bar, Column. StackedColumn and Line charts.
75    https://rt.cpan.org/Ticket/Display.html?id=5 [*]
76
77  - new ocean style
78
79  - new ocean_flat style
80
81  - methods to set chart style attributes, in addition to the style
82    parameters passed to draw().
83
84 Bug fixes:
85
86  - missing a font parameter when we have a chart with text no longer
87    results in an exception, but in a false returned and a message in
88    error() as with other errors.
89    https://rt.cpan.org/Ticket/Display.html?id=2872
90
91  - the mono style now disables anti-aliasing by default
92
93 [*] this was the oldest open bug on rt.cpan.org, now #7 is, still an
94 Imager-Graph issue
95
96 Imager-Graph 0.06 - 21 April 2008
97 =================
98
99  - Removed ancient Imager cruft from the documentation
100
101  - round the dimensions used within the legend to integers to prevent
102    later truncation from causing uneven output.
103
104  - add horizontal legend boxes
105
106  - add a new style "primary" which is primary_red with a light grey
107    background, and made that the default, so the default graphs aren't
108    quite so ugly.
109
110  - zero-sized segments were drawn as covering the whole pie.  Skip
111    drawing zero sized segments.
112    https://rt.cpan.org/Ticket/Display.html?id=34813
113
114  - round the pie radius down to avoid running over the edge of the
115    image
116
117  - changed the pie maxsegments default to 0.01 from 0.05
118
119  - removed the obsolete pie blur style information
120
121  - documented some of the pie chart specific style settings
122
123  - changed the default drop shadow style to a translucent fill so the
124    background can show through.
125
126 Imager-Graph 0.05 - 17 December 2007
127 =================
128
129 This release is an attempt to work around the inconsistent text output
130 issues.
131
132  - created Imager::Font::Test which simply outputs boxes instead of
133    text to produce consistent graph images for comparison.
134
135
136 Imager-Graph 0.04 - 11 December 2007
137 =================
138
139 This is a clean up release, removing code required for ancient
140 releases of Imager, and otherwise modernizing the code.
141
142  - skip all tests if we can't load the font
143
144  - Save test results to ppm, so we can generate images even if we don't
145    have PNG support in Imager.
146
147  - instead of the old draw-no-aa-then-blur-the-result hack, we now use
148    arc()'s aa option
149
150  - tests now use Test::More
151
152  - remove the old circle fudge hack, since Imager fixed arc fills a
153    while ago
154
155  - strictify Makefile.PL, include the LICENSE, use the correct version
156    check for including the extra WriteMakefile keys
157
158  - various changes for Kwalitee
159
160  - remove fancy_fills check, we now depend on an Imager release that
161    supports fountain fills.
162
163 Imager-Graph 0.02  Sat Oct  6 20:36:31 2001
164 =================
165
166  - replace ImUgly.ttf with a new version where % renders on my older PC
167  - remove some old test code that printed the Imager version
168  - moved into local CVS to simplify cross-platform tests
169       
170 Imager-Graph 0.01  Tue Sep 12 23:03:25 2001
171 =================
172
173  - original version; created by h2xs 1.19
174  - can draw some nice pie graphs