updates
[imager.git] / Changes
CommitLineData
7623d340
TC
1Imager release history. Older releases can be found in Changes.old
2
bb5712de 3Imager 0.58 -
d034a178
TC
4===========
5
f8e36694
TC
6 - added to_rgb16 to produce a 16-bit/sample version of an image
7
d034a178
TC
8Bug fixes:
9
10 - search another place for rgb.txt, and check all the places
11 Imager::Color checks when deciding whether to skip testing it
12 http://rt.cpan.org/Ticket/Display.html?id=26064
13
73962964
TC
14 - use a convolution kernel size based on the stddev rather than a
15 fixed size when performing a gaussian blur
16 http://rt.cpan.org/Ticket/Display.html?id=25645
17
01b84320
TC
18 - document the difference() method's mindist parameter, and debug it.
19
22f9ca48
TC
20 - put the Imager releaser number in the Inline::C generated code to
21 regenerate Inline code when a new release of Imager is installed.
22 http://rt.cpan.org/Ticket/Display.html?id=26278
23
bb5712de
TC
24Imager 0.57 - 30 Apr 2007
25===========
26
27This is a maintenence release fixing a security issue in Imager.
28
29 - CRITICAL: a specially crafted compressed BMP file can cause a buffer
30 overflow in malloced memory. There will be further discussion of
31 this issue in the ticket below.
32 http://rt.cpan.org/Ticket/Display.html?id=26811
33
d034a178 34Imager 0.56 - 1 Apr 2007
7623d340
TC
35===========
36
37 - added support for reading 16-bit/sample PGM/PPM images
38
39 - added support for writing 16-bit/sample PGM/PPM images
40
41 - improved performance of reading PBM/PGM/PPM images
42
43 - added support for writing PBM images if the image is paletted and
44 contains only black and white
45
46 - added a new make_colors value - "mono"
47
48 - switched from the svn log Changes to a manual Changes to reduce
49 noise
50
1225d272
TC
51 - new sample code - samples/flasher.pl
52
7623d340
TC
53Bug fixes:
54
55 - CRITICAL: the "Imager" typemap entry (not used by Imager itself)
56 was returning an image object with an extra reference, this
57 resulted in a memory leak.
58 http://rt.cpan.org/Ticket/Display.html?id=24992
59
60 - fix rendering on alpha channel images for the FreeType 2.x driver
61 http://rt.cpan.org/Ticket/Display.html?id=11972
62
63 - reading bmp files now consitently handles short reads. You can now
64 supply a parameter to treat a short read as successful and set
65 i_incomplete
66 http://rt.cpan.org/Ticket/Display.html?id=8426
67
68 - previously, reading ASCII PBM files required spaces between samples,
69 even though the format doesn't require that
70
1225d272
TC
71 - improved documentation of the unsharpmask filter (I hope)
72 http://rt.cpan.org/Ticket/Display.html?id=25531
73
74 - force flushing of the output from i_tt_dump_names() and test output
75 in t/t35ttfont.t to prevent output from being mixed up.
76 https://rt.cpan.org/Ticket/Display.html?id=24859
77
78 - rewrite a conditional expression as an if() to hopefully work around
79 a bug in the pre-4.0 GCC Apple shipped with OS X 10.4.
80 https://rt.cpan.org/Ticket/Display.html?id=25561
81
82 - avoid Data::Dumper in regops.perl to support older releases of perl
83 https://rt.cpan.org/Ticket/Display.html?id=24391
84
7623d340
TC
85Imager 0.55 - 16 Dec 2006
86===========
87
88This is primarily a bug fix release.
89
90Note: Test::More is now a pre-requisite for Imager and is no longer bundled.
91
92There is one new feature:
93
94 - the Win32 font driver now supports UTF8 (RT 22166)
95 http://www.cpanforum.com/threads/3276
96 http://rt.cpan.org/Ticket/Display.html?id=22166
97
98Several bugs were fixed:
99
100 - the string() method would not output the string "0"
101 http://rt.cpan.org/Public/Bug/Display.html?id=21770
102
103 - fills.c was failing to compile on Solaris 10 (compiler unknown)
104 http://rt.cpan.org/Public/Bug/Display.html?id=21944
105
106 - the gif_disposal and gif_user_input tags weren't being read from
107 the file correctly
108 http://rt.cpan.org/Public/Bug/Display.html?id=22192
109
110 - gif.c was failing to build under MSVC
111 http://rt.cpan.org/Ticket/Display.html?id=23922
112
113 - in some cases strings passed to the string() method were treated as
114 terminated by NUL (chr 0)
115 http://rt.cpan.org/Public/Bug/Display.html?id=21770
116
117 - on "MSWin32" perl builds we now link to -lzlib instead of -lz since
118 that's the default build name for zlib on Win32.
119 http://rt.cpan.org/Ticket/Display.html?id=23064
120
121 - search $Config{incpath} for headers too, which we should have been
122 doing all along.
123
124Win32 font driver fixes:
125
126 - the global descent value from bounding box was the wrong sign
127 http://www.cpanforum.com/threads/3276
128
129 - if the first or last glyph overflowed the left or right side of the
130 advance width they would be clipped
131
132
133Imager 0.54 - 14 Sep 2006
134===========
135
136This is primarily a feature release:
137
138 - a new qtype value 'mixing' has been added to the scale()
139 method. This is faster than 'normal', slower than 'preview'. This
140 is based on the method used by pnmscale, and seems to produce less
141 blurry results than normal.
142 http://rt.cpan.org/Public/Bug/Display.html?id=20677
143
144 - the rubthrough() method can now render onto images with an alpha
145 channel.
146 http://rt.cpan.org/Ticket/Display.html?id=20678
147
148 - the read_multi() method now falls back to calling doing a single
149 image read via the read() method and write_multi() will now fall
150 back to calling write() if a single image is supplied. This means
151 you can simply call the read_multi() or write_multi() functions
152 without having to check if the type is formatted by that method.
153 http://rt.cpan.org/Ticket/Display.html?id=19457
154 http://rt.cpan.org/Ticket/Display.html?id=19458
155
156 - the GIF loop extension can now be written. If you don't have
157 libungif/giflib 4.1.4 (or some distribution's bugfixed equivalent) you
158 should upgrade.
159 http://rt.cpan.org/Ticket/Display.html?id=21185
160
161 - getscanline() and setscanline() can now read/write palette index
162 based data from/to the image for paletted images, by setting type to
163 'index'.
164 http://rt.cpan.org/Ticket/Display.html?id=20338
165
166 - we no longer hassle you to disable GIF support
167 http://rt.cpan.org/Ticket/Display.html?id=20687
168
169 - minor documentation fixes
170
171
172Imager 0.53 - 26 Jul 2006
173===========
174
175This is a bugfix release.
176
177Some test code was left in a code path not covered by the test
178suite. A test was added to cover this code path and the test code was
179removed.
180http://rt.cpan.org/Public/Bug/Display.html?id=20705
181
182
183Imager 0.52 - 25 Jul 2006
184===========
185
186This is primarily a feature release, but contains a fair few bug
187fixes, new features:
188
189 - ability to read and write MS Windows ICO and CUR files
190
191 - you can now add file format plugins to support new file formats
192
193 - add POD coverage tests
194
195 - setcolors() and addcolors() now accept color names and so on
196 instead of requiring Imager::Color objects.
197 http://rt.cpan.org/Ticket/Display.html?id=20056
198
199 - flood_fill() can now fill to a specified border color instead of
200 just to the area the same color as the seed.
201 http://rt.cpan.org/Ticket/Display.html?id=19618
202
203
204Bug fixes:
205
206 - bounding_box for the T1 driver wasn't converting UTF8 to ascii when
207 calculating the advance width.
208 http://rt.cpan.org/Public/Bug/Display.html?id=20554
209
210 - bounding_box for the T1 driver wasn't including leading and
211 trailing spaces in the bounding box as the other drivers did, it also
212 produced strange results for empty strings or strings containing only
213 spaces
214
215 - when reading CMYK jpeg images they were being transferred to the
216 image object as is, producing a four channel image. It only looked ok
217 due to an old still unfixed Photoshop bug. We now convert from the
218 inverted CMYK that photoshop (and Corel for example) produce into RGB.
219 http://rt.cpan.org/Ticket/Display.html?id=20416
220
221 - reading a CYMK TIFF would result in a 4 channel image, reading any
222 image with more than 4 channels (eg. RGB with 2 alpha channels) would
223 result in an error.
224 http://rt.cpan.org/Ticket/Display.html?id=20415
225
226 - added /usr/local/include to the default include search path, since
227 we were already searching /usr/local/lib for libraries.
228
229And various minor fixes and documentation updates.
230
231
232Imager 0.51 - 23 Apr 2006
233===========
234
235 - fix a validation bug when processing JPEG EXIF data that can cause
236 a crash
237 http://rt.cpan.org/Public/Bug/Display.html?id=18496
238
239 - fix mis-processing of the src_maxx and src_maxy parameters of the
240 paste() method
241 http://rt.cpan.org/Public/Bug/Display.html?id=18712
242
243 - fix a problem in Imager's "smart" handling of the color parameter
244 to various methods.
245 http://rt.cpan.org/Public/Bug/Display.html?id=18561
246
247
248Imager 0.50 - 29 Mar 2006
249===========
250
251 - CRITICAL: fixes a segmentation fault from attempting to write a 2
252 or 4 channel image to jpeg or a 2 channel image to tga where the
253 output is an in-memeory buffer.
254 http://rt.cpan.org/Public/Bug/Display.html?id=18397
255
256 - fixes an incorrect pointer parameter in the PNG code
257 http://rt.cpan.org/Public/Bug/Display.html?id=18051
258
259 - skip Inline::C tests when building in a directory with spaces
260 http://rt.cpan.org/Public/Bug/Display.html?id=18049