1998-04-21 20:03:57 +00:00
|
|
|
|
2007-08-18 10:34:04 +00:00
|
|
|
Libpng 1.2.19 - August 18, 2007
|
1998-04-21 20:03:57 +00:00
|
|
|
|
2007-08-18 10:34:04 +00:00
|
|
|
This is a public release of libpng, intended for use in production codes.
|
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
|
|
|
|
|
2007-08-18 10:34:04 +00:00
|
|
|
libpng-1.2.19.tar.gz
|
|
|
|
libpng-1.2.19.tar.bz2
|
2006-03-31 11:29:33 +00:00
|
|
|
|
|
|
|
Source files with LF line endings (for Unix/Linux) without the
|
|
|
|
"configure" script
|
|
|
|
|
2007-08-18 10:34:04 +00:00
|
|
|
libpng-1.2.19-no-config.tar.gz
|
|
|
|
libpng-1.2.19-no-config.tar.bz2
|
2006-02-22 15:19:25 +00:00
|
|
|
|
|
|
|
Source files with CRLF line endings (for Windows), without the
|
|
|
|
"configure" script
|
|
|
|
|
2007-08-18 10:34:04 +00:00
|
|
|
lpng1219.zip
|
|
|
|
lpng1219.tar.bz2
|
2006-02-22 15:19:25 +00:00
|
|
|
|
|
|
|
Project files
|
|
|
|
|
2007-08-18 10:34:04 +00:00
|
|
|
libpng-1.2.19-project-netware.zip
|
|
|
|
libpng-1.2.19-project-wince.zip
|
2006-02-22 15:19:25 +00:00
|
|
|
|
|
|
|
Other information:
|
|
|
|
|
2007-08-18 10:34:04 +00:00
|
|
|
libpng-1.2.19-README.txt
|
|
|
|
libpng-1.2.19-KNOWNBUGS.txt
|
|
|
|
libpng-1.2.19-LICENSE.txt
|
|
|
|
libpng-1.2.19-Y2K-compliance.txt
|
2007-05-09 19:08:41 +00:00
|
|
|
|
2007-05-18 18:40:59 +00:00
|
|
|
Changes since the last public release (1.2.18):
|
2007-05-15 23:52:42 +00:00
|
|
|
|
2007-08-18 10:34:04 +00:00
|
|
|
version 1.2.19 [August 18, 2007]
|
|
|
|
|
2007-05-18 18:40:59 +00:00
|
|
|
Changed "const static" to "static PNG_CONST" everywhere, mostly undoing
|
|
|
|
change of libpng-1.2.17beta2. Changed other "const" to "PNG_CONST"
|
2007-05-19 05:36:49 +00:00
|
|
|
Fixed png_do_expand() to only use the appropriate bits of tRNS value.
|
2007-08-18 10:34:04 +00:00
|
|
|
Fixed png_handle_tRNS() to only use the appropriate bits of tRNS value.
|
2007-05-20 03:12:32 +00:00
|
|
|
Add some "png_byte" typecasts in png_check_keyword().
|
|
|
|
Write new_key instead of key in zTXt chunk.
|
2007-05-21 18:27:47 +00:00
|
|
|
Add png_snprintf() function and use it in place of sprint() for improved
|
|
|
|
defense against buffer overflows.
|
2007-08-18 10:34:04 +00:00
|
|
|
Changed handling of some unused parameters, to avoid compiler warnings.
|
2007-05-21 18:27:47 +00:00
|
|
|
Removed some PNG_CONST in pngwutil.c to avoid compiler warnings.
|
2007-05-22 09:58:45 +00:00
|
|
|
Added some #ifdef PNG_MMX_CODE_SUPPORTED where needed in pngvcrd.c
|
2007-08-18 10:34:04 +00:00
|
|
|
Squelched png_squelch_warnings() in pnggccrd.c; Use "__attribute__((used))"
|
|
|
|
instead.
|
2007-05-22 21:40:41 +00:00
|
|
|
Removed __MMX__ from test in pngconf.h.
|
2007-05-23 18:02:40 +00:00
|
|
|
Updated makefile.sgcc and makefile.solaris; added makefile.solaris-x86.
|
2007-05-28 13:45:13 +00:00
|
|
|
Return 0 from png_get_sPLT() and png_get_unknown_chunks() if png_ptr is NULL;
|
|
|
|
changed three remaining instances of png_strcpy() to png_strncpy() (David
|
|
|
|
Hill).
|
2007-06-15 15:13:25 +00:00
|
|
|
Make test for NULL row_buf at the beginning of png_do_read_transformations
|
|
|
|
unconditional.
|
|
|
|
Prefer PNG_USE_PNGVCRD when _MSC_VER is defined in pngconf.h
|
2007-06-17 00:48:49 +00:00
|
|
|
Revised pnggccrd.c.
|
2007-06-19 01:53:52 +00:00
|
|
|
Updated contrib/gregbook.
|
2007-06-20 00:05:48 +00:00
|
|
|
Changed '#include "pnggccrd.c"' to 'include "$srcdir/pnggccrd.c"'
|
2007-06-19 01:53:52 +00:00
|
|
|
in configure.ac
|
2007-06-20 00:05:48 +00:00
|
|
|
Revised many of the makefiles, to set -DPNG_NO_MMX_CODE where needed
|
|
|
|
and to not use -O3 unless -DPNG_NO_MMX_CODE is also set.
|
2007-06-23 02:40:24 +00:00
|
|
|
Copied optimized C code from pnggccrd.c to pngrutil.c, removed dependency
|
|
|
|
on pnggccrd.o from many makefiles.
|
|
|
|
Added sl and dylib to list of extensions be installed by Makefile.am
|
2007-06-28 21:04:25 +00:00
|
|
|
Fixed testing PNG_RGB_TO_GRAY_ERR & PNG_RGB_TO_GRAY_WARN in pngrtran.c
|
2007-08-18 10:34:04 +00:00
|
|
|
Revised pngvcrd.c.
|
2007-06-29 01:01:55 +00:00
|
|
|
Rebuilt Makefile.in and configure using libtool-1.5.24.
|
2007-06-30 10:26:07 +00:00
|
|
|
Added "test" target to Makefile.in and Makefile.am
|
2007-07-03 21:28:18 +00:00
|
|
|
Added info about pngrutil/pnggccrd/pngvcrd to png_get_header_version()
|
2007-08-18 10:34:04 +00:00
|
|
|
Added PNG_NO_WRITE_FILTER and PNG_NO_WARNING macros.
|
2007-07-14 19:43:24 +00:00
|
|
|
Added contrib/pngminim to demonstrate building minimal encoder and decoder
|
2007-07-17 02:44:06 +00:00
|
|
|
Changed "png_free(str)" to "png_free(png_ptr,str)" in pngrutil.c WinCE
|
|
|
|
code (Yves Piguet). This bug was introduced in libpng-1.2.14.
|
|
|
|
Updated scripts/CMakeLists.txt
|
2007-07-18 03:18:54 +00:00
|
|
|
Fixed incorrect stride and number of bytes copied (was 4 instead of
|
|
|
|
6 bytes) in the cleanup loop of pnggccrd.c and pngvcrd.c for handling
|
|
|
|
the end of 48-bit interlaced rows (Glenn R-P).
|
2007-07-19 01:05:37 +00:00
|
|
|
Added png_warning() in pngrutil.c for short iCCP, iTXt, sPLT, or zTXT chunks.
|
|
|
|
Revised pngtest.c so warnings are displayed regardless of PNG_NO_STDIO.
|
2007-07-31 17:43:32 +00:00
|
|
|
Disable PNG_MMX_CODE_SUPPORTED when PNG_ASSEMBLER_CODE_SUPPORTED is off.
|
|
|
|
Added information about disabling the MMX code in libpng documentation.
|
2007-08-04 12:41:40 +00:00
|
|
|
Removed some "#if 0" blocks.
|
|
|
|
Made a global struct local in pngvcrd.c to make it thread safe.
|
2007-08-10 02:45:43 +00:00
|
|
|
Change default to PNG_NO_GLOBAL_ARRAYS for MSVC.
|
2007-08-10 20:49:26 +00:00
|
|
|
Revise handling of png_strtod in recent versions of WINCE
|
2007-08-18 10:34:04 +00:00
|
|
|
Issue a png_error() if application attempts to transform a row tht
|
|
|
|
has not been initialized.
|
2007-08-15 12:10:27 +00:00
|
|
|
|
2006-02-21 04:09:05 +00:00
|
|
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
|
|
|
(subscription required; visit
|
|
|
|
https://lists.sourceforge.net/lists/listinfo/png-mng-implement
|
|
|
|
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
|