diff --git a/ANNOUNCE b/ANNOUNCE index 575a01408..fd0a0fa04 100644 --- a/ANNOUNCE +++ b/ANNOUNCE @@ -1,5 +1,5 @@ -Libpng 1.5.14beta02 - December 10, 2012 +Libpng 1.5.14beta02 - December 15, 2012 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. @@ -32,10 +32,12 @@ Version 1.5.14beta01 [October 24, 2012] Fixed build when using #define PNG_NO_READ_GAMMA in png_do_compose() in pngrtran.c (Domani Hannes). -Version 1.5.14beta02 [December 10, 2012] +Version 1.5.14beta02 [December 15, 2012] Added missing "-" in front of DNO_GZIP in contrib/pngminim/*/makefile. Check for png_ptr==NULL earlier in png_zalloc(). Ignore, with a warning, out-of-range value of num_trans in png_set_tRNS(). + Fixed a minor bug in types to malloc and major bug in handling compressed + iTXt. Compressed iTXt could not be handled. Send comments/corrections/commendations to png-mng-implement at lists.sf.net (subscription required; visit @@ -44,11 +46,3 @@ to subscribe) or to glennrp at users.sourceforge.net Glenn R-P -#endif - -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 - -Glenn R-P diff --git a/CHANGES b/CHANGES index e2b909e9a..3387d934e 100644 --- a/CHANGES +++ b/CHANGES @@ -3925,10 +3925,12 @@ Version 1.5.14beta01 [October 24, 2012] Fixed build when using #define PNG_NO_READ_GAMMA in png_do_compose() in pngrtran.c (Domani Hannes). -Version 1.5.14beta02 [December 10, 2012] +Version 1.5.14beta02 [December 15, 2012] Added missing "-" in front of DNO_GZIP in contrib/pngminim/*/makefile. Check for png_ptr==NULL earlier in png_zalloc(). Ignore, with a warning, out-of-range value of num_trans in png_set_tRNS(). + Fixed a minor bug in types to malloc and major bug in handling compressed + iTXt. Compressed iTXt could not be handled. Send comments/corrections/commendations to png-mng-implement at lists.sf.net (subscription required; visit diff --git a/pngrutil.c b/pngrutil.c index 4ef05fe44..d6e93a310 100644 --- a/pngrutil.c +++ b/pngrutil.c @@ -1,7 +1,7 @@ /* pngrutil.c - utilities to read a PNG file * - * Last changed in libpng 1.5.10 [March 8, 2012] + * Last changed in libpng 1.5.14 [(PENDING RELEASE)] * Copyright (c) 1998-2012 Glenn Randers-Pehrson * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) diff --git a/pngwutil.c b/pngwutil.c index 19b75afa3..24145cec6 100644 --- a/pngwutil.c +++ b/pngwutil.c @@ -1,7 +1,7 @@ /* pngwutil.c - utilities to write a PNG file * - * Last changed in libpng 1.5.10 [March 8, 2012] + * Last changed in libpng 1.5.14 [(PENDING RELEASE)] * Copyright (c) 1998-2012 Glenn Randers-Pehrson * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)