Commit | Line | Data |
---|---|---|
7623d340 TC |
1 | Imager release history. Older releases can be found in Changes.old |
2 | ||
d6b51d8c | 3 | Imager 0.67 - unreleased |
500888da TC |
4 | =========== |
5 | ||
6 | Bug fixes: | |
7 | ||
8 | - correct documentation of default of raw image interleave read | |
9 | parameter | |
10 | https://rt.cpan.org/Ticket/Display.html?id=42074 | |
11 | ||
12 | - add raw_ prefix to raw read parameters, though the original names | |
13 | still work. | |
14 | ||
15 | - fail the read if an invalid raw_interleave parameter is supplied | |
16 | ||
17 | - warn if no interleave or raw_interleave parameter is supplied, | |
18 | since the documented default was wrong, and incompatible with the | |
19 | write format | |
20 | ||
21 | - for reading raw images, if raw_storechannels > raw_datachannels, | |
22 | set the extra channels in the image to 0 | |
23 | ||
cd476e58 TC |
24 | - when probing for executables like freetype-config, search for .bat |
25 | and .cmd on MSWin32, as well as .exe. | |
26 | https://rt.cpan.org/Ticket/Display.html?id=49275 | |
500888da | 27 | |
f9a39263 TC |
28 | - re-work the external libraries section of README: |
29 | - list Debian and Redhat package names for each library | |
30 | - reformatting | |
31 | - update URLs | |
32 | ||
f45b774f TC |
33 | - use the new EU::MM META_MERGE facility instead of generating |
34 | META.yml from scratch | |
35 | https://rt.cpan.org/Ticket/Display.html?id=47888 | |
36 | ||
d6b51d8c TC |
37 | - use Devel::CheckLib (bundled, modified) to check which release of |
38 | libtiff is installed and reject 3.9.0 | |
39 | ||
40 | ||
249af030 TC |
41 | Imager 0.67 - 12 Dec 2008 |
42 | =========== | |
43 | ||
44 | Bug fixes: | |
45 | ||
46 | - fix a packaging error | |
47 | ||
cca21862 | 48 | Imager 0.66 - 12 Dec 2008 |
3c8fee33 TC |
49 | =========== |
50 | ||
6b22ba84 TC |
51 | - 24-bit color .ICO/.CUR files can now be read. |
52 | ||
3c8fee33 TC |
53 | Bug fixes: |
54 | ||
6b22ba84 TC |
55 | - an optimization skipping 0 src alpha values could cause the |
56 | rubthrough() to read past the end of a buffer. | |
57 | http://www.nntp.perl.org/group/perl.cpan.testers/2008/05/msg1509184.html | |
58 | ||
5c0d0ddf TC |
59 | - corrected a reference leak where writing GIFs would leak memory. |
60 | This could also happen calling to_paletted(). | |
61 | Also documented the underlying long existing feature where the | |
62 | colors parameter is filled with the generated color table and added | |
63 | tests for it. | |
3c8fee33 TC |
64 | http://rt.cpan.org/Ticket/Display.html?id=41028 |
65 | ||
8e7f5809 TC |
66 | - write out the image size in bytes field of a BMP correctly. |
67 | http://rt.cpan.org/Ticket/Display.html?id=41406 | |
68 | ||
c586eb58 TC |
69 | - add limited tests for Imager::ExtUtils |
70 | ||
71 | - make Imager::ExtUtils->includes use an absolute path, since | |
72 | a relative path could cause failures using Inline::C. | |
73 | http://rt.cpan.org/Ticket/Display.html?id=37353 | |
74 | ||
6b22ba84 TC |
75 | - re-arrange the POD for Imager::Font::BBox: |
76 | - mark total_width(), pos_width(), end_offset() obsolete, since | |
77 | they're mostly for backwards compatibility | |
78 | - group width methods and height methods | |
79 | https://rt.cpan.org/Ticket/Display.html?id=39999 | |
17d9fe35 | 80 | |
0727e3f5 | 81 | Imager 0.65 - 20 May 2008 |
546ea21c TC |
82 | =========== |
83 | ||
84 | Bug fixes: | |
85 | ||
86 | - In some cases when an error occurs reading those parts of a JPEG | |
87 | file after the image the scan-line buffer could be freed a second | |
88 | time. In cases where the the error occured while reading the image | |
89 | data it's possible that the buffer could have leaked. | |
90 | Thanks to Gabriel Vasseur for reporting this and help in tracking | |
91 | it down. | |
92 | ||
43b2b326 TC |
93 | - the gif_screen_height tag was overriding the screen width and being |
94 | ignored for the screen height when present. | |
95 | https://rt.cpan.org/Public/Bug/Display.html?id=35568 | |
96 | ||
e02d22d2 | 97 | Imager 0.64 - 23 April 2008 |
de470892 TC |
98 | =========== |
99 | ||
e02d22d2 TC |
100 | This is a bug fix release. This includes a fix for a possible |
101 | security issue. | |
102 | ||
de470892 TC |
103 | Bug fixes: |
104 | ||
e02d22d2 TC |
105 | - Possible security issue: The floating point sample path for image |
106 | based fills had a buffer overflow. This would overwrite the end of | |
107 | a malloc()ed buffer with double precision floats. | |
108 | http://rt.cpan.org/Ticket/Display.html?id=35324 | |
6912d85a | 109 | CVE-2008-1928 |
e02d22d2 | 110 | |
de470892 TC |
111 | - check that the result of fileno($fh) is defined rather than simply |
112 | true when read() or write() is supplied with an fh parameter. | |
113 | http://rt.cpan.org/Ticket/Display.html?id=35139 | |
114 | ||
115 | - i_scale_axis() wasn't checking the result of i_img_new_ch() | |
116 | resulting in a SIGSEGV when attempting to scale an image to a size | |
117 | too large to fit in memory. This is a NULL pointer access issue, | |
118 | not a buffer overflow. | |
119 | Added a check for the failure. | |
120 | scale_calculate() (and hence scale()) will now fail if any of the | |
121 | scale size parameters are a reference. | |
122 | http://rt.cpan.org/Ticket/Display.html?id=35172 | |
123 | ||
04f85f63 TC |
124 | - Regression: filling a greyscale image with a hatch used the wrong |
125 | color channels from the supplied fg/bg colors. | |
126 | https://rt.cpan.org/Ticket/Display.html?id=35278 | |
127 | ||
a256aec5 TC |
128 | - fixed a related problem for image fills. |
129 | ||
49240201 | 130 | Imager 0.63 - 7 April 2008 |
33b0ffa6 TC |
131 | =========== |
132 | ||
242d7497 TC |
133 | This release primarily contains changes to improve ease of use - |
134 | rather than you having to convert images to the appropriate number of | |
135 | channels, Imager handles it internally. How to handle drawing colors | |
136 | and the default combine mode is a thornier problem left for some other | |
137 | release. | |
138 | ||
d1555273 TC |
139 | - the font libraries are now only initialized when needed. |
140 | http://rt.cpan.org/Ticket/Display.html?id=28825 | |
141 | ||
9b1ec2b8 TC |
142 | - moved the imtoc.perl code into Imager::Preprocess |
143 | ||
144 | - paste() and rubthrough() now adapt the source image data to the | |
145 | destination, so you can now safely paste/rubthrough from greyscale | |
146 | images to color images or back, or from alpha channel images to | |
147 | noalpha channels or back. | |
148 | https://rt.cpan.org/Ticket/Display.html?id=30908 | |
149 | ||
150 | - rubthrough() now falls back to pasting when the source doesn't have | |
151 | an alpha channel. This effectively treats the source as having a | |
152 | max alpha channel, the right thing to do. | |
153 | http://rt.cpan.org/Ticket/Display.html?id=29944 | |
154 | ||
155 | - re-worked most of the area filling code to use a common set of | |
156 | functions when filling. | |
157 | Corrected normal combine mode. | |
158 | Rewrote most of the combine modes to match the way the SVG draft | |
159 | defines them with respect to a translucent source and destination. | |
160 | Added tests for translucent source and destination. | |
161 | Added tests to check 8-bit/sample and double/sample combines work | |
162 | similarly. | |
163 | https://rt.cpan.org/Ticket/Display.html?id=29879 | |
164 | ||
07d9c639 TC |
165 | - writing a 2 or 4 channel image to a JPEG file will now write that |
166 | image as if composited against a background, black by default, | |
167 | overridable with the i_background tag/parameter. | |
6e4af7d4 TC |
168 | https://rt.cpan.org/Ticket/Display.html?id=29876 |
169 | ||
07d9c639 TC |
170 | - writing a 2 or 4 channel image to a PGM/PPM file will now write |
171 | that image as if composited against a background, black by default, | |
fa90de94 TC |
172 | overridable with the i_background tag/parameter. |
173 | http://rt.cpan.org/Ticket/Display.html?id=30074 | |
174 | ||
07d9c639 TC |
175 | - writing a 2 or 4 channel image to a BMP file will now write that |
176 | image as if composited against a background, black by default, | |
177 | overridable with the i_background tag/parameter. | |
178 | http://rt.cpan.org/Ticket/Display.html?id=30075 | |
179 | ||
33b0ffa6 TC |
180 | Bug fixes: |
181 | ||
182 | - Imager::Matrix2d->translate() now only requires one of the x or y | |
183 | parameters. | |
184 | http://rt.cpan.org/Ticket/Display.html?id=29937 | |
185 | ||
2757bad0 TC |
186 | - mixing qtype scaling now sets all channels of a pixel to zero if |
187 | the pixel has zero coverage (zero alpha). This should produce more | |
188 | compressible output files. | |
189 | http://rt.cpan.org/Ticket/Display.html?id=32324 | |
190 | ||
3da08517 TC |
191 | - removed the pointless #! line from lib/Imager/Font/Wrap.pm |
192 | Noticed when I saw: | |
193 | https://bugzilla.redhat.com/show_bug.cgi?id=166254 | |
194 | I'm not changing the #! lines of the sample code, since it's sample | |
195 | code, not intended for installation. | |
196 | http://rt.cpan.org/Ticket/Display.html?id=33408 | |
197 | ||
242d7497 TC |
198 | - some TGA images weren't being detected correctly as TGA images |
199 | https://rt.cpan.org/Ticket/Display.html?id=32925 | |
200 | ||
201 | - handling of the left-over bit for 16-bit/pixel TGA images has been | |
202 | changed to match the behaviour of the GIMP. Previously the bit | |
203 | being set was treated as an opaque pixel, but one user reported a | |
204 | problem with loading such an image. I haven't been able to find any | |
205 | tools beyond the GIMP that handle alpha-channel 16-bit TGAs, so | |
206 | I'll match it's behaviour. See issue 114913 in the GIMP's | |
207 | bugzilla. | |
208 | http://rt.cpan.org/Ticket/Display.html?id=32926 | |
209 | ||
5daa9d34 | 210 | Imager 0.62 - 10 December 2007 |
ac8138b0 TC |
211 | =========== |
212 | ||
d8e0c3ba TC |
213 | - Makefile.PL now expands ~/path supplied to --incpath or --libpath |
214 | to /path under your home directory. | |
215 | http://rt.cpan.org/Ticket/Display.html?id=29484 | |
216 | ||
50ff958e TC |
217 | - the old dynaload code used Mach API functions to load dynamic |
218 | libraries on Mac OS X. These APIs have been deprecated in OS X | |
219 | 10.5 and were causing some build problems. | |
220 | So henceforth Imager uses the dlopen() family of functions, and you | |
221 | will need version 10.3 or later of OS X. | |
222 | ||
3309187a TC |
223 | - added the det() function to the transform2() engine. |
224 | added the sample quad_to_square.pl | |
225 | Courtesy Richard Fairhurst. | |
226 | http://rt.cpan.org/Ticket/Display.html?id=31244 | |
227 | ||
ac8138b0 TC |
228 | Bug fixes: |
229 | ||
230 | - samples/gifscale.pl sourced the base value for gif_top from | |
231 | gif_left. | |
232 | Thanks to Eleneldil G. Arilou for pointing this out. | |
233 | ||
678a9a65 TC |
234 | - t/t82inline.t no longer loads B at runtime, to work around a bug |
235 | in some 5.005_0[45] installations. | |
236 | http://rt.cpan.org/Ticket/Display.html?id=30508 | |
237 | ||
238 | - work around Module::Depends::Intrusive bug #21229 | |
239 | http://rt.cpan.org/Ticket/Display.html?id=30520 | |
ac8138b0 | 240 | |
bea65b1f TC |
241 | - the hardinvert filter no-longer inverts the alpha channel. |
242 | http://rt.cpan.org/Ticket/Display.html?id=30002 | |
243 | ||
244 | - the hardinvert filter now supports large samples | |
245 | ||
b7809486 | 246 | Imager 0.61_02 - 28 November 2007 |
f74e6efc | 247 | ============== |
874c55db | 248 | |
bd8052a6 TC |
249 | - major TIFF support re-work |
250 | http://rt.cpan.org/Ticket/Display.html?id=20329 | |
251 | ||
252 | - added a C level image interface for accessing samples from 1-32 | |
253 | bits, exposed this at the perl level in getsamples() | |
254 | ||
255 | - the conv filter now works at floating point precision for high bit | |
256 | images | |
257 | ||
258 | - added is_bilevel method to test whether an image should be written as | |
259 | a bilevel image if the image format supports it. | |
260 | ||
261 | - added -log-stderr as an Imager import list option | |
262 | ||
263 | - added some important types to Imager::APIRef | |
264 | ||
265 | - added test_image_double() to Imager::Test | |
266 | ||
874c55db TC |
267 | Bug fixes: |
268 | ||
269 | - Imager::Fountain couldn't read GIMP gradient files with 10 or more | |
270 | segments | |
271 | ||
272 | - the scale() method with qtype mixing now handles images with an | |
273 | alpha channel correctly. | |
274 | ||
8d17eae9 TC |
275 | - fixed a broken link from the "animated GIF" entry in the concept index. |
276 | Thanks to Slaven Rezic. | |
277 | http://rt.cpan.org/Ticket/Display.html?id=30889 | |
278 | ||
d3bf4eaf TC |
279 | - on some perl's the infix expression parser test would fail due to |
280 | actions in the grammar returning false. Made sure all actions return | |
281 | a true value. | |
8b96ad6b TC |
282 | Thanks to Richard Fairhurst for spending a lot of time in tracking |
283 | down this problem. | |
680c329d | 284 | http://rt.cpan.org/Public/Bug/Display.html?id=29562 |
d3bf4eaf | 285 | |
d06f6707 | 286 | Imager 0.61 - 5 November 2007 |
1cfa190e TC |
287 | =========== |
288 | ||
289 | - added samples/gifscale.pl, which adjusts the screen size/position tags | |
290 | when scaling an animated gif | |
291 | http://rt.cpan.org/Ticket/Display.html?id=27591 | |
292 | ||
8a2cd317 TC |
293 | Bug fixes: |
294 | ||
e7ac18bd TC |
295 | - correct handling of sz in matrix_transform() - this should allow |
296 | perspective type transformations to work now. | |
297 | http://rt.cpan.org/Ticket/Display.html?id=29936 | |
298 | ||
8a2cd317 TC |
299 | - prevent a cast to integer warning on x64 builds in datatypes.c |
300 | also fixed some other type warnings | |
301 | https://rt.cpan.org/Ticket/Display.html?id=30204 | |
302 | ||
9188b23e TC |
303 | - some sub-directory tests depended on files produced by the parent |
304 | directory tests | |
305 | http://rt.cpan.org/Ticket/Display.html?id=30203 | |
306 | ||
7febff1d TC |
307 | - Imager::Font::Wrap doesn't correctly set savepos |
308 | thanks to Nikita Dedik and Eleneldil G. Arilou for reporting this. | |
309 | http://rt.cpan.org/Ticket/Display.html?id=29771 | |
310 | ||
76411e99 TC |
311 | - test 171 in t/t01introvert.t was failing on perls configured to |
312 | use long double. | |
313 | http://rt.cpan.org/Ticket/Display.html?id=29413 | |
314 | ||
3f29de50 TC |
315 | - the code for the transform2() uminus operator was missing a break. |
316 | Added tests for better code coverage of the ops. | |
317 | http://rt.cpan.org/Ticket/Display.html?id=29296 | |
318 | ||
ed107438 TC |
319 | - the SGI RLE compression code could overflow its compression buffer |
320 | http://rt.cpan.org/Ticket/Display.html?id=30334 | |
321 | ||
322 | - the 32-bit output function used by the SGI code only handled values | |
323 | under 0x10000. This was most noticable when writing large RLE images. | |
324 | http://rt.cpan.org/Ticket/Display.html?id=30335 | |
325 | ||
c7481ae1 TC |
326 | - validate chan_count for chans == NULL for each of the i_gsamp() |
327 | implementations. | |
328 | http://rt.cpan.org/Ticket/Display.html?id=28985 | |
329 | ||
ff37fc3f TC |
330 | - attempt to work around the test failure at |
331 | http://www.nntp.perl.org/group/perl.cpan.testers/2007/09/msg650810.html | |
332 | http://rt.cpan.org/Ticket/Display.html?id=29562 | |
333 | ||
f245645a TC |
334 | - improve the error messages produced when attempting to read or write |
335 | an unknown image file format. | |
336 | http://rt.cpan.org/Ticket/Display.html?id=30103 | |
337 | ||
333d7485 TC |
338 | - improve the transform2() documentation |
339 | http://rt.cpan.org/Ticket/Display.html?id=29267 | |
340 | ||
3b115720 TC |
341 | - correctly generate the author key in META.yml |
342 | http://rt.cpan.org/Ticket/Display.html?id=30377 | |
343 | ||
13c9a303 TC |
344 | - correctly blend a rotated (or matrix_transformed()) image when |
345 | performing interpolation in the presence of an alpha channel. | |
8a071022 TC |
346 | Also corrected the centring of the rotated image on the output |
347 | image. | |
13c9a303 | 348 | |
0e622083 | 349 | Imager 0.60 - 30 August 2007 |
bcff4dd9 TC |
350 | =========== |
351 | ||
d5477d3d TC |
352 | - Finished/rewrote Arnar's old SGI RGB file format support, so Imager |
353 | now has full SGI RGB image format, including RLE and 16-bit/sample | |
354 | images. | |
355 | https://rt.cpan.org/Ticket/Display.html?id=8666 | |
356 | ||
357 | - logging functions are now available in the API | |
358 | ||
a60905e4 TC |
359 | - applied Gabriel Vasseur's patch |
360 | added documentation, further tests, and support for greyscale images | |
361 | Obviously problems are my fault :) | |
362 | https://rt.cpan.org/Ticket/Display.html?id=28142 | |
363 | ||
413dc198 TC |
364 | - the mask for ICO/CUR images is now applied as an alpha channel to |
365 | the returned image. For the old behaviour, supply ico_masked => 0 | |
366 | to read() or read_multi(). This should be less confusing when | |
367 | using Imager as a general image processor. | |
368 | https://rt.cpan.org/Ticket/Display.html?id=29001 | |
369 | ||
bcff4dd9 TC |
370 | Bug fixes: |
371 | ||
372 | - in some cases it's possible for giflib/libungif to return color | |
373 | indexes outside the range of colors defined by the image's palette. | |
374 | We now expand the palette to match the indexes used. | |
375 | Thanks to Gabriel Vasseur for reporting this. | |
376 | ||
02576e8d TC |
377 | - fixed various memory leaks that could occur when failing to read png, |
378 | jpeg, bmp or tga files. | |
379 | ||
b3aa972f TC |
380 | - to avoid confusion, channels not present in the image are returned as |
381 | zero by getscanline(). This has no effect on the C level i_glin() | |
382 | and i_glinf() API functions which continue to not set the unused | |
383 | channels. | |
384 | ||
d5477d3d TC |
385 | - the convert() method now returns an image of the same sample size as |
386 | the source image. | |
387 | https://rt.cpan.org/Ticket/Display.html?id=28492 | |
388 | ||
baa880ef TC |
389 | - remove repeated text in Imager::Files |
390 | http://rt.cpan.org/Ticket/Display.html?id=27589 | |
391 | ||
392 | - be even more explicit that scale() and friends don't modify the source | |
393 | image, but return a new image. | |
394 | http://rt.cpan.org/Ticket/Display.html?id=28570 | |
395 | ||
0561d49c TC |
396 | - improve the error message from errstr() when you try to load a font |
397 | for which the driver hasn't been built in Imager. | |
398 | http://rt.cpan.org/Ticket/Display.html?id=27571 | |
399 | ||
d8a39ce0 TC |
400 | - transparency is now enabled by default when writing GIF images |
401 | http://rt.cpan.org/Ticket/Display.html?id=27615 | |
402 | ||
5730d6e7 TC |
403 | - Imager would not load on Windows 98 |
404 | http://rt.cpan.org/Ticket/Display.html?id=27653 | |
405 | ||
b4996113 | 406 | Imager 0.59 - 14 June 2007 |
e6e94ab0 TC |
407 | =========== |
408 | ||
409 | Bug fixes: | |
410 | ||
411 | - fixes a regression introduced by the fixes for RT 11972 | |
412 | http://rt.cpan.org/Ticket/Display.html?id=27546 | |
413 | ||
9fc9d0ca TC |
414 | - cropping outside the image would return an Imager object with |
415 | no low-level image object, instead of returning false. | |
416 | Fixed by: Philip Gwyn (Leolo) | |
417 | http://rt.cpan.org/Ticket/Display.html?id=27509 | |
418 | ||
7e7508dd TC |
419 | Imager 0.58 - 16 May 2007 |
420 | =========== | |
421 | ||
422 | No significant changes from 0.57_01. | |
423 | ||
1970a2c7 TC |
424 | Imager 0.57_01 - 11 May 2007 |
425 | ============== | |
d034a178 | 426 | |
f8e36694 TC |
427 | - added to_rgb16 to produce a 16-bit/sample version of an image |
428 | ||
95b2bff4 TC |
429 | - improve freetype 1.x text output efficiency |
430 | ||
d034a178 TC |
431 | Bug fixes: |
432 | ||
433 | - search another place for rgb.txt, and check all the places | |
434 | Imager::Color checks when deciding whether to skip testing it | |
435 | http://rt.cpan.org/Ticket/Display.html?id=26064 | |
436 | ||
73962964 TC |
437 | - use a convolution kernel size based on the stddev rather than a |
438 | fixed size when performing a gaussian blur | |
439 | http://rt.cpan.org/Ticket/Display.html?id=25645 | |
440 | ||
01b84320 TC |
441 | - document the difference() method's mindist parameter, and debug it. |
442 | ||
7e7508dd | 443 | - put the Imager release number in the Inline::C generated code to |
22f9ca48 TC |
444 | regenerate Inline code when a new release of Imager is installed. |
445 | http://rt.cpan.org/Ticket/Display.html?id=26278 | |
446 | ||
fa16b6c6 TC |
447 | - fix rendering on alpha channel images for the FreeType 1.x driver. |
448 | http://rt.cpan.org/Ticket/Display.html?id=11972 | |
449 | ||
4c84ccfb TC |
450 | - fix rendering on alpha channel images for the T1lib driver. |
451 | http://rt.cpan.org/Ticket/Display.html?id=11972 | |
452 | ||
1fe8316b TC |
453 | - reworked library probing, we can now set more than one probe |
454 | function for a library. Disabled the default (non-freetype-config) | |
455 | library probe and added an extra probe function that searches for | |
456 | both ft2build.h and whatever it includes, and adds -I as needed. | |
457 | Hopefully this will fix build problems like | |
458 | http://www.nntp.perl.org/group/perl.cpan.testers/2007/05/msg472281.html | |
459 | http://rt.cpan.org/Ticket/Display.html?id=26086 | |
460 | ||
bb5712de TC |
461 | Imager 0.57 - 30 Apr 2007 |
462 | =========== | |
463 | ||
464 | This is a maintenence release fixing a security issue in Imager. | |
465 | ||
466 | - CRITICAL: a specially crafted compressed BMP file can cause a buffer | |
467 | overflow in malloced memory. There will be further discussion of | |
468 | this issue in the ticket below. | |
469 | http://rt.cpan.org/Ticket/Display.html?id=26811 | |
7e7508dd TC |
470 | CVE-2007-2459 CVE-2007-2413 |
471 | The descriptions at cve.mitre.org varied in quality, please see the | |
472 | ticket at rt.cpan.org for a more accurate description of the issue. | |
bb5712de | 473 | |
d034a178 | 474 | Imager 0.56 - 1 Apr 2007 |
7623d340 TC |
475 | =========== |
476 | ||
477 | - added support for reading 16-bit/sample PGM/PPM images | |
478 | ||
479 | - added support for writing 16-bit/sample PGM/PPM images | |
480 | ||
481 | - improved performance of reading PBM/PGM/PPM images | |
482 | ||
483 | - added support for writing PBM images if the image is paletted and | |
484 | contains only black and white | |
485 | ||
486 | - added a new make_colors value - "mono" | |
487 | ||
488 | - switched from the svn log Changes to a manual Changes to reduce | |
489 | noise | |
490 | ||
1225d272 TC |
491 | - new sample code - samples/flasher.pl |
492 | ||
7623d340 TC |
493 | Bug fixes: |
494 | ||
495 | - CRITICAL: the "Imager" typemap entry (not used by Imager itself) | |
496 | was returning an image object with an extra reference, this | |
497 | resulted in a memory leak. | |
498 | http://rt.cpan.org/Ticket/Display.html?id=24992 | |
499 | ||
500 | - fix rendering on alpha channel images for the FreeType 2.x driver | |
501 | http://rt.cpan.org/Ticket/Display.html?id=11972 | |
502 | ||
503 | - reading bmp files now consitently handles short reads. You can now | |
504 | supply a parameter to treat a short read as successful and set | |
505 | i_incomplete | |
506 | http://rt.cpan.org/Ticket/Display.html?id=8426 | |
507 | ||
508 | - previously, reading ASCII PBM files required spaces between samples, | |
509 | even though the format doesn't require that | |
510 | ||
1225d272 TC |
511 | - improved documentation of the unsharpmask filter (I hope) |
512 | http://rt.cpan.org/Ticket/Display.html?id=25531 | |
513 | ||
514 | - force flushing of the output from i_tt_dump_names() and test output | |
515 | in t/t35ttfont.t to prevent output from being mixed up. | |
516 | https://rt.cpan.org/Ticket/Display.html?id=24859 | |
517 | ||
518 | - rewrite a conditional expression as an if() to hopefully work around | |
519 | a bug in the pre-4.0 GCC Apple shipped with OS X 10.4. | |
520 | https://rt.cpan.org/Ticket/Display.html?id=25561 | |
521 | ||
522 | - avoid Data::Dumper in regops.perl to support older releases of perl | |
523 | https://rt.cpan.org/Ticket/Display.html?id=24391 | |
524 | ||
7623d340 TC |
525 | Imager 0.55 - 16 Dec 2006 |
526 | =========== | |
527 | ||
528 | This is primarily a bug fix release. | |
529 | ||
530 | Note: Test::More is now a pre-requisite for Imager and is no longer bundled. | |
531 | ||
532 | There is one new feature: | |
533 | ||
534 | - the Win32 font driver now supports UTF8 (RT 22166) | |
535 | http://www.cpanforum.com/threads/3276 | |
536 | http://rt.cpan.org/Ticket/Display.html?id=22166 | |
537 | ||
538 | Several bugs were fixed: | |
539 | ||
540 | - the string() method would not output the string "0" | |
541 | http://rt.cpan.org/Public/Bug/Display.html?id=21770 | |
542 | ||
543 | - fills.c was failing to compile on Solaris 10 (compiler unknown) | |
544 | http://rt.cpan.org/Public/Bug/Display.html?id=21944 | |
545 | ||
546 | - the gif_disposal and gif_user_input tags weren't being read from | |
547 | the file correctly | |
548 | http://rt.cpan.org/Public/Bug/Display.html?id=22192 | |
549 | ||
550 | - gif.c was failing to build under MSVC | |
551 | http://rt.cpan.org/Ticket/Display.html?id=23922 | |
552 | ||
553 | - in some cases strings passed to the string() method were treated as | |
554 | terminated by NUL (chr 0) | |
555 | http://rt.cpan.org/Public/Bug/Display.html?id=21770 | |
556 | ||
557 | - on "MSWin32" perl builds we now link to -lzlib instead of -lz since | |
558 | that's the default build name for zlib on Win32. | |
559 | http://rt.cpan.org/Ticket/Display.html?id=23064 | |
560 | ||
561 | - search $Config{incpath} for headers too, which we should have been | |
562 | doing all along. | |
563 | ||
564 | Win32 font driver fixes: | |
565 | ||
566 | - the global descent value from bounding box was the wrong sign | |
567 | http://www.cpanforum.com/threads/3276 | |
568 | ||
569 | - if the first or last glyph overflowed the left or right side of the | |
570 | advance width they would be clipped | |
571 | ||
572 | ||
573 | Imager 0.54 - 14 Sep 2006 | |
574 | =========== | |
575 | ||
576 | This is primarily a feature release: | |
577 | ||
578 | - a new qtype value 'mixing' has been added to the scale() | |
579 | method. This is faster than 'normal', slower than 'preview'. This | |
580 | is based on the method used by pnmscale, and seems to produce less | |
581 | blurry results than normal. | |
582 | http://rt.cpan.org/Public/Bug/Display.html?id=20677 | |
583 | ||
584 | - the rubthrough() method can now render onto images with an alpha | |
585 | channel. | |
586 | http://rt.cpan.org/Ticket/Display.html?id=20678 | |
587 | ||
588 | - the read_multi() method now falls back to calling doing a single | |
589 | image read via the read() method and write_multi() will now fall | |
590 | back to calling write() if a single image is supplied. This means | |
591 | you can simply call the read_multi() or write_multi() functions | |
592 | without having to check if the type is formatted by that method. | |
593 | http://rt.cpan.org/Ticket/Display.html?id=19457 | |
594 | http://rt.cpan.org/Ticket/Display.html?id=19458 | |
595 | ||
596 | - the GIF loop extension can now be written. If you don't have | |
597 | libungif/giflib 4.1.4 (or some distribution's bugfixed equivalent) you | |
598 | should upgrade. | |
599 | http://rt.cpan.org/Ticket/Display.html?id=21185 | |
600 | ||
601 | - getscanline() and setscanline() can now read/write palette index | |
602 | based data from/to the image for paletted images, by setting type to | |
603 | 'index'. | |
604 | http://rt.cpan.org/Ticket/Display.html?id=20338 | |
605 | ||
606 | - we no longer hassle you to disable GIF support | |
607 | http://rt.cpan.org/Ticket/Display.html?id=20687 | |
608 | ||
609 | - minor documentation fixes | |
610 | ||
611 | ||
612 | Imager 0.53 - 26 Jul 2006 | |
613 | =========== | |
614 | ||
615 | This is a bugfix release. | |
616 | ||
617 | Some test code was left in a code path not covered by the test | |
618 | suite. A test was added to cover this code path and the test code was | |
619 | removed. | |
620 | http://rt.cpan.org/Public/Bug/Display.html?id=20705 | |
621 | ||
622 | ||
623 | Imager 0.52 - 25 Jul 2006 | |
624 | =========== | |
625 | ||
626 | This is primarily a feature release, but contains a fair few bug | |
627 | fixes, new features: | |
628 | ||
629 | - ability to read and write MS Windows ICO and CUR files | |
630 | ||
631 | - you can now add file format plugins to support new file formats | |
632 | ||
633 | - add POD coverage tests | |
634 | ||
635 | - setcolors() and addcolors() now accept color names and so on | |
636 | instead of requiring Imager::Color objects. | |
637 | http://rt.cpan.org/Ticket/Display.html?id=20056 | |
638 | ||
639 | - flood_fill() can now fill to a specified border color instead of | |
640 | just to the area the same color as the seed. | |
641 | http://rt.cpan.org/Ticket/Display.html?id=19618 | |
642 | ||
643 | ||
644 | Bug fixes: | |
645 | ||
646 | - bounding_box for the T1 driver wasn't converting UTF8 to ascii when | |
647 | calculating the advance width. | |
648 | http://rt.cpan.org/Public/Bug/Display.html?id=20554 | |
649 | ||
650 | - bounding_box for the T1 driver wasn't including leading and | |
651 | trailing spaces in the bounding box as the other drivers did, it also | |
652 | produced strange results for empty strings or strings containing only | |
653 | spaces | |
654 | ||
655 | - when reading CMYK jpeg images they were being transferred to the | |
656 | image object as is, producing a four channel image. It only looked ok | |
657 | due to an old still unfixed Photoshop bug. We now convert from the | |
658 | inverted CMYK that photoshop (and Corel for example) produce into RGB. | |
659 | http://rt.cpan.org/Ticket/Display.html?id=20416 | |
660 | ||
661 | - reading a CYMK TIFF would result in a 4 channel image, reading any | |
662 | image with more than 4 channels (eg. RGB with 2 alpha channels) would | |
663 | result in an error. | |
664 | http://rt.cpan.org/Ticket/Display.html?id=20415 | |
665 | ||
666 | - added /usr/local/include to the default include search path, since | |
667 | we were already searching /usr/local/lib for libraries. | |
668 | ||
669 | And various minor fixes and documentation updates. | |
670 | ||
671 | ||
672 | Imager 0.51 - 23 Apr 2006 | |
673 | =========== | |
674 | ||
675 | - fix a validation bug when processing JPEG EXIF data that can cause | |
676 | a crash | |
677 | http://rt.cpan.org/Public/Bug/Display.html?id=18496 | |
678 | ||
679 | - fix mis-processing of the src_maxx and src_maxy parameters of the | |
680 | paste() method | |
681 | http://rt.cpan.org/Public/Bug/Display.html?id=18712 | |
682 | ||
683 | - fix a problem in Imager's "smart" handling of the color parameter | |
684 | to various methods. | |
685 | http://rt.cpan.org/Public/Bug/Display.html?id=18561 | |
686 | ||
687 | ||
688 | Imager 0.50 - 29 Mar 2006 | |
689 | =========== | |
690 | ||
691 | - CRITICAL: fixes a segmentation fault from attempting to write a 2 | |
692 | or 4 channel image to jpeg or a 2 channel image to tga where the | |
693 | output is an in-memeory buffer. | |
694 | http://rt.cpan.org/Public/Bug/Display.html?id=18397 | |
695 | ||
696 | - fixes an incorrect pointer parameter in the PNG code | |
697 | http://rt.cpan.org/Public/Bug/Display.html?id=18051 | |
698 | ||
699 | - skip Inline::C tests when building in a directory with spaces | |
700 | http://rt.cpan.org/Public/Bug/Display.html?id=18049 |