Commit | Line | Data |
---|---|---|
7623d340 TC |
1 | Imager release history. Older releases can be found in Changes.old |
2 | ||
a10ce62e TC |
3 | Imager 0.86 - unreleased |
4 | =========== | |
5 | ||
6 | Bug fixes: | |
7 | ||
8 | - eliminate unused i_gif_opts type (clean-up) | |
9 | https://rt.cpan.org/Ticket/Display.html?id=69245 | |
10 | ||
98e1552d TC |
11 | - fix combine=0 fill color anti-aliasing on the double/sample path |
12 | https://rt.cpan.org/Ticket/Display.html?id=71309 | |
13 | ||
14 | - make default text color non-transparent | |
15 | https://rt.cpan.org/Ticket/Display.html?id=71469 | |
16 | ||
372ba12c TC |
17 | - apply the last of the Debian unforwarded spelling fixes |
18 | https://rt.cpan.org/Ticket/Display.html?id=70656 | |
19 | ||
b7506a07 TC |
20 | - the log() method used its message parameter as a C level format |
21 | string. | |
22 | https://rt.cpan.org/Ticket/Display.html?id=71653 | |
23 | ||
cb4d223c TC |
24 | - provide our own STRLEN typemap entry for older perls. |
25 | https://rt.cpan.org/Ticket/Display.html?id=71641 | |
26 | ||
f35d1231 TC |
27 | - add extra ppport.h configuration to support older perls. |
28 | ||
954ac5d1 TC |
29 | - depend on Scalar::Util, since we use it and older perls don't have |
30 | it. | |
31 | ||
5efba0c6 TC |
32 | - add overloaded eq to Imager::Matrix2d, since older perls don't seem |
33 | to synthesize it from overloaded "". | |
34 | ||
73e3ff55 TC |
35 | - use T1_StrError() for error messages on modern libt1 |
36 | https://rt.cpan.org/Ticket/Display.html?id=69879 | |
37 | ||
38 | - actually load the font rather than just adding it to the catalog on | |
39 | creation. | |
40 | ||
41 | - Imager::Font->new now produces better error messages for the T1 | |
42 | engine. | |
43 | ||
6e938c74 TC |
44 | - the font has_chars() method now returns perl's true and false |
45 | values in list context rather than integers, which should be more | |
46 | efficient. | |
47 | https://rt.cpan.org/Ticket/Display.html?id=69158 | |
48 | ||
31be6e9a | 49 | Imager 0.85_01 - 10 Oct 2011 |
6d5c85a2 | 50 | ============== |
a7e32beb TC |
51 | |
52 | - add simple tests for the Imager::Test test_image generators | |
53 | ||
6d5c85a2 TC |
54 | - io_glue I/O buffering re-work: |
55 | ||
56 | - reorganize io_glue to do it's own buffering by default | |
57 | ||
58 | - the unbuffered functions are available as i_io_raw_read() (or | |
59 | raw_read() from perl) etc but are not recommended for typical | |
60 | use. | |
61 | ||
62 | - use the new i_io_peekn() when checking for file magic to avoid | |
63 | seek, allowing Imager to detect the file type and read the file | |
64 | from an unseekable stream (for formats that don't use random | |
65 | access) | |
66 | ||
67 | - added several new I/O layer API functions. | |
68 | ||
69 | - fix the TGA performance problem, most noticably on Win32 | |
70 | https://rt.cpan.org/Ticket/Display.html?id=70037 | |
71 | ||
72 | - TIFF now uses wrapper functions of the correct types to avoid casts | |
73 | https://rt.cpan.org/Ticket/Display.html?id=69912 | |
74 | ||
75 | - the callback IO object did its own buffering, controlled by the | |
76 | maxbuffer parameter supplied to the read() and write() methods. | |
77 | This buffering has been removed, to avoid redundancy with the | |
78 | common io_glue buffering. This also avoids a bug in that code | |
79 | which could rarely pass a zero length to the read callback and | |
80 | then panic about the result. | |
81 | ||
82 | - the callback IO object now tests the result of calling the close | |
83 | callback, which should return true for success. | |
84 | ||
85 | - the PNM reader did its own buffering. This buffering has been | |
86 | removed to avoid redundancy with the common io_glue buffering. | |
87 | ||
88 | - previously the read handlers for fd and callback I/O layers would | |
89 | call the underlying interface (POSIX read or your supplied callback) | |
90 | until it filled the buffer. It now only makes one call. | |
91 | ||
92 | - added public constructors for I/O layer objects (see Imager::IO) | |
93 | ||
94 | - all core file handlers now use the i_io_foo() wrappers to gain | |
95 | access to buffered I/O rather than calling the I/O layer | |
96 | callbacks directly. | |
97 | ||
98 | - all core file handlers now check for error on close. | |
99 | ||
100 | - Backward compatibility: if you hava custom file handlers, you can | |
101 | use i_io_write() etc since they're available as macros in older | |
102 | versions of Imager. | |
103 | ||
104 | - eliminate the final remnants of io_glue_commit_types(). | |
105 | ||
106 | - bump IMAGER_API_VERSION, since the above may break assumptions. | |
107 | ||
108 | - removed the long unused i_gen_reader() and i_gen_writer() utility | |
109 | functions. | |
110 | ||
0c647c9a | 111 | Imager 0.85 - 29 Aug 2011 |
6ad7e4bc TC |
112 | =========== |
113 | ||
0c647c9a TC |
114 | The main changes in the release versus 0.84 are: |
115 | ||
116 | - on 64-bit systems, 64-bit types are consistently used for image | |
117 | dimensions and co-ordinated, and for memory block sizes. | |
118 | ||
119 | - handle IFD loops in TIFF files correctly. Previously this would | |
120 | lead to an infinite loop. | |
121 | ||
6ad7e4bc TC |
122 | Bug fixes: |
123 | ||
124 | - fix the link in the getheight() entry in the method index | |
125 | ||
7ef6338c TC |
126 | Imager 0.84_02 - 22 Aug 2011 |
127 | ============== | |
128 | ||
129 | Development release, this will become 0.85 if CPAN testers is | |
130 | favourable. | |
6b7197d0 TC |
131 | |
132 | Bug fixes: | |
133 | ||
134 | - the image file limits set by set_file_limits() weren't being | |
135 | checked when reading TIFF files. | |
136 | https://rt.cpan.org/Ticket/Display.html?id=69915 | |
137 | ||
5970bd39 TC |
138 | - Provide more information about file format module load errors on a |
139 | failed image file read() or write(). | |
140 | https://rt.cpan.org/Ticket/Display.html?id=69194 | |
141 | ||
4ce3551c TC |
142 | - use TIFFReadDirectory() instead of TIFFSetDirectory() to iterate |
143 | through TIFF images, since it checks for IFD loops. | |
144 | https://rt.cpan.org/Ticket/Display.html?id=69914 | |
145 | ||
a16bca6d TC |
146 | - don't leak memory when out of range palette indexes are supplied to |
147 | setscanline(). | |
148 | https://rt.cpan.org/Ticket/Display.html?id=69242 | |
149 | ||
150 | - require a later version of CPAN::Meta to ensure JSON::PP and | |
151 | CPAN::Meta::YAML are available. | |
152 | https://rt.cpan.org/Ticket/Display.html?id=69008 | |
153 | ||
ac575c5f TC |
154 | - hoist the per-line calculations for the flines implementations, and |
155 | modernize the tests a bit. | |
156 | https://rt.cpan.org/Ticket/Display.html?id=70126 | |
157 | ||
86c8d19a TC |
158 | - detect snprintf()/vsnprintf() (cheat by using Config.pm) and use |
159 | them when available. | |
160 | https://rt.cpan.org/Ticket/Display.html?id=69147 | |
161 | ||
a3fd7df7 TC |
162 | - if t1lib failed to reinitialize it would be left as marked |
163 | initialized. | |
164 | https://rt.cpan.org/Ticket/Display.html?id=69877 | |
165 | ||
5fd542c7 TC |
166 | - update the bundled (and still modified) Devel::CheckLib |
167 | https://rt.cpan.org/Ticket/Display.html?id=69170 | |
168 | ||
fa61d195 TC |
169 | Imager 0.84_01 - 8 Aug 2011 |
170 | ============== | |
171 | ||
172 | Development release as a sanity check for the types re-work. | |
8d14daab TC |
173 | |
174 | Massive types re-work: | |
175 | ||
176 | - the type used internally for pixel co-ordinates and image sizes is | |
177 | now 64-bit on 64-bit platforms (at least sane ones). | |
178 | ||
179 | - size_t is now used consistently for memory block sizes. | |
180 | ||
181 | - since this changes the binary interface, the Imager API version has | |
182 | been incremented. Any module that uses the API will need to be | |
183 | rebuilt. In most cases that will be enough, but calls to any APIs | |
184 | that take a pointer to image sizes may need source changes. | |
185 | ||
186 | - you should be able to create very large images on 64-bit systems, | |
187 | if you have enough memory. Successfully created a 32768 x 49192 x | |
188 | 3 channel image, filled with a tiled image and scaled it. The | |
189 | unscaled image was also successfully saved to a JPEG. | |
190 | ||
191 | - check the image size before attempting to write BMP, GIF, JPEG, | |
192 | PNG, SGI, TGA, TIFF images. | |
193 | ||
194 | - correctly handle reading TGA images over 32767 pixels wide or tall. | |
195 | ||
196 | Incidental changes: | |
197 | ||
198 | - the gif_left and gif_top tags are now clamped to non-negative | |
199 | values when writing a GIF image. | |
200 | ||
201 | - removed dead callback read/write code | |
202 | ||
203 | The default maximum memory size when reading files is now 1G. | |
204 | ||
bd80e51e | 205 | Imager 0.84 - 20 Jun 2011 |
b1e66a82 TC |
206 | =========== |
207 | ||
208 | - Imager no longer inherits from Exporter (unless you're running an | |
209 | old, old perl. | |
210 | ||
92e9df65 TC |
211 | - Imager can now write progressive JPEGs (it could always read them). |
212 | https://rt.cpan.org/Ticket/Display.html?id=68691 | |
213 | ||
10ea52a3 TC |
214 | Bug fixes: |
215 | ||
216 | - re-work, document and test Imager's logging facility. | |
217 | https://rt.cpan.org/Ticket/Display.html?id=65227 | |
218 | ||
4989229f TC |
219 | - fix META.yml testing and the generated META.yml |
220 | https://rt.cpan.org/Ticket/Display.html?id=65235 | |
221 | ||
3bcba6df TC |
222 | - test and add error reporting to to_*() family methods |
223 | ||
bfe6ba3f TC |
224 | - add to_rgb_double() method. |
225 | https://rt.cpan.org/Ticket/Display.html?id=65101 | |
226 | ||
e1a42e19 TC |
227 | - Imager no longer exports anything by default |
228 | https://rt.cpan.org/Ticket/Display.html?id=65228 | |
229 | ||
6d068d36 TC |
230 | - convert colors to grayscale if the supplied (or generated) palette |
231 | contains only grays when performing error diffusion color | |
232 | translation. | |
233 | https://rt.cpan.org/Ticket/Display.html?id=68508 | |
234 | ||
59c150a4 TC |
235 | - writing a paletted image to GIF wouldn't always use the colors |
236 | supplied (or generated, eg. via make_colors => "mono"), which was | |
237 | confusing at best. | |
238 | https://rt.cpan.org/Ticket/Display.html?id=67912 | |
239 | ||
5b480b14 TC |
240 | - replace (imager|tony)@imager.perl.org in the doc, since I don't |
241 | plan to continue receiving mail at that address. | |
242 | https://rt.cpan.org/Ticket/Display.html?id=68591 | |
243 | ||
101861e2 | 244 | Imager 0.83 - 21 May 2011 |
46c21d48 TC |
245 | =========== |
246 | ||
247 | Bug fixes: | |
248 | ||
249 | - diag() the error message on failure for some TIFF tests that are | |
250 | failing on a Solaris smoker. | |
251 | http://www.cpantesters.org/cpan/report/6396db1e-8090-11e0-9682-112b785ebe45 | |
252 | ||
cd758af2 TC |
253 | Imager 0.82_01 - 17 May 2011 |
254 | ============== | |
255 | ||
256 | Dev release, in case the compose tests are too sensitive. | |
deb1a916 TC |
257 | |
258 | Bug fixes: | |
259 | ||
260 | - Imager::Font::T1 incorrectly checked for absolute filename under | |
261 | Win32. Thanks to kmx for the report and fix. | |
262 | https://rt.cpan.org/Ticket/Display.html?id=67963 | |
263 | ||
618a3282 TC |
264 | - compose() with the target, source or mask position off the top or |
265 | left of the target image didn't clip the source image correctly. | |
266 | https://rt.cpan.org/Ticket/Display.html?id=67220 | |
267 | ||
268 | - compose() now returns a useful error message on a non-positive | |
269 | opacity. | |
270 | ||
271 | - compose.im now at 100% test coverage. (As opposed to, umm, much, | |
272 | much less.) | |
273 | ||
c1d16c8f | 274 | Imager 0.82 - 14 Mar 2011 |
2368cfec TC |
275 | =========== |
276 | ||
277 | Bug fixes: | |
278 | ||
279 | - eliminate calls to i_has_format() from the test suite, since it's | |
280 | no longer a useful way to check for file format support. Eliminate | |
281 | i_has_format() from the functions exposed via XS. | |
282 | https://rt.cpan.org/Ticket/Display.html?id=65863 | |
283 | ||
7540f84a TC |
284 | - eliminate calls to note(), which isn't in the (very old) version of |
285 | Test::More we have as a pre-requisite. note() is modern enough | |
286 | that I don't feel a need to require a Test::More upgrade for it. | |
287 | https://rt.cpan.org/Ticket/Display.html?id=65864 | |
288 | ||
81984f30 TC |
289 | - skip the threads tests on Test::More 2.00_* |
290 | https://rt.cpan.org/Ticket/Display.html?id=65812 | |
291 | ||
57fc3f48 TC |
292 | - add an (unshipped) test to check Imager's internal POD links |
293 | https://rt.cpan.org/Ticket/Display.html?id=65749 | |
294 | ||
d97c8dbd TC |
295 | - improve the library detection summary |
296 | https://rt.cpan.org/Ticket/Display.html?id=9675 | |
297 | ||
c901f27d TC |
298 | - increase the version of Imager::Font::Type1 so that upgrades don't |
299 | downgrade the version in this file. | |
300 | https://rt.cpan.org/Ticket/Display.html?id=66250 | |
301 | ||
302 | - if we see an -rpath (or -R) option in $Config{lddlflags} supply | |
303 | that option for the directories that would normally go in | |
304 | LD_RUN_PATH. Typically an explicit -rpath overrides LD_RUN_PATH. | |
305 | https://rt.cpan.org/Ticket/Display.html?id=65955 | |
306 | ||
533bab3e | 307 | Imager 0.81 - 14 Feb 2011 |
416e9814 TC |
308 | =========== |
309 | ||
310 | - added coverage tests for masked images (maskimg.c @100% test coverage) | |
311 | ||
9ea78101 TC |
312 | - add hsv() method to Imager::Color |
313 | Thanks to Leolo (Philip Gwyn) | |
314 | https://rt.cpan.org/Ticket/Display.html?id=65385 | |
315 | ||
1f289f50 TC |
316 | - split libt1 Type 1 font support into a sub-module |
317 | https://rt.cpan.org/Ticket/Display.html?id=49616 (partial) | |
318 | ||
2c331f9f TC |
319 | - add a preload() class method for use in forking servers, and to |
320 | work around limitations in PAR. | |
321 | https://rt.cpan.org/Ticket/Display.html?id=65665 | |
322 | ||
416e9814 TC |
323 | Bug fixes: |
324 | ||
325 | - paletted writes to a masked image are now masked correctly. | |
326 | Revealed by new coverage tests. | |
327 | ||
130225b1 TC |
328 | - update the filter plugin documentation. |
329 | https://rt.cpan.org/Ticket/Display.html?id=56513 | |
330 | ||
4326b23a | 331 | - add the matrix() method to Imager::Matrix2d to allow creation of a |
a34dc54c TC |
332 | matrix with specified co-efficients. You can now multiple an |
333 | Imager::Matrix2d object by a 9 element array ref or a number. | |
4326b23a TC |
334 | https://rt.cpan.org/Ticket/Display.html?id=29938 |
335 | ||
9ea78101 TC |
336 | - really fix loading TTF fonts with FT2 when FT1 isn't available. |
337 | Thanks to Leolo (Philip Gwyn) | |
338 | https://rt.cpan.org/Ticket/Display.html?id=65386 | |
339 | https://rt.cpan.org/Ticket/Display.html?id=62855 | |
340 | ||
40e78f96 TC |
341 | - make sure each test script that needs testout/ creates it. |
342 | https://rt.cpan.org/Ticket/Display.html?id=65088 | |
343 | ||
afee75f6 TC |
344 | - handle a slightly different warning from libtiff 4.x |
345 | https://rt.cpan.org/Ticket/Display.html?id=65268 | |
346 | ||
52b0d318 TC |
347 | - the sat transform2() op returned an incorrect saturation. |
348 | https://rt.cpan.org/Ticket/Display.html?id=65391 | |
349 | ||
d33f20c1 | 350 | Imager 0.80 - 17 Jan 2011 |
95c08d71 TC |
351 | =========== |
352 | ||
9a5df694 TC |
353 | - added coverage tests for Imager::Fountain and Imager::Color::Float |
354 | ||
355 | - Imager is now maintained in git | |
356 | http://git.imager.perl.org/imager.git | |
357 | git://git.imager.perl.org/imager.git | |
358 | ||
95c08d71 TC |
359 | Bug fixes: |
360 | ||
361 | - images with an translucent alpha channel were not scaled correctly | |
362 | by the default (qtype=normal) scaling method. | |
363 | https://rt.cpan.org/Public/Bug/Display.html?id=63922 | |
364 | ||
34c03f04 TC |
365 | - Imager::Color::Float now translates "#FFFFFF" to white instead of |
366 | just a little darker. | |
367 | ||
9a5df694 TC |
368 | - make the default color map build algorithm "mediancut". This |
369 | changes the default color map builder for writing GIFs back to what | |
370 | it was in 0.77, reverting a performance regression. | |
0348fe07 TC |
371 | https://rt.cpan.org/Ticket/Display.html?id=64785 |
372 | ||
416e9814 TC |
373 | - handle failure to create a masked image correctly |
374 | ||
95c08d71 | 375 | Imager 0.79 - 10 Dec 2010 |
62869327 TC |
376 | =========== |
377 | ||
378 | - add Imager::Test to the POD coverage tests and document the missing | |
379 | functions. | |
380 | ||
2a2c791f TC |
381 | - the convert() method now optimizes the case where all output |
382 | channels are either 0, sourced from a single input channel or 1. | |
383 | This significantly speeds up presets like "addalpha", "green". | |
384 | https://rt.cpan.org/Ticket/Display.html?id=51254 | |
385 | ||
b5c0ab7f TC |
386 | - add wiggle.pl sample, as suggested by Dan Oppenheim. |
387 | ||
b47464c1 TC |
388 | - add the combine() method to combine channels from multiple source |
389 | images into a new image | |
390 | https://rt.cpan.org/Ticket/Display.html?id=11872 | |
391 | ||
62869327 TC |
392 | Bug fixes: |
393 | ||
394 | - treat the co-efficients for convert() as doubles instead of floats. | |
395 | ||
d67dd866 TC |
396 | - If a higher (earlier) priority font handler failed to load, that |
397 | would crash preventing loading of later font handlers. | |
9413a3f3 TC |
398 | https://rt.cpan.org/Ticket/Display.html?id=62855 |
399 | ||
a9120a5e TC |
400 | - parse defines from the options returned by pkg-config --cflags |
401 | https://rt.cpan.org/Ticket/Display.html?id=63223 | |
02f040a6 TC |
402 | |
403 | - a regen of the MANIFEST revealed that GIF and FT2 tests weren't | |
404 | included in the tarball. They are now included. | |
a9120a5e | 405 | |
893474f1 | 406 | Imager 0.78 - 4 Oct 2010 |
f5b4354e TC |
407 | =========== |
408 | ||
409 | Bug fixes: | |
410 | ||
411 | - don't access deprecated members of the png_structp. | |
412 | https://rt.cpan.org/Ticket/Display.html?id=60242 | |
413 | ||
8289f78b TC |
414 | - document that using color objects is faster than supplying colors |
415 | by name, etc. | |
416 | https://rt.cpan.org/Ticket/Display.html?id=61047 | |
417 | ||
0c3c1180 TC |
418 | - Imager::Probe now accepts array references for incpath and libpath. |
419 | https://rt.cpan.org/Ticket/Display.html?id=60244 | |
420 | ||
b6035795 | 421 | Imager 0.77_02 - 27 Sep 2010 |
aca4e30a TC |
422 | ============== |
423 | ||
95b9922f | 424 | - moved Win32, FreeType 2 font support into sub-modules. |
aca4e30a TC |
425 | https://rt.cpan.org/Ticket/Display.html?id=49616 (partial) |
426 | Uses Imager::Probe now. | |
427 | https://rt.cpan.org/Public/Bug/Display.html?id=61328 | |
428 | ||
c6683e4d TC |
429 | - tested successfully with jpeg-8b |
430 | https://rt.cpan.org/Ticket/Display.html?id=60221 | |
431 | ||
e85532b9 TC |
432 | Bug fixes: |
433 | ||
434 | - from _01: look for missing file support test files in the right | |
435 | places. | |
436 | ||
353eb6e7 TC |
437 | - flood_fill() wouldn't fill the right side of a single scan-line |
438 | fill area. | |
439 | Thanks to Nicolas Roggli for reporting this. | |
440 | ||
95b9922f TC |
441 | - flood_fill wouldn't fill to the left edge of the image if the |
442 | starting line didn't reach the left edge. | |
443 | Thanks to Nicolas Roggli for reporting this. | |
444 | ||
beb9ba23 TC |
445 | Imager 0.77_01 - 13 Sep 2010 |
446 | ============== | |
82f14556 TC |
447 | |
448 | - add each library-directory/pkgconfig/ to the pkg-config search path | |
449 | in Imager::Probe. | |
450 | Thanks to Justin Davis. | |
451 | https://rt.cpan.org/Ticket/Display.html?id=60491 | |
452 | ||
8ab27e7e TC |
453 | - moved GIF, TIFF, JPEG file handling code into sub-modules in |
454 | preparation for separate distribution. | |
ec6d8908 TC |
455 | https://rt.cpan.org/Ticket/Display.html?id=49616 (partial) |
456 | ||
173c91ba TC |
457 | - optimize filled box drawing (color, not fill) |
458 | ||
82f14556 TC |
459 | Bug fixes: |
460 | ||
461 | - Imager::Probe was calling ExtUtils::Liblist to initialize | |
462 | LD_RUN_PATH supplying an undefined value rather than the found | |
463 | directory. Thanks to Justin Davis. | |
464 | https://rt.cpan.org/Ticket/Display.html?id=60491 | |
465 | ||
b851aeeb TC |
466 | - only prepend ./ to font filenames when passing them to T1Lib and |
467 | then only when it would use its search mechanisms. | |
468 | https://rt.cpan.org/Ticket/Display.html?id=60509 | |
469 | ||
173c91ba | 470 | - fix the cache check for the X rgb.txt loader. This is typically |
cb4f51d6 TC |
471 | used for color translation on Unix-like systems, and the fix |
472 | improves performance of supplying colors by name by about 80 times. | |
473 | Test code that managed 3400 10x10 pixel boxes/second sped up to | |
474 | 25700 boxes/second. | |
b851aeeb | 475 | |
d3a96113 TC |
476 | - clarify that Imager doesn't write EXIF metadata to images. |
477 | https://rt.cpan.org/Ticket/Display.html?id=60637 | |
478 | ||
479 | - Imager::Probe can now search subdirectories under its include path. | |
480 | Used by the PNG Makefile.PL to find headers and libraries when they | |
481 | aren't in the base directory, as in cygwin. | |
482 | https://rt.cpan.org/Ticket/Display.html?id=60635 | |
483 | ||
43452432 TC |
484 | Imager 0.77 - 11 Aug 2010 |
485 | =========== | |
486 | ||
487 | I don't want Imager::File::PNG indexed as part of Imager, but forgot | |
488 | to update the META.yml before updating the version. | |
489 | ||
490 | - don't index Imager::File::PNG as part of Imager | |
491 | ||
492 | - add resources to META.yml | |
493 | ||
494 | Imager 0.76 - not released | |
120f4287 TC |
495 | =========== |
496 | ||
497 | Bug fixes: | |
498 | ||
499 | - the align_string() method would ignore a string of "0" due to a | |
500 | mis-use of C< ||= >. | |
501 | Thanks to Maurice Height for reporting this. | |
502 | https://rt.cpan.org/Ticket/Display.html?id=60199 | |
503 | ||
0e66b07f TC |
504 | Imager 0.75_03 - 09 Aug 2010 |
505 | ============== | |
506 | ||
507 | Bug fixes: | |
508 | ||
509 | - read_types() and write_types() would include png when it wasn't | |
510 | available due to a problem with the %formats tie | |
511 | ||
512 | - handle dependent libraries correctly (eg -lpng requiring -lz) in | |
513 | the code run phase of library probing. | |
514 | ||
7ac2e52e TC |
515 | Imager 0.75_02 - 07 Aug 2010 |
516 | ============== | |
517 | ||
518 | Bug fixes: | |
519 | ||
520 | - add file missing from MANIFEST, which was causing TIFF failures. | |
521 | ||
496ea64d TC |
522 | Imager 0.75_01 - 06 Aug 2010 |
523 | ============== | |
524 | ||
525 | Test release for the new PNG probe. | |
75812841 | 526 | |
a596d4f6 TC |
527 | - added the ability to read multiple-image PNM files. |
528 | Note that unlike the pbm/pgm/ppm specification this accepts mixed | |
529 | format files and allows white space padding between files. | |
530 | Thanks to Philip Gwyn (Leolo) for this patch. | |
531 | ||
1d7e3124 TC |
532 | - moved the PNG file handling code into a sub-module in preparation |
533 | for separate distribution. | |
534 | https://rt.cpan.org/Ticket/Display.html?id=49616 (partial) | |
535 | Also helps avoid complications from -I/-L compile/link options from | |
536 | other libraries. | |
537 | ||
75812841 TC |
538 | Bugs: |
539 | ||
540 | - Imager->new(data => $data) didn't try to process image file data in | |
541 | $data | |
542 | https://rt.cpan.org/Ticket/Display.html?id=58761 | |
543 | ||
b6071a43 TC |
544 | - t/t50basicoo.t no longer depends on the other tests to generate its |
545 | input files. | |
546 | https://rt.cpan.org/Ticket/Display.html?id=9798 | |
547 | Also, it wasn't testing pnm (pnm vs ppm mix-up) | |
548 | ||
a9da425a TC |
549 | - update the documentation of hardinvert to match the change in 0.62. |
550 | https://rt.cpan.org/Ticket/Display.html?id=59785 | |
551 | ||
5558f899 TC |
552 | - added hardinvertall filter which also inverts the alpha channel |
553 | (sorry for the mess) | |
554 | ||
10b85929 TC |
555 | - when probing for TIFF, set LD_RUN_PATH just as the Makefile does so |
556 | the probe can find the library for the test run. | |
557 | https://rt.cpan.org/Ticket/Display.html?id=57518 | |
558 | ||
75812841 | 559 | Imager 0.75 - 20 Jun 2010 |
b13a3ddb TC |
560 | =========== |
561 | ||
562 | - use PERL_NO_GET_CONTEXT to slightly improve performance on threaded | |
563 | perls (not measured) | |
564 | ||
46e2e4a3 TC |
565 | Bugs: |
566 | ||
8c194049 TC |
567 | - an opacity fill based on a fountain fill would segfault when |
568 | filling an 8-bit/sample image. | |
569 | ||
1c5252ed TC |
570 | - merge thickline branch polygon fix |
571 | https://rt.cpan.org/Ticket/Display.html?id=43518 | |
572 | ||
41c88ecd | 573 | Imager 0.74 - 7 May 2010 |
8d46e5da TC |
574 | =========== |
575 | ||
576 | Bug fixes: | |
577 | ||
578 | - read_multi() didn't handle a missing file format library correctly, | |
579 | aborting on failing to call i_readgif_multi_wiol() or | |
580 | i_readtiff_multi_wiol(). | |
581 | ||
5715f7c3 TC |
582 | - fix spelling errors patched by Debian |
583 | http://svn.debian.org/viewsvn/pkg-perl/trunk/libimager-perl/debian/patches/spelling.patch?revision=54839&view=markup | |
584 | ||
585 | - add an (unshipped) author test to spellcheck Imager's POD. | |
7468f3fa | 586 | |
38218f79 TC |
587 | - update the TIFF file format documentation |
588 | https://rt.cpan.org/Ticket/Display.html?id=56510 | |
589 | ||
e17da819 TC |
590 | - lib/Imager/IO.pod was written almost 4 years ago but never shipped. |
591 | ||
704f12d5 | 592 | Imager 0.73 - 15 Mar 2010 |
40068b33 TC |
593 | =========== |
594 | ||
595 | - implement outline circles, both anti-aliased and not | |
596 | https://rt.cpan.org/Ticket/Display.html?id=19755 | |
597 | ||
e958b64e TC |
598 | - a combine => "none" fill to a 1 or 3 channel image would produce |
599 | the incorrect colour. | |
600 | ||
b2db3662 TC |
601 | Imager 0.72 - 09 Dec 2009 |
602 | =========== | |
603 | ||
604 | Bump version for release, since 0.71_03 is stable with CPAN testers. | |
605 | ||
6936706b TC |
606 | Imager 0.71_03 - 5 Dec 2009 |
607 | ============== | |
608 | ||
609 | - further adjust the threads test so it only performs the tests on | |
610 | perls where it's expected to work, and only if the threads module | |
611 | can be loaded. | |
612 | ||
0750777c TC |
613 | Imager 0.71_02 - 1 Dec 2009 |
614 | ============== | |
615 | ||
48ad0e66 TC |
616 | - adjust the way we load the threads module for the threads test so |
617 | it works with non-threaded perls | |
0750777c | 618 | |
b89f0fcd | 619 | Imager 0.71_01 - 30 Nov 2009 |
e41cfe8f TC |
620 | =========== |
621 | ||
622 | Bug fixes: | |
623 | ||
624 | - use scanline oriented operations to flip images instead of pixel | |
625 | operations | |
626 | https://rt.cpan.org/Ticket/Display.html?id=39278 | |
627 | ||
628 | - use double/sample operations to flip large sample images instead of | |
629 | 8-bit sample operations. | |
630 | https://rt.cpan.org/Ticket/Display.html?id=39280 | |
631 | ||
de3ca2fd TC |
632 | - fix POD nits |
633 | https://rt.cpan.org/Ticket/Display.html?id=51874 | |
634 | ||
ffddd407 TC |
635 | - prevent double-frees when someone creates Imager objects and then |
636 | creates a thread. Note: this just handles some simple cases, | |
637 | Imager doesn't support perl threads, and isn't likely to. | |
638 | https://rt.cpan.org/Ticket/Display.html?id=52268 | |
639 | ||
3517794b | 640 | Imager 0.71 - 16 Nov 2009 |
6a3cbaef TC |
641 | =========== |
642 | ||
a16bae72 TC |
643 | - add the opacity fill type - an adaptor that modifies the opacity of |
644 | another fill. | |
645 | ||
6a3cbaef TC |
646 | Bug fixes: |
647 | ||
648 | - the conv filter now enforces that the sum of the coefficients is | |
649 | non-zero. Also, rather than skipping pixels off the edge off the | |
650 | edge of the image, the closest edge pixel is used. Previously | |
651 | dividing by the zero sum of coefficients could cause invalid | |
652 | results or runtime exceptions. | |
653 | Thanks to David Cantrell's Alpha-NetBSD CPAN test box for revealing | |
654 | this bug. | |
655 | ||
189d5775 | 656 | Imager 0.70 - 21 Sep 2009 |
2b82e731 TC |
657 | =========== |
658 | ||
659 | Bug fixes: | |
660 | ||
661 | - release image row and comments memory on all error returns in gif | |
662 | reader | |
663 | ||
664 | - handle zero length extensions, previously this would cause a null | |
665 | pointer dereference | |
666 | Thanks to Krzysztof Wojtaś for the test data and fix for this. | |
667 | ||
b3afeed5 TC |
668 | - an integer division meant that preview scaling to below 1 pixel |
669 | wide or high (which isn't too useful anyway) was calculating using | |
670 | NaNs on most platforms, and causing an exception on others. | |
671 | Thanks to David Cantrell for producing a backtrace of the crash on | |
672 | his Alpha-NetBSD CPAN test box which made it possible to track this | |
673 | down. | |
674 | ||
b1e29946 | 675 | Imager 0.69 - 08 Sep 2009 |
25f4e775 TC |
676 | =========== |
677 | ||
b1e29946 | 678 | Bug fixes: |
25f4e775 TC |
679 | |
680 | - broken test fix - was attempting to call a function skip_all, when | |
681 | that should be a parameter to plan(). | |
682 | ||
b1e29946 TC |
683 | - briefly document apidocs.perl, the tool used to build |
684 | Imager::APIRef and make some minor enhancements | |
685 | ||
686 | - various minor documentation enhancements and fixes. | |
687 | ||
5920304a | 688 | Imager 0.68 - 07 Sep 2009 |
c5f447ac TC |
689 | =========== |
690 | ||
3c252111 TC |
691 | - Imager->new(file => $filename) and other similar incantations will |
692 | load the given file. | |
693 | https://rt.cpan.org/Ticket/Display.html?id=48261 | |
694 | ||
c5f447ac TC |
695 | Bug fixes: |
696 | ||
697 | - avoid using CHECK as a label in Imager::Test | |
698 | http://nntp.x.perl.org/group/perl.cpan.testers/5220921 | |
699 | ||
0d670555 TC |
700 | - re-work most image file test files that require a library into |
701 | separate library present/not present files to remove stupidly long | |
702 | conditionals | |
703 | ||
704 | - don't treat rubthrough() outside the bounds of the target image as | |
705 | an error. | |
706 | http://nntp.x.perl.org/group/perl.cpan.testers/5185716 | |
707 | ||
8d800216 TC |
708 | Imager 0.67_01 - 02 Sep 2009 |
709 | ============== | |
500888da TC |
710 | |
711 | Bug fixes: | |
712 | ||
713 | - correct documentation of default of raw image interleave read | |
714 | parameter | |
715 | https://rt.cpan.org/Ticket/Display.html?id=42074 | |
716 | ||
717 | - add raw_ prefix to raw read parameters, though the original names | |
718 | still work. | |
719 | ||
720 | - fail the read if an invalid raw_interleave parameter is supplied | |
721 | ||
722 | - warn if no interleave or raw_interleave parameter is supplied, | |
723 | since the documented default was wrong, and incompatible with the | |
724 | write format | |
725 | ||
726 | - for reading raw images, if raw_storechannels > raw_datachannels, | |
727 | set the extra channels in the image to 0 | |
728 | ||
cd476e58 TC |
729 | - when probing for executables like freetype-config, search for .bat |
730 | and .cmd on MSWin32, as well as .exe. | |
731 | https://rt.cpan.org/Ticket/Display.html?id=49275 | |
500888da | 732 | |
f9a39263 TC |
733 | - re-work the external libraries section of README: |
734 | - list Debian and Redhat package names for each library | |
735 | - reformatting | |
736 | - update URLs | |
737 | ||
f45b774f TC |
738 | - use the new EU::MM META_MERGE facility instead of generating |
739 | META.yml from scratch | |
740 | https://rt.cpan.org/Ticket/Display.html?id=47888 | |
741 | ||
d6b51d8c TC |
742 | - use Devel::CheckLib (bundled, modified) to check which release of |
743 | libtiff is installed and reject 3.9.0 | |
78645bd4 TC |
744 | http://bugzilla.maptools.org/show_bug.cgi?id=2088 |
745 | http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=543079 | |
d6b51d8c | 746 | |
249af030 TC |
747 | Imager 0.67 - 12 Dec 2008 |
748 | =========== | |
749 | ||
750 | Bug fixes: | |
751 | ||
752 | - fix a packaging error | |
753 | ||
cca21862 | 754 | Imager 0.66 - 12 Dec 2008 |
3c8fee33 TC |
755 | =========== |
756 | ||
6b22ba84 TC |
757 | - 24-bit color .ICO/.CUR files can now be read. |
758 | ||
3c8fee33 TC |
759 | Bug fixes: |
760 | ||
6b22ba84 TC |
761 | - an optimization skipping 0 src alpha values could cause the |
762 | rubthrough() to read past the end of a buffer. | |
763 | http://www.nntp.perl.org/group/perl.cpan.testers/2008/05/msg1509184.html | |
764 | ||
5c0d0ddf TC |
765 | - corrected a reference leak where writing GIFs would leak memory. |
766 | This could also happen calling to_paletted(). | |
767 | Also documented the underlying long existing feature where the | |
768 | colors parameter is filled with the generated color table and added | |
769 | tests for it. | |
3c8fee33 TC |
770 | http://rt.cpan.org/Ticket/Display.html?id=41028 |
771 | ||
8e7f5809 TC |
772 | - write out the image size in bytes field of a BMP correctly. |
773 | http://rt.cpan.org/Ticket/Display.html?id=41406 | |
774 | ||
c586eb58 TC |
775 | - add limited tests for Imager::ExtUtils |
776 | ||
777 | - make Imager::ExtUtils->includes use an absolute path, since | |
778 | a relative path could cause failures using Inline::C. | |
779 | http://rt.cpan.org/Ticket/Display.html?id=37353 | |
780 | ||
6b22ba84 TC |
781 | - re-arrange the POD for Imager::Font::BBox: |
782 | - mark total_width(), pos_width(), end_offset() obsolete, since | |
783 | they're mostly for backwards compatibility | |
784 | - group width methods and height methods | |
785 | https://rt.cpan.org/Ticket/Display.html?id=39999 | |
17d9fe35 | 786 | |
0727e3f5 | 787 | Imager 0.65 - 20 May 2008 |
546ea21c TC |
788 | =========== |
789 | ||
790 | Bug fixes: | |
791 | ||
792 | - In some cases when an error occurs reading those parts of a JPEG | |
793 | file after the image the scan-line buffer could be freed a second | |
794 | time. In cases where the the error occured while reading the image | |
795 | data it's possible that the buffer could have leaked. | |
796 | Thanks to Gabriel Vasseur for reporting this and help in tracking | |
797 | it down. | |
798 | ||
43b2b326 TC |
799 | - the gif_screen_height tag was overriding the screen width and being |
800 | ignored for the screen height when present. | |
801 | https://rt.cpan.org/Public/Bug/Display.html?id=35568 | |
802 | ||
e02d22d2 | 803 | Imager 0.64 - 23 April 2008 |
de470892 TC |
804 | =========== |
805 | ||
e02d22d2 TC |
806 | This is a bug fix release. This includes a fix for a possible |
807 | security issue. | |
808 | ||
de470892 TC |
809 | Bug fixes: |
810 | ||
e02d22d2 TC |
811 | - Possible security issue: The floating point sample path for image |
812 | based fills had a buffer overflow. This would overwrite the end of | |
813 | a malloc()ed buffer with double precision floats. | |
814 | http://rt.cpan.org/Ticket/Display.html?id=35324 | |
6912d85a | 815 | CVE-2008-1928 |
e02d22d2 | 816 | |
de470892 TC |
817 | - check that the result of fileno($fh) is defined rather than simply |
818 | true when read() or write() is supplied with an fh parameter. | |
819 | http://rt.cpan.org/Ticket/Display.html?id=35139 | |
820 | ||
821 | - i_scale_axis() wasn't checking the result of i_img_new_ch() | |
822 | resulting in a SIGSEGV when attempting to scale an image to a size | |
823 | too large to fit in memory. This is a NULL pointer access issue, | |
824 | not a buffer overflow. | |
825 | Added a check for the failure. | |
826 | scale_calculate() (and hence scale()) will now fail if any of the | |
827 | scale size parameters are a reference. | |
828 | http://rt.cpan.org/Ticket/Display.html?id=35172 | |
829 | ||
04f85f63 TC |
830 | - Regression: filling a greyscale image with a hatch used the wrong |
831 | color channels from the supplied fg/bg colors. | |
832 | https://rt.cpan.org/Ticket/Display.html?id=35278 | |
833 | ||
a256aec5 TC |
834 | - fixed a related problem for image fills. |
835 | ||
49240201 | 836 | Imager 0.63 - 7 April 2008 |
33b0ffa6 TC |
837 | =========== |
838 | ||
242d7497 TC |
839 | This release primarily contains changes to improve ease of use - |
840 | rather than you having to convert images to the appropriate number of | |
841 | channels, Imager handles it internally. How to handle drawing colors | |
842 | and the default combine mode is a thornier problem left for some other | |
843 | release. | |
844 | ||
d1555273 TC |
845 | - the font libraries are now only initialized when needed. |
846 | http://rt.cpan.org/Ticket/Display.html?id=28825 | |
847 | ||
9b1ec2b8 TC |
848 | - moved the imtoc.perl code into Imager::Preprocess |
849 | ||
850 | - paste() and rubthrough() now adapt the source image data to the | |
851 | destination, so you can now safely paste/rubthrough from greyscale | |
852 | images to color images or back, or from alpha channel images to | |
853 | noalpha channels or back. | |
854 | https://rt.cpan.org/Ticket/Display.html?id=30908 | |
855 | ||
856 | - rubthrough() now falls back to pasting when the source doesn't have | |
857 | an alpha channel. This effectively treats the source as having a | |
858 | max alpha channel, the right thing to do. | |
859 | http://rt.cpan.org/Ticket/Display.html?id=29944 | |
860 | ||
861 | - re-worked most of the area filling code to use a common set of | |
862 | functions when filling. | |
863 | Corrected normal combine mode. | |
864 | Rewrote most of the combine modes to match the way the SVG draft | |
865 | defines them with respect to a translucent source and destination. | |
866 | Added tests for translucent source and destination. | |
867 | Added tests to check 8-bit/sample and double/sample combines work | |
868 | similarly. | |
869 | https://rt.cpan.org/Ticket/Display.html?id=29879 | |
870 | ||
07d9c639 TC |
871 | - writing a 2 or 4 channel image to a JPEG file will now write that |
872 | image as if composited against a background, black by default, | |
873 | overridable with the i_background tag/parameter. | |
6e4af7d4 TC |
874 | https://rt.cpan.org/Ticket/Display.html?id=29876 |
875 | ||
07d9c639 TC |
876 | - writing a 2 or 4 channel image to a PGM/PPM file will now write |
877 | that image as if composited against a background, black by default, | |
fa90de94 TC |
878 | overridable with the i_background tag/parameter. |
879 | http://rt.cpan.org/Ticket/Display.html?id=30074 | |
880 | ||
07d9c639 TC |
881 | - writing a 2 or 4 channel image to a BMP file will now write that |
882 | image as if composited against a background, black by default, | |
883 | overridable with the i_background tag/parameter. | |
884 | http://rt.cpan.org/Ticket/Display.html?id=30075 | |
885 | ||
33b0ffa6 TC |
886 | Bug fixes: |
887 | ||
888 | - Imager::Matrix2d->translate() now only requires one of the x or y | |
889 | parameters. | |
890 | http://rt.cpan.org/Ticket/Display.html?id=29937 | |
891 | ||
2757bad0 TC |
892 | - mixing qtype scaling now sets all channels of a pixel to zero if |
893 | the pixel has zero coverage (zero alpha). This should produce more | |
894 | compressible output files. | |
895 | http://rt.cpan.org/Ticket/Display.html?id=32324 | |
896 | ||
3da08517 TC |
897 | - removed the pointless #! line from lib/Imager/Font/Wrap.pm |
898 | Noticed when I saw: | |
899 | https://bugzilla.redhat.com/show_bug.cgi?id=166254 | |
900 | I'm not changing the #! lines of the sample code, since it's sample | |
901 | code, not intended for installation. | |
902 | http://rt.cpan.org/Ticket/Display.html?id=33408 | |
903 | ||
242d7497 TC |
904 | - some TGA images weren't being detected correctly as TGA images |
905 | https://rt.cpan.org/Ticket/Display.html?id=32925 | |
906 | ||
907 | - handling of the left-over bit for 16-bit/pixel TGA images has been | |
908 | changed to match the behaviour of the GIMP. Previously the bit | |
909 | being set was treated as an opaque pixel, but one user reported a | |
910 | problem with loading such an image. I haven't been able to find any | |
911 | tools beyond the GIMP that handle alpha-channel 16-bit TGAs, so | |
912 | I'll match it's behaviour. See issue 114913 in the GIMP's | |
913 | bugzilla. | |
914 | http://rt.cpan.org/Ticket/Display.html?id=32926 | |
915 | ||
5daa9d34 | 916 | Imager 0.62 - 10 December 2007 |
ac8138b0 TC |
917 | =========== |
918 | ||
d8e0c3ba TC |
919 | - Makefile.PL now expands ~/path supplied to --incpath or --libpath |
920 | to /path under your home directory. | |
921 | http://rt.cpan.org/Ticket/Display.html?id=29484 | |
922 | ||
50ff958e TC |
923 | - the old dynaload code used Mach API functions to load dynamic |
924 | libraries on Mac OS X. These APIs have been deprecated in OS X | |
925 | 10.5 and were causing some build problems. | |
926 | So henceforth Imager uses the dlopen() family of functions, and you | |
927 | will need version 10.3 or later of OS X. | |
928 | ||
3309187a TC |
929 | - added the det() function to the transform2() engine. |
930 | added the sample quad_to_square.pl | |
931 | Courtesy Richard Fairhurst. | |
932 | http://rt.cpan.org/Ticket/Display.html?id=31244 | |
933 | ||
ac8138b0 TC |
934 | Bug fixes: |
935 | ||
936 | - samples/gifscale.pl sourced the base value for gif_top from | |
937 | gif_left. | |
938 | Thanks to Eleneldil G. Arilou for pointing this out. | |
939 | ||
678a9a65 TC |
940 | - t/t82inline.t no longer loads B at runtime, to work around a bug |
941 | in some 5.005_0[45] installations. | |
942 | http://rt.cpan.org/Ticket/Display.html?id=30508 | |
943 | ||
944 | - work around Module::Depends::Intrusive bug #21229 | |
945 | http://rt.cpan.org/Ticket/Display.html?id=30520 | |
ac8138b0 | 946 | |
bea65b1f TC |
947 | - the hardinvert filter no-longer inverts the alpha channel. |
948 | http://rt.cpan.org/Ticket/Display.html?id=30002 | |
949 | ||
950 | - the hardinvert filter now supports large samples | |
951 | ||
b7809486 | 952 | Imager 0.61_02 - 28 November 2007 |
f74e6efc | 953 | ============== |
874c55db | 954 | |
bd8052a6 TC |
955 | - major TIFF support re-work |
956 | http://rt.cpan.org/Ticket/Display.html?id=20329 | |
957 | ||
958 | - added a C level image interface for accessing samples from 1-32 | |
959 | bits, exposed this at the perl level in getsamples() | |
960 | ||
961 | - the conv filter now works at floating point precision for high bit | |
962 | images | |
963 | ||
964 | - added is_bilevel method to test whether an image should be written as | |
965 | a bilevel image if the image format supports it. | |
966 | ||
967 | - added -log-stderr as an Imager import list option | |
968 | ||
969 | - added some important types to Imager::APIRef | |
970 | ||
971 | - added test_image_double() to Imager::Test | |
972 | ||
874c55db TC |
973 | Bug fixes: |
974 | ||
975 | - Imager::Fountain couldn't read GIMP gradient files with 10 or more | |
976 | segments | |
977 | ||
978 | - the scale() method with qtype mixing now handles images with an | |
979 | alpha channel correctly. | |
980 | ||
8d17eae9 TC |
981 | - fixed a broken link from the "animated GIF" entry in the concept index. |
982 | Thanks to Slaven Rezic. | |
983 | http://rt.cpan.org/Ticket/Display.html?id=30889 | |
984 | ||
d3bf4eaf TC |
985 | - on some perl's the infix expression parser test would fail due to |
986 | actions in the grammar returning false. Made sure all actions return | |
987 | a true value. | |
8b96ad6b TC |
988 | Thanks to Richard Fairhurst for spending a lot of time in tracking |
989 | down this problem. | |
680c329d | 990 | http://rt.cpan.org/Public/Bug/Display.html?id=29562 |
d3bf4eaf | 991 | |
d06f6707 | 992 | Imager 0.61 - 5 November 2007 |
1cfa190e TC |
993 | =========== |
994 | ||
995 | - added samples/gifscale.pl, which adjusts the screen size/position tags | |
996 | when scaling an animated gif | |
997 | http://rt.cpan.org/Ticket/Display.html?id=27591 | |
998 | ||
8a2cd317 TC |
999 | Bug fixes: |
1000 | ||
e7ac18bd TC |
1001 | - correct handling of sz in matrix_transform() - this should allow |
1002 | perspective type transformations to work now. | |
1003 | http://rt.cpan.org/Ticket/Display.html?id=29936 | |
1004 | ||
8a2cd317 TC |
1005 | - prevent a cast to integer warning on x64 builds in datatypes.c |
1006 | also fixed some other type warnings | |
1007 | https://rt.cpan.org/Ticket/Display.html?id=30204 | |
1008 | ||
9188b23e TC |
1009 | - some sub-directory tests depended on files produced by the parent |
1010 | directory tests | |
1011 | http://rt.cpan.org/Ticket/Display.html?id=30203 | |
1012 | ||
7febff1d TC |
1013 | - Imager::Font::Wrap doesn't correctly set savepos |
1014 | thanks to Nikita Dedik and Eleneldil G. Arilou for reporting this. | |
1015 | http://rt.cpan.org/Ticket/Display.html?id=29771 | |
1016 | ||
76411e99 TC |
1017 | - test 171 in t/t01introvert.t was failing on perls configured to |
1018 | use long double. | |
1019 | http://rt.cpan.org/Ticket/Display.html?id=29413 | |
1020 | ||
3f29de50 TC |
1021 | - the code for the transform2() uminus operator was missing a break. |
1022 | Added tests for better code coverage of the ops. | |
1023 | http://rt.cpan.org/Ticket/Display.html?id=29296 | |
1024 | ||
ed107438 TC |
1025 | - the SGI RLE compression code could overflow its compression buffer |
1026 | http://rt.cpan.org/Ticket/Display.html?id=30334 | |
1027 | ||
1028 | - the 32-bit output function used by the SGI code only handled values | |
1029 | under 0x10000. This was most noticable when writing large RLE images. | |
1030 | http://rt.cpan.org/Ticket/Display.html?id=30335 | |
1031 | ||
c7481ae1 TC |
1032 | - validate chan_count for chans == NULL for each of the i_gsamp() |
1033 | implementations. | |
1034 | http://rt.cpan.org/Ticket/Display.html?id=28985 | |
1035 | ||
ff37fc3f TC |
1036 | - attempt to work around the test failure at |
1037 | http://www.nntp.perl.org/group/perl.cpan.testers/2007/09/msg650810.html | |
1038 | http://rt.cpan.org/Ticket/Display.html?id=29562 | |
1039 | ||
f245645a TC |
1040 | - improve the error messages produced when attempting to read or write |
1041 | an unknown image file format. | |
1042 | http://rt.cpan.org/Ticket/Display.html?id=30103 | |
1043 | ||
333d7485 TC |
1044 | - improve the transform2() documentation |
1045 | http://rt.cpan.org/Ticket/Display.html?id=29267 | |
1046 | ||
3b115720 TC |
1047 | - correctly generate the author key in META.yml |
1048 | http://rt.cpan.org/Ticket/Display.html?id=30377 | |
1049 | ||
13c9a303 TC |
1050 | - correctly blend a rotated (or matrix_transformed()) image when |
1051 | performing interpolation in the presence of an alpha channel. | |
8a071022 TC |
1052 | Also corrected the centring of the rotated image on the output |
1053 | image. | |
13c9a303 | 1054 | |
0e622083 | 1055 | Imager 0.60 - 30 August 2007 |
bcff4dd9 TC |
1056 | =========== |
1057 | ||
d5477d3d TC |
1058 | - Finished/rewrote Arnar's old SGI RGB file format support, so Imager |
1059 | now has full SGI RGB image format, including RLE and 16-bit/sample | |
1060 | images. | |
1061 | https://rt.cpan.org/Ticket/Display.html?id=8666 | |
1062 | ||
1063 | - logging functions are now available in the API | |
1064 | ||
a60905e4 TC |
1065 | - applied Gabriel Vasseur's patch |
1066 | added documentation, further tests, and support for greyscale images | |
1067 | Obviously problems are my fault :) | |
1068 | https://rt.cpan.org/Ticket/Display.html?id=28142 | |
1069 | ||
413dc198 TC |
1070 | - the mask for ICO/CUR images is now applied as an alpha channel to |
1071 | the returned image. For the old behaviour, supply ico_masked => 0 | |
1072 | to read() or read_multi(). This should be less confusing when | |
1073 | using Imager as a general image processor. | |
1074 | https://rt.cpan.org/Ticket/Display.html?id=29001 | |
1075 | ||
bcff4dd9 TC |
1076 | Bug fixes: |
1077 | ||
1078 | - in some cases it's possible for giflib/libungif to return color | |
1079 | indexes outside the range of colors defined by the image's palette. | |
1080 | We now expand the palette to match the indexes used. | |
1081 | Thanks to Gabriel Vasseur for reporting this. | |
1082 | ||
02576e8d TC |
1083 | - fixed various memory leaks that could occur when failing to read png, |
1084 | jpeg, bmp or tga files. | |
1085 | ||
b3aa972f TC |
1086 | - to avoid confusion, channels not present in the image are returned as |
1087 | zero by getscanline(). This has no effect on the C level i_glin() | |
1088 | and i_glinf() API functions which continue to not set the unused | |
1089 | channels. | |
1090 | ||
d5477d3d TC |
1091 | - the convert() method now returns an image of the same sample size as |
1092 | the source image. | |
1093 | https://rt.cpan.org/Ticket/Display.html?id=28492 | |
1094 | ||
baa880ef TC |
1095 | - remove repeated text in Imager::Files |
1096 | http://rt.cpan.org/Ticket/Display.html?id=27589 | |
1097 | ||
1098 | - be even more explicit that scale() and friends don't modify the source | |
1099 | image, but return a new image. | |
1100 | http://rt.cpan.org/Ticket/Display.html?id=28570 | |
1101 | ||
0561d49c TC |
1102 | - improve the error message from errstr() when you try to load a font |
1103 | for which the driver hasn't been built in Imager. | |
1104 | http://rt.cpan.org/Ticket/Display.html?id=27571 | |
1105 | ||
d8a39ce0 TC |
1106 | - transparency is now enabled by default when writing GIF images |
1107 | http://rt.cpan.org/Ticket/Display.html?id=27615 | |
1108 | ||
5730d6e7 TC |
1109 | - Imager would not load on Windows 98 |
1110 | http://rt.cpan.org/Ticket/Display.html?id=27653 | |
1111 | ||
b4996113 | 1112 | Imager 0.59 - 14 June 2007 |
e6e94ab0 TC |
1113 | =========== |
1114 | ||
1115 | Bug fixes: | |
1116 | ||
1117 | - fixes a regression introduced by the fixes for RT 11972 | |
1118 | http://rt.cpan.org/Ticket/Display.html?id=27546 | |
1119 | ||
9fc9d0ca TC |
1120 | - cropping outside the image would return an Imager object with |
1121 | no low-level image object, instead of returning false. | |
1122 | Fixed by: Philip Gwyn (Leolo) | |
1123 | http://rt.cpan.org/Ticket/Display.html?id=27509 | |
1124 | ||
7e7508dd TC |
1125 | Imager 0.58 - 16 May 2007 |
1126 | =========== | |
1127 | ||
1128 | No significant changes from 0.57_01. | |
1129 | ||
1970a2c7 TC |
1130 | Imager 0.57_01 - 11 May 2007 |
1131 | ============== | |
d034a178 | 1132 | |
f8e36694 TC |
1133 | - added to_rgb16 to produce a 16-bit/sample version of an image |
1134 | ||
95b2bff4 TC |
1135 | - improve freetype 1.x text output efficiency |
1136 | ||
d034a178 TC |
1137 | Bug fixes: |
1138 | ||
1139 | - search another place for rgb.txt, and check all the places | |
1140 | Imager::Color checks when deciding whether to skip testing it | |
1141 | http://rt.cpan.org/Ticket/Display.html?id=26064 | |
1142 | ||
73962964 TC |
1143 | - use a convolution kernel size based on the stddev rather than a |
1144 | fixed size when performing a gaussian blur | |
1145 | http://rt.cpan.org/Ticket/Display.html?id=25645 | |
1146 | ||
01b84320 TC |
1147 | - document the difference() method's mindist parameter, and debug it. |
1148 | ||
7e7508dd | 1149 | - put the Imager release number in the Inline::C generated code to |
22f9ca48 TC |
1150 | regenerate Inline code when a new release of Imager is installed. |
1151 | http://rt.cpan.org/Ticket/Display.html?id=26278 | |
1152 | ||
fa16b6c6 TC |
1153 | - fix rendering on alpha channel images for the FreeType 1.x driver. |
1154 | http://rt.cpan.org/Ticket/Display.html?id=11972 | |
1155 | ||
4c84ccfb TC |
1156 | - fix rendering on alpha channel images for the T1lib driver. |
1157 | http://rt.cpan.org/Ticket/Display.html?id=11972 | |
1158 | ||
1fe8316b TC |
1159 | - reworked library probing, we can now set more than one probe |
1160 | function for a library. Disabled the default (non-freetype-config) | |
1161 | library probe and added an extra probe function that searches for | |
1162 | both ft2build.h and whatever it includes, and adds -I as needed. | |
1163 | Hopefully this will fix build problems like | |
1164 | http://www.nntp.perl.org/group/perl.cpan.testers/2007/05/msg472281.html | |
1165 | http://rt.cpan.org/Ticket/Display.html?id=26086 | |
1166 | ||
bb5712de TC |
1167 | Imager 0.57 - 30 Apr 2007 |
1168 | =========== | |
1169 | ||
1170 | This is a maintenence release fixing a security issue in Imager. | |
1171 | ||
1172 | - CRITICAL: a specially crafted compressed BMP file can cause a buffer | |
1173 | overflow in malloced memory. There will be further discussion of | |
1174 | this issue in the ticket below. | |
1175 | http://rt.cpan.org/Ticket/Display.html?id=26811 | |
7e7508dd TC |
1176 | CVE-2007-2459 CVE-2007-2413 |
1177 | The descriptions at cve.mitre.org varied in quality, please see the | |
1178 | ticket at rt.cpan.org for a more accurate description of the issue. | |
bb5712de | 1179 | |
d034a178 | 1180 | Imager 0.56 - 1 Apr 2007 |
7623d340 TC |
1181 | =========== |
1182 | ||
1183 | - added support for reading 16-bit/sample PGM/PPM images | |
1184 | ||
1185 | - added support for writing 16-bit/sample PGM/PPM images | |
1186 | ||
1187 | - improved performance of reading PBM/PGM/PPM images | |
1188 | ||
1189 | - added support for writing PBM images if the image is paletted and | |
1190 | contains only black and white | |
1191 | ||
1192 | - added a new make_colors value - "mono" | |
1193 | ||
1194 | - switched from the svn log Changes to a manual Changes to reduce | |
1195 | noise | |
1196 | ||
1225d272 TC |
1197 | - new sample code - samples/flasher.pl |
1198 | ||
7623d340 TC |
1199 | Bug fixes: |
1200 | ||
1201 | - CRITICAL: the "Imager" typemap entry (not used by Imager itself) | |
1202 | was returning an image object with an extra reference, this | |
1203 | resulted in a memory leak. | |
1204 | http://rt.cpan.org/Ticket/Display.html?id=24992 | |
1205 | ||
1206 | - fix rendering on alpha channel images for the FreeType 2.x driver | |
1207 | http://rt.cpan.org/Ticket/Display.html?id=11972 | |
1208 | ||
1209 | - reading bmp files now consitently handles short reads. You can now | |
1210 | supply a parameter to treat a short read as successful and set | |
1211 | i_incomplete | |
1212 | http://rt.cpan.org/Ticket/Display.html?id=8426 | |
1213 | ||
1214 | - previously, reading ASCII PBM files required spaces between samples, | |
1215 | even though the format doesn't require that | |
1216 | ||
1225d272 TC |
1217 | - improved documentation of the unsharpmask filter (I hope) |
1218 | http://rt.cpan.org/Ticket/Display.html?id=25531 | |
1219 | ||
1220 | - force flushing of the output from i_tt_dump_names() and test output | |
1221 | in t/t35ttfont.t to prevent output from being mixed up. | |
1222 | https://rt.cpan.org/Ticket/Display.html?id=24859 | |
1223 | ||
1224 | - rewrite a conditional expression as an if() to hopefully work around | |
1225 | a bug in the pre-4.0 GCC Apple shipped with OS X 10.4. | |
1226 | https://rt.cpan.org/Ticket/Display.html?id=25561 | |
1227 | ||
1228 | - avoid Data::Dumper in regops.perl to support older releases of perl | |
1229 | https://rt.cpan.org/Ticket/Display.html?id=24391 | |
1230 | ||
7623d340 TC |
1231 | Imager 0.55 - 16 Dec 2006 |
1232 | =========== | |
1233 | ||
1234 | This is primarily a bug fix release. | |
1235 | ||
1236 | Note: Test::More is now a pre-requisite for Imager and is no longer bundled. | |
1237 | ||
1238 | There is one new feature: | |
1239 | ||
1240 | - the Win32 font driver now supports UTF8 (RT 22166) | |
1241 | http://www.cpanforum.com/threads/3276 | |
1242 | http://rt.cpan.org/Ticket/Display.html?id=22166 | |
1243 | ||
1244 | Several bugs were fixed: | |
1245 | ||
1246 | - the string() method would not output the string "0" | |
1247 | http://rt.cpan.org/Public/Bug/Display.html?id=21770 | |
1248 | ||
1249 | - fills.c was failing to compile on Solaris 10 (compiler unknown) | |
1250 | http://rt.cpan.org/Public/Bug/Display.html?id=21944 | |
1251 | ||
1252 | - the gif_disposal and gif_user_input tags weren't being read from | |
1253 | the file correctly | |
1254 | http://rt.cpan.org/Public/Bug/Display.html?id=22192 | |
1255 | ||
1256 | - gif.c was failing to build under MSVC | |
1257 | http://rt.cpan.org/Ticket/Display.html?id=23922 | |
1258 | ||
1259 | - in some cases strings passed to the string() method were treated as | |
1260 | terminated by NUL (chr 0) | |
1261 | http://rt.cpan.org/Public/Bug/Display.html?id=21770 | |
1262 | ||
1263 | - on "MSWin32" perl builds we now link to -lzlib instead of -lz since | |
1264 | that's the default build name for zlib on Win32. | |
1265 | http://rt.cpan.org/Ticket/Display.html?id=23064 | |
1266 | ||
1267 | - search $Config{incpath} for headers too, which we should have been | |
1268 | doing all along. | |
1269 | ||
1270 | Win32 font driver fixes: | |
1271 | ||
1272 | - the global descent value from bounding box was the wrong sign | |
1273 | http://www.cpanforum.com/threads/3276 | |
1274 | ||
1275 | - if the first or last glyph overflowed the left or right side of the | |
1276 | advance width they would be clipped | |
1277 | ||
1278 | ||
1279 | Imager 0.54 - 14 Sep 2006 | |
1280 | =========== | |
1281 | ||
1282 | This is primarily a feature release: | |
1283 | ||
1284 | - a new qtype value 'mixing' has been added to the scale() | |
1285 | method. This is faster than 'normal', slower than 'preview'. This | |
1286 | is based on the method used by pnmscale, and seems to produce less | |
1287 | blurry results than normal. | |
1288 | http://rt.cpan.org/Public/Bug/Display.html?id=20677 | |
1289 | ||
1290 | - the rubthrough() method can now render onto images with an alpha | |
1291 | channel. | |
1292 | http://rt.cpan.org/Ticket/Display.html?id=20678 | |
1293 | ||
1294 | - the read_multi() method now falls back to calling doing a single | |
1295 | image read via the read() method and write_multi() will now fall | |
1296 | back to calling write() if a single image is supplied. This means | |
1297 | you can simply call the read_multi() or write_multi() functions | |
1298 | without having to check if the type is formatted by that method. | |
1299 | http://rt.cpan.org/Ticket/Display.html?id=19457 | |
1300 | http://rt.cpan.org/Ticket/Display.html?id=19458 | |
1301 | ||
1302 | - the GIF loop extension can now be written. If you don't have | |
1303 | libungif/giflib 4.1.4 (or some distribution's bugfixed equivalent) you | |
1304 | should upgrade. | |
1305 | http://rt.cpan.org/Ticket/Display.html?id=21185 | |
1306 | ||
1307 | - getscanline() and setscanline() can now read/write palette index | |
1308 | based data from/to the image for paletted images, by setting type to | |
1309 | 'index'. | |
1310 | http://rt.cpan.org/Ticket/Display.html?id=20338 | |
1311 | ||
1312 | - we no longer hassle you to disable GIF support | |
1313 | http://rt.cpan.org/Ticket/Display.html?id=20687 | |
1314 | ||
1315 | - minor documentation fixes | |
1316 | ||
1317 | ||
1318 | Imager 0.53 - 26 Jul 2006 | |
1319 | =========== | |
1320 | ||
1321 | This is a bugfix release. | |
1322 | ||
1323 | Some test code was left in a code path not covered by the test | |
1324 | suite. A test was added to cover this code path and the test code was | |
1325 | removed. | |
1326 | http://rt.cpan.org/Public/Bug/Display.html?id=20705 | |
1327 | ||
1328 | ||
1329 | Imager 0.52 - 25 Jul 2006 | |
1330 | =========== | |
1331 | ||
1332 | This is primarily a feature release, but contains a fair few bug | |
1333 | fixes, new features: | |
1334 | ||
1335 | - ability to read and write MS Windows ICO and CUR files | |
1336 | ||
1337 | - you can now add file format plugins to support new file formats | |
1338 | ||
1339 | - add POD coverage tests | |
1340 | ||
1341 | - setcolors() and addcolors() now accept color names and so on | |
1342 | instead of requiring Imager::Color objects. | |
1343 | http://rt.cpan.org/Ticket/Display.html?id=20056 | |
1344 | ||
1345 | - flood_fill() can now fill to a specified border color instead of | |
1346 | just to the area the same color as the seed. | |
1347 | http://rt.cpan.org/Ticket/Display.html?id=19618 | |
1348 | ||
1349 | ||
1350 | Bug fixes: | |
1351 | ||
1352 | - bounding_box for the T1 driver wasn't converting UTF8 to ascii when | |
1353 | calculating the advance width. | |
1354 | http://rt.cpan.org/Public/Bug/Display.html?id=20554 | |
1355 | ||
1356 | - bounding_box for the T1 driver wasn't including leading and | |
1357 | trailing spaces in the bounding box as the other drivers did, it also | |
1358 | produced strange results for empty strings or strings containing only | |
1359 | spaces | |
1360 | ||
1361 | - when reading CMYK jpeg images they were being transferred to the | |
1362 | image object as is, producing a four channel image. It only looked ok | |
1363 | due to an old still unfixed Photoshop bug. We now convert from the | |
1364 | inverted CMYK that photoshop (and Corel for example) produce into RGB. | |
1365 | http://rt.cpan.org/Ticket/Display.html?id=20416 | |
1366 | ||
1367 | - reading a CYMK TIFF would result in a 4 channel image, reading any | |
1368 | image with more than 4 channels (eg. RGB with 2 alpha channels) would | |
1369 | result in an error. | |
1370 | http://rt.cpan.org/Ticket/Display.html?id=20415 | |
1371 | ||
1372 | - added /usr/local/include to the default include search path, since | |
1373 | we were already searching /usr/local/lib for libraries. | |
1374 | ||
1375 | And various minor fixes and documentation updates. | |
1376 | ||
1377 | ||
1378 | Imager 0.51 - 23 Apr 2006 | |
1379 | =========== | |
1380 | ||
1381 | - fix a validation bug when processing JPEG EXIF data that can cause | |
1382 | a crash | |
1383 | http://rt.cpan.org/Public/Bug/Display.html?id=18496 | |
1384 | ||
1385 | - fix mis-processing of the src_maxx and src_maxy parameters of the | |
1386 | paste() method | |
1387 | http://rt.cpan.org/Public/Bug/Display.html?id=18712 | |
1388 | ||
1389 | - fix a problem in Imager's "smart" handling of the color parameter | |
1390 | to various methods. | |
1391 | http://rt.cpan.org/Public/Bug/Display.html?id=18561 | |
1392 | ||
1393 | ||
1394 | Imager 0.50 - 29 Mar 2006 | |
1395 | =========== | |
1396 | ||
1397 | - CRITICAL: fixes a segmentation fault from attempting to write a 2 | |
1398 | or 4 channel image to jpeg or a 2 channel image to tga where the | |
1399 | output is an in-memeory buffer. | |
1400 | http://rt.cpan.org/Public/Bug/Display.html?id=18397 | |
1401 | ||
1402 | - fixes an incorrect pointer parameter in the PNG code | |
1403 | http://rt.cpan.org/Public/Bug/Display.html?id=18051 | |
1404 | ||
1405 | - skip Inline::C tests when building in a directory with spaces | |
1406 | http://rt.cpan.org/Public/Bug/Display.html?id=18049 |