1998-04-21 20:03:57 +00:00
|
|
|
|
2011-10-27 17:05:58 +00:00
|
|
|
Libpng 1.5.6rc02 - October 27, 2011
|
1998-04-21 20:03:57 +00:00
|
|
|
|
2011-09-22 14:08:31 +00:00
|
|
|
This is not intended to be a public release. It will be replaced
|
|
|
|
within a few weeks by a public version or by another test version.
|
1998-04-21 20:03:57 +00:00
|
|
|
|
2006-02-22 15:19:25 +00:00
|
|
|
Files available for download:
|
|
|
|
|
|
|
|
Source files with LF line endings (for Unix/Linux) and with a
|
|
|
|
"configure" script
|
|
|
|
|
2011-10-26 13:41:37 +00:00
|
|
|
1.5.6rc02.tar.xz (LZMA-compressed, recommended)
|
|
|
|
1.5.6rc02.tar.gz
|
|
|
|
1.5.6rc02.tar.bz2
|
2006-03-31 11:29:33 +00:00
|
|
|
|
2006-02-22 15:19:25 +00:00
|
|
|
Source files with CRLF line endings (for Windows), without the
|
|
|
|
"configure" script
|
|
|
|
|
2011-10-26 13:41:37 +00:00
|
|
|
lp156r02.7z (LZMA-compressed, recommended)
|
|
|
|
lp156r02.zip
|
2006-02-22 15:19:25 +00:00
|
|
|
|
|
|
|
Other information:
|
|
|
|
|
2011-10-26 13:41:37 +00:00
|
|
|
1.5.6rc02-README.txt
|
|
|
|
1.5.6rc02-LICENSE.txt
|
2011-09-22 17:41:58 +00:00
|
|
|
|
|
|
|
Changes since the last public release (1.5.5):
|
|
|
|
|
|
|
|
Version 1.5.6beta01 [September 22, 2011]
|
|
|
|
Fixed some 64-bit type conversion warnings in pngrtran.c
|
|
|
|
Moved row_info from png_struct to a local variable.
|
|
|
|
The various interlace mask arrays have been made into arrays of
|
|
|
|
bytes and made PNG_CONST and static (previously some arrays were
|
|
|
|
marked PNG_CONST and some weren't).
|
|
|
|
Additional checks have been added to the transform code to validate the
|
|
|
|
pixel depths after the transforms on both read and write.
|
|
|
|
Removed some redundant code from pngwrite.c, in png_desgtroy_write_struct().
|
|
|
|
Changed chunk reading/writing code to use png_uint_32 instead of png_byte[4].
|
|
|
|
This removes the need to allocate temporary strings for chunk names on
|
|
|
|
the stack in the read/write code. Unknown chunk handling still uses the
|
|
|
|
string form because this is exposed in the API.
|
2011-09-22 14:08:31 +00:00
|
|
|
|
2011-09-28 12:30:47 +00:00
|
|
|
Version 1.5.6beta02 [September 26, 2011]
|
2011-09-26 21:35:22 +00:00
|
|
|
Added a note in the manual the png_read_update_info() must be called only
|
|
|
|
once with a particular info_ptr.
|
2011-09-26 21:43:08 +00:00
|
|
|
Fixed a typo in the definition of the new PNG_STRING_FROM_CHUNK(s,c) macro.
|
2011-09-26 21:35:22 +00:00
|
|
|
|
2011-09-28 12:20:10 +00:00
|
|
|
Version 1.5.6beta03 [September 28, 2011]
|
2011-09-27 01:57:33 +00:00
|
|
|
Revised test-pngtest.sh to report FAIL when pngtest fails.
|
|
|
|
Added "--strict" option to pngtest, to report FAIL when the failure is
|
2011-09-28 00:01:58 +00:00
|
|
|
only because the resulting valid files are different.
|
|
|
|
Revised CMakeLists.txt to work with mingw and removed some material from
|
|
|
|
CMakeLists.txt that is no longer useful in libpng-1.5.
|
2011-09-26 21:49:01 +00:00
|
|
|
|
2011-10-05 21:23:53 +00:00
|
|
|
Version 1.5.6beta04 [October 5, 2011]
|
|
|
|
Fixed typo in Makefile.in and Makefile.am ("-M Wl" should be "-M -Wl")."
|
2011-09-28 12:30:47 +00:00
|
|
|
|
2011-10-12 11:36:56 +00:00
|
|
|
Version 1.5.6beta05 [October 12, 2011]
|
2011-10-07 02:54:17 +00:00
|
|
|
Speed up png_combine_row() for interlaced images. This reduces the generality
|
|
|
|
of the code, allowing it to be optimized for Adam7 interlace. The masks
|
|
|
|
passed to png_combine_row() are now generated internally, avoiding
|
|
|
|
some code duplication and localizing the interlace handling somewhat.
|
2011-10-07 03:27:16 +00:00
|
|
|
Align png_struct::row_buf - previously it was always unaligned, caused by
|
|
|
|
a bug in the code that attempted to align it; the code needs to subtract
|
|
|
|
one from the pointer to take account of the filter byte prepended to
|
|
|
|
each row.
|
2011-10-07 23:48:10 +00:00
|
|
|
Optimized png_combine_row() when rows are aligned. This gains a small
|
2011-10-07 23:36:37 +00:00
|
|
|
percentage for 16-bit and 32-bit pixels in the typical case where the
|
|
|
|
output row buffers are appropriately aligned. The optimization was not
|
|
|
|
previously possible because the png_struct buffer was always misaligned.
|
2011-10-13 22:24:36 +00:00
|
|
|
Fixed bug in png_write_chunk_header() debug print, introduced in 1.5.6beta01.
|
2011-10-05 21:44:35 +00:00
|
|
|
|
2011-10-17 03:42:46 +00:00
|
|
|
Version 1.5.6beta06 [October 17, 2011]
|
2011-10-13 22:24:36 +00:00
|
|
|
Removed two redundant tests for unitialized row.
|
2011-10-14 17:33:52 +00:00
|
|
|
Fixed a relatively harmless memory overwrite in compressed text writing
|
|
|
|
with a 1 byte zlib buffer.
|
2011-10-15 00:43:53 +00:00
|
|
|
Add ability to call png_read_update_info multiple times to pngvalid.c
|
2011-10-14 23:19:47 +00:00
|
|
|
Fixes for multiple calls to png_read_update_info. These fixes attend to
|
|
|
|
most of the errors revealed in pngvalid, however doing the gamma work
|
|
|
|
twice results in inaccuracies that can't be easily fixed. There is now
|
|
|
|
a warning in the code if this is going to happen.
|
2011-10-17 03:42:46 +00:00
|
|
|
Turned on multiple png_read_update_info in pngvalid transform tests.
|
2011-10-17 12:58:24 +00:00
|
|
|
Prevent libpng from overwriting unused bits at the end of the image when
|
2011-10-17 03:52:56 +00:00
|
|
|
it is not byte aligned, while reading. Prior to libpng-1.5.6 libpng would
|
2011-10-21 17:57:01 +00:00
|
|
|
overwrite the partial byte at the end of each row if the row width was not
|
|
|
|
an exact multiple of 8 bits and the image is not interlaced.
|
2011-10-12 11:49:54 +00:00
|
|
|
|
2011-10-21 12:29:52 +00:00
|
|
|
Version 1.5.6beta07 [October 21, 2011]
|
2011-10-17 20:25:03 +00:00
|
|
|
Made png_ptr->prev_row an aligned pointer into png_ptr->big_prev_row
|
|
|
|
(Mans Rullgard).
|
2011-10-17 13:03:25 +00:00
|
|
|
|
2011-10-26 13:36:21 +00:00
|
|
|
Version 1.5.6rc01 [October 26, 2011]
|
2011-10-21 17:57:01 +00:00
|
|
|
Changed misleading "Missing PLTE before cHRM" warning to "Out of place cHRM"
|
2011-10-21 12:34:49 +00:00
|
|
|
|
2011-10-27 17:05:58 +00:00
|
|
|
Version 1.5.6rc02 [October 27, 2011]
|
|
|
|
Added LSR() macro to defend against buggy compilers that evaluate non-taken
|
|
|
|
code branches and complain about out-of-range shifts.
|
2011-10-26 13:41:37 +00:00
|
|
|
|
2011-09-22 14:08:31 +00:00
|
|
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net:
|
2006-08-19 18:59:24 +00:00
|
|
|
(subscription required; visit
|
2006-02-21 04:09:05 +00:00
|
|
|
https://lists.sourceforge.net/lists/listinfo/png-mng-implement
|
2011-09-22 14:08:31 +00:00
|
|
|
to subscribe) or to glennrp at users.sourceforge.net
|
1998-04-21 20:03:57 +00:00
|
|
|
|
1998-12-29 17:47:59 +00:00
|
|
|
Glenn R-P
|