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