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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
|
2007-04-09 18:21 pajoye
* NEWS: - #72 entry
2007-04-09 18:18 pajoye
* gd.c, tests/gdimageline/bug00072.c,
tests/gdimageline/bug00072_exp.png: - #72, gdImageAALine draws
axis aligned lines two pixels large . add gdImageVLine and
HLine, not exported (will be 2.1.0)
2007-04-09 16:00 pajoye
* tests/: gdimageline/gdimageline_aa.c, gdtest/gdtest.c,
gif/bug00005.c: - always store image diff files in the build dir
- store the output result as well - remove c++ comment - be more
verbose in the error messages
2007-04-04 14:04 pajoye
* tests/gif/: CMakeLists.txt, bug00060.c, bug00066.c, bug00066.gif,
bug00066_exp.png: - add test for #66 - fix leak in test #60
2007-04-04 13:38 pajoye
* NEWS: - #70 entry
2007-04-04 13:33 pajoye
* gd_gif_in.c: - #70, do not try to use the global color map if
none exists - free im on error
2007-04-03 19:03 pajoye
* NEWS: - update NEWS entries for the last commits
2007-04-03 18:38 pajoye
* gdft.c: - we already lock it earlier, prevent deadlock/double
lock
2007-04-01 22:41 pajoye
* gd.c, gd_png.c, gdft.c: - #67, Preferable calls of gdFree() in
libg (tabe at fixedpoint dot jp)
2007-04-01 22:12 pajoye
* tests/gdtest/test_config.h.cmake: - add configuration file
2007-04-01 21:54 pajoye
* gd_gif_in.c: - #52, #60, #66 - a frame size must be confined to
the screen defition - consider 00005_2 as invalid (65k x
65k frame size for a 400x312 screen) - be sure to always
read the dimensions in the frame and does not use the screen
size (see #66 for a side effect)
2007-04-01 21:48 pajoye
* tests/: gd2/gd2_empty_file.c, gd2/gd2_read.c,
gdimagecopyrotated/bug00020.c, gdimagefill/bug00002_1.c,
gdimagefill/bug00002_2.c, gdimagefill/bug00002_3.c,
gdimagefill/bug00002_4.c, gdimagefilledellipse/bug00010.c,
gdimageline/gdimageline_aa.c, gdtest/CMakeLists.txt,
gdtest/gdtest.c, gif/CMakeLists.txt, gif/bug00005.c,
gif/bug00060.c, gif/bug00060.gif, jpeg/jpeg_empty_file.c,
jpeg/jpeg_read.c, png/bug00011.c, png/bug00033.c: - allow tests
to be launched outside the src tree - #60, add test case for #60
2007-03-31 19:24 pajoye
* entities.h: - update from entities.tcl
2007-03-31 16:26 pajoye
* gd_gif_in.c: - #52, #60 - local Pallette are read twice - Use
the local dimension when available - Rely on the global
dimension when the local dimension are invalid and the format
is GIF87 (no animation) NB: The #52 TS patch must be applied
first
2007-03-15 23:25 nlopess
* tests/gif/bug00005_2.c: MFB: fix leak in test
2007-03-15 23:23 nlopess
* tests/gif/bug00005_2.c: fix leak in test
2007-03-12 17:05 pajoye
* CMakeLists.txt: -MFB: - generate config.h in the BUIL_DIR
instead of the SOURCE_DIR - drop old commented lines
2007-03-12 17:01 pajoye
* CMakeLists.txt: - generate config.h in the BUIL_DIR instead of
the SOURCE_DIR - drop old commented lines
2007-03-08 21:02 nlopess
* gd_gif_in.c: MFB: fix bug #52: Reading GIF images is not thread
safe (static usage in private functions)
2007-03-08 20:59 nlopess
* NEWS: fix news, sorry
2007-03-08 20:56 nlopess
* NEWS, gd_gif_in.c: fix bug #52: Reading GIF images is not thread
safe (static usage in private functions)
2007-03-08 20:52 pajoye
* ISSUES: - we use NEWS now
2007-03-07 20:30 nlopess
* CMakeLists.txt: set HAVE_FT2BUILD_H when ft2build.h file is found
2007-03-07 16:53 pajoye
* CMakeLists.txt: - fix windows cmake support - use BGDWIN32 for
now, static build and other windows options will follow shortly
2007-03-07 16:52 pajoye
* cmake/modules/FindFreetype.cmake: - windows may have
freetype2.lib
2007-03-05 16:42 pajoye
* Makefile.am, NEWS, windows/Makefile: - #51 - revert Ilia's patch
(was not required) - Remove strlcpy, we don't need it now (I
keep it in cvs just in case but it will not be distributed or
used in the binaries)
2007-03-02 23:02 nlopess
* gd_gif_in.c: MFB
2007-03-02 22:59 nlopess
* cmake/modules/FindPTHREAD.cmake: fix pthread support in cmake
toolchain
2007-03-02 22:59 nlopess
* gd_gif_in.c: merge with php tree: fix access to unitialized
memory (introduced with the strlcpy usage) # now gd_strlcpy()
becomes useless again :P
2007-03-02 15:36 edink
* windows/Makefile: Add new file compilation
2007-02-27 21:32 pajoye
* windows/Makefile: - MFH: fix new lines, vc7 does not like
makefile with both unix and windows line ending
2007-02-27 21:32 pajoye
* windows/Makefile: - fix new lines, vc7 does not like makefile
with both unix and windows line ending
2007-02-27 01:38 pajoye
* NEWS: - andersrum..
2007-02-27 00:55 pajoye
* ChangeLog: - update Changelog
2007-02-27 00:55 pajoye
* NEWS: - update NEWS for 2.0.35RC1
2007-02-27 00:46 pajoye
* gd.c: - #41, fix possible overrun (detected with valgrind) (Nuno
Lopes)
2007-02-27 00:39 pajoye
* CMakeLists.txt, Makefile.am, gd.h, gd_gif_in.c, strlcpy.c: - #51,
Use strlcpy instead of strncpy in gd_gif_c - fix off-by-one
2007-02-26 20:59 pajoye
* gdft.c: - #48, Race condition in gdImageStringFTEx It is safe
to destroy a unlocked mutex, not a locked one (Nuno Lopes)
2007-02-26 20:58 pajoye
* gdft.c: - #48, Race condition in gdImageStringFTEx it is safe
to destroy an unlocked mutex, not a locked one (Nuno Lopes)
2007-02-26 20:30 pajoye
* gdft.c: - MFB: #48, Race condition in gdImageStringFTEx (cache)
2007-02-26 20:30 pajoye
* gdft.c: - #48, Race condition in gdImageStringFTEx (cache)
2007-02-07 01:32 pajoye
* ChangeLog: - sync
2007-02-07 01:27 pajoye
* NEWS: - add CVE ref.
2007-02-07 01:26 pajoye
* ChangeLog: - sync changelog
2007-02-07 01:26 pajoye
* gd.h: - go for 2.0.34
2007-02-07 01:24 pajoye
* gd.c: - MFB: ansi/windows build fix, all declarations must be on
top (Edin)
2007-02-07 01:21 pajoye
* gd.c: - ansi/windows build fix, all declarations must be on top
(Edin)
2007-02-07 01:14 pajoye
* NEWS: - #40
2007-02-07 01:12 pajoye
* gdft.c: - #40 — possible Buffer overflow in the
gdImageStringFTEx function in gdft.c (patch by Kees Kook)
2007-02-06 23:29 pajoye
* windows/libgd.rc: - update dll rc
2007-02-06 23:24 pajoye
* ChangeLog: - sync Changelog
2007-02-03 02:34 pajoye
* NEWS: - updates
2007-02-03 02:18 pajoye
* ChangeLog: - update changelog
2007-02-03 02:16 pajoye
* Makefile.am, configure.ac: - MFB: #31 — Shared library support
on cygwin (Dr. Volker Zell)
2007-02-03 02:15 pajoye
* Makefile.am, configure.ac: - #31 Shared library support on cygwin
(Dr. Volker Zell)
2007-02-03 02:11 pajoye
* gd.h, gdft.c, index.html: - MFB: #30, restores the ability to
recognize and handle a font with Adobe-specific character
encoding
2007-02-03 02:03 pajoye
* gd.c: - MFB: #14, sanity check
2007-02-03 02:00 pajoye
* gd.c: - #14, sanity check
2007-02-01 12:01 pajoye
* gdft.c: - #30, do not extend sign (restores the ability to
recognize and handle a font with Adobe-specific character
encoding (Adobe custom) ).
2007-02-01 00:31 pajoye
* gd.h, gdft.c, index.html: - #30, restores the ability to
recognize and handle a font with Adobe-specific character
encoding (Adobe custom) - Fix proto in index.html
2007-01-30 10:11 pajoye
* NEWS: - 2.0.34RC1 news
2007-01-29 23:22 pajoye
* ChangeLog: - update
2007-01-29 22:56 pajoye
* gd.c: - #32, Pattern-fill works incorrectly if tile is created
via gdImageCreateTruecolor (Ethan Merritt)
2007-01-29 22:11 pajoye
* ChangeLog: - update changelog
2007-01-29 22:07 pajoye
* COPYING, index.html: - update years and (c)
2007-01-25 01:08 pajoye
* cmake/modules/: FindFontconfig.cmake, FindFreetype.cmake,
FindGD.cmake, FindPNG.cmake, FindPTHREAD.cmake, FindXPM.cmake: -
add lib64 tests (Chritian Rodriguez)
2007-01-25 00:06 pajoye
* tests/gif/bug00005.c: - remove version checks
2007-01-24 23:32 pajoye
* config.h.cmake: - config.h.in for cmake
2007-01-24 23:20 pajoye
* cmake/modules/: AC_HEADER_STDC.cmake, CheckDIRSymbolExists.cmake,
CheckPrototypeExists.cmake, FindFontconfig.cmake,
FindFreetype.cmake, FindGD.cmake, FindPNG.cmake,
FindPTHREAD.cmake, FindXPM.cmake, TestForHighBitCharacters.c,
TestForHighBitCharacters.cmake, TestForStandardHeaderwait.cmake,
gd.cmake: - add missing cmake macros/modules
2007-01-24 01:36 pajoye
* README.TESTING: - WS
2007-01-24 00:57 pajoye
* tests/: gd2/CMakeLists.txt, gd2/conv_gd2_exp.gd2,
gd2/conv_test.gd2, gd2/conv_test_exp.png, gd2/empty.gd2,
gd2/gd2_empty_file.c, gd2/gd2_read.c,
gdimagecolorclosest/CMakeLists.txt,
gdimagecolorclosest/gdimagecolorclosest.c,
gdimagecolorexact/CMakeLists.txt,
gdimagecolorexact/gdimagecolorexact.c,
gdimagecolorresolve/CMakeLists.txt,
gdimagecolorresolve/gdimagecolorresolve.c,
gdimagecopy/CMakeLists.txt, gdimagecopy/bug00007.c,
gdimagecopyrotated/CMakeLists.txt, gdimagecopyrotated/bug00020.c,
gdimagecopyrotated/bug00020_exp.png, gdimagefill/CMakeLists.txt,
gdimagefill/bug00002_1.c, gdimagefill/bug00002_1_exp.png,
gdimagefill/bug00002_2.c, gdimagefill/bug00002_2_exp.png,
gdimagefill/bug00002_3.c, gdimagefill/bug00002_3_exp.png,
gdimagefill/bug00002_4.c, gdimagefill/bug00002_4_exp.png,
gdimagefilledellipse/CMakeLists.txt,
gdimagefilledellipse/bug00010.c,
gdimagefilledellipse/bug00010_exp.png,
gdimagefilledrectangle/CMakeLists.txt,
gdimagefilledrectangle/bug00004.c,
gdimagefilltoborder/CMakeLists.txt,
gdimagefilltoborder/bug00037.c, gdimageline/CMakeLists.txt,
gdimageline/gdimageline_aa.c,
gdimageline/gdimageline_aa_a_0_exp.png,
gdimageline/gdimageline_aa_a_1_exp.png,
gdimageline/gdimageline_aa_b_0_exp.png,
gdimageline/gdimageline_aa_b_1_exp.png,
gdimageline/gdimageline_aa_c_0_exp.png,
gdimageline/gdimageline_aa_c_1_exp.png,
gdimageline/gdimageline_aa_d_0_exp.png,
gdimageline/gdimageline_aa_d_1_exp.png,
gdimageline/gdimageline_aa_outofrange.c,
gdimagerectangle/CMakeLists.txt, gdimagerectangle/bug00003.c,
gdtest/CMakeLists.txt, gdtest/gdtest.c, gdtest/gdtest.h,
gdtiled/CMakeLists.txt, gdtiled/bug00032.c,
gdtiled/bug00032_exp.png, gif/CMakeLists.txt, gif/bug00005.c,
gif/bug00005_0.gif, gif/bug00005_1.gif, gif/bug00005_2.c,
gif/bug00005_2.gif, gif/bug00005_2_exp.png, gif/bug00005_3.gif,
gif/bug00006.c, jpeg/CMakeLists.txt, jpeg/conv_test.jpeg,
jpeg/conv_test_exp.png, jpeg/empty.jpeg, jpeg/jpeg_empty_file.c,
jpeg/jpeg_read.c, png/CMakeLists.txt, png/bug00011.c,
png/bug00033.c, png/bug00033.png, png/emptyfile: - initial commit
of the GD test suites See README.TESTING for more details or
how to run it
2007-01-24 00:55 pajoye
* tests/CMakeLists.txt: - initial commit of the GD test suites
See README.TESTING for more details or how to ru
2007-01-24 00:54 pajoye
* CMakeLists.txt, README.TESTING: - initial commit of the GD test
suites See README.TESTING for more details or how to run it
2007-01-24 00:45 pajoye
* tests/: README, bug00001.c, bug00002_1.c, bug00002_2.c,
bug00002_3.c, bug00003.c, bug00004.c, bug00005.c, bug00005_1.gif,
bug00005_2.gif, bug00005_3.gif, bug00007.c, bug00008.c,
bug00010.c, bug00011.c, emptyfile: - remove temporary tests
before adding the tests suite
2007-01-20 03:09 pajoye
* gd.c: - #4, gdImageFill rewrite fix, small images (< 4 pixels)
crash
2007-01-20 03:02 pajoye
* gd.c: #37, gdImageFillToBorder crashes when used with alpha
2007-01-12 14:02 pajoye
* gd.h: - prepare snap
2007-01-12 14:00 pajoye
* circletexttest.c: - double config.h include removed (Edin)
2007-01-11 21:58 pajoye
* gd_gif_in.c: - #7, part of the patch required for
http://bugs.php.net/bug.php?id=33220 was missing. Thanks to
Nuno Lopes for the head up
2007-01-11 03:24 pajoye
* gdcache.c: #14, another sanity check (catched by Takeshi
(tabe[at]fixedpoint[dot]jp))
2007-01-09 17:08 pajoye
* ChangeLog: - update
2007-01-07 19:18 pajoye
* gd_png.c: - #32, malformed PNG image crashes (CRC error) test
is following
2007-01-06 14:48 pajoye
* configure.ac: - older versions of auto* need quotes here
2007-01-05 05:11 pajoye
* gd.c: - add sanity checks for alloc error in gdImageFill
2007-01-05 05:03 pajoye
* tests/bug00002_3.c: - #2, #32, add transparent color to each
image (see #32)
2007-01-05 03:41 pajoye
* tests/bug00002_3.c: - add a test to conver the case described in
issue #32 when a tile is a truecolor image, background of tiled
region is painted black rather than transparent
2007-01-04 15:27 pajoye
* README.TXT: - add bootstrap.sh note
2007-01-04 15:25 pajoye
* COPYING: - add myself
2007-01-04 15:23 pajoye
* makefile.sample: - remove outdated makefile.sample
2007-01-04 15:21 pajoye
* index.html: - changelog, issues and the release announcements
will be used from now on
2007-01-04 15:10 pajoye
* configure.ac, index.html: - update version nr - update links -
update bug report link
2007-01-04 14:45 pajoye
* ISSUES: - windows build support entry (Edin)
2007-01-04 14:23 pajoye
* ChangeLog: - update it
2007-01-04 13:52 pajoye
* gdfx.c: - New line at the end of the file
2007-01-04 13:49 pajoye
* gd_topal.c: #14, set fserror after the check
2007-01-04 13:44 pajoye
* ISSUES, gd_gif_out.c: - #14, sanity check in gd_gif_out
2007-01-04 13:40 pajoye
* gd_gd2.c: - #14, one more sanity check in gd_gd2
2007-01-04 13:36 pajoye
* ISSUES, gd.c: - #14, sanity check for memory alloc error in
gdImageCreateTrueColor
2007-01-04 13:05 pajoye
* README.TXT, configure.pl: - rm configure.pl, outdated anyway
2007-01-04 02:49 pajoye
* ISSUES: - Update credentials
2007-01-04 02:24 pajoye
* gdxpm.c: - #14, some more sanitiy check
2007-01-04 01:40 pajoye
* ISSUES: - fix to match the issues #
2007-01-03 22:57 pajoye
* ISSUES, gd_topal.c: #35, Added sanity checks for allocations
failure in gd_topal (yet another.)
2007-01-03 22:50 pajoye
* gd_io.h, gd_io_ss.c: #33, sourceGetbuf must return 0 for errors
and EOF #34, Fixed gdSeek declaration, offset argument was
missing
2007-01-03 22:47 pajoye
* ISSUES, gd_io_dp.c: #33, dynamicGetbuf must return 0 for errors
and EOF
2007-01-03 22:42 pajoye
* ISSUES, gd_gd2.c: #32, Added sanity checks for allocations
failures in gd_gd2
2007-01-03 22:24 pajoye
* ISSUES: #31, Added DISABLE_THREADS to permit disabling of thread
support (John Ellson/Graphviz)
2007-01-03 22:21 pajoye
* ISSUES, gdft.c: #30, uninitialized variable "charmap" and avoid
divide-by-zero errors at very small dpi values (John
Ellson/Graphviz)
2007-01-03 22:04 pajoye
* ISSUES, gdft.c: #28, Fixed gdImageStringFTEx when called with an
empty string Initialize the bounding box variables to zero
(Kevin Scaldeferri)
2007-01-03 21:56 pajoye
* ISSUES, gdft.c: #26, gdFontCacheSetup returns error when
gdCacheCreate fails #27, Added sanity checks for possible
failures in fontFetch and tweenColorFetch
2007-01-03 21:50 pajoye
* ISSUES, gdcache.c: #25, Added sanity checks for possible
allocation failures in gdCacheCreate and main
2007-01-03 21:45 pajoye
* ISSUES, gd.c: #23, Added sanity checks for possible allocation
failures in gdImageFilledPolygon and gdImageSetStyle #24,
Out of range checks in gdImageSetAAPixelColor
2007-01-03 21:38 pajoye
* gd.c: #22, missing immplementation
2007-01-03 21:34 pajoye
* ISSUES, gd.c: #22, Fixed transparency preservation in
gdImageCopyRotated
2007-01-03 21:31 pajoye
* ISSUES, gd.c: #21, gdImageCopyResized sanity check for allocation
failures
2007-01-03 21:25 pajoye
* ISSUES, gd.c: #20, Fixed gdImageCopyMergeGray when used with a
true color image
2007-01-03 21:18 pajoye
* ISSUES, gd.c: #19, Use abs instead of fbas in HWB_Diff (Nick
Atty)
2007-01-03 21:09 pajoye
* ISSUES, gd.c: - #18, Removed invalid gdFree call when overflow2
fails - #17, Free im->pixels as well on error
2007-01-03 20:48 pajoye
* ISSUES, entities.tcl: #17, Added "static" to entities_s struct
declaration to avoid obscure compiler problem on Suns (John
Ellson/Graphviz)
2007-01-03 20:42 pajoye
* ISSUES, gd.c: - #16, Added sanity checks in gdImageCreate for
possible allocation failures (John Ellson/Graphviz)
2007-01-03 20:14 pajoye
* ISSUES, gd_topal.c: - #15, gdImageCreatePaletteFromTrueColor(),
colors allocated henceforth from the resulting image
overwrite the palette colors (Rob Leslie)
2007-01-03 19:31 pajoye
* ISSUES, gd_topal.c: - #14, Fixed leak in jinit_2pass_quantizer
(gd_topal.c)
2006-11-08 13:32 lhecking
* ISSUES: Updated.
2006-11-08 13:23 pajoye
* gd.c: - #7, gdImageCopy does not respect alpha (2/2)
2006-11-05 16:01 pajoye
* ISSUES, gd_png.c: - #12, initialize the sig buf not infile, good
that we don't use getC...
2006-10-15 19:20 pajoye
* ChangeLog: - initial cvs ChangeLog, will create a cronjob to
update it daily
2006-10-12 13:38 lhecking
* Makefile.in, aclocal.m4, configure, config/Makefile.in,
test/Makefile.in: Remove generated files.
2006-10-12 13:36 lhecking
* bootstrap.sh: Bootstrap script to generate auto* files.
2006-10-12 13:30 lhecking
* .cvsignore, config/.cvsignore, test/.cvsignore: Update after
removal of generated files.
2006-10-11 11:46 lhecking
* config/gdlib-config.in: Add @LIBICONV@ wherever @LIBS@ is used.
2006-10-11 02:03 pajoye
* ISSUES: - #11 entry
2006-10-11 02:02 pajoye
* gd_png.c, tests/bug00011.c, tests/emptyfile: - #11,
gdImageCreateFromPng* possible crash with empty file
Thanks to Antony Dovgal to have catched this bug
2006-10-10 02:40 pajoye
* ISSUES, gd.c, tests/bug00010.c: - #10, gdImageFilledEllipse does
not respect transparency (rewriten)
2006-10-09 16:22 pajoye
* ISSUES, Makefile.am, Makefile.in, aclocal.m4, config.hin,
configure, configure.ac, config/Makefile.in, config/config.guess,
config/config.sub, config/ltmain.sh, test/Makefile.in: - #9,
configure/build script updates auto* lib* (Lars Hecking)
2006-10-09 04:38 pajoye
* ISSUES, tests/bug00008.c: - port another test for gdImageFill
2006-10-09 04:37 pajoye
* tests/bug00007.c: - temp fp
2006-10-08 23:43 pajoye
* ISSUES, gd.c, tests/bug00007.c: - #7, imagecopy doen't copy the
alpha channel, palette to truecolor copy
2006-10-08 18:42 pajoye
* ISSUES, gd_gif_out.c, tests/bug00004.c: - #4, TrueColor
transparency with GIF palette output
2006-09-28 17:22 pajoye
* ISSUES, gd_gif_in.c, tests/bug00005.c, tests/bug00005_1.gif,
tests/bug00005_2.gif, tests/bug00005_3.gif: - GIF security fixes
2006-09-28 10:16 pajoye
* ISSUES, gd.c, tests/bug00003.c: - #3, gdImageRectanle draws the
corners twice
2006-09-28 02:32 pajoye
* tests/bug00002_2.c: - #2, test with gdTile
2006-09-28 02:01 pajoye
* ISSUES: - #2 entry
2006-09-28 01:58 pajoye
* gd.c, tests/bug00002_1.c:
- #2, imagefill segfaults: - when call with invalid index color
- segfaults or invalid result when used with complex patterns or
transparent color (more tests to come)
2006-09-28 01:07 pajoye
* tests/bug00001.c: - test case for bug #1
2006-09-28 01:05 pajoye
* gdft.c: - #1, Initialize values this also provides a 5x speedup
in the imagefttext.phpt test, because without this patch it
never got cache hits (Nuno Lopes)
2006-09-28 01:04 pajoye
* ISSUES: - initial commit temp file to store issue fixes
history. Will be replaced by the issue tracker asap
2006-09-28 00:50 pajoye
* aclocal.m4, configure: - Sync the generated version TODO:
remove all generated files from CVS and add an autogen.sh script
2006-05-17 17:53 edink
* windows/: .cvsignore, Makefile: Added nmake dist target
2006-05-17 17:27 edink
* gdcmpgif.c: Fixed windows build
2006-05-17 17:26 edink
* windows/Makefile: Compile more helper tools
2006-05-17 15:05 edink
* windows/: Makefile, libgd.rc: Use bgd.dll name, and update
copyright info
2006-05-17 15:04 edink
* gd.h: Added version info
2006-05-17 14:39 edink
* windows/Makefile: "all" target should be the first
2006-05-17 14:34 edink
* windows/: .cvsignore, Makefile, libgd.rc: Added MSVC++ build file
for use with nmake.exe
2006-05-17 11:15 edink
* windows/.cvsignore: Added windows build dir
2006-05-17 10:43 edink
* .cvsignore, config/.cvsignore, test/.cvsignore: Ignore build
files
2006-04-14 02:15 pajoye
* tests/README: - as reminder, initila commit
2006-04-05 22:46 pajoye
* gd_jpeg.c, wbmp.c: - URLs
2006-04-05 22:40 pajoye
* configure.ac: - use the devel list in there
2006-04-05 22:14 pajoye
* AUTHORS, ChangeLog, HISTORY, Makefile, Makefile.nt, NEWS, README,
alphachanneltest.html, antialiased.png, arc, bdf-howto.txt,
bresenham_ellipse, bwtest.png, config.guess, config.sub,
configure.in, demoout.gif, demoout.png, errs, gd-1.2.lsm, gd.1,
gd.ver, gd2tolzw.c, gd_arc_f.c, gd_arc_f_buggy.c, gd_lzw_out.c,
gdfonta.c, gdfonta.h, gdft.c.swp, gdparttogif.c, gdprog,
gdprog.1, gdtestttf.c, gdtogif.c, gdttf.c, giftogd.c, giftolzw.c,
io.c, io.h, io_dp.c, io_file.c, io_ss.c, libgd.so.2.0.0,
ltconfig, ltmain.sh, mathmake.c, mtables.c, readme.txt,
so_locations, tc, webgif.c: - remove files not present in 2.0.33
2006-04-05 19:21 pajoye
* alphachanneltest.html: - testing loginfo/cvsspam
2006-04-05 19:12 pajoye
* index.html: - update URLs and MLs
2006-04-05 17:56 pierre
* config/Makefile.am, config/Makefile.in, config/config.guess,
config/config.rpath, config/config.sub, config/depcomp,
config/gdlib-config.in, config/install-sh, config/ltmain.sh,
config/missing, config/mkinstalldirs, test/Makefile.am,
test/Makefile.in, test/gdtest.gd2, test/gdtest.png,
test/gdtest_200_300_150_100.png, test/gdtest_merge.png,
test/gdtest_wbmp_to_png.png: - sync with 2.0.33
2006-04-05 17:55 pierre
* circletexttest.c, configure, configure.ac, fontconfigtest.c,
gd2togif.c, gd2topng.c, gd_gif_out.c, gdcmpgif.c, gdft.c,
gdkanji.c, gifanimtest.c, index.html: - sync to 2.0.33
2006-04-05 17:55 pierre
* configure, configure.ac, gd.c, gd_gif_in.c, gdft.c, gdtestft.c,
index.html, testtr.c: - sync to 2.0.32
2006-04-05 17:55 pierre
* Makefile.in, aclocal.m4, configure, configure.ac, gdft.c,
index.html: - sync to 2.0.31
2006-04-05 17:54 pierre
* configure, configure.ac, gd.h, gdft.c, index.html: - sync to
2.0.30
2006-04-05 17:54 pierre
* Makefile.am, Makefile.in, circletexttest.c, config.hin,
configure, configure.ac, entities.h, entities.tcl, err.out,
fontconfigtest.c, fontsizetest.c, fontwheeltest.c, gd.c, gd.h,
gd2togif.c, gd_gd2.c, gd_gif_out.c, gd_io.h, gd_io_dp.c,
gd_jpeg.c, gd_png.c, gd_security.c, gd_topal.c, gd_wbmp.c,
gdcache.h, gdcmpgif.c, gdfontg.h, gdfontl.h, gdfontmb.h,
gdfonts.h, gdfontt.h, gdft.c, gdfx.c, gdfx.h, gdhelpers.c,
gdhelpers.h, gdxpm.c, gifanimtest.c, giftogd2.c, index.html,
jisx0208.h, makefile.sample, testtr.c, wbmp.c, wbmp.h: - sync to
2.0.29
2006-04-05 17:53 pierre
* Makefile.am, Makefile.in, configure, configure.ac, gd.h,
gd_gif_in.c, gd_gif_out.c, gd_topal.c, gddemo.c, index.html,
testtr.c: - sync to 2.0.28
2006-04-05 17:53 pierre
* configure, configure.ac, gd.c, gdft.c, index.html: - sync to
2.0.27
2006-04-05 17:53 pierre
* Makefile.am, Makefile.in, config.hin, configure, configure.ac,
entities.h, entities.html, entities.tcl, fontwheeltest.c, gd.c,
gd.h, gddemo.c, gdft.c, index.html, testtr.c: - sync to 2.0.26
2006-04-05 17:52 pierre
* configure, configure.ac, gd.h, gdfontg.h, gdfontl.h, gdfontmb.h,
gdfonts.h, gdfontt.h, index.html: - sync to 2.0.25
2006-04-05 17:52 pierre
* annotate.c, configure, configure.ac, fontsizetest.c, gd.c, gd.h,
gd2time.c, gd_gd.c, gd_gd2.c, gd_io_dp.c, gd_io_file.c,
gd_io_ss.c, gd_jpeg.c, gd_png.c, gd_ss.c, gd_topal.c, gd_wbmp.c,
gdcache.h, gdfontg.c, gdfontg.h, gdfontl.c, gdfontl.h,
gdfontmb.c, gdfontmb.h, gdfonts.c, gdfonts.h, gdfontt.c,
gdfontt.h, gdft.c, gdfx.c, gdfx.h, gdhelpers.c, gdhelpers.h,
gdkanji.c, gdxpm.c, index.html, webpng.c: - sync to 2.0.24
2006-04-05 17:51 pierre
* circletexttest.c, configure, configure.ac, gd.h, gd_gd2.c,
gd_io_dp.c, gd_jpeg.c, gd_png.c, gd_topal.c, gddemo.c, gdfontg.c,
gdfontl.c, gdfontmb.c, gdfonts.c, gdfontt.c, gdft.c, gdfx.c,
gdtest.c, index.html: - sync to 2.0.23
2006-04-05 17:51 pierre
* Makefile.in, circletexttest.c, configure, configure.ac, gd.c,
gd_jpeg.c, gddemo.c, gdfontg.c, gdfontg.h, gdfontl.c, gdfontl.h,
gdfontmb.c, gdfontmb.h, gdfonts.c, gdfonts.h, gdfontt.c,
gdfontt.h, index.html: - sync to 2.0.22
2006-04-05 17:50 pierre
* configure, configure.ac, gd.c, gd.h, gd_gd.c, gd_gd2.c,
gd_io_dp.c, gd_jpeg.c, gd_png.c, gd_wbmp.c, gdft.c, gdtest.c,
index.html: - sync to 2.0.21
2006-04-05 17:50 pierre
* configure, configure.ac, gd.h, gdfontg.c, gdfontl.c, gdfontmb.c,
gdfonts.c, gdfontt.c, gdft.c, index.html: - sync to 2.0.20
2006-04-05 17:50 pierre
* configure, configure.ac, gd.h, gdfontg.h, gdfontl.h, gdfonts.h,
index.html: - sync to 2.0.19
2006-04-05 17:50 pierre
* circletexttest.c, configure, configure.ac, gd.h, gd_io.h,
gdcache.h, gdfontg.c, gdfontg.h, gdfontl.c, gdfontl.h,
gdfontmb.c, gdfontmb.h, gdfonts.c, gdfonts.h, gdfontt.c,
gdfontt.h, gdft.c, gdfx.h, gdhelpers.h, index.html: - sync to
2.0.18
2006-04-05 17:49 pierre
* Makefile.am, Makefile.in, circletexttest.c, config.hin,
configure, configure.ac, gd.c, gd.h, gd_gd2.c, gd_io.c,
gd_io_file.c, gd_jpeg.c, gd_png.c, gd_topal.c, gdft.c, gdfx.c,
gdfx.h, gdhelpers.h, index.html: - sync to 2.0.17
2006-04-05 17:49 pierre
* configure, configure.ac, gd.c, index.html: - sync to 2.0.15
2006-04-05 17:48 pierre
* configure, configure.ac, gd.c, gd_jpeg.c, index.html: - sync to
2.0.14
2006-04-05 17:48 pierre
* configure, configure.ac, gd.c, gd_gd2.c, gd_png.c, gdft.c,
index.html: - sync to 2.0.13
2006-04-05 17:47 pierre
* Makefile.am, Makefile.in, annotate.c, config.hin, configure,
configure.ac, gd.c, gd.h, gd2topng.c, gd_gd.c, gd_gd2.c, gd_io.h,
gd_jpeg.c, gd_png.c, gd_topal.c, gdcache.c, gdcache.h, gddemo.c,
gdft.c, gdkanji.c, gdtest.c, gdtestft.c, gdtopng.c, index.html: -
sync to 2.0.12
2006-04-05 17:47 pierre
* configure, configure.ac, gd.h, gd2topng.c, gd_gd2.c, gd_io.h,
gd_io_file.c, index.html, pngtogd2.c: - sync to 2.0.11
2006-04-05 17:47 pierre
* Makefile.in, aclocal.m4, configure, configure.ac, depcomp, gd.c,
gd.h, gd_jpeg.c, gddemo.c, gdft.c, gdtestft.c, index.html,
install-sh, missing, mkinstalldirs: - sync to 2.0.10
2006-04-05 17:46 pierre
* Makefile.in, aclocal.m4, annotate.c, config.hin, configure,
configure.ac, fontsizetest.c, fontwheeltest.c, gd.c, gd.h,
gd2time.c, gd2topng.c, gd_gd.c, gd_gd2.c, gd_io.h, gd_io_dp.c,
gd_io_file.c, gd_io_ss.c, gd_jpeg.c, gd_png.c, gd_ss.c,
gd_topal.c, gd_wbmp.c, gdcache.c, gdcache.h, gddemo.c, gdfontg.c,
gdfontg.h, gdfontl.c, gdfontl.h, gdfontmb.c, gdfontmb.h,
gdfonts.c, gdfonts.h, gdfontt.c, gdfontt.h, gdft.c, gdhelpers.h,
gdkanji.c, gdparttopng.c, gdtables.c, gdtest.c, gdtestft.c,
gdtopng.c, index.html, jisx0208.h, mathmake.c, pngtogd.c,
pngtogd2.c, testac.c, wbmp.c, wbmp.h, webpng.c: - sync to 2.0.9
2006-04-05 17:46 pierre
* aclocal.m4, configure, configure.ac, gd.c, gd.h, gddemo.c,
index.html: - sync to 2.0.8
2006-04-05 17:45 pierre
* configure, configure.ac, index.html: - sync to 2.0.7
2006-04-05 17:45 pierre
* README.TXT, configure, configure.ac, gd.c, gd2copypal.c,
gd2topng.c, gdft.c, gdtestft.c, gdxpm.c, index.html, mathmake.c,
pngtogd.c, testac.c: - sync to 2.0.6
2006-04-05 17:44 pierre
* COPYING, INSTALL, Makefile.am, Makefile.in, README.TXT,
aclocal.m4, annotate.c, config.hin, configure, configure.ac,
configure.pl, fontsizetest.c, fontwheeltest.c, gd.c, gd.h,
gd2copypal.c, gd2time.c, gd2topng.c, gd_gd.c, gd_gd2.c, gd_io.c,
gd_io_dp.c, gd_io_file.c, gd_io_ss.c, gd_jpeg.c, gd_png.c,
gd_ss.c, gd_topal.c, gd_wbmp.c, gdcache.c, gdcache.h, gddemo.c,
gdft.c, gdhelpers.c, gdkanji.c, gdparttopng.c, gdtest.c,
gdtestft.c, gdtopng.c, gdxpm.c, index.html, mathmake.c,
pngtogd.c, pngtogd2.c, testac.c, wbmp.c, webpng.c: - sync to
2.0.5
2006-04-05 17:44 pierre
* configure, err.out, fontsizetest.c, fontwheeltest.c, gd.c, gd.h,
gd2topng.c, gd_gd.c, gd_gd2.c, gd_io.h, gd_io_dp.c, gd_io_file.c,
gd_io_ss.c, gd_jpeg.c, gd_png.c, gd_ss.c, gd_topal.c, gd_wbmp.c,
gdcache.h, gddemo.c, gdft.c, gdhelpers.c, gdhelpers.h, gdkanji.c,
gdparttopng.c, gdtest.c, gdtestft.c, gdtopng.c, gdxpm.c,
index.html, makefile.sample, testac.c, wbmp.c, webpng.c: - sync
to 2.0.4
2006-04-05 17:43 pierre
* annotate.c, configure, gd.c, gd_gd2.c, index.html: - sync to
2.0.3
2006-04-05 17:43 pierre
* README.TXT, configure, gd.c, gd.h, gddemo.c, gdft.c, gdtestft.c,
index.html, makefile.sample: - sync to 2.0.2
2006-04-05 17:42 pierre
* Makefile, arc, bresenham_ellipse, gd.c, gd.h, gd2copypal.c,
gd2time.c, gd2topng.c, gd_arc_f_buggy.c, gd_gd.c, gd_gd2.c,
gd_io.c, gd_io_dp.c, gd_io_file.c, gd_io_ss.c, gd_jpeg.c,
gd_png.c, gd_ss.c, gd_topal.c, gd_wbmp.c, gdcache.c, gddemo.c,
gdfontg.c, gdfontl.c, gdfontmb.c, gdfonts.c, gdfontt.c, gdft.c,
gdhelpers.c, gdkanji.c, gdparttopng.c, gdtables.c, gdtest.c,
gdtestft.c, gdtopng.c, gdxpm.c, index.html, libgd.so.2.0.0,
mathmake.c, pngtogd.c, pngtogd2.c, readme.jpn, readme.txt,
testac.c, wbmp.c, webpng.c: - sync to 2.0.1
2006-04-05 17:42 pierre
* Makefile, Makefile.nt, README-JPEG.TXT, alphachanneltest.html,
antialiased.png, errs, gd.c, gd.h, gd_arc_f.c, gd_gd.c, gd_gd2.c,
gd_jpeg.c, gd_png.c, gd_topal.c, gddemo.c, gdft.c, gdft.c.swp,
gdkanji.c, gdtestft.c, index.html, libgd.so.2.0.0, readme.txt,
tc, testac.c, webpng.c: - sync to 2.0.0
2006-04-05 17:41 pierre
* Makefile, Makefile.nt, gd.c, gd.h, gd_gd2.c, gd_io.c, gd_io_dp.c,
gd_io_file.c, gd_io_ss.c, gd_jpeg.c, gd_png.c, gd_wbmp.c,
gdcache.c, gdft.c, gdhelpers.c, gdhelpers.h, gdkanji.c,
gdtestft.c, gdtestttf.c, gdttf.c, gdxpm.c, index.html,
readme.txt, wbmp.c, wbmp.h: - sync to 1.8.4
2006-04-05 17:41 pierre
* Makefile, bwtest.png, gd.c, gd.h, gd_jpeg.c, gd_png.c, gd_wbmp.c,
gdtest.c, index.html, install-item, readme.txt, wbmp.c, wbmp.h: -
sync to 1.8.3
2006-04-05 17:40 pierre
* Makefile, Makefile.nt, bdftogd, gd_jpeg.c, gdtest.c, index.html,
readme.txt, webpng.c: - sync to 1.8.1
2006-04-05 17:40 pierre
* Makefile, gd.c, gd.h, gd_jpeg.c, gd_wbmp.c, gdtest.c, index.html,
readme.txt: - sync to 1.8.0
2006-04-05 17:39 pierre
* Makefile, index.html, readme.txt: - sync to 1.7.3
2006-04-05 17:39 pierre
* Makefile, gdttf.c, index.html, readme.txt: - sync to 1.7.2
2006-04-05 17:38 pierre
* ChangeLog, Makefile, gdtestttf.c, index.html, readme.txt: - sync
to 1.7.1
2006-04-05 17:38 pierre
* ChangeLog, Makefile, bdftogd, demoout.png, gd.c, gd.h, gd_gd2.c,
gd_io_dp.c, gd_io_file.c, gd_io_ss.c, gddemo.c, gdfontg.h,
gdfontl.h, gdfontmb.h, gdfonts.h, gdfontt.h, gdkanji.c,
gdtables.c, gdtestttf.c, gdttf.c, gdxpm.c, index.html,
jisx0208.h, readme.txt: - sync to 1.7.0
2006-04-05 17:37 pierre
* COPYING, ChangeLog, NEWS, README, configure, configure.in,
gd_png.c, index.html, mkinstalldirs: - sync to 1.6.3
2006-04-05 17:37 pierre
* AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, Makefile.in,
NEWS, README, aclocal.m4, config.guess, config.sub, configure,
configure.in, gd.c, gd.h, gd2copypal.c, gd2time.c, gd2topng.c,
gd_gd.c, gd_gd2.c, gd_io_dp.c, gd_png.c, gdcache.c, gdcache.h,
gdparttopng.c, gdtest.c, gdtestttf.c, gdtopng.c, gdttf.c,
index.html, install-sh, ltconfig, ltmain.sh, missing,
mkinstalldirs, pngtogd.c, pngtogd2.c, webpng.c: - sync to 1.6.2
2006-04-05 17:36 pierre
* HISTORY, gd.h, gd_png.c, index.html, readme.txt: - sync to 1.6.1
2006-04-05 17:35 pierre
* HISTORY, Makefile, demoin.png, demoout.png, gd.c, gd.h,
gd2copypal.c, gd2time.c, gd2topng.c, gd_gd.c, gd_gd2.c, gd_io.c,
gd_io.h, gd_io_dp.c, gd_io_file.c, gd_io_ss.c, gd_png.c, gd_ss.c,
gddemo.c, gdparttopng.c, gdtest.c, gdtopng.c, index.html,
pngtogd.c, pngtogd2.c, readme.txt, webpng.c: - sync to 1.6.0
2006-04-05 17:35 pierre
* HISTORY, Makefile, bdftogd, gd.c, gd.h, gd2copypal.c, gd2time.c,
gd2togif.c, gd2tolzw.c, gd_gd.c, gd_gd2.c, gd_gif_in.c,
gd_gif_out.c, gd_lzw_out.c, gdparttogif.c, gdtest.c, gdtogif.c,
giftogd2.c, giftolzw.c, index.html, io.c, io.h, io_dp.c,
io_file.c, io_ss.c, readme.txt: - sync to 1.5.0
2006-04-05 17:34 pierre
* Makefile, bdf-howto.txt, bdftogd, gd.c, gd.h, gdfonta.c,
gdfonta.h, index.html, readme.txt: - sync to 1.4.0
2006-04-05 17:33 pierre
* Makefile, bdftogd, demoin.gif, demoout.gif, gd.c, gd.h, gddemo.c,
gdfontg.c, gdfontg.h, gdfontl.c, gdfontl.h, gdfontmb.c,
gdfontmb.h, gdfonts.c, gdfonts.h, gdfontt.c, gdfontt.h,
giftogd.c, index.html, mathmake.c, mtables.c, readme.txt,
so_locations, webgif.c: - sync to 1.3.0
2006-04-05 17:28 pierre
* INSTALL, Makefile, README, gd-1.2.lsm, gd.1, gd.ver, gdprog,
gdprog.1: Initial revision
2006-04-05 17:28 pierre
* INSTALL, Makefile, README, gd-1.2.lsm, gd.1, gd.ver, gdprog,
gdprog.1: initial import
|