This repository was archived by the owner on Nov 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCHANGES
More file actions
1447 lines (1098 loc) · 43.7 KB
/
CHANGES
File metadata and controls
1447 lines (1098 loc) · 43.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-----------------------------------------------------------
1.0.10 (Jul 13th 2007)
----------------------
in short:
intermediate CVS
-------------------
bugfixes:
core:
- fixed some compiler-warnings
- fixed display routines called twice for FULL_MNG support in mozlibmngconf.h
- standard windows dll upgraded to zlib 1.2.3
- fixed problem with CLON object during readdisplay() (thanks Winfried!)
- added typecast to appease the compiler (G R-P)
- added more SKIPCHUNK conditionals (G R-P)
- added MORE MNG_NO_1_2_4BIT_SUPPORT (G R-P)
- added provisional support for anIM(mpNG) proposal
- added provisional support for ANG proposal
samples:
- xmngview upgraded to 0.6 (thanks Winfried!)
contrib:
doc:
makefiles:
autoconf:
-----------------------------------------------------------
1.0.9 (jan 30th 2005)
---------------------
in short:
New optimizations save over 20KB on footprint.
Also a few bugfixes and several patches.
Thanks to those sending in their additions and for testing!
To turn on the optimizations do:
#DEFINE MNG_OPTIMIZE_CHUNKINITFREE
#DEFINE MNG_OPTIMIZE_OBJCLEANUP
#DEFINE MNG_OPTIMIZE_CHUNKASSIGN
#DEFINE MNG_OPTIMIZE_CHUNKREADER
(eg. they're not on by default (yet) !)
-------------------
bugfixes:
- fixed chunk pushing mechanism
- fixed bug in writing sBIT for indexed color
- fixed PPLT getchunk/putchunk routines
- fixed MNG_NO_1_2_4BIT_SUPPORT for TBBN1G04.PNG
- cleaned up macro-invocations (thanks to D. Airlie)
core:
- added more SKIPCHUNK conditionals
- replaced MNG_TWEAK_LARGE_FILES with permanent solution
- improved handling of cheap transparency when 16-bit support is disabled
- added some MNG_SUPPORT_WRITE conditionals
- added function to retrieve current FRAM delay
- added MNG_NO_1_2_4BIT_SUPPORT
- added bgr565_a8 canvas-style (thanks to J. Elvander)
- standard windows dll upgraded to zlib 1.2.2
- added LITTLEENDIAN/BIGENDIAN fixtures (thanks J.Stiles)
- inclusion of zlib/lcms/ijgsrc6b with <> instead of ""
- added conditional MNG_OPTIMIZE_CHUNKINITFREE
- added conditional MNG_OPTIMIZE_OBJCLEANUP
- added conditional MNG_OPTIMIZE_CHUNKASSIGN
- added conditional MNG_OPTIMIZE_CHUNKREADER
- fixed problem with global PLTE/tRNS
samples:
contrib:
doc:
- patched jng & mng manual pages (Thanks Peter Breitenlohner)
makefiles:
autoconf:
- patched makefile.am & configure.in (Thanks Peter Breitenlohner)
-----------------------------------------------------------
1.0.8 (aug 5th 2004)
--------------------
in short:
added special data-pushing mechanisms and a few other tid-bits
-------------------
bugfixes:
- fixed problem with PAST usage where source > dest
core:
- added missing get-/put-chunk-jdaa
- added CRC existence & checking flags
- added data-push mechanisms for specialized decoders
- some speed optimizations (thanks to John Stiles)
- defend against using undefined closestream function
- defend against using undefined openstream function
- added check for extreme chunk-lengths
- change worst-case iAlphadepth to 1 for standalone PNGs
- added support for 3+byte pixelsize for JPEG's
- added conditional to allow easier writing of large MNG's
samples:
contrib:
doc:
makefiles:
autoconf:
-----------------------------------------------------------
1.0.7 (March 21st 2004)
-----------------------
in short:
A bunch of new canvas-styles, some bug-fixes, upgraded to latest zlib/lcms
and yet more work to please the Mozilla crowd.
Releasing beta's doesn't seem very responsive, and this one's hardly changed
much anyway. I just wanted to bump to a regular version for Mozilla
re-integration.
-------------------
bugfixes:
- fixed inclusion of IJNG chunk for non-JNG use (J.S)
- fixed bug in chunk-storage of SHOW chunk (where from == to)
- fixed bug in promote_g8_g8 with 16bit support off
core:
- added CANVAS_RGB565 and CANVAS_BGR565 (big thanx to Raphael Assenat!!)
- added CANVAS_RGBA565 and CANVAS_BGRA565 ( -- ditto -- )
- upgraded to zlib 1.2.1
- upgraded to lcms 1.11
- added premultiplied alpha canvas' for RGBA, ARGB, ABGR (thx to John Stiles)
- more optimizations with 16bit support off
- put conditionals around openstream/closestream callbacks.
- fixed typo (MNG_SKIPCHUNK_SAVE -> MNG_SKIPCHUNK_nEED)
- fixed some 64-bit platform compiler warnings
samples:
contrib:
- fixed mngtree sample (Raphael)
- added 5-6-5 canvas to SDL sample (Raphael)
doc:
makefiles:
autoconf:
-----------------------------------------------------------
1.0.6 (oct 19th 2003)
---------------------
in short:
Final release from beta1. No feedback is good feedback I presume,
so here's 1.0.6-final!
-------------------
bugfixes:
core:
samples:
contrib:
doc:
makefiles:
autoconf:
-----------------------------------------------------------
1.0.6-beta1 (sep 14th 2003)
---------------------------
in short:
further footprint-reductions
removing email-addresses
1.0.6 (final) will be out shortly
-------------------
bugfixes:
core:
- added support for reducing the footprint of libmng by macros that optionally
skip unused chunks, remove 16-bit sample support, remove Delta support, and
remove JNG support, to accomodate Mozilla/Firebird.
- further optional removal of unused functions
- added MNG_NO_SUPPORT_FUNCQUERY conditional
- added iPNGdepth member to pData structure
- added conditionals around MAGN chunk support
- added conditionals around non-VLC chunk support
- added conditionals around "mng_display_go*" and other unused functions
- added more conditionals around "promote" functions
- removed email references as appropriate
samples:
contrib:
doc:
makefiles:
autoconf:
-----------------------------------------------------------
1.0.6-alpha1 (aug 2nd 2003)
---------------------------
in short:
This is mostly in the light of footprint-reduction to please the Mozilla
crew with a leaner and meaner libmng. See bug 18574 if you're interested:
http://bugzilla.mozilla.org/show_bug.cgi?id=18574
-------------------
bugfixes:
- B719420 - fixed several MNG_APP_CMS problems
core:
- removed some compiler-warnings
- hiding 12-bit JPEG stuff
- fixed problem with infinite loops during readdisplay()
- added size-optimiation COMPOSE routine usage
- added conditionals around canvas update routines
- added MNG_SKIPCHUNK_cHNK footprint optimizations
- added conditionals around some JNG-supporting code
- added conditionals around 16-bit supporting code
- combined init functions into one function
- replaced nested switches with simple init setup function
- added conditionals zlib and jpeg property accessors
- added size-optimization DIV255B8 routine usage
- added conditionals around 8-bit magn routines
- removed conditionals around 8-bit magn routines
- added MNG_NO_16BIT_SUPPORT and MNG_NO_DELTA_PNG conditionals
- reversed many loops to use decrementing counter
- converted some switches to array references
- removed some redundant checks for iRawlen==0
- optionally use zlib's crc32 function instead of local mng_update_crc
- bugfix empty "if" statement when 16-bit code is enabled
- restored two misplaced #else/#endif blocks
- added conditionals around "mng_display_go*" and other unused functions
- added MNG_NO_LOOP_SIGNALS_SUPPORTED conditional
- fixed duplicate for-loop
- fixed invalid test in promote_imageobject
- added conditionals around PAST chunk support
- fixed "FOOTPRINT_COMPOSEIV" typo (now "FOOTPRINT_DIV")
samples:
contrib:
- updated xmngview
- added MSVC project for creating delta-MNGs: makemng (thanks Alex!)
- added MSVC lib-file for use with the standard libmng.dll (again thanks Alex)
doc:
- updated readme.contrib
makefiles:
autoconf:
-----------------------------------------------------------
1.0.5 (mar 1st 2003)
--------------------
in short:
Only a small fix for progressive jpeg suspension problem.
This is the long-awaited final release containing the new 'dynamic MNG' feature
and bringing MNG compliance to near 100%!
-------------------
bugfixes:
- B683152 - libjpeg suspension not always honored correctly
core:
samples:
contrib:
doc:
makefiles:
autoconf:
-----------------------------------------------------------
1.0.5-rc3 (jan 20th 2003)
-------------------------
in short:
Third release-candidate for the upcoming 1.0.5 version.
Minor bug-fixes and finalizing the accepted proposal (by official vote) for
the TERM/frame_delay changes on mng-list (nov-dec/2002).
-------------------
bugfixes:
- B654627 - fixed SEGV when no gettickcount callback (thanks Adam!)
- B664383 - fixed typo (thanks Dimitri)
- B664911 - fixed buffer overflow during init (thanks Alex!)
core:
- finalized changes in TERM/final_delay to elected proposal (positive vote)
samples:
contrib:
doc:
makefiles:
autoconf:
-----------------------------------------------------------
1.0.5-rc2 (dec 9th 2002)
------------------------
in short:
Second release-candidate for the upcoming 1.0.5 version.
This contains fixes for a few minor details reported by the loyal testers.
It fixes some issues with the goframe/golayer/gotime processing and related
stuff. And it adds a way to disable playback-caching from within the MNG,
which is very useful for streaming-MNG encoders (such as gserver!).
-------------------
bugfixes:
core:
- fixed layer- & frame-counting during read()
- changed FRAMECOUNT/LAYERCOUNT/PLAYTIME error to warning
- fixed goframe/golayer/gotime processing
- added support for nEED "MNG 1.1"
- added support for nEED "CACHEOFF"; turn playback caching off for streaming MNG
- fixed magnification bug with object 0
- added support to get totals for frames/layers/playtime after mng_read()
- fixed some issues in init_app_cms()
- fixed goxxxxx() support for zero values
samples:
contrib:
doc:
makefiles:
autoconf:
-----------------------------------------------------------
1.0.5-rc1 (nov 1st 2002)
------------------------
in short:
First release-candidate for the upcoming 1.0.5 version.
This fixes a few small problems and brings the TERM/MEND processing, with
respect to interframe_delay as per the current discussion on MNG-list,
up-to-date with the latest proposal.
-------------------
bugfixes:
core:
- fixed initialization of pIds in dISC read routine (Thanks Winfried!)
- fixed issue in freeing evNT chunk (Thanks Winfried!)
- fixed clipping-problem with BACK tiling (Thanks Sakura!)
- fixed processing for multiple objects in MAGN (Thanks Sakura!)
- fixed display of visible target of PAST operation (Thanks Sakura!)
- modified TERM/MEND processing for max(1, TERM_delay, interframe_delay)
samples:
contrib:
- fixed typo in Makefile for gtk-mng-view sample
doc:
makefiles:
autoconf:
-----------------------------------------------------------
1.0.5-b3 (oct 15th 2002)
------------------------
in short:
Fairly quick after beta2, since that introduced a couple of unfortunate
booboo's and wasn't very workable. It also changes the standard configure
script to build a standard shared object similar to what I intended.
-------------------
bugfixes:
core:
- fixed support for condition=2 in TERM chunk
- fixed trace-constants for PAST chunk
- added mng_status_dynamic to supports function
samples:
contrib:
doc:
- small cosmetic changes in man/libmng.3
makefiles:
autoconf:
- fixed configure.in to build a 'standard' SO primarily
-----------------------------------------------------------
1.0.5-b2 (oct 9th 2002)
------------------------
in short:
Second beta for next 1.0.5 release. This addresses some minor problems
detected during testing. It adds the proposed change to the MNG spec as
discussed on the "mng-list" recently; eg. Adam's option 4.
And it adds a little function to check at run-time if the lib is a beta or not.
-------------------
bugfixes:
core:
- fixed chunk-storage for evNT chunk
- fixed dropping mix of frozen/unfrozen objects
- fixed problem with cloned objects marked as invalid
- fixed problem cloning frozen object_buffers
- fixed DISC support
- added proposed change in handling of TERM- & interframe-delay
- added another fix for misplaced TERM chunk
- added check for TERM placement during create/write
- completed support for condition=2 in TERM chunk
- added beta version function & constant
samples:
contrib:
doc:
makefiles:
autoconf:
-----------------------------------------------------------
1.0.5-b1 (sep 24th 2002)
------------------------
in short:
First beta of a large maintenance release. This completes support of the MNG
specification to nearly 100% (PAST, PROM, delta-images, BACK image+tile).
It adds "dynamic" MNG and a few other neat routines as well as fixes several
bugs reported through SourceForge or to me directly.
-------------------
bugfixes:
- B575832 - library has wrong patch version number
- B578572 - remove in 1.0.0!
- B578940 - some functions not implemented
- B581625 - large chunks fail with suspension reads
- B597134 - libmng pollutes the linker namespace
core:
- added sanity check for improbable chunklengths
- removed eMNGma hack (thanks Dimitri!)
- unimplemented functions return an errorcode now
- added test-option for PNG filter method 192 (= levelling)
- added test-option for PNG filter method 193 (= no filtering)
(both are conditional and only for testing purposes!!!)
- completed PROM support
- completed delta-image support
- completed MAGN support (16-bit functions)
- added HLAPI function to copy a chunk from a read MNG to a newly created MNG
- added option for soft-handling of errors (only for repair software!!!)
- fixed some routine inclusion/exclusion for undefined conditionals
- pre-fixed all internal routines with mng_
- added symbol MNG_LOCAL (= static) to really local functions
- fixed reading of FRAM with just frame_mode and name
- fixed read/write of MAGN chunk
- added event handling for dynamic MNG
- added 'supports' call to check function availability
- fixed copyright notice in the headers of all libmng modules
- fixed LOOP iteration=0 special case
- re-compiled standard Windows dll with lcms-1.0.9
- added warning for too much IDAT data
- warnings are ignored by default now
- misplaced TERM is now treated as warning
- fixed color-correction for restore-background handling
- optimized restore-background for bKGD cases
- cleaned up some old stuff
- completed support for BACK image & tiling
- completed support for PAST
- added bgrx8 canvas (filler byte)
- fixed reset_object_detail to clear old buffer
- added in-memory color-correction of abstract images
- added compose over/under routines for PAST processing
- added flip & tile routines for PAST processing
samples:
- Added new BCB sample for fixing invalid JASC Animation Shop files
(shows new copy_chunks function; use of MNG_SOFTERRORS & static linking)
contrib:
- added xmngview by Winfried Szukalski (Vielen dank!)
- Updated the Delphi mngview sample to handle dynamic MNGs
- Added Kylix example (simplified port of the Delphi mngview sample)
doc:
- added diff to add MNG&JNG to a systems 'magic' file (Thanks Winfried)
- fixed docs about using mng_display_resume after display_reset
(should read to use mng_display!)
makefiles:
- added makefile to build a libmng.dll for MingW
(makefile.mingwdll - thanks to Frank Richter!)
autoconf:
- fixing libtool version-number to be in line with what it should be
-----------------------------------------------------------
1.0.4 (Jun 23rd 2002)
---------------------
in short:
Just some small fixes
Standard dll now compiled with zlib 1.1.4 and lcms 1.0.8
-------------------
bugfixes:
- B495442 - invalid returnvalue in mng_get_suspensionmode
- B495443 - incorrect suspend check in read_databuffer
- B526138 - returned IJGSRC6B calling convention to default for MSVC
- B558212 - off by one error
- B557677 - can't find lcms.h
core:
- fixed possible compile-problem in cleanup_rowproc
- MNG subimage alpha composite wrong for rgba8 images
samples:
contrib:
doc:
makefiles:
- fixed check for lcms.h in configure.in
autoconf:
-----------------------------------------------------------
1.0.3 (Sep 18th 2001)
---------------------
in short:
Small cosmetic changes. Cleaning up the contributions.
New makefile for mingw32, and new fbcon example.
Major thanks to Greg for helping out with the *nix stuff!
Note that there's also a separate download for ASM programmers now.
Check http://www.libmng.com for details (download/ports&packages page).
It may be a while for the next release. I'm "off duty" for the next 8 or
so months...
Gerard
-------------------
bugfixes:
- B459058 - wrong include for lcms headers
core:
- changed inclusion of lcms.h header for Linux platforms (suggested by Greg)
- added get function for last processed BACK chunk
samples:
- replaced the gtk & sdl viewer apps with updates by Greg Roelofs
contrib:
doc:
makefiles:
- changed makefile.linux & makefile.unix as suggested by Greg Roelofs
(makefile.linux now compiles with lcms by default)
- added makefile.mingw for mingw32 by Benoit Blanchon (thanks Mate!)
autoconf:
-----------------------------------------------------------
1.0.2 (Jul 7th 2001)
--------------------
in short:
Another maintenance release with a few added extra's.
-------------------
bugfixes:
- B421427 - writes wrong format in bKGD and tRNS
- B434583 - compiler-warning if MNG_STORE_CHUNKS undefined
core:
- added optimization option for MNG-video playback
- added processterm callback
- added late binding errorcode (not used internally)
- fixed memory-leak with delta-images (Thanks Michael!)
- added option to turn off progressive refresh for large images
samples:
contrib:
doc:
makefiles:
autoconf:
-----------------------------------------------------------
1.0.1 (May 2nd 2001)
--------------------
in short:
Maintenance release.
Fixed several memory-leaks with the help of Gregg Kelly, added/fixed some CMS
handling, exported JPEG functions from standard DLL, and some other minor fixes.
The CMS fix now makes libmng automagically work in MNG_FULL_CMS mode as a
sRGB compliant system. YOU WILL NEED TO CHANGE THIS IF YOU ARE NOT ON AN sRGB
COMPLIANT SYSTEM AND WANT TO USE CMS!!!!
(look in libmng.h for the proper function-calls)
-------------------
bugfixes:
core:
- added MEND processing callback
- fixed first FRAM_MODE=4 timing problem
- added handle status-copy function (use with care)
- exported JPEG functions from standard DLL
- added BGRA8 canvas with premultiplied alpha (contrib by Gregg Kelly)
- fixed problem with display_reset/display_resume (Thanks Gregg!)
- fixed several memory-leaks (Thanks Gregg!)
- fixed reset_rundata to drop all objects (Thanks again, Gregg!)
- fixed problem with cms profile being created multiple times when both
iCCP & cHRM/gAMA are present (And again... Gregg)
- moved mng_clear_cms to libmng_cms
- added "default" sRGB generation (Thanks Marti!)
samples:
contrib:
doc:
makefiles:
autoconf:
-----------------------------------------------------------
1.0.0 (Feb 6th 2001)
--------------------
in short:
First public release. Finally(!)
This is the 0.9.5 CVS version, which will never be released, because I feel it
is now ready for a public release. So apart from the version-numbers here and
there, all other changes are listed under 0.9.5.
This library will work with every MNG/JNG known and available to me. Note that
there are still parts that need to be coded, and that MNG support is around
90-95% (JNG at 100%). It is however compliant with the latest and greatest
MNG 1.0 specification.
I hope to dedicate a bit more time this year to finish up full support and fill
in the remaining blanks. But this is coming out of my spare time. And extra
help is always appreciated.
Please enjoy!
Gerard
-----------------------------------------------------------
0.9.5 (no release)
------------------
in short:
intermediate CVS
-------------------
bugfixes:
B129681 - fixed compiler warnings SGI/Irix (thanks Dimitri)
core:
- fixed compiler-warnings Mozilla (thanks Tim)
- fixed timing-problem with switching framing_modes
- fixed some small compiler warnings (thanks Nikki)
samples:
contrib:
- fixed library-paths for MSVC DLL project (thanks Chad)
doc:
makefiles:
- added makefile for DJGPP (thanks Silvio)
autoconf:
-----------------------------------------------------------
0.9.4 (Jan 19th 2001)
----------------------
in short:
Now that the MNG spec is at 1.0, this should be the last beta. There's a few
small changes to make it inline with the spec, and a couple of bug-fixes.
This is a serious release-candidate for libmng-1.0!!
Please... test test test test!!
-------------------
bugfixes:
B123314 - fixed number of TERM related problems
B123322 - fixed unwanted repetition in mng_readdisplay()
B123443 - fixed by Ralph
B124910 - fixed definition for WIN32_LEAN_AND_MEAN (thanks Chad)
B125750 - fixed by Ralph
B125756 - fixed mixup of data- & function-pointers (thanks Dimitri)
B127517 - changed inclusion of the lcms header file for non-windows platforms
core:
- version numbers
- fixed possible loop in display_resume() (Thanks Vova!)
- fixed unwanted repetition in mng_readdisplay()
- changed inclusion of the lcms header file for non-windows platforms
- changed IHDR filter_method check for PNGs
- moved restore of object 0 to libmng_display
- added restore of object 0 to TERM processing (B123314)
- fixed TERM delay processing (B123314)
- fixed TERM end processing when count = 0 (B123314)
- changed callback convention for MSVC (Thanks Chad)
- fixed mixup of data- & function-pointers (thanks Dimitri)
- added support for "nEED MNG-1.0"
- added errorcode for MAGN methods
- added errorchecking for MAGN methods
- removed "old" MAGN methods 3 & 4
- added "new" MAGN methods 3, 4 & 5
- removed test filter-methods 1 & 65
- set default level-set for filtertype=64 to all zeroes
samples:
contrib:
- added GTK mng-view example by Vova Babin
- added MSVC MNGview sample by Nikolaus Brennig
- updated Jason Summer's mngplg to version 0.9.2
(that's mngplg-0.9.2 based on libmng-0.9.3 !!!)
- rearranged contrib directory slightly
- added MSVC project to build libmng.dll by Chad Austin
doc:
- added README.dll
- added README.config
makefiles:
- added a makefile for MS Visual C++ (Thanks to Atsushi Matsuda)
autoconf:
- fixed configure.in for lcms (FreeBSD port by Mikhail Teterin)
- by default configure includes CMS support if lcms is present
-----------------------------------------------------------
0.9.3 (October 29th 2000)
-------------------------
in short:
Another beta release. The number of changes in the MNG specification have
resulted in a lot of new code and some changed code. At the same time I saw
no need to withhold some new functionality as it was pretty clear there was
going to be another beta-round. If things go well, I'm going to try to release
libmng 1.0.0 very shortly after this one.
Many thanks to a lot of people for helping out, sending contributions, making
suggestions and testing this little baby. This would get nowhere without YOU!!!
- fixed bug 111300/117103
- added workaround for faulty PhotoShop iCCP chunk
- added MAGN/JDAA chunks
- added support for new filter_types
- added PNG/MNG spec version indicators
- added BCB mngview contribution by Andy Protano
- added BCB mngdump; a GUI-based MNG dumping utility (Andy Protano)
- implemented support for nEED "draft nn"
- implemented app-defined support for bKGD for PNG images
- removed trace-options from default SO/DLL builds (!!!)
- raised initial maximum canvas size to 10000x10000 (!!!)
(an App that wants to protect from overly large images should call
mng_set_maxcanvassize() with appropriate values)
- fixed other assorted stuff
-------------------
bugfixes:
B111300 - fixup for improved portability
B117103 - fixed compilation errors on *nix with lcms (thanks Ralph!)
core:
- fixed compiler-warnings from Mozilla
- added check for simplicity-bits in MHDR
- added workaround for faulty PhotoShop iCCP chunk
- fixed app-supplied background restore
- fixed TERM processing delay of 0 msecs
- fixed write-code for zTXt & iTXt
- fixed read-code for iTXt
- added MAGN chunk
- fixed sRGB precedence for gamma_only corection
- added support for new filter_types
- fixed problem with no refresh after TERM
- fixed DEFI behavior
- fixed inclusion parameters to make the external libs work together
- added export of zlib functions from windows dll
- fixed timing & refresh behavior for single PNG/JNG
- removed trace-options from default SO/DLL builds (!!!)
- fixed MAGN rounding errors (thanks Matthias!)
- fixed small timing problem when FRAM delay = 0
- fixed simplicity-check in compliance with draft 81/0.98a
- fixed alpha-blending for all alpha-canvasstyles
- added support for alpha-depth prediction
- fixed processing of unknown critical chunks
- removed test-MaGN
- added PNG/MNG spec version indicators
- implemented support for nEED
- added support for JDAA
- added functions to retrieve PNG/JNG specific header-info
- added optional support for bKGD for PNG images
- raised initial maximum canvas size to 10000x10000
- added support for delta-JNG
- added callback to process non-critical unknown chunks
- fixed support for delta-images during read() / display()
- added closestream() processing for mng_cleanup()
- fixed delta-processing behavior
- added storage for pixel-/alpha-sampledepth for delta's
- implemented delayed delta-processing
- fixed putchunk_plte() to set bEmpty parameter (thanks Ben!)
- added errorcode for delayed delta-processing
- added get/set for bKGD preference setting
- added get function for interlace/progressive display
- fixed bug in empty PLTE handling
- fixed seperate read() & display() processing
- fixed tRNS processing for gray-image < 8-bits
samples:
- added BCB mngview contribution by Andy Protano
contrib:
- added BCB mngdump; a GUI-based MNG dumping utility (Andy Protano)
doc:
- updated RPM spec-file by MATSUURA Takanori
- updated README.contrib
makefiles:
- fixed some stuff in automake/autoconf/libtool
- fixed auto* for bug B117103
-----------------------------------------------------------
0.9.2 (August 7th 2000)
-----------------------
in short:
Third beta release! Last one???
!!IMPORTANT!! All file-names are now prefixed with "libmng_" !!IMPORTANT!!
Many thanks to Albert Chin-A-Young for his contribution of the
autoconf/automake/libtool stuff and to Ralph Giles for helping me
put it in the right places.
There's a special README.autoconf so please read it!
- fixed bug 110320/110546/110547/111096
- added several status retrieval functions
- fixed other small bugs in display processing
- fixed number of small problems and documentation typos
- added autoconf/automake/libtool
- added latest MNG plugin (0.9.0) by Jason Summers
-------------------
bugfixes:
B110320 - fixed GCC warning about mix-sized pointer math
B110546 - fixed for improperly returning UNEXPECTEDEOF
B110547 - fixed bug in interlace code
B111096 - fixed large-buffer read-suspension
core:
- version numbers
- fixed small bugs in display processing
- removed Nextbackxxx fields (no longer used)
- fixed problem with trace-functions improperly wrapped
- put specific code in add_chunk() inside MNG_SUPPORT_WRITE wrapper
- fixed documentation typos
- fixed wrapping of suspension parameters
- added status_xxxx functions
- added trace-codes/-strings for status_xxxxx functions
- changed file-prefixes
- added function to set simplicity field
- added trace-code/-string for updatemngsimplicity
- fixed putchunk_unknown() function
samples:
contrib:
- added latest MNG plugin (0.9.0) by Jason Summers