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