File: ChangeLog.pre-1-0

package info (click to toggle)
gimp 2.2.13-1etch4
  • links: PTS
  • area: main
  • in suites: etch
  • size: 94,832 kB
  • ctags: 47,113
  • sloc: ansic: 524,858; xml: 36,798; lisp: 9,870; sh: 9,409; makefile: 7,923; python: 2,674; perl: 2,589; yacc: 520; lex: 334
file content (3329 lines) | stat: -rw-r--r-- 107,843 bytes parent folder | download | duplicates (19)
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
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
Tue Jun  2 16:40:33 PDT 1998 Manish Singh <yosh@gimp.org>

	* Made 1.0.0 release

Tue Jun  2 16:15:51 PDT 1998 Manish Singh <yosh@gimp.org>

	* Makefile.am: install gtkrc.forest2 in $prefix/share/gimp

	* plug-ins/CEL/CEL.c: change bzero to memset for portability

	* plug-ins/gfli/fli.c: #include <glib.h> to get inline defintion

Mon Jun  1 01:05:52 EDT 1998  Matthew Wilson  <msw@gimp.org>

	* plug-ins/grid.c: fix a comment. :)
	* ChangeLog: fix my last entry

Sun May 31 21:50:12 EDT 1998  Matthew Wilson  <msw@gimp.org>

	* plug-ins/deinterlace/deinterlace.c: patch from sjburges
	to prevent out of bounds indexing array (anyone see a pattern
	here?)

Sun May 31 15:35:33 PDT 1998 Manish Singh <yosh@gimp.org>

	* gimptool.in: use test -r instead of test -e for portability

Sun May 31 08:03:54 EDT 1998  Matthew Wilson  <msw@gimp.org>

	* plug-ins/exchange/exchange.c: fix from sjburges to stop
	out of bounds indexing of array.

Sun May 31 01:58:36 PDT 1998 Manish Singh <yosh@gimp.org>

	* README
	* INSTALL: make info a bit more current

	* gimptool.in: update usage message

	* gtkrc.forest2: sample gtkrc file with cool stuff from tigert

	* gimp.1
	* gimptool.1: updated/rewrote some

	* app/fileops.c: removed the "might have tried to save an RGB
	image with an indexed plugin" since g_message gives nice user
	feedback now

	* app/interface.c: fix the mem leak properly

Sat May 30 23:42:12 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/interface.c: plug mem leak in message_box

	* plug-ins/mail/mail.c: use g_message

	* plug-ins/script-fu/scripts/carve-it.scm: fix for gimp-layer-new
	params from Kevin Cozens <kcozens@interlog.com>

	* plug-ins/CEL/CEL.c
	* plug-ins/pcx/pcx.c
	* plug-ins/tiff/tiff.c: updates from author

	* plug-ins/png/png.c: correct copyright

	* plug-ins/print/print.h: use correct version

Fri May 29 23:54:42 PDT 1998 Manish Singh <yosh@gimp.org>

	* more changes to use g_message. All of app uses it now, plus
	the major file plugins.

	* plug-ins/CEL/CEL.c: update from author

	* INSTALL: info about why optional plugins won't build

Sat May 30 02:03:19 EDT 1998  Matthew Wilson  <msw@gimp.org>

	* plug-ins/grid/grid.c: fix by sjburges to fix grid on selections.

Fri May 29 23:34:07 EDT 1998  Matthew Wilson  <msw@gimp.org>

	* plug-ins/gaus_iir/gauss_iir.c: fix by sjburges to fix horiz
	only blur.  Funky bug!

Fri May 29 21:36:36 MEST 1998 Sven Neumann <sven@gimp.org>

	* app/xcf.c: changed fopen parameters for better portability

Thu May 28 20:12:02 MEST 1998 Sven Neumann <sven@gimp.org>

	* scripts/blend-anim.scm: use gimp-message to output an
	error message

Thu May 28 19:05:13 MEST 1998 Sven Neumann <sven@gimp.org>

	* plug-ins/rotate/rotate.c
	* plug-ins/screenshot/screenshot.c: adapted to the new
	way of error message handling

Thu May 28 01:16:26 PDT 1998 Manish Singh <yosh@gimp.org>

	* redid the error message handling. g_message now calls
	message_box or prints to console depending on whether the
	no_interface is set or not. gimp-message is also exported
	to the PDB as a wrapper to g_message, and libgimp has a new
	API: gimp_message. libgimp also overrides g_message for all
	plugins. Converted lots of messages in app/* to g_message.
	Made script-fu a little friendlier.

	* updated the regex code from grep 2.2

Wed May 27 11:22:46 MEST 1998 Sven Neumann <sven@gimp.org>

	* plug-ins/ifscompose/ifscompose.h: removed definition of TRUE
        and FALSE

Tue May 26 17:20:26 EDT 1998 Adrian Likins <adrian@gimp.org>

	* plug-ins/sript-fu/scripts/predator.scm: made insensitive on
	greyscale images

Tue May 26 12:03:07 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/batch.c: do "-" to "_" conversion after an failed pdb
	lookup, just to make sure

	* app/paint_core.c: fix for some uninitialized vars

Tue May 26 01:17:14 PDT 1998 Manish Singh <yosh@gimp.org>

	* gimptool.in: added --install-script. Use @INSTALL@ stuff

	* libgimp/gimpimage.c
	* libgimp/gimplayer.c: fixes for silly errors from Marc Lehmann

	* libgimp/gimpchannel.c: implemented gimp_channel_set_show_masked
	and gimp_channel_get_show_masked (already in gimp.h)

	* plug-ins/blinds/blinds.c
	* plug-ins/bmp/bmp.h
	* plug-ins/mosaic/mosaic.c
	* plug-ins/ripple/ripple.c
	* plug-ins/tga/tga.c
	* plug-ins/tileit/tileit.c: remove definitions of TRUE and FALSE
	since glib does it for us

Sun May 24 08:41:34 EST 1998 Stephen Norris <srn@fn.com.au>

	* plug-ins/displace/displace.c: Fix to GUI bug.

Fri May 22 19:23:59 MEST 1998 Sven Neumann <sven@gimp.org>

	* docs/gimp_quick_reference.*: some small fixes and additions

Fri May 22 00:46:18 EDT 1998  Matthew Wilson  <msw@gimp.org>

	* app/batch.c: removed global conversion from '-' to '_'

Thu May 21 13:03:50 PDT 1998 Manish Singh <yosh@gimp.org>

	* updated Adam's stuff

	* app/app_procs.c: squleched warning

	* gimptool.in: quote stuff to be flexible about our CC settings

Wed May 20 20:21:45 EST 1998 Stephen Norris <srn@fn.com.au>

	* plug-ins/bz2/bz2.c: Check return code from fopen.
	* plug-ins/gz/gz.c: Check return code from fopen.

Tue May 19 14:02:41 MET DST 1998 Sven Neumann <sven@gimp.org>

	* added a new script from Wolfgang Hofer (fade-outline.scm)

Mon May 18 20:30:44 MEST 1998 Sven Neumann <sven@gimp.org>

	* updated the gfli plug-in to the version on the registry and
	folded the "chunk-type-7-bug"-patch back in

Sun May 17 23:06:38 EDT 1998  Matthew Wilson  <msw@gimp.org>

	* app/app_procs.c: applied patch from Michael Sweet to correct
	NULL deref in splash screen.

Mon May 18 02:50:03 MEST 1998 Sven Neumann <sven@gimp.org>

	* plug-ins/tiff/tiff.c: updated tiff plug-in

Sun May 17 17:31:05 PDT 1998 Manish Singh <yosh@gimp.org>

	* plug-ins/maze: updated maze plugin

	* plug-ins/script-fu/scripts/circuit.scm: reflected maze pdb
	interface change

Sun May 17 14:44:32 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/gimage.c: fix for merging indexed and indexed-alpha
	layers (from Raph)

Sun May 17 14:02:44 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/app_procs.c: reverted the splash screen idle loop changes
	since they expose some weird GtkLabel redraw bugs

Sun May 17 00:15:40 PDT 1998 Manish Singh <yosh@gimp.org>

	* Made 0.99.31 release

	* updated print plugin

Fri May 15 23:35:43 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/fileops.c: made url plugin autodetect work again

Fri May 15 03:54:48 EDT 1998  Matthew Wilson  <msw@gimp.org>

	* gimp_tips.txt: fixed typo

Fri May 15 03:03:00 EDT 1998  Matthew Wilson  <msw@gimp.org>

	* app/iscissors.c: fixed bezierify on offset layers

Thu May 14 21:18:27 EDT 1998  Matthew Wilson  <msw@gimp.org>

	* app/iscissors.c: a very sad attempt to fix some iscissors
	lockups/segfaults

Thu May 14 18:10:38 EDT 1998  Matthew Wilson  <msw@gimp.org>

	* app/app_procs.c: made the splash screen a GTK_WINDOW_POPUP,
	changed the hackish gtk_main_iteration with a null idle
	loop to a more stylish while (gtk_events_pending())
	gtk_main_iteration();

Wed May 13 23:58:20 EDT 1998  Matthew Wilson  <msw@gimp.org>

	* app/fileops.c (file_overwrite_yes_callback): destroy the
	Overwrite dialog's window before running the save.

Wed May 13 17:31:27 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/frac.c: stubbed out nonworking code

	* updated print plugin

Wed May 13 00:03:18 MEST 1998 Sven Neumann <sven@gimp.org>

	* added nine new scripts from Chris Gutteridge
	(asc2img.scm, camo.scm, coffee.scm, distress_selection.scm,
	 fuzzyborder.scm, old_photo.scm, rendermap.scm
	 spinning_globe.scm, tileblur.scm)

	* added two gradients that are used by the new scripts
	(Coffee, Land_and_Sea)

Tue May 12 02:49:12 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/app_procs.c: create tips dialog after loading files on the
	command line, instead of in an idle function. Lamer hack, but it
	works better.

	* app/gdisplay_ops.c: fix for new view on zoomed image

	* Makefile.am
	* gimptool.1: added man page for gimptool by Ben Gertzfield

Mon May 11 16:59:18 PDT 1998 Manish Singh <yosh@gimp.org>

	* gimptool.in: added --install-bin options for installing already
	built plugins

	* app/convolve.c: check for indexed images properly

	* app/layer.c: fix tile refcount oversight

	* app/text_tool.c: fix for unlikely memleak

	* libgimp/gimpimage.c: stupid ytpo ;)

	* plug-ins/gfli/gfli.c: applied gimp-wh-980507-0 to fix
	"chunk-type-7-bug"

Mon May 11 23:28:20 MEST 1998 Sven Neumanns <sven@gimp.org>

	* added two new scripts from Hrvoje Horvat
	(glossy.scm, 3d-outline.scm)

Mon May 11 21:40:25 MEST 1998 Sven Neumann <sven@gimp.org>

	* updated print plug-in

Fri May  8 20:51:24 PDT 1998 Manish Singh <yosh@gimp.org>

	* plug-ins/script-fu/script-fu-console.c: workaround for text
	widget crash from Owen

Thu May  7 16:32:15 PDT 1998 Manish Singh <yosh@gimp.org>

	* gimptool.in: added --install and --install-admin options
	to build and install a plug-in automagically

Thu May  7 15:24:31 EDT 1998  Matthew Wilson <msw@gimp.org>

	* app/fileops.c: more changes to fileselection

Tue May  5 11:40:28 PDT 1998 Manish Singh <yosh@gimp.org>

	* plug-ins/psd/psd.c: updates from Adam

	* plug-ins/script-fu/scripts/text-circle.scm: new version

Mon May  4 21:24:03 PDT 1998 Manish Singh <yosh@gimp.org>

	* Made 0.99.29 release

Mon May  4 19:32:54 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/plug_in.c: make repeat last and re-show plugin menu
	sensitive to image type

Mon May  4 04:12:54 PDT 1998 Manish Singh <yosh@gimp.org>

	* configure.in: define and export version number parts. Check for
	gtk 1.0.1

	* gimptool.in: do some arg check for --build

	* app/fileops.c: handle file overwrite dialog too

Sun May  3 22:10:05 EDT 1998  Matthew Wilson  <msw@gimp.org>

	* app/fileops.c: make fileselectors insensitive during
	loading and saving

Sun May  3 00:24:31 MEST 1998 Sven Neumann <sven@gimp.org>

	* app/channels_dialog.c: minimalistic change to the interface,
	makes it possible to set the channel opacity to 100.0%
	(was 99.0% before)

Sat May  2 14:31:46 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/about_dialog.c
	* app/app_procs.c
	* app/main.c: use GIMP_VERSION from config.h now

	* gimptool made to ease plug-in development and installation

Sat May  2 16:10:05 EDT 1998  Matthew Wilson  <msw@gimp.org>

	* app/channels_dialog.c: removed my broken fix, put in a fix
	that works

Sat May  2 15:20:54 EDT 1998  Matthew Wilson  <msw@gimp.org>

	* app/channels_dialog.c: check to be sure that the gimage still
	exists when editing a channel - fixes bug report from Sven

Sat May  2 00:59:23 PDT 1998 Manish Singh <yosh@gimp.org>

	* gimp.1: spelling corrections from Tamito Kajiyama

Sat May  2 00:41:36 PDT 1998 Manish Singh <yosh@gimp.org>

	* plug-ins/tiff/tiff.c: another special case fix from Nick Lamb.
	I said it before, and I'll say it again: TIFF sucks

	* app/fuzzy_select.c: find_boundary works nicer in indexed mode
	(from Adrian)

	* app/paint_funcs.c: generate dissolve random number table better
	(thanks Owen)

	* README: bring up to date

Fri May  1 23:09:33 EDT 1998  Matthew Wilson  <msw@gimp.org>

	* app/channels_dialog.c: handle double click on our own since
	channels_dialog_flush nukes the widgets and we never get
	2BUTTON events

Fri May  1 13:22:21 1998  Tim Janik  <timj@gtk.org>

	* app/channels_dialog.c: keep the channel list uptodate
	on position changes. unref list items on destruction.

	the app/channels_dialog.c app/layers_dialog.c code for dealing
	with GtkList is a MESS, it needs to be completely reworked
 	somewhen. this is *no* fun: the selection is changed so update
	the list (causing the selection to change again: the selection
 	is changed so update the list (causing the selection to change
 	again: the selection is changed so update the list (.... oops,
	sorry got caught in a recursive loop there ;) ))).

Thu Apr 30 16:49:41 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/channels_dialog.c: fix for off-by-one error in channel
	position from Andy Thomas

Thu Apr 30 16:38:59 PDT 1998 Manish Singh <yosh@gimp.org>

	* updated randomize and blur plugins, split out libgpc into
	it's own dir

Thu Apr 30 14:32:16 PDT 1998 Manish Singh <yosh@gimp.org>

	* upgraded to libtool 1.2

Thu Apr 30 01:45:03 PDT 1998 Manish Singh <yosh@gimp.org>

	* plug-ins/xd/xd.c: selection logic fix from Gordon
	Matzigkeit

Thu Apr 30 03:15:51 EDT 1998 Matthew Wilson <msw@gimp.org>

	* app/curves.c: Another small change to keep the segfaults away
	* app/disp_callbacks.c: An attempt to squelch some warnings

Thu Apr 30 02:08:23 EDT 1998 Matthew Wilson <msw@gimp.org>

	* app/channels_dialog.c
	* app/layers_dialog.c: Modified event handlers to bring up the
	popup menu anywhere on layer/channel widget

Wed Apr 29 22:29:16 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/app_procs.c: make splash screen honor gtkrc

Wed Apr 29 16:49:27 PDT 1998 Manish Singh <yosh@gimp.org>

	* plug-ins/CEL/CEL.c: reverted gimp-joke-980427-0 changes, they
	broke things

Wed Apr 29 15:38:55 PDT 1998 Manish Singh <yosh@gimp.org>

	* plug-ins/tiler/tiler.c: fix width > height case

	* plug-ins/blinds/blinds.c
	* plug-ins/convmatrix/convmatrix.c
	* plug-ins/tileit/tileit.c: removed spurious gtk_container_add's

Wed Apr 29 07:50:26 EDT 1998 Adrian Likins <adrian@gimp.org>

	* gimp.1: updated man page to reflect new --debug-handlers
	argument

Wed Apr 29 04:05:34 PDT 1998 Manish Singh <yosh@gimp.org>

	* configure.in: tightened png header check

Wed Apr 29 03:46:44 PDT 1998 Manish Singh <yosh@gimp.org>

	* plug-ins/animationplay/animationplay.c
	* plug-ins/gif/gif.c
	* plug-ins/psd/psd.c: updates from Adam

Wed Apr 29 01:43:30 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/text_tool.c: don't die on corrupted fonts. Give some
	error messages instead.

Tue Apr 28 23:17:37 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/gradient.c: enable adjustment of the gradient list box
	for scrolling

Wed Apr 29 00:56:19 1998  Tim Janik  <timj@gtk.org>

	* app/text_tool.c (text_create_dialog): enable adjustment of the
	scrolled window to keep the focused font visible.

Tue Apr 28 15:09:02 PDT 1998 Manish Singh <yosh@gimp.org>

	* plug-ins/CEL/CEL.c
	* plug-ins/psd/psd.c: portability fix for SunOS 4

Mon Apr 27 20:43:14 PDT 1998 Manish Singh <yosh@gimp.org>

	* plug-ins/animationplay/animationplay.c
	* plug-ins/CEL/CEL.c
	* plug-ins/psd/psd.c
	* plug-ins/xd/xd.c: applied gimp-joke-980427-0, warning cleanups

	* app/temp_buf.c: applied gimp-entity-980427-0, temp_buf swap
	speedups and more robust tempfile handling

Mon Apr 27 20:57:26 1998 EDT Matthew Wilson <msw@gimp.org>

	* app/curves: Initialize data that is referenced in event handlers
	in the curves_new_dialog function.  Be on the look out for this
	kind of stuff in other dialogs.

Tue Apr 28 00:16:31 1998  Tim Janik  <timj@gtk.org>

	* app/channels_dialog.c (channels_dialog_create): adjust the scrolled
	window to always show the currently focused channel item.

	* app/layers_dialog.c (layers_dialog_create): adjust the scrolled
	window to always show the currently focused layer item.

Mon Apr 27 23:29:10 MEST 1998 Sven Neumann <sven@gimp.org>

	* updated despeckle and sharpen plug-ins

Mon Apr 27 18:09:01 MEST 1998 Sven Neumann <sven@gimp.org>

	* updated bmp plug-in

Sun Apr 26 16:31:06 PDT 1998 Manish Singh <yosh@gimp.org>

	* Made 0.99.28 release

Sun Apr 26 16:17:46 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/procedural_db.c
	* app/text_tool.c: applied mem leak patch from Mattias Gronlund

	* plug-ins/tiff/tiff.c: fix for indexed save from Dan Mitchell

Sun Apr 26 15:11:06 PDT 1998 Manish Singh <yosh@gimp.org>

	* plug-ins/oilify/oilify.c: folded optimizations back in

Sun Apr 26 18:14:28 MEST 1998 Sven Neumann <sven@gimp.org>

	* gimp_tips.txt: added yet another tip

Sun Apr 26 17:50:36 MEST 1998 Sven Neumann <sven@gimp.org>

	* updated engrave plug-in

	* updated oilify plug-in
	* changed the call to plug-in-oilify in circuit.scm and lava.scm

Sun Apr 26 03:06:16 PDT 1998 Manish Singh <yosh@gimp.org>

	* oh goodie, the PSD plugin doesn't relay on endian junk anymore

Sun Apr 26 02:34:21 PDT 1998 Manish Singh <yosh@gimp.org>

	* updated CEL plugin

	* added PSD plugin and autoconf for byte order

Thu Apr 23 19:08:16 PDT 1998 Manish Singh <yosh@gimp.org>

	* Added sharpen to stable dist

	* updated sgi and despeckle plugins

	* plug-ins/xd/xd.c: works with xdelta 0.18. The use of xdelta
	versions prior to this is not-supported.

	* plug-in/gfig/gfig.c: spelling corrections :)

	* app/fileops.c: applied gimp-gord-980420-0, fixes stale save
	procs in the file dialog

	* app/text_tool.c: applied gimp-egger-980420-0, text tool
	optimization

Thu Apr 23 21:27:23 EDT 1998 Matthew Wilson <msw@gimp.org>

	* app/gimage.c: set srcPR2.[xy] to srcPR1.[xy] in
	gimage_construct_composite_preview (fixes hangs in preview creation)

Tue Apr 21 15:11:21 EDT 1998 Matthew Wilson <msw@gimp.org>

	* app/disp_callbacks.c: removed the tool reset when changing gdisplays
	* app/bezier_select.c: stop draw_core when changing gdisplays

Tue Apr 21 01:59:12 EDT 1998 Matthew Wilson <msw@gimp.org>

	* app/iscissors.c: Remove the iscissors outline by stopping the
	draw_core before bezierifying the selection.  There may be
	memory leaks here (the iscissors stuff does not appear to be freed
	on bezierify)

Mon Apr 20 18:15:54 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/main.c
	* app/errors.c: added --debug-handlers switch to get stack traces
	on all signals again (not all sigabrts and sigpipes are normal
	things)

	* plug-ins/animoptimize/animoptimze.c: updated

1998-04-20  Marc Ewing  <marc@redhat.com>

	* added RPM/* files and use them in gimp.spec

Mon Apr 20 01:24:10 PDT 1998 Manish Singh <yosh@gimp.org>

	* plug-ins/faxg3/g3.h
	* plug-ins/faxg3/run_tbl.c: commented out #ident's, since some
	compilers complain

Mon Apr 20 00:01:26 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/disp_callbacks.c: we get events in a funny order sometimes,
	so don't try to remove nonexistent signal handlers

Sun Apr 19 20:18:29 PDT 1998 Manish Singh <yosh@gimp.org>

	* added screenshot plug-in

	* plug-ins/animationplay/animationplay.c: fix sigsegv on close

Sun Apr 19 14:16:44 MEST 1998 Sven Neumann <sven@gimp.org>

	* app/app_procs.c: truncate labels in the splash screen if they
	are too long to be displayed without resizing the window; this
	should fix the problems with 100dpi fonts

Sat Apr 18 22:19:10 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/gimprc.c: don't dereference NULL pointer when a gimprc
	variable is used before it's defined. Exit gracefully

Sat Apr 18 11:45:04 PDT 1998 Manish Singh <yosh@gimp.org>

	* Made 0.99.27 release

Sat Apr 18 11:37:46 PDT 1998 Manish Singh <yosh@gimp.org>

	* plug-ins/dbbrowser/dbbrowser_util.c: make text entry for function
	name read-only

	* plug-ins/film/film.c
	* plug-ins/animationplay/animationplay.c: minor cleanups

Thu Apr 16 19:46:46 MEST 1998 Sven Neumann <sven@gimp.org>

	* plug-ins/script-fu/interp_slib.c: changed the link to
	the script-fu resources to point to www.gimp.org

Wed Apr 15 13:18:47 EDT 1998 Matthew Wilson <msw@gimp.org>

	* app/disp_callbacks.c: restart current tool when changing
	gdisplays

Wed Apr 15 17:40:55 MEST 1998 Sven Neumann <sven@gimp.org>

	* app/iscissors.c: changed toggle_buttons to check_buttons since
	all tools use them in the options dialog

Wed Apr 15 02:44:58 1998  George Lebl  <jirka@5z.com>

	* plug-ins/film/film.c: del_list_item_callback was calling
	  gtk_widget_destroy on an already unrefed widget

Wed Apr 15 02:03:25 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/disp_callbacks.c: disable keyboard accelerators
	during mouse image operations, so nothing funky happens
	in the middle of a motion (like converting image types
	or running a plugin)

Wed Apr 15 01:58:12 EDT 1998 Matthew Wilson <msw@gimp.org>

	* app/gdisplay.c: made a change to gdisplays_update_area to
	update _all_ gdisplays that point at the gimage ID.  This
	(should) fix the paint on the second layer of a second view bug.

Tue Apr 14 16:15:52 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/iscissors.c: partially applied gimp-monniaux-980413-0,
	corrects nonfunctional interface elements

Tue Apr 14 18:01:50 EDT 1998 Matthew Wilson <msw@gimp.org>

	* app/gdisplay.c: Set active_tool->drawable to NULL when destroying
	the gdisplay that the active tool points to.
	* app/giamge.c: Fixed spacing...

Tue Apr 14 13:40:07 PDT 1998 Manish Singh <yosh@gimp.org>

	* gradient.c: handle delete_event for color selector properly

	* plug-ins/webbrowser/web-browser.scm: updated link to the bugs
	page

Tue Apr 14 20:36:26 MEST 1998 Sven Neumann <sven@gimp.org>

	* gimp_tips.txt: applied gimp-quinet-980414-0; adds new tips
	* plug-ins/pagecurl/pagecurl.c: applied gimp-quinet-980414-1;
	defines M_PI
	* app/app_procs.c: applied gimp-quinet-980414-2; adds more
	information to the startup screen
	* app/regex.c
	* plugins/script-fu/regex.c: partially applied
	gimp-jbuhler-980412-0; adds braces to nested if/else

Tue Apr 14 10:11:04 MEST 1998 Sven Neumann <sven@gimp.org>

	* app/global_edit.c: Named cut and copy are now performed after
	the user is asked for a name, so cancelling the dialog works
	correctly.

Mon Apr 13 15:17:51 PDT 1998 Manish Singh <yosh@gimp.org>

	* moved man page from docs to top-level so it's always installed

Mon Apr 13 23:48:31 MEST 1998 Sven Neumann <sven@gimp.org>

	* app/histogram_tool.c: changed the Ok and Cancel buttons in the
	histogram dialog to a simple Close, because that's what they were
	actually doing

Mon Apr 13 13:09:32 EDT 1998 Matthew Wilson <msw@gimp.org>

	* app/commands.c: Fixed prefs to save stingy memory

Mon Apr 13 16:22:38 MEST 1998 Sven Neumann <sven@gimp.org>

	* app/convert.c: converting an empty image from grayscale to
	indexed used to crash the gimp

Mon Apr 13 15:37:42 MEST 1998 Sven Neumann <sven@gimp.org>

	* app/gdisplay.c: correctly update the menu-sensitivity; you can't
	paste into an empty image
	* global_edit.c: flush the displays when pasting from a named buffer

Mon Apr 13 13:40:50 MEST 1998 Sven Neumann <sven@gimp.org>

	*docs/gimp.1: fixes and updates to the man-page

Mon Apr 13 13:00:20 MEST 1998 Sven Neumann <sven@gimp.org>

	* gimp_tips.txt: more tips and nicer line wrap
	* app/tips_dialog.c: the last character (the final dot) was cut off

Mon Apr 13 02:12:21 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/xcf.c: fix a tiny bug in the xcf loader that would have
	caused gimp to crash on a corrupt xcf file

Mon Apr 13 01:47:22 PDT 1998 Manish Singh <yosh@gimp.org>

	* plug-ins/flarefx/flarefx.c: applied gimp-timecop-980412-0
	and tweaked it a bit to make it have proper behavior

	* plug-ins/snoise/snoise.c: updated plug-in

Sun Apr 12 22:31:11 PDT 1998 Manish Singh <yosh@gimp.org>

	* Changed address for FSF in all .h and .c files

	* app/configure.in: check for freebsd tiff libs

Mon Apr 13 00:41:50 EDT 1998 Matthew Wilson <msw@gimp.org>

	* app/command.c: Duh. We have a message_box.  Why not use it for
	the prefs code.

Mon Apr 13 00:27:45 EDT 1998 Matthew Wilson <msw@gimp.org>

	* app/gdisplay.c: Set the current tool's gdisplay pointer to NULL
	when destroying a gdisplay

	* app/interface.c: Use "clicked" as the signal to handle for menu
	based tools.  This lets us pop by_color_select back up.

Sun Apr 12 22:51:31 MEST 1998 Sven Neumann <sven@gimp.org>

	* gimp_tips.txt: added a few more tips
	* plugins/webbrowser/webbrowser.scm: updated the URL to the
	GIMP Bugs page

Sun Apr 12 15:49:25 MEST 1998 Sven Neumann <sven@gimp.org>

	* app/palette.c: fixed a typo in the menu
	* gimprc.in: removed the systemwide palettes directory from the
	palettes searchpath

Sun Apr 12 02:23:05 PDT 1998 Manish Singh <yosh@gimp.org>

	* configure.in: I guess it didn't end... an attempt to try to
	recognize all types of tiff configs

	* app/gdisplay_ops.c: resize on zoom fix for naught window
	positioning from Kevin Cozens <kcozens@interlog.com>

	* app/errors.c: gdk_exit needs to be prototyped

Sun Apr 12 01:19:35 PDT 1998 Manish Singh <yosh@gimp.org>

	* configure.in: more fixes... when will it all end...

	* plug-ins/xd/xd.c: compile with >= 0.15 now

	* app/transform.[ch]: applied gimp-alt-980412, fixes control
	point selection for transforms

Sat Apr 11 15:23:26 PDT 1998 Manish Singh <yosh@gimp.org>

	* Made 0.99.26 release

Sat Apr 11 15:03:43 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/gdisplay.c: reverted cosmetic fix below, broke zoomed
	updates

	* configure.in: changes to xdelta and jpeg checks

	* updated bmp plugin

	* portability patch for polar

	* minor bugfix to vpropagate

	* fix for memory problem in xwd

Sat Apr 11 00:03:33 PDT 1998 Manish Singh <yosh@gimp.org>

	* Made 0.99.25 release

Fri Apr 10 21:59:18 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/app_procs.c: fixed up idle handler for file open
	(look like testgtk idle demo)

	* app/colomaps.c: fixup for visual test and use of gdk_color_alloc
	for some fixed colors (from Owen Taylor)

	* app/errors.h
	* app/errors.c
	* app/main.c
	* libgimp/gimp.c: redid the signal handlers so we only get a
	debug prompt on SIGSEGV, SIGBUS, and SIGFPE.

	* applied gimp-jbuhler-980408-0 and gimp-joke-980409-0 (warning
	fixups)

	* applied gimp-monnaux-980409-0 for configurable plugin path for
	multiarch setups

Fri Apr 10 00:17:23 EDT 1998 Matthew Wilson <msw@gimp.org>

	* app/commands.c: Fixed (hopefully) the preferences code.  Added
	a warning to restart GIMP for those changes that require restarts.

Fri Apr 10 01:55:50 MEST 1998 Sven Neumann <sven@gimp.org>

	* added three new logo-scripts from keebler@wco.com:
	bovinated-logo.scm, comic-logo.scm and gradient-bevel-logo.scm

Thu Apr  9 09:28:04 1998  Scott Goehring  <scott@poverty.bloomington.in.us>

	* libgimp/gimp.c (gimp_main): strict C requires that function
	pointers be preceded by '&'.  SGI compilers seem to not like it
	when they're not.

	* app/gdisplay.c: fixed updating to not clip display updates to
	image boundary (so that layer boundaries that hang over will be
	erased properly when the layer is removed); fixes a long-standing
	cosmetic bug.

Thu Apr  9 01:54:19 PDT 1998 Manish Singh <yosh@gimp.org>

	* configure.in: fix jpeg check. Add config for sendmail

	* plug-ins/mail/Makefile.am: use autoconf MAILER

	* plug-ins/script-fu: s/\<err\>/my_err/g for portability

Thu Apr  9 02:53:14 EST 1998 Matthew Wilson <msw@gimp.org>

	* app/app_procs.c: Added a little wrapper when loading files from
	command line that loads the files after gtk_main starts.  This
	fixes the segfault from the tips dialog when you load images on
	the command line.  Cudos to Owen for the fix.

Wed Apr  8 23:47:59 PDT 1998 Manish Singh <yosh@gimp.org>

	* configure.in: add AC_FUNC_ALLOCA for regex

Wed Apr  8 21:12:01 PDT 1998 Manish Singh <yosh@gimp.org>

	* configure.in: redid libjpeg check to make sure old versions
	aren't used. Also #undef PACKAGE and VERSION since some
	jconfig.h's define it

	* updated included regex.[ch] to the one in GNU grep

	* plug-ins/script-fu/interp_regex.c: we don't need to kludge
	around OSF1 anymore, since we use our own regex stuff

Wed Apr  8 17:55:38 EDT 1998 Adrian Likins <adrian@gimp.org>

	*plugins/script-fu/scripts/grid-system.scm
	*plugins/script-fu/scripts/hsv-graph.scm
	*plugins/script-fu/scripts/image-structure.scm
	*plugins/script-fu/scripts/line-nova.scm
	*plugins/script-fu/scripts/text-circle.scm
	*plugins/script-fu/scripts/unsharp-mask.scm:
	*data/palettes/Named_colors:
	        script and palette updates from Shuji Narazaki

Wed Apr  8 00:14:29 PDT 1998 Manish Singh <yosh@gimp.org>

	* Made 0.99.24 release

Wed Apr  8 00:04:31 PDT 1998 Manish Singh <yosh@gimp.org>

	* app/batch.c: fixup for script-fu in batch mode from
	Christian Maegaard <cc@chaos.dk>

	* added pagecurl plug-in

Wed Apr  8 01:40:45 EDT 1998 Matthew Wilson <msw@gimp.org>

	* app/by_color_select.c: Don't destroy tool.

Tue Apr  7 22:36:22 PDT 1998 Manish Singh <yosh@gimp.org>

	* added regex.[ch] to app/ and plug-ins/script-fu/ so we REALLY
	have proper regex functions on all platforms

	* updated gfig plugin

Mon Apr  6 20:38:49 PDT 1998 Manish Singh <yosh@gimp.org>

	* configure.in: fix for $srcdir != $builddir for data. Tightened
	check for random() and add -lucb on systems that need it. Fix for
	xdelta.h check. Find xemacs as well as emacs. Properly define
	settings for print plugin.

	* app/Makefile.am: ditch -DNDEBUG, since nothing uses it

	* plug-ins/flame/Makefile.am
	* plug-ins/flame/cmap.c
	* plug-ins/flame/flame.c
	* plug-ins/flame/libifs.c: properly handle random() and friends

	* plug-ins/pnm/pnm.c: workaround for systems with old sprintfs

	* plug-ins/print/Makefile.am
	* plug-ins/print/print-escp2.c
	* plug-ins/print/print-pcl.c
	* plug-ins/print/print-ps.c
	* plug-ins/print/print-util.c
	* plug-ins/print/print.c: fold in portability fixes with the new
	source. Handle defs from configure in the Makefile

	* plug-ins/sgi/sgi.c
	* plug-ins/sgi/sgi.h: fold in portability fixes with the new source

	* plug-ins/threshold_alpha/threshold_alpha.c: properly get params
	in non-interactive mode

	* updated bmp plugin, folded in portability fixes

Sun Apr  5 17:43:50 EDT 1998 Matthew Wilson <msw@gimp.org>

	* app/bezier_select.c: Destroy the tool when changing displays.
	* app/command.c: initialize pointers to drawables when selecting
	tools
	* app/disp_callbacks.c: initialize pointers to drawables on first
	click of a gdisplay
	* app/gimage.c: removed extra tool destruction
	* app/tools.c: make a fallback case when starting tools so that
	you'll always have an active tool.

Sat Apr  4 15:43:28 MEST 1998 Sven Neumann <sven@gimp.org>

	* app/ops_buttons.[c|h]
        * app/channels_dialog.c
        * app/layers_dialog.c: The sensitivity of the buttons wasn't set
	correctly when deleting an image.

Fri Apr  3 13:49:38 MEST 1998 Sven Neumann <sven@gimp.org>

	* app/menus.c
	* app/gdisplay.c
	* app/commands.[c|h]: Added a "Add Alpha Channel" menu-entry to
	the Image-menu. Now it is possible to work on a single-layer image
	without opening the Layers-dialog for adding an alpha channel.

Fri Apr  3 12:22:40 MEST 1998 Sven Neumann <sven@gimp.org>

	* app/Makefile.am
	* tools/*.xpm
	* app/ops_buttons.[c|h]
	* app/channels_dialog.c
	* app/layers_dialog.c: Added buttons to access the menu functions
	in the Layers&Channels-dialog more directly. They are connected to
	the menu-item-callback-functions.

Thu Apr  2 04:06:50 EST 1998 Matthew Wilson <msw@gimp.org>

	* app/disp_callbacks.c: Always ungrab the pointer on button release.
	This is a quick and dirty hack to try to nuke the pointer grab
	bug.

Thu Apr  2 01:49:34 EST 1998 Matthew Wilson <msw@gimp.org>

	* app/transform_core.c: added a change to make a note of the
	current drawable in the button_release.  This prevents the tool
	from being restarted when the transform_core makes a floating
	selection.
	* app/tools.c: Initialize the current drawable to NULL if
	there is gdisp == NULL.

Thu Apr  2 23:52:54 EST 1998 Matthew Wilson <msw@gimp.org

	* app/gimage.c
	* app/tools.c: Made changes to restart tools properly when
	the current drawable changes.

Thu Apr  2 20:09:06 MEST 1998 Sven Neumann <sven@gimp.org>

	* app/channels_dialog.c: the impossibility of duplicating a
	non-auxillary channel is now reflected by the menu-sensitivity

Thu Apr  2 15:34:22 MEST 1998 Sven Neumann <sven@gimp.org>

	* updated iwarp to the version on the registry and reapplied
	(hopefully) all portability-patches that were applied in between

Wed Apr  1 11:10:15 EST 1998 Matthew Wilson <msw@gimp.org>

	* app/brightness_contrast.c
	* app/by_color_select.c
	* app/color_balance.c
	* app/color_picker.c
	* app/curves.c
	* app/histogram_tool.c
	* app/hue_saturation.c
	* app/levels.c
	* app/posterize.c
	* app/threshold.c
	* app/transform_core.c: modified to call the cancel callback
	instead of the ok callback when freed.  modified to save the
	last used drawable so that we might be able to check later
	and restart the tool if need be.

	* app/disp_callbacks.c
	* app/gimage.c: modified tool restart/destruction code

	* app/tools.c
	* app/tools.h: added tools_initialize, made changes to
	be able save the last used drawable in the tool.

Wed Apr  1 23:14:42 MEST 1998 Sven Neumann <sven@gimp.org>

	* configure.in: added checks for print-systems as suggested by
	Michael Sweet
	* plugins/print
	* plugins/sgi: updated to the version on the registry

Wed Apr  1 20:04:26 MEST 1998 Sven Neumann <sven@gimp.org>

	* app/layers_dialog.c: applied gimp-simon-980331-0
	* app/blend.c: change the repeat_mode_menu to insensitive when
	gradient_type is Shapeburst*

Wed Apr 01 04:07:29 EST 1998 Matthew Wilson <msw@gimp.org>

	* app/disp_callbacks.c: Only destroy the current tool if you change
	gdisplays and the tool caches image data.

Wed Apr 01 03:40:15 EST 1998 Matthew Wilson <msw@gimp.org>

	* app/disp_callbacks.c:  If the current gdisp->ID does not match
	the ID of the gdisp_ptr in the active_tool, restart it.

Tue Mar 31 03:10:12 EST 1998 Matthew Wilson <msw@gimp.org>

	* app/iscissors.c: Set tool->preserve to TRUE in tools_new_iscissors.

Tue Mar 31 02:21:15 EST 1998 Matthew Wilson <msw@gimp.org>

	* app/gimage.c
	* app/tools.c
	* app/tools.h: Added a field in the Tools struct, preserve.
	During gimage_dirty, if this flag is not set the tool will be
	reset.  This is good for tools that keep a copy of the image
	in cache for local manipulation like transform_core.

	* app/bezier_select.c
	* app/blend.c
	* app/brightness_contrast.c
	* app/bucket_fill.c
	* app/color_balance.c
	* app/color_picker.c
	* app/crop.c
	* app/curves.c
	* app/ellipse_select.c
	* app/free_select.c
	* app/histogram_tool.c
	* app/hue_saturation.c
	* app/levels.c
	* app/move.c
	* app/paint_core.c
	* app/posterize.c
	* app/rect_select.c
	* app/text_tool.c
	* app/transform_core.c: Set the preserve flag to the correct
	values in the new functions and wrapped calls to functions that
	dirty the gimage to prevent tool restarts.

	* app/disp_callbacks.c
	* app/menus.c: Removed Nether's tool patch.


Mon Mar 30 21:58:34 PST 1998 Manish Singh <yosh@gimp.org>

        * app/brush_select.c
        * app/iscissors.c: get rid of unused variable warnings

        * app/fileops.c: refresh the filesel better

        * app/plug_in.c: make sure everything gets initialized to something
        in the plug-in struct

Mon Mar 30 13:52:50 EST 1998 Adrian Likins <adrian@gimp.org>

	*plug-ins/png/png.c: changed nparams it expected
	so it would work non-ineractively

Mon Mar 30 14:04:26 MEST 1998 Sven Neumann <sven@gimp.org>

	* app/by_color_select.c: now checks if the image it is
	operating on still exists.

Sun Mar 29 14:29:34 PST 1998 Manish Singh <yosh@gimp.org>

	* plug-ins/sparkle/sparkle.c: fixed improper use of types;
	works now

Sun Mar 29 11:47:02 EST 1998 Adrian Likins <adrian@gimp.org>

	*app/brushes.c: changed gimp-brushes-refresh so
	that it actually refreshes again after i broke it.

Sat Mar 28 22:42:49 1998  Owen Taylor  <owt1@cornell.edu>

	* configure.in (gimpdir): Removed duplicate saving of
	cflags. Add GTK_CFLAGS to CPPFLAGS for library tests,
	instead of to CFLAGS.

Fri Mar 27 13:41:55 EST 1998 Matthew Wilson <msw@gimp.org>

	* app/floating_sel.c: Always update the drawable when converting
	a floating selection to a layer

Fri Mar 27 11:41:30 EST 1998 Adrian Likins <adrian@gimp.org>

	*plug-ins/palette/*: added the save palette plugin

Fri Mar 27 14:33:42 MET 1998 Sven Neumann <sven@gimp.org>

	* plugins/dbbrowser/dbbrowser_utils.c
	* plugins/sparkle/sparkle.c: small changes to make it compile
	on irix-6.4 with the native compiler.

Fri Mar 27 00:19:38 PST 1998 Manish Singh <yosh@gimp.org>

	* Made 0.99.23 release

Fri Mar 26 03:13:15 EST 1998 Matthew Wilson <msw@gimp.org>
	* app/paint_core.c: Offset brush buffer when painting on edges
	of the canvas.
	* app/text_tool.c: Set window to auto_shrink = FALSE

Fri Mar 26 01:30:45 EST 1998 Matthew Wilson <msw@gimp.org>
	* app/iscissors.c
	* app/bezier_select.c: Change to select the bezier tool properly
	when converting from iscissors to bezier

Thu Mar 26 17:41:55 MST 1998 Nathan Summers <rock@gimp.org>
	* app/iscissors.c: fixed the sigsegv if the layer is offset!

Thu Mar 26 16:32:05 MST 1998 Nathan Summers <rock@gimp.org>
	* app/iscissors.c: fix a typo (i where a j should be)

Thu Mar 26 15:26:18 MST 1998 Nathan Summers <rock@gimp.org>
	* app/iscissors.c: This version works much better.
	outstanding bugs <VERY IMPORTANT>:

	1. the edgemap does not seem to be constructed quite right
	(construct_edge_map) -- uncomment #define
	ISCISSORS_STILL_DOES_NOT_WORK and take a look at the edgemap -- it
	will be saved to the file "dump"

	2. sigsegvs if the layer offset isn't 0,0.  dunno why.

	3. convert to bezier still does not work!  Any tools experts wanna
	help me with it?  (it converts to bezier fine, it just doesn't set
	the active tool to bezier currectly.)

Thu Mar 26 12:15:38 MST 1998 Nathan Summers <rock@gimp.org>

	* app/iscissors.c: fixes the display artifact where the preview
	outline of the selected area would not appear or would appear in the
	wrong place or have the wrong shape

Thu Mar 26 12:00:47 MST 1998 Nathan Summers <rock@gimp.org>

	* app/iscissors.c: This should hopefully fix most of the UMRs
	(uninitialized memory reads) found with Purify.  No noticable
	change in iscissors's behavior, unfortunately.

Thu Mar 26 13:03:18 EST 1998 Adrian Likins <adrian@gimp.org>

	* app/app_procs.c app/brush_select.c app/brushes.c
	app/brushes.h app/convert.c app/gradient.c app/gradient.h
	app/palette.c app/palette.h app/pattern_select.c app/patterns.c
	app/patterns.h:   Fixed up --no-data so that the various *_init()
	routines always get called, and so that when in interactive mode
	the data can be loaded by the user even when started with --no-data.
	Fixes the blend bug too...

Thu Mar 26 18:38:54 MET 1998 Sven Neumann <sven@gimp.org>

	app/gradient.c: fixed another --no-data problem; also the
	editor now behaves better when it is resized

Wed Mar 25 22:46:36 MST 1998 Nathan Summers <rock@gimp.org>

	* app/iscissors.c: fixed a problem with unintialized variables

Wed Mar 25 19:29:09 PST 1998 Manish Singh <yosh@gimp.org>

	* app/gimprc.c: support for parsing env vars in gimprc

Wed Mar 25 18:06:39 PST 1998 Manish Singh <yosh@gimp.org>

	* applied gimp-quinet-980122-0 and tweaked the tests a bit,
	this makes the optional library tests in configure.

	* applied gimp-jbuhler-980321-0, fixes more warnings in plug-ins

1998-03-25  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* app/asupsample.c (adaptive_supersample_area): Removed Sopwith's
	"speed optimizations", as they introduced bugs (exposed by using a
	high threshold value for supersampling).  They weren't much of a
	speed improvement, anyway (memcpy on very small regions, etc.).
	Also, assuming that all-bytes-zero is a floating-point 0 value is
	not portable.

Wed Mar 25 16:22:00 EST 1998 Matthew Wilson <msw@gimp.org>

	* app/app_procs.c: now prints messages when starting up --no-splash

	* app/gimprc.c: now prints messages when starting up --no-splash

	* app/plug-in.c: does not print messages when starting up with
	splash screen

Tue Mar 24 20:32:53 PST 1998 Manish Singh <yosh@gimp.org>

	* app/fileops.c: refresh the open/save as dialogs upon open

	* applied gimp-quinet-980323-0, fixing more M_PI madness

	* applied gimp-quinet-980323-1 which fixes redundant inline
	checks

	* plug-ins/gfig/gfig.c: changed stipple to type unsigned char to
	quell warnings

Tue Mar 24 18:03:37 PST 1998 Manish Singh <yosh@gimp.org>

	* configure.in: corrected test for libXmu for some systems; added
	test for difftime

	* app/main.c: use glib ATEXIT macro

	* app/text_tool.c: applied gimp-stric-980321-0 (text preview
	refresh)

	* plug-ins/script-fu/script-fu-console.c: don't need to init
	gtkpreview stuff, since we don't use them

	* plug-ins/script-fu/*: many portability fixes

	* plug-ins/pnm/pnm.c: sprintf portability patch

	* plug-ins now #define RAND_MAX if needed

	* plug-ins/sparkle/sparkle.c: applied gimp-joke-980322-1

Tue Mar 24 04:19:55 PST 1998 Manish Singh <yosh@gimp.org>

	* app/convert.c: fix for fencepost error from Adam

Mon Mar 23 18:08:59 PST 1998 Manish Singh <yosh@gimp.org>

        * app/gimage_mask.c
        * app/paint_core.c: applied patch from Ben Jackson to fix
        fractional pixel errors and reverted the old fix.

        * app/paint_funcs.h: changed the #defines for ERASE_MODE and
        REPLACE_MODE to correctly match layer_modes[]

Mon Mar 23 20:51:53 1998  Owen Taylor  <owt1@cornell.edu>

	* INSTALL configure.in: Added some documentation
	about why the configuration for GTK could be failing,
	and pointed to it in the failure message.

Sun Mar 22 18:27:57 EST 1998 Adrian Likins <adrian@gimp.org>

	* plugins/dbbrowser/dbbrowser_utils.c:
	* plugins/dbbrowser/dbbrowser_utils.h: Fix from
 	Matt Wilson (msw) to fix the crash with script-fu
	 pdbs in dbbrowser.

	* app/fileops.c: another patch from matt, this one to
	fix the bug with saving images with no layers.

Sun Mar 22 14:23:03 EST 1998 Adrian Likins <adrian@gimp.org>

        * app/iscissors.c, app/tips_dialog.c, app/gradient.c,
        libgimp/gimp.c, plug-ins/AlienMap/AlienMap.c,
        plug-ins/bmp/bmp.c, plug-ins/fits/fitsrw.h,
        plug-ins/fits/fitsrw.c, plug-ins/flarefx/flarefx.c,
        plug-ins/gfig/gfig.c, plug-ins/gfli/gfli.c,
        plug-ins/gicon/gicon.c, plug-ins/gqbist/gqbist.c,
        plug-ins/gtm/gtm.c, plug-ins/hot/hot.c,
        plug-ins/ifscompose/ifscompose.c,
        plug-ins/ifscompose/ifscompose_utils.c
        plug-ins/max_rgb/max_rgb.c, plug-ins/nlfilt/nlfilt.c,
        plug-ins/pat/pat.c, plug-ins/pcx/pcx.c, plug-ins/rotate/rotate.c,
        plug-ins/script-fu/script-fu-server.c, plug-ins/snoise/snoise.c,
        plug-ins/threshold_alpha/threshold_alpha.c,
        plug-ins/zealouscrop/zealouscrop.c :gimp-joke-980321

	plug-ins/CML_explorer, plug-ins/autocrop,
        plug-ins/align_layers, plug-ins/blinds,
        plug-ins/bmp, plug-ins/megawidget: gimp-joke-980322

	Applied gimp-joke-980322-0.patch and gimp-joke-980321-0.patch
	from Yasuhiro SHIRASAKI <joke@awa.tohoku.ac.jp>. Mostly
 	portability for DEC osf1's cc. Lots of MAIN();'s, trailing
	commas in enums, and guchar/gchar madness.


Sun Mar 22 01:59:31 PST 1998 Manish Singh <yosh@gimp.org>

	* autoconfed for random/lrand48/rand madness

	* dbbrowser uses clist now, thanks to msw

	* gfig.c: minor fix for buggy compilers

	* plasma.c, snoise.c: applied gimp-kmt-980321-[0,1]

	* tiff.c: minor fix

Sat Mar 21 18:34:56 MET 1998 Sven Neumann <sven@gimp.org>

	* fixed ripply-anim.scm and readded it

Sat Mar 21 16:26:08 MET 1998 Sven Neumann <sven@gimp.org>

	* docs/gimp.1
	* app/install.c: small changes to reflect the fact that a gfig
	directory is created in the users gimp-directory.

Sat Mar 21 15:43:34 MET 1998 Sven Neumann <sven@gimp.org>

	* gimprc.in
	* app/commands.c: removed auto-save from preferences and marked
	it as not implemented in gimprc. The code is still there for later
	reuse.
	* app/gdisplay_ops.c: changed the WMCLASS on the image close
	confirmation dialog to 'really_close'

Sat Mar 21 14:43:06 MET 1998 Sven Neumann <sven@gimp.org>

	* docs/gimp_quick_reference.[ps|tar.gz]:
	Changes to the reference sheet.

Fri Mar 20 18:15:06 PST 1998 Manish Singh <yosh@gimp.org>

	* s/bzero/memset/ and s/bcopy/memcpy/ in plug-ins

Fri Mar 20 16:54:47 EST 1998 Adrian Likins <adrian@gimp.org>

	* app/palette.c:
	* app/palette.h:
	* app/internal_procs.c: Fixed some brokenness in palette refreshing.

Mar 19 21:36:41 PST 1998 Manish Singh <yosh@gimp.org>

	* Made 0.99.22 release
	* app/undo.c: handle exposure correctly

Thu Mar 19 22:05:56 CST 1998  Larry Ewing  <lewing@gimp.org>

	* app/palette.c: fixed out of bounds reference in pallete_create.
	The dialogs are a mess.

Thu Mar 19 18:36:09 PST 1998 Manish Singh <yosh@gimp.org>

	* ltmain.sh: libtool patch for Solaris
	* added libgck, MapObject, and gfig back in
	* gimprc.in: entry for gfig patterns

Thu Mar 19 14:13:33 EST 1998 Adrian Likins <adrian@gimp.org>

	* applied patch from Andy Thomas to brushes.c to
	improve brush loading via pdb. Fixes problems with
	 bruses of the same name.

	*plugins/script-fu/scripts/ripply-anim.scm: removed
	until someone fixes it.

Thu Mar 19 13:21:28 MET 1998 Sven Neumann <sven@gimp.org>

	* docs/gimp_quick_reference.[tex|ps]: added a
	single-paged reference sheet with most of the hotkeys

Thu Mar 19 03:28:29 PST 1998 Manish Singh <yosh@gimp.org>

	* plug-ins/script-fu/script-fu-scripts.c: handle delete
	event for colorsel correctly
	* plug-ins/polar/polar.c: minor cleanups

Thu Mar 19 01:04:56 PST 1998 Manish Singh <yosh@gimp.org>

	* applied gimp-jbuhler-980315-0 (quelled warnings)

Wed Mar 18 20:57:55 EST 1998 Adrian Likins <adrian@gimp.org>

	 * AlienMap/AlienMap.c CEL/CEL.c CML_explorer/CML_explorer.c
        align_layers/align_layers.c animationplay/animationplay.c
        bmp/bmpwrite.c dbbrowser/dbbrowser.c emboss/emboss.c
        exchange/exchange.c faxg3/faxg3.c faxg3/g3.c gbr/gbr.c
        gif/gif.c gqbist/gqbist.c hot/hot.c ifscompose/ifscompose.c
        iwarp/iwarp.c max_rgb/max_rgb.c maze/maze_face.c
        megawidget/megawidget.c mpeg/mpeg.c nlfilt/nlfilt.c pcx/pcx.c
        plasma/plasma.c pnm/pnm.c print/print-escp2.c
        print/print-pcl.c print/print.c scatter_hsv/scatter_hsv.c
        script-fu/script-fu-scripts.c script-fu/script-fu.c
        sinus/sinus.c tga/tga.c tileit/tileit.c
        vpropagate/vpropagate.c xpm/xpm.c:
		 More picky picky ansi type
        	stuff from gimp-hpux-980316.patch.

Wed Mar 18 15:06:13 PST 1998 Manish Singh <yosh@gimp.org>

	* define M_PI if it's not already defined in lots of
	source files

Wed Mar 18 16:57:52 EST 1998 Adrian Likins <adrian@gimp.org>

	 * blend.c brightness_contrast.c brush_select.c brushes.c
          bucket_fill.c by_color_select.c channels_dialog.c
          color_balance.c convolve.c crop.c curves.c eraser.c fileops.c
          frac.c gradient.c histogram_tool.c hue_saturation.c
          image_render.c indexed_palette.c layers_dialog.c levels.c
          move.c paintbrush.c pattern_select.c pencil.c
          perspective_tool.c posterize.c rect_select.c scale_tool.c
          threshold.c tips_dialog.c:
                 appied most of gimp-hpux-980316-0.patch
                from ???? Mostly added static's here and there
	         and casting stuff.

	* app/indexed_palette.c: made dialog non-resizeable

Wed Mar 18 21:16:14 MET 1998 Sven Neumann <sven@gimp.org>

	* app/crop.c: fixed an indented #define

Wed Mar 18 19:11:01 MET 1998 Sven Neumann <sven@gimp.org>

	* app/app_procs.c: split the "Brought to you by S&P" line in
	two to avoid problems with 100dpi fonts

Wed Mar 18 00:06:50 MET 1998 Sven Neumann <sven@gimp.org>

	* gradient.c: fixed a problem in the gradient editor
        when gimp is started with the no-data option and no
        gradients are load.

Tue Mar 17 01:38:18 PST 1998 Manish Singh <yosh@gimp.org>

	* updated gif, animationplay, animoptimize, and bmp plugins

Mon Mar 16 21:52:46 CST 1998  Larry Ewing  <lewing@gimp.org>

	* app/convert.c (indexed_ok_callback): added gimage_ID to the
	dialog struct to check if the gimage was still around.

	* app/commands.c: fixed border/grow/shrink to check for valid
	gimage.  (Once again object if you don't like this method).

Mon Mar 16 16:31:11 PST 1998 Manish Singh <yosh@gimp.org>

	* updated xpm plugin

Mon Mar 16 15:57:08 PST 1998 Manish Singh <yosh@gimp.org>

	* app/iscissors.c: more iscissors fun

Mon Mar 16 17:05:54 CST 1998  Larry Ewing  <lewing@gimp.org>

	* app/commands.c: changed select_feather_cmd_callback to pass the
	gimage->ID rather than the gimage to prevent a fatal error.  If
	you have objections to this speak now.

Mon Mar 16 17:50:56 EST 1998 Adrian Likins <adrian@gimp.org>

	* plugins/illusion/illusion.c:
	* plugins/papertile/papertile.c:
	* plugins/fractaltrace/fractaltrace.c:
	* plugins/flame/flame.c: Changed MAIN(); to MAIN()

	*gimprc_user: added a commented out (install-colormap)
	option

	*app/install.c: comsetic update to show info about .gimp/scripts

	*plugins/sparkle/sparkle.c:
	*plugins/despeckle/despeckle.c: made a local MIN/MAX instead
	of redefining the normal one (causes problems on some compilers)

Mon Mar 16 05:12:00 CST 1998  Larry Ewing  <lewing@gimp.org>

	* app/move.c:
	* app/gdisplay.c:
	* app/gimage.c: Reworked the guide drawing and picking code to
	remove all known guide artifacts.

Mon Mar 16 12:20:12 EET 1998 Lauri Alanko <la@iki.fi>

	* app/menus.c: Fixed the tool options disappearing at undo.

Mon Mar 16 02:03:47 PST 1998 Manish Singh <yosh@gimp.org>

	* updated gif and animationplay plugins

Sun Mar 15 22:32:17 PST 1998 Manish Singh <yosh@gimp.org>

	* all plugins parse gtkrc now

	* configure.in: save CFLAGS properly

Mon Mar 16 00:28:16 CST 1998  Larry Ewing  <lewing@gimp.org>

	* app/undo.c: added back in the "extra" update I removed earlier.

Sun Mar 15 20:39:12 CST 1998  Larry Ewing  <lewing@gimp.org>

	* app/undo.c (undo_pop_layer_displace): removed what seemed to be
	an extra call to drawable_update on the layer, and added a call to
	update the layer->mask.

Sun Mar 15 14:50:21 CST 1998  Larry Ewing  <lewing@gimp.org>

	* app/fileops.c (file_save_as_callback): fixed file Save As
	cancel callback to use gtk_signal_connect_object.

Sun Mar 15 13:37:22 MET 1998 Sven Neumann <sven@gimp.org>

	* libgimp/gimpwire.c: applied Raphael Quinet's patch that
	  changes the wire_read error message to something slightly more
	  useful.

Sun Mar 15 01:12:06 PST 1998 Manish Singh <yosh@gimp.org>

	* made 0.99.21 release

Sun Mar 15 02:06:18 CST 1998  Larry Ewing  <lewing@gimp.org>

	* app/layers_dialog.c: pass layer_ID instead of layer_widget to
	rename funtion to prevent dereferencing freed mem. Fixes layer
	rename bug.

Sun Mar 15 06:15:37 1998  Tim Janik  <timj@gimp.org>

	* app/gimage.c (gimage_remove_layer): check whether the removed layer
	is floating_sel *and* check whether it is active_layer.

	* plug-ins/exchange/exchange.c (doDialog): also destroy the main dialog
	if the "Cancel" button is clicked.

	* plug-ins/flame/flame.c: use gtk_quit_add_destroy instead of
	gtk_quit_add (,gtk_widget_destroy,), i should have really known
 	better since i wrote gtk_quit_add_destroy() exclusively for the gimp ;)
	* app/tips_dialog.c (tips_dialog_create): likewise.
	* app/indexed_palette.c (indexed_palette_create): likewise.
	* app/fileops.c (file_open_callback): likewise.
	* app/fileops.c	(file_save_as_callback): likewise.

Sun Mar 15 03:54:58 1998  Tim Janik  <timj@gimp.org>

	* plug-ins/AlienMap/AlienMap.c: show/hide about dialog, don't affect
	the main dialog.

	* plug-ins/flame/flame.c (edit_callback): hide the dialog on delete.
	(make_file_dlg): hide the dialog on delete.

	* plug-ins/ifscompose/ifscompose.c (ifs_options_dialog): hide the dialog
	on delete.

	* app/interface.c (toolbox_delete): handle WM delete of toolbox
	correctly.
	(gdisplay_delete): don't close image window without confirmation.

Sat Mar 14 18:38:26 PST 1998 Manish Singh <yosh@gimp.org>

        * app/iscissors.c: new, improved, still buggy iscissors!

        * app/fileops.c: correctly hide the file selector

        * app/transform_core.c: a better fix for the display artifacts

        * added aa plugin back in

Sat Mar 14 20:52:06 EST 1998 Adrian Likins <adrian@gimp.org>

	* doc/gimp.1
	* app/main.c: some updates to reflect that none of
	  "valid debugging options" do anything anymore

Sat Mar 14 15:14:16 PST 1998 Manish Singh <yosh@gimp.org>

	* updated to use libtool 1.1

	* app/transform_core.c: fixed display artifacts for the
	transform tools, sorta.

	* plug-ins/pcx/pcx.c: updated pcx plug-in

Sat Mar 14 18:50:29 MET 1998 Sven Neumann <sven@gimp.org>

	* app/main.c: applied gimp-ovchinnikov-970312-0.patch which
	 initializes locale.

Sat Mar 14 17:17:31 MET 1998 Sven Neumann <sven@gimp.org>

	* app/internal_procs.c
	* app/text_tool.c
	* app/text_tool.h: applied gimp-edas-980305-0.patch (after a small
          fix). Now registry and encoding can be choosen in the text tool
          and two new pdb-functions are available to access this
	  functionality.
	* plugins/script-fu/scripts/i26-gunya2.scm: changed to make it
	  follow the naming-convention

Fri Mar 13 21:11:59 PST 1998 Manish Singh <yosh@gimp.org>

	* configure.in: use gtk-config now
	* app/gimage.c: gtk is paranoid. Must appease the warning gods.

Sat Mar 14 00:50:31 1998  Tim Janik  <timj@gimp.org>

	* plug-ins/script-fu/script-fu-scripts.c: only destroy the dialog at
	the end of gtk_main() if it still exists.

Fri Mar 13 16:54:12 CST 1998  Larry Ewing  <lewing@gimp.org>

	* app/image_render.c:  added some g_return_if_fails to the render
	funcs until I can come up with a better fix.

Fri Mar 13 12:53:22 1998  Tim Janik  <timj@gimp.org>


	* app/layers_dialog.c: proper destruct at the end of gtk_main().
	(layer_widget_delete): unreference the layer widget's list item.
	(layers_dialog_free): instead of destroying the menu, sink it since
	it is still floating because we didn't attach it to some other widget.
	(layers_dialog_free): sink the preview, destroy doesn't work since it's
	still floating. wonder what the preview is created for if it is never
	used?.

	* app/channels_dialog.c (channel_widget_delete): unreference the channel
	widget's list item.
	* app/channels_dialog.c (channels_dialog_free): sink the menu.
	* app/channels_dialog.c (channels_dialog_free): sink the preview.

	* app/indexed_palette.c (indexed_palette_create): update the image list
	even on initial creation. fixed the option menu warning.

	* plug-ins/script-fu/script-fu-console.c (script_fu_browse_callback):
	properly destroy the browser when gtk_main() quits.

	* plug-ins/dbbrowser/dbbrowser_utils.c (gimp_db_browser): pass a widget
	pointer back to our caller, for enabling proper destruction.

	* plug-ins/script-fu/script-fu-console.c (script_fu_console_interface):
	only destroy the dialog on exit if it is still existing.

Fri Mar 13 17:22:46 MET 1998 Sven Neumann <sven@gimp.org>

	* docs/gimp.1: fixed some typos in the man-page

Fri Mar 13 10:21:21 1998  Scott Goehring  <scott@poverty.bloomington.in.us>

	* app/convert.c (generate_histogram_rgb): fixed buffer overrun in
	convert.c correctly; the previous "fix" forced quantization when
	it wasn't necessary in some cases (and made Adam very mad).

Fri Mar 13 00:51:37 PST 1998 Manish Singh <yosh@gimp.org>

	* app/color_picker.c: added display of hex triplets for HTML
	people

Thu Mar 12 18:51:09 PST 1998 Manish Singh <yosh@gimp.org>

        * app/gdisplay.c
	* app/by_color_select.c: Fix for indexed selection for multiple
	layers by Ben Jackson. Reenabled select by color for indexed
	images

Thu Mar 12 21:25:51 1998  Scott Goehring  <scott@poverty.bloomington.in.us>

	* app/undo.c (undo_pop_layer_mod): Fixed a desynch bug when
	undoing "add alpha layer".

Thu Mar 12 22:52:47 1998  Tim Janik  <timj@gimp.org>

	* about_dialog.c:
	* app_procs.c:
	* brightness_contrast.c:
	* brush_select.c:
	* by_color_select.c:
	* channel_ops.c:
	* channels_dialog.c:
	* color_balance.c:
	* color_select.c:
	* commands.c:
	* convert.c:
	* curves.c:
	* fileops.c:
	* gdisplay_ops.c:
	* global_edit.c:
	* gradient.c:
	* histogram_tool.c:
	* hue_saturation.c:
	* indexed_palette.c:
	* info_dialog.c:
	* install.c:
	* interface.c:
	* layers_dialog.c:
	* levels.c:
	* main.c:
	* palette.c:
	* pattern_select.c:
	* posterize.c:
	* text_tool.c:
	* threshold.c:
	* tips_dialog.c:
	* tools.c:
	fixed a lot of the destroy handlers and delete_event handlers, still
 	not everything perfect, though.

Wed Mar 11 22:02:03 PST 1998 Manish Singh <yosh@gimp.org>

	* Made 0.99.20 release

Wed Mar 11 21:42:15 PST 1998 Manish Singh <yosh@gimp.org>

	* app/iscissors.c: another iscissors patch, don't know
	if it does any good though

Wed Mar 11 19:30:54 EST 1998 Adrian Likins <adrian@gimp.org>

	*docs/gimp.1: added gimp man page

	*app/gdisplay.c: disables by-color-select for indexed images

	*plugins/webbrowse/web-browser.scm: updated some urls

	*plugins/script-fu/sripts/circuit.scm: update for change in maze

Wed Mar 11 18:03:38 CST 1998 Larry Ewing  <lewing@gimp.org>

	* app/disp_callbacks.c: added checks to recreate the active tool
	if need be.

Wed Mar 11 02:49:14 PST 1998 Manish Singh <yosh@gimp.org>

	* app/fileops.c: no need to hide the help button for fileops,
	since it doesn't exist anymore

Wed Mar 11 02:26:51 PST 1998 Manish Singh <yosh@gimp.org>

	* added animoptimize plugin

Wed Mar 11 00:27:35 PST 1998 Manish Singh <yosh@gimp.org>

	* app/convert.c: fixed memory overrun error

	* app/gdisplay.c
	* app/menus.c: reapplied the tools patch from Nether, looks
	like it doesn't trip up anymore. Added some sanity checks
	anyway

	* app/disp_callbacks.c
	* app/transform_core.c: plugged some harmless build warnings

1998-03-11  Larry Ewing  <lewing@discord.isc.tamu.edu>

	* app/undo.c
	* app/gimage.h
	* app/gimage.c: added a simple reference count to the guides so that
	undo does not free them too early...

Tue Mar 10 21:31:21 PST 1998 Manish Singh <yosh@gimp.org>

	* app/interface.c: scrollbars in the drawing area shouldn't
	autofocus

Tue Mar 10 17:09:27 PST 1998 Manish Singh <yosh@gimp.org>

	* app/app_procs.c
	* app/colormaps.c: Do the preview_reset properly this time

Tue Mar 10 00:38:31 PST 1998 Manish Singh <yosh@gimp.org>

	* app/transform_core.c: transform tools add alpha channel
	properly, fixing that really nasty painting bug

Sun Mar  8 17:44:05 PST 1998 Manish Singh <yosh@gimp.org>

	* app/app_procs.c: fix for (install-colormap) and splash screen
	using gtk_preview_reset()

	* configure.in: on some platforms libXmu doesn't require libSM and
	libICE. configure should know this now.

	* app/gradient.c: corrected WM_CLASS typo

	* plug-ins/gfli/gfli.c: fix for load handler magic

	* plug-ins/gtm/gtm.c: don't use naughty gccisms.

	* plug-ins/gqbist
	* plug-ins/maze: updated from registry

Tue Mar  3 01:02:30 1998  Larry Ewing  <lewing@discord.isc.tamu.edu>

	* app/scale.c: Fixed a long standing bug in the scale factor
	computation so that the scale labels all agree.

Sun Mar  1 18:45:09 PST 1998 Manish Singh <yosh@gimp.org>

	* Made 0.99.19 release

Sun Mar  1 20:28:54 MET 1998 Sven Neumann <sven@gimp.org>

	* app/internal_procs.c
 	* app/palette.c
 	* app/palette.h
 	* app/commands.c
 	* app/commands.h
 	* app/menus.c
 	* libgimp/gimppalette.c:
	implemented gimp_palette_set_default_colors and
	gimp_palette_swap_colors as pdb-calls and bound menu-entries and
	keybindings to them (gimp-sven-980216-0.patch)

Sat Feb 28 22:05:15 PST 1998 Manish Singh <yosh@gimp.org>

	* autoconfed the data stuff

Sat Feb 28 23:38:30 EST 1998 Adrian Likins <adrian@gimp.org>

	* at yosh's suggestion, merged gimp-data-min
	  back into the main gimp tree under gimp/data

Sat Feb 28 16:57:49 PST 1998 Manish Singh <yosh@gimp.org>

	* Makefile.am: don't do docs generation by default

	* configure.in: -lXt for webbrowser plugin

	* libgimp/gimp.c
	* libgimp/gimpprotocol.c
	* libgimp/gimptile.c
	* libgimp/gimpwire.c
	* app/plug_in.c: applied memory leak patch from Mattias Gronlund

	* app/eraser.c
	* app/eraser.h
	* app/internal_procs.c
	* app/paintbrush.c
	* app/paintbrush.h: incremental modes for eraser and paintbrush,
	as well as a "hard eraser"

	* plug-ins/ifscompose/ifscompose.c: pixmap visual fixups

Sat Feb 28 00:09:46 1998  Scott Goehring  <scott@poverty.bloomington.in.us>

	* app/gimage_cmds.c (duplicate): Duplicate image wasn't copying
	channels to the new image.  Fixed.

Fri Feb 27 23:02:10 MET 1998 Sven Neumann (sven@gimp.org)

	* app/about_dialog.c: (about_dialog_load_logo)
	use a correct gc

1998-02-26  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* app/app_procs.c (make_initialization_status_window): Push/pop
	correct visuals for drawing area creation.
	(splash_logo_load): Use a correct gc.

Thu Feb 26 12:19:44 EET 1998 Lauri Alanko <la@iki.fi>

	* Another patch in gimp.h to name more GParam-types for gimple.

Wed Feb 25 02:46:28 PST 1998 Manish Singh <yosh@gimp.org>

	* added webbrowser plugin for gimp help

Tue Feb 24 22:14:06 PST 1998 Manish Singh <yosh@gimp.org>

	* plug-ins/xpm/xpm.c: update. Hopefully this fixes all
	those problems we were having

Tue Feb 24 04:14:36 PST 1998 Manish Singh <yosh@gimp.org>

	* configure.in: change to detect GTK 0.99.4 or higher

Sun Feb 22 02:43:12 PST 1998 Manish Singh <yosh@gimp.org>

	* app/text_tool.c: use our own sort function to appease
	the gtk gods

Sat Feb 21 16:40:47 EST 1998 Adrian Likins <adrian@gimp.org>

	* plugins/destripe/detripe: updated destripe

	*plugins/gtm/*:
	 plugins/semiflatten/*:  added these plugins


Fri Feb 20 02:38:24 PST 1998 Manish Singh <yosh@gimp.org>

	* initial plug-in stable/unstable split

Wed Feb 18 16:46:37 1998  Owen Taylor  <owt1@cornell.edu>

	* plug-ins/ifscompose/ifscompose.c: refcounting fixups
	  plug-ins/ifscompose/REAMDE.ifscompose: changed web address

Wed Feb 18 17:56:40 MET 1998 Sven Neumann <sven@gimp.org>
	* app/app_procs.c: fixed refcounting for the splash-image

Tue Feb 17 21:23:20 MET 1998 Sven Neumann <sven@gimp.org>

	* app/fileops.c: hide the help buttons since we have no
	help (yet)

Tue Feb 17 20:55:12 MET 1998 Sven Neumann <sven@gimp.org>

	* gimp_splash.ppm: added the splash-screen image drawn
	by Jens Lauterbacher to the distribution

	* app/appenv.h
	* app/app_procs.c
	* app/main.c: added the splash-image to the startup-window;
	new command-line options: --no-splash, --no-splash-image

	* ps_menurc: changed to reflect changes to the
	menu-structure

Tue Feb 17 09:24:44 EST 1998 Adrian Likins <adrian@gimp.org>

	* updated all of Sven Neumanns scripts. Including
	blend-anim.scm, waves-anim.scm, drop-shadows.scm,
	perspective-shadow.scm, round-corners.scm, slide.scm,
	and selection-round.scm.

Sat Feb 14 15:34:08 PST 1998 Manish Singh <yosh@gimp.org>

	* app/iscissors.c: iscissors released for initial public
	consumption

Sat Feb 14 15:01:46 PST 1998 Manish Singh <yosh@gimp.org>

	* Fixed up docs and autoconf interaction (part of
	gimp-rrh-980125-0)

Fri Feb 13 02:00:01 PST 1998 Manish Singh <yosh@gimp.org>

	* libgimp/gimp.c
	* app/menus.c: fixes for the g_string -> g_str change in glib

        * updated gfig

Thu Feb 12 13:10:50 EST 1998 Adrian Likins <adrian@gimp.org>

	*libgimp/gimp.h
		applied a patch from Lauri Alanko to make
	  libgimp/pdb bindings for some languages a little easier

Wed Feb  4 19:04:35 1998  Scott Goehring  <scott@poverty.bloomington.in.us>

	* channel.c
	* channel.h
 	* disp_callbacks.c
 	* gimage.c
 	* layer.c
 	* layer.h
	* layers_dialog.c
	* undo.c: More GTK refcount-related changes.  (We're not there
	yet, but we're getting closer.)

Tue Feb  3 17:52:34 1998  Scott Goehring  <scott@poverty.bloomington.in.us>

	* app/interface.[ch] app/app_procs.[ch]: Changes to deal with new
	GTK refcounting regime.

Mon Feb  2 19:19:16 1998  Scott Goehring  <scott@poverty.bloomington.in.us>

	* app/channels_dialog.c:
	* app/layers_dialog.c:  Added gtk_widget_ref and gtk_widget_unref
	calls to keep channel & layer widgets from dying when reordering
	the channel/layer stacks.

Sat Jan 31 20:49:11 EST 1998 Adrian Likins <adrian@gimp.org>

	* plug-ins/edge.c: added a check so it wouldnt segfault when
	passed a non-existent drawable

	* plug-ins/threshold_alpha.c:  added a non-interactive mode

	* app/brightness_contrast.c
	* app/color_balance.c
	* app/colormaps.c
	* app/curves.c
	* app/hue_saturation.c
	* app/posterize.c
	* app/threshold.c : added a check so it wouldnt except
	 a indexed drawable. This was previosly possible via the pdb.

Sat Jan 31 00:16:22 PST 1998 Manish Singh <yosh@gimp.org>

        * plug-ins/xpm/xpm.c: Changed to use g_strcasecmp

Fri Jan 30 13:47:57 1998  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* app/gradient.c: Applied patch from Wolfgang Hofer
	<hof@ws6310.gud.siemens.at> to let the user load the segment
	endpoint color from the current foreground color.  It also makes
	the preview un-resizable, which is not a complete fix for the
	preview resizing bug.

Fri Jan 30 11:48:04 EST 1998 Adrian Likins <adrian@gimp.org>

	* More plugin non-interactive fixes:
		DigitalSignature, hot, sinus, smooth_palette

Thu Jan 29 19:25:52 EST 1998 Adrian Likins <adrian@gimp.org>

	* fixed the non-iteractive modes for plugins:
		exchange, holes, grid, deinterlace
	(mainly expecting wrong number of arguments or just ingome
	non-interactive mood entirely)

Thu Jan 29 01:05:10 PST 1998 Manish Singh <yosh@gimp.org>

	* updated refract and warp plugins
	* changed the INSTALL file to reflect the fact that gtk is a
	separate package
	* app/text_tool.c: small patch for indexed images and
	antialiased toggle

Thu Jan 29 00:00:54 PST 1998 Manish Singh <yosh@gimp.org>

	* removed all usage of linked.[ch] and switched to GSLists

Wed Jan 28 22:03:42 EST 1998 Adrian Likins <adrian@gimp.org>

	* Fixed carve-it.scm and circuit.scm (circuit broke due
	 to a plugin update, carve-it broke due to the add-layer stuff)

	* Added a close button to the color picker info window

	* changed index_palette.c a bit...now if you click with
	MB11, it changes the current active color, clicking with MB3
	opens the color in the color selector for editing

	* Made some of the <Image>/Color/* menus sensitive to the image
	type (gdisplay.c)

Wed Jan 28 13:17:06 1998  Scott Goehring  <scott@poverty.bloomington.in.us>

	* app/gimage.c (gimage_add_channel): Added safety code for add
	channel so you can't add a channel twice or to the wrong image.
	(Same thing as I did for layers a few months ago.)

Tue Jan 27 22:31:00 PST 1998 Raph Levien <raph@acm.org>

	* app/gimage_mask.c: hacked around fractional pixel errors in
 	paint_core_subsample_mask, fixing the "Stroked pixel bug" posted
 	by Ben Jackson on 14 Jan 1998 to gimp-developer.

Tue Jan 27 10:21:00 PST 1998 Raph Levien <raph@acm.org>

	* app/gimage.c: fixed bug in image display with all channels
	turned off

Tue Jan 27 00:18:28 PST 1998 Manish Singh <yosh@gimp.org>

	* app/xcf.c: fixes an off by one error in xcf_tile_save_rle()

Sun Jan 25 18:41:17 PST 1998 Manish Singh <yosh@gimp.org>

	* app/about_dialog.c: Added a couple names here

	* app/color_area.c
	* app/color_panel.c
	* app/color_select.c
	* app/color_select.h
	* app/indexed_palette.c
	* app/palette.c: Changed COLOR_UPDATE functionality, along with
	cosmetic changes (gimp-quinet-980120-0)

	* .cvsignore
	* Makefile.am
	* configure.in
	* gimprc.in
	* gimprc_user.in
	* user_install: makes gimprc_user, splitting user and system-wide
	settings. (gimp-quinet-980121-1)

Sun Jan 25 16:56:49 1998  Scott Goehring  <scott@poverty.bloomington.in.us>

	* app/gimage.c (gimage_merge_layers): Added a missing call to
	drawable_offsets, fixing the "merge bug".

	* app/gimage_cmds.c (duplicate): Fixed a bug in duplicate that was
	entirely my fault. :)

Sun Jan 25 16:51:56 EST 1998 Adrian Likins <adrian@gimp.org>

	* added the gtk_window_set_wmclass to most of the gimp
	dialogs so they set the XA_WM_CLASS properties.

Sun Jan 25 13:28:28 PST 1998 Manish Singh <yosh@gimp.org>

	* libgimp/gimppixelrgn.c
	* plug-ins/iwarp/iwarp.c
	* plug-ins/sparkle/sparkle.c: Misc portability fixes for
	DEC OSF1 (gimp-joke-980109-0)

Sun Jan 25 02:24:03 PST 1998 Manish Singh <yosh@gimp.org>

	* libgimp/*: Placed libgimp under the LGPL

Sun Jan 25 01:25:55 PST 1998 Manish Singh <yosh@gimp.org>

	* plugin updates from the registry (align_layers,
	despeckle, mathmap, print)

	* plug-ins/script-fu/script-fu-scripts.c
	* plug-ins/script-fu/scripts/copy-visible.scm:
	Applied Sven's no arguments script patch and copy-visible
	fix

Sun Jan 25 00:12:15 EST 1998 Adrian Likins <adrian@gimp.org>

	* added plug-ins/script-fu-scripts/chip-away.scm

Sat Jan 24 18:16:35 PST 1998 Manish Singh <yosh@gimp.org>

	* applied Sven's menu patch

Sat Jan 24 17:23:13 PST 1998 Manish Singh <yosh@gimp.org>

	* app/indexed_palette.c: fix for wrong color selected in indexed
	palette dialog

	* app/xcf.c: don't crash on bad input (0 byte files)

	* app/plug_in.h
	* app/plug_in.c: fixes Gimp's most obscure bug. Failed plugin
	queries are handle correctly now

	* app/commands.c: added marching ants speed to preferences

	* plug-ins/tiff/tiff.c: correction for inversion for MINISWHITE
	images without alpha

	* plug-ins/pcx/pcx.c: updated to new version

	* app/paint_funcs.h: changed OPAQUE and TRANSPARENT to
	OPAQUE_OPACITY and TRANSPARENT_OPACITY to avoid possible
	conflicts. All affects .c files changed.

Sat Jan 24 15:16:40 1998  Scott Goehring  <scott@poverty.bloomington.in.us>

	* app/app_procs.c (make_initialization_status_window): Changed
	resize policy of the init status window so it doesn't constantly
	resize itself.

Wed Jan 21 23:59:02 PST 1998 Manish Singh <yosh@gimp.org>

	* Fixed up the change below to use the SetArg/GetArg stuff

Thu Jan 22 01:54:17 1998  Scott Goehring  <scott@poverty.bloomington.in.us>

	* Rework of drawables, images, and layers to use GtkObjects.  Lots
	  and lots of secondary changes.

Sun Jan 18 18:07:23 EST 1998 Adrian Likins <adrian@gimp.org>

        * added plugins/gflare/gflares and edited the makefiles
	  so that the gfalres and gfig-examples would get installed
	  into share/gimp/gflares and share/gimp/gfig


Tue Jan 13 21:36:07 PST 1998 Manish Singh <yosh@gimp.org>

	* ltconfig
	* ltmain.sh: downgraded to libtool 1.0f at Jay's suggestion

	* plug-ins/fractaltrace/fractaltrace.c (query): ymax argument was
	listed twice.  Fixed.

Fri Jan  9 01:15:51 PST 1998 Manish Singh <yosh@gimp.org>

	* INSTALL: updated to properly reflect installation procedure

	* app/text_tool.c: Fixed bad string in tool description

	* libgimp/gimppixelrgn.c: tiles aren't marked dirty in
	gimp_pixel_rgn_get_pixel

	* plug-ins/edge/edge.c
	* plug-ins/edge/emboss.c
	* plug-ins/edge/laplace.c
	* plug-ins/edge/sobel.c: DEC OSF1 cannont handle reference to
	array element with a negative arugment with an unsigned int
	(gimp-joke-980108-0)

	* plug-ins/sinus/sinus_logo.h: got rid of really long string

	* plug-ins/refract/Makefile.am
	* plug-ins/refract/refmain.c: fixed megawidget reference

	* plug-ins/xpm/xpm.c: made our own case-insenstive strcmp
	for checking for transperancy

Tue Jan  6 14:17:02 PST 1998 Manish Singh <yosh@gimp.org>

	* configure.in: make it *really* check for gtk >= 0.99.1 this
	time

	* plug-ins/gbr/gbr.c: check image type before save to prevent
	image corruption. Only allow saves to non-alpha grayscale images

	* app/install.c: reduce the size of the install info dialog so it
	fits better on 640x480 screen

Mon Jan  5 19:30:38 PST 1998 Manish Singh <yosh@gimp.org>

	* app/by_color_select.c: fix for indexed images

	* plug-ins/script-fu/scripts/i26-gunya2.scm: proper registration

	* plug-ins/xpm.c: fix for transparent images

	* Updated to libtool 1.0h

	* libgimp/Makefile.am: removed spurious -rpath

Sun Jan  4 17:43:32 PST 1998 Manish Singh <yosh@gimp.org>

	* app/by_color_select.c: Prevent divide-by-zero error when
	fuzzy threshold in select by color is 0

	* app/tile_swap.c: Minor bugfix for tile saves

	* app/text_tool.c: better handling when there are no fonts

	* Updated PNG plugin from registry

	* Added the FlareFX plugin

Sun Jan  4 14:24:05 1998  Scott Goehring  <scott@poverty.bloomington.in.us>

	* plug-ins/despeckle/despeckle.c: realloc buffers when the radius
 	of effect changes; save all values (not just radius) in plugin
 	data store; adjusted parameter handling to match PDB registration.
	The algorithm still generates artifacts in the top rows of the
	image.

Sat Jan  3 16:48:02 PST 1998 Manish Singh <yosh@gimp.org>

	* app/colormaps.c: check for NULL pointer access when not enough
	colormaps for standard colormaps (gimp-joke-971219-0)

	* app/fileops.c: fix for saving files in the wrong place

	* app/fuzzy_select.c: now less aggressive (doesn't grab the whole
	image with diagonal 1-pixel wide line) Too conservative now?

	* app/text_tool.c: negative border-value disables autocropping
	of text

	* libgimp/gimplayer.c: gimp_layer_copy pdb called with correct args

	* docs/Wilber.xcf.gz: added logo to docs dir :)

	* Added DigitalSignature, FractalExplorer (not made by default),
	facesaver (not made by default), and Stegano plugins

	* Updated Encrypt_Decrypt, changing the dir name (no more
	Encript_Decript)

	* Updated plugins with their new registry versions

Thu Dec 25 23:04:00 PST 1997 Manish Singh <yosh@gimp.org>

	* Updates from the plugin registry: Compose, Film, FITS, ps,
	refract, sunras, twist

Thu Dec 18 11:15:17 1997  Scott Goehring  <scott@poverty.bloomington.in.us>

	* app/main.c (main): Freeing arguments to putenv afterwards is
	naughty.  Fixed.  Plug-ins work now.

Wed Dec 17 23:51:30 CST 1997 Shawn T. Amundson <amundson@gimp.org>

	* All these changes are from Owen Taylor to make GIMP work
          with reference changes make in GTK.  This mainly affects
          functions gtk_pixmap_destroy, gdk_colormap_destroy,
          gdk_font(set)_free; they have disappeared and where
          changed to *_unref. These simple changes affected:
          app/about_dialog.c, app/channels_dialog.c,
          app/curves.c, app/gradient.c, app/layer_select.c,
          app/text_tool.c, plug-ins/gfig/gfig.c,
          plug-ins/ifscompose/ifscompose.c,
          plug-ins/libgck/gck/gckcolor.c,
          plug-ins/libgck/gck/gcknotebook.c

        * app/color_area.c: check for initial expose before drawing
        * app/disp_callbacks.c: gc for scrolling
        * app/gdisplay.c: destroy gc, event now pointer
        * app/scroll.c: use scroll_gc, make sure graphics expose events
          are processed before scrolling again
        * gimp/app/gdisplay.h: add scroll_gc to struct

Wed Dec 17 23:23:05 1997  Ray Lehtiniemi  <rayl@netrover.com>

	* app/brush_select.c (brush_popup_open): fix memory leak

	* app/pattern_select.c (pattern_popup_open): fix memory leak

Wed Dec 17 15:33:23 PST 1997 Manish Singh <yosh@gimp.org>

	* plug-ins/pcx/pcx.c: Applied patch to fix PCX saving from
	Nicholas Lamb

	* app/main.c: Plugins now get a proper DISPLAY through
	gdk_get_display

Wed Dec 17 13:24:48 1997  Scott Goehring  <scott@poverty.bloomington.in.us>

	* app/convert.c (convert_image): Closed a rather nasty memory
	leak.

	* plug-ins/xpm/xpm.c (run): Added access to the alpha cutoff via
	the PDB.  Added a missing break in the run_mode switch.

Tue Dec 16 16:55:04 PST 1997 Manish Singh <yosh@gimp.org>

	* app/convert.c: no more crashes with indexed conversion and no
	palettes

Tue Dec 16 15:24:36 EST 1997 Adrian Likins <adrian@gimp.org>

        * modified user-isntall to make a scripts and gflares dir

        * added path to gflares in the gimprc


Tue Dec 16 12:32:30 1997  Scott Goehring  <scott@poverty.bloomington.in.us>

	* app/xcf.c (xcf_load_invoker): Shuji's xcf load close patch.

Mon Dec 15 19:03:59 EST 1997 Adrian Likins <adrian@gimp.org>

	* fixed a few broken tips in gimp_tips.txt

	* updated add-bevel.scm

Sun Dec 14 19:47:59 PST 1997 Manish Singh <yosh@gimp.org>

	* Configured in the flame plugin by default
	* updated the ripply-anim script (still broken though)

Sun Dec 14 20:57:46 1997  Ray Lehtiniemi  <rayl@netrover.com>

	* app/tools.c (tools_options_dialog_show): fix a problem where
	  the tools options dialog will appear empty because the
	  active tool was destroyed by menus_activate_callback().

	* app/blend.c fixed cores when using custom gradients with
	  offset of 100

Sun Dec 14 16:56:33 PST 1997 Manish Singh <yosh@gimp.org>

	* backed out of the tools fix, cause problems with
	rmb script-fu

Sun Dec 14 03:41:27 PST 1997 Manish Singh <yosh@gimp.org>

	* Support for dithering to custom palettes

	* a proper PDB entry for indexed conversion
	(gimp-convert-indexed-palette)

Sun Dec 14 00:08:00 PST 1997 Raph Levien <raph@acm.org>
	* a minor patch to make the file selection dialog not always
	select the first file in a directory

Sat Dec 13 23:37:59 PST 1997 Manish Singh <yosh@gimp.org>

	* mkbrush.scm updated

	* Added support for tooltips in preferences

Sun Dec 14 00:06:00 CST 1997 Shawn T. Amundson <amundson@gimp.org>

	* configure.in: Changed gimp lib dir to lib/gimp/MAJOR.MINOR
          instead of lib/gimp/MAJOR.MINOR.MICRO
	* script-fu/scripts: removed piechart, kanji-circle, kanji-neon
	* configure.in: change check for EMACS to allow emacs to not
          exist (in which case, no error results, but pdb docs don't
          get made)

Sat Dec 13 19:41:35 CST 1997 Shawn T. Amundson <amundson@gimp.org>

	* plug-ins/fuse/Makefile.am: fuse.c couldn't find gck/gck.h

Fri Dec 12 02:07:26 PST 1997 Manish Singh <yosh@gimp.org>

	* Updated gif and animationplay with the new versions

Thu Dec 11 20:56:09 PST 1997 Manish Singh <yosh@gimp.org>

	* Removed dgimp (it never worked anyway)

Wed Dec 10 16:59:56 PST 1997 Manish Singh <yosh@gimp.org>

	* Added gimprc option for enabling/disabling tooltips

	* Fixed up about dialog

	* Added Fractaltrace plugin

Tue Dec  9 15:26:48 PST 1997 Manish Singh <yosh@gimp.org>

	* Added Lauri Alanko's tools patch

	* Clarified the units in the tile cache size field in the
	preferences dialog

Tue Dec  9 15:21:16 PST 1997 Raph Levien <raph@acm.org>

	* app/gimprc.c, app/commands.c: committed the preferences patch I
 	 posted to gimp-developer on 4 Nov 1997. This patch fixes some
 	 stability problems, as well as makes the preferences saving
 	 functionality more complete.

Tue Dec  9 00:52:15 EST 1997 Adrian Likins <adrian@gimp.org>

	* added illusion, papertile, colorify, and glasstile
	 plugins

	* updated despeckle, and math map

Mon Dec  8 21:59:03 PST 1997  Manish Singh <yosh@gimp.org>

	* updated CML_explorer

Mon Dec  8 16:30:29 EST 1997  Adrian Likins <adrian@gimp.org>

	* udpdate gqbist, warp, randomize, fuse, gfig plugins

	* removed gflare-tar.gz from the plugins dir

Mon Dec  8 11:43:17 EST 1997 Adrian Likins <adrian@gimp.org>

	* updated iwarp to latest version

	* added Sven Neumans patch for 32-bit color in gck

	* fixed gimp_tips.txt (the tip about the "add alpha")


Mon Dec  8 02:13:36 PST 1997  Manish Singh <yosh@gimp.org>

	* app/about_dialog.c: Added Nathan Summers patch to make it
	work better

	* app/menus.c: Added Michael Natterer's patch to save menu
        accelerators with chars that need to be escaped properly

	* app/undo.c: Added Andy Thomas's patch to check for a NULL
	active_tool in the undo (so it can work with plugins)

Sun Dec  7 17:05:32 PST 1997  Manish Singh <yosh@gimp.org>

	* added Sven Neumann's patch to the scale and resize dialogs for		ratio input fields (app/resize.h, app/resize.c)

	* added Raph Levien's patch for the transperancy blur problem
	(app/convolve.c, app/gimage.h, app/gimage.c, paint_core.h,
	paint_core.c, paint_funcs.h, paint_funcs.c)

Sun Dec  7 15:27:14 EST 1997  Adrian Likins <adrian@gimp.org>

	* fixed refract.c to look for megawidget.h in the proper place

	* fixed the makefile.am in plugins/script-fu/script to install
	the texture files too

	* added a check in channels_dialog.c to make the aspect ratio
	really go away

	* fixed a minor error in the alien-glow-* scripts with an
	extra parenthesis

	* added the new wilber.h

	* patched convert.c with Adam D. Moss's patch to avoid color counting when
	not needed

	* patched gif.c with Adam D. Moss's patch to fix some weirdness with
	transparncy in anim gifs

Sat Dec  6 15:27:23 EST 1997  Adrian Likins <adrian@gimp.org>

	* Added a check in some of the layer/channel preview code
	to keep stuff from breaking when it got ) values for size

	* Removed all the old stale *.[ch] files fom plug-ins/ dir

	* Added a work around for the weirdness resulting from
	rezing the palette dialog

Wed Nov 26 14:38:30 1997  Larry Ewing  <lewing@isc.tamu.edu>

	* Added a bounds check to undo_push_image* to fix drawing
	outside the image undo bug

	* Desensitized Add Layer Mask when layer has no alpha channel

	* Wrapped the calls to gtk_list_clear_items with
	suspend_gimage_notify in app/channels_dialog.c to prevent
	erroneously deactivating channels.  Fixes "out of paint" bug

	* replaced calls to info_window_update in app/magnify.c and
	app/scale.c with a single call in gdisplay_flush () so that
	the info window reflects the current status

Wed Nov 19 13:22:09 EST 1997 Adrian Likins <adrian@gimp.org>

	* updated vpropagate.c and align_layers.c

Tue Nov 18 16:40:22 1997  Christoph Hoegl  <darkwing@bsddmail.franken.de>

	* Larry Ewing fixed a bug which caused multible confirm-on close
	Windows to appear and took GIMP with them on close

	* plug-ins/iwarp added


Mon Nov 17 14:29:00 1997  Christoph Hoegl  <darkwing@bsddmail.franken.de>

	* plug-ins/gqbist/gqbist.c updated from registry

	* plug-ins/fuse/fuse.c updated from registry

	* plug-ins/fp/fp.c fixed buggy feature list
	(now handles also layered images, patch resubmitted by
	Daniel R Risacher <risacher@worldnet.att.net>)

Mon Nov 17 15:14:14 EST 1997 Adrian Likins <adrian@gimp.org>

	* Finally fixed the scripts that broke with the last
	  release. This includes crystal-logo.scm, sota-chrome-logo.scm,
	  and chome-it.scm.

Sun Nov 16 20:39:26 1997  Christoph Hoegl  <darkwing@bsddmail.franken.de>

	* applied all patches of these Mails (or improved ones)

	<0000094A.1892@dril-quip.com>
	(special thanks to Art_Haas@dril-quip.com (Art HAAS)
	addresses bzero and other compatibility/style  problems)

	* speedup of script-fu start
	<199710312031.MAA05318@callisto.hip.berkeley.edu>
	(thanks to Raph Levien <raph@acm.org>)

	* fixes a PI to M_PI in twist.c
	(not sure if this is what we want))
	<Pine.LNX.3.96.971103021445.10834A-200000@s9412a.steinan.ntnu.no>
	(thanks to  Trond Eivind Glomsrxd <teg@pvv.ntnu.no>)

        * fixes preview for megawidgetbased plug-ins / speed up
	<19971105154336.33004@dca.fee.unicamp.br>
        <19971105155848.26367@dca.fee.unicamp.br>
        <19971105160238.05244@dca.fee.unicamp.br>
        (big thanks to Marcelo Malheiros <malheiro@dca.fee.unicamp.br>)

        * fixes some "returning pointers to stack"
	<00000A37.1892@dril-quip.com>
	(special thanks to Art_Haas@dril-quip.com (Art HAAS)
	and  Nathan Carl Summers <summersn@cs.byu.edu>)

	* moved all plug-ins to dirs of their own (finally)
	and reconfigured


Fri Nov 14 23:27:01 1997  Scott Goehring  <scott@poverty.bloomington.in.us>

	* app/tools.c (tools_options_dialog_show): Fixed the tool dialog
	raise code to only raise it if its shown, and only show if it's
	not already shown.  (Probably not important, but can't hurt.)

	* app/interface.c (create_toolbox): Fixed an uninitialized static
	variable error, was causing the "raise toolbox" menu option to
	fail miserably.  (Not sure when this happened; option used to
	work.)

Tue Nov 11 14:57:16 1997  Scott Goehring  <scott@poverty.bloomington.in.us>

	* app/xcf.c (xcf_save_image): Added versioning for XCF file
	format.  Coded support for XCF version 1, which fixes the problem
	in version 0 with only saving 1/3 of the colormap of images with
	colormaps (i.e. indexed images).

Fri Nov  7 00:27:44 CST 1997 Adrian Likins <adrian@gimp.org>

	* added docs/cheat_sheet.txt and docs/keybindings.txt

Thu Nov  6 14:08:35 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* configure.in (gimpdatadir): Changed gimpdatadir to be
	$datadir/$PACKAGE instead of $datadir/$PACKAGE/$VERSION.
	Datafiles are version-independent.

Tue Nov  4 08:46:19 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* app/commands.c app/gimprc.c: Patch from Raph Levien to fix the
	preferences and gimprc mechanism.

	* app/convert.c: Adam's patch to fix web and mono palette modes.

	* app/selection.h app/selection.c: Updated the USE_XDRAWPOINTS patch.

	* plug-ins/script-fu/script-fu.c (init_procedures): Patch from
	Raph Levien to do fast loading of the pdb procedures.

	* app/gdisplay.c app/menus.c: Another patch from Lauri Alanko to
	fix the tools mechanism.

	* app/tips_dialog.c: New look for the tip-of-the-day dialog, by
	Raphael Quinet and Tuomas Kuosmanen.

	* app/interface.c: Patch from Andreas Dilger to enable tooltips.

	* INSTALL: Updated INSTALL file from Owen Taylor.

	* plug-ins/displace.c (displace_dialog): Removed printf() of PID.

	* plug-ins/emboss.c: Patch from Spencer to fix grayscale images
	and number of arguments in non-interactive mode.

Thu Oct 30 14:57:32 1997  Scott Goehring  <scott@poverty.bloomington.in.us>

	* configure and makefile tweaking for christoph's new plugins

Wed Oct 29 17:52:57 1997  Christoph Hoegl  <darkwing@bsddmail.franken.de>

	* added and autoconfigured plug-ins/{twist,fuse,refract,warp,struc}
	(Keep in mind that these are new, alpha plug-ins (esp. warp which
	is not yet ready for general consumption according to author
	John Beale <beale@best.com>)

	* added plug-ins/{flame,mathmap,rcm,user_filter}

	* plug-ins/gqbist.c: updated to v1.7


Tue Oct 28 22:30:32 1997  Scott Goehring  <scott@poverty.bloomington.in.us>

	* plug-ins/MapObject/mapobject_main.c (run): removed an
	inappropriate cast of radius from float to int

Mon Oct 27 07:45:23 EST 1997 Adrian Likins ,adrian@gimp.org

	* updated title-header.scm to not add a layer twice

	* remove t-o-p.scm, it was a duplicate of t-o-p-logo.scm
	 jsut registered under a different name

Sun Oct 26 22:28:15 EST 1997  Adrian Likins <adrian@gimp.org>

        * added Spencer's patch to the brush and patterns dialog. Now
          instead of scrolling the object around to see all of, a small
	  window popups showing the entire brush or pattern.

        * added Spencers patch to add pop-up help to the toolbar.


Sun Oct 26 18:01:36 1997  Scott Goehring  <scott@poverty.bloomington.in.us>

	* configure: finished adding the xpm plug-in (someone else added
	  it to the makefiles, but forgot to ensure that its makefile was
	  built...)

	* app/about_dialog.c (about_dialog_create): About dialog now shows
	  "true" version (instead of 1.0) and randomizes the names in the
	  scrollbar instead of showing them in alphabetical order.

Sat Oct 25 14:53:27 1997  Scott Goehring  <scott@poverty.bloomington.in.us>

	* plug-ins/MapObject/mapobject_main.c: Eliminated use of
	  FLOATARRAYs in arguments due to shortcoming of argument passing
 	  protocol.

	* app/plug_in.c (plug_in_handle_proc_install): Added code to
	  sanitize plugins for compliance with the array passing
	  convention restriction.  Noncompliant plugins will be rejected.

	* app/layers_dialog.c: Fixed layers dialog resize bug - now
	  resizes interior of dialog instead of the close button. :)

Sat Oct 25 02:56:15 1997  Scott Goehring  <scott@poverty.bloomington.in.us>

	* Added auto-raise for most dialogs (if selected when already
	  "visible").  Also added a "Toolbox" menu entry to the Tools menu
	  that raises the Toolbox (no default binding cuz I can't think of
	  one).  Fixed the off-by-one-month timestamp bug.

Fri Oct 24 21:45:11 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* Made 0.99.15 release.

Fri Oct 24 17:54:54 EDT 1997 Adrian Likins <adrian@gimp.org>

	* Applied a patch by Josh Parsons <josh@coombs.anu.edu.au>
          by way of Adam Moss to gif.c so that it works while
	  trying to save non-interactively. The comment string
          wasnt being handled well in non-interactive mode.

Fri Oct 24 11:49:55 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* app/fileops.c: Will Wagner's patch to fix the file dialog.

	* app/convert.c: Adam Moss's patch to add color counting.

	* Applied Lauri Alanko's patches to fix the curves tool and some of
	the general tools mechanism.

	* plug-ins/blinds.c plug-ins/sharpen.c: Art Haas's patch to clean
 	up several warnings in plug-ins.

	* libgimp/gimppixelrgn.c: #ifndef'ed out some variables according
	to Adam's MEMCPY_IS_NICE stuff so that the compiler emits no
	warnings about unused variables.

	* plug-ins/header.c: Raphael Quinet's patch to fix green channel
	and save reasonably-sized lines instead of a single enormous
	string.  Broken compilers barf on them.

	* app/layers_dialog.c (lc_dialog_create): Patch to raise the
	layers dialog if it is invoked when it was already shown.

	* app/commands.c (file_new_cmd_callback): Patch to not let the
	file/new dialog create indexed images.

	* app/tips_dialog.c (read_tips_file): Added fclose(fp).

	* app/gimprc.c (save_gimprc): Added g_free(cur_line).  It was
	missing and thus causing a memory leak.

	* README: Added reference to the plug-in registry.

Thu Oct 23 11:20:05 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* app/layers_dialog.c: Removed layer_widget_raise_callback() and
	layer_widget_lower_callback(), they were not used.

	* app/frac.c (xcf_save_compress_frac_init): Fixed double printf format.
	(xcf_save_frac_compressed_tile): Fixed pointer printf args.

	* Fixed a *lot* of uninitialized variables in the app/ directory,
 	mainly in the pdb function invoker procedures.  This should
 	supress a trillion compiler warnings.

	* app/brush_select.c: removed brush_select_cancel_callback(); it
	was never being used.

	* app/disp_callbacks.c (gdisplay_canvas_events): Changed the type
	of tmask to be GdkModifierType.

	* app/channels_dialog.c: Removed channel_widget_raise_callback()
	and channel_widget_lower_callback(); they were not being used.

	* app/brushes.c: Removed the declaration of int_value (it is never used).

	* app/gimprc.c app/gimprc.h app/commands.c app/tips_dialog.c:
 	save_gimprc() may modify the lists it gets passed (by
 	adding/removing elements).  Changed the prototype to take GList**
 	values instead of just GList*.  Changed the calls to save_gimprc()
	accordingly.

Thu Oct 23 01:46:28 CDT 1997 Shawn T. Amundson <amundson@gimp.org>

        * app/menus.c: applied patch malheiro-970917 which
          prevents installing bogus accelerator handlers for the
          menu separators.

        * All the rest of these are from Eiichi Takamori
          <taka@ma1.seikyou.ne.jp>

        * plug-ins/gicon.c: fixed the number of return values on save

        * plug-ins/gicon.c: fixed the number of return values on save

        * libgimp/gimpprotocol.c fixed GPProcrun/GPProcReturn typo and
          freed params in _gp_params_destroy()

        * libgimp/gimp.c: gimp_run_procedure() now frees proc_run.params,
          since it is allocated in that function and no longer used

        * app/plug_in.c: fixed memory overrun in plug_in.c when
          nargs < current_return_nvals, in case the plug-in returns bad
          number of return values.

        * app/plug_in.c: destroy arguments when PDB lookup failed.

        * app/plug_in.c: fixed memory leak in plug_in_params_destroy()
          and plug_in_args_destroy()

Wed Oct 22 20:38:46 EDT 1997  Adrian Likins <adrian@gimp.org>

	* Added the www.gimp.org web page look scripts (gimp-labels.scm
	  and gimp-headers.scm)to the dist

	* also added a handful of scripts (predator.scm, circuit.scm,
	  xach-effect.scm, copy-visible.scm, select_to_brush.scm,
	  select_to_image.scm, and glow.scm).
	  see www.gimp.org/~adrian/scripts.html

	* patched maze.c to work better interactively

        * patched noisify.c to show more informative labels and to
          correct a bug with values of 0 for a channel still allowing
          some noise to be added.

        * changed some of the alien-glow-* scripts to have better defaults

        * moving script-fu wasnt entirely my idea :-)

Wed Oct 22 18:48:28 1997  Shawn T. Amundson <amundson@gimp.org>

	* this was actually all Adrian's idea -- moved all the
          scripts from <Image>/Filters/Script-Fu to just
          <Image>/Script-Fu

Fri Oct 17 15:59:58 1997  Christoph Hoegl  <darkwing@bsdd.regensburg.com>

	* changed and autoconfigured gimptcl (needs further integration,
	  works only with -ldl), gfig (click 2 buttons bug)

	* plug-ins/gimptcl/gtclenums.h: fixed a typo

	* added gimptcl (1.0), gfig (0.9)

Thu Oct 16 17:05:32 1997  Christoph Hoegl  <darkwing@bsdd.regensburg.com>

	* translated c++-style comments to c-style ones

	* plug-ins/{CentralReflection,Anamorphose}: update to 1.02

	* plug-ins/rotate.c: Sven Neumanns update to 0.4 (selection support)

Wed Oct 22 11:42:50 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* plug-ins/polar.c: Updates by Sven Neumann.

	* app/about_dialog.c (scroll_text): Added missing people to the
	credits list.  This is still incomplete, though.

	* Raphael Quinet's and Tristan Tarrant's big patch to add
	preferences saving, tip of the day, and some bugfixes to the
	gimprc code.  Thanks!

	* Adam Moss's patch to fix scaling of indexed images and the
	transform tool.

	* app/main.c: Miles O'Neal's patch to send error when an invalid
	command line switch is used.

	* app/paintbrush.c (paintbrush_invoker): Removed division by 2 of
	num_strokes.  This fixes calls to the paintbrush from the pdb
	(patch by Andy Thomas).

	* plug-ins/MapObject/mapobject_preview.c: Added prototype for
	clear_wireframe().

	* app/gimage.c: Scott Goehring's patch to disallow adding a layer
	to the wrong image, or adding the same layer twice to the same image.

	* app/global_edit.c: Applied Owen Taylor's patch to fix edit_clear
	when the image has no layers.

	* app/app_procs.c: Applied Jason Riedy's patch to fix gimpdir checking.

	* app/layers_dialog.c: Applied Scott Goehring's patch to avoid
	desensitizing the Close button when there are no images.

Fri Oct 17 13:34:22 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* plug-ins/emboss.c: Applied Eric Hernes's patch to fix the
	crashes in the plug-in.

Thu Oct 16 10:30:15 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* app/channel.c app/paint_funcs.c app/paint_funcs.h: Applied Scott
	Goehring's patch to fix the feathering with 0 radius.

	* plug-ins/waves.c: Applied Lauri Alanko's patch to make the
	plug-in not store its past drawable and image and operate in the
	"normal" way.

	* app/xcf.c (xcf_save_image): Applied Scott Goehring's patch to
	fix "disk full" error.

	* plug-ins/script-fu/script-fu-scripts.c (script_fu_interface):
	Applied Adrian Likins's patch to fix the toggle buttons with
	incorrect state.

	* app/disp_callbacks.c: Applied Lauri Alanko's patch to reset the
	tool when the active drawable changes (this fixes the flip tool
	bug, for example).

	* app/color_area.c: Applied Lauri Alanko's patch to fix the cancel
	function on the color dialog.

	* plug-ins/destripe.c plug-ins/emboss.c plug-ins/gfli.c
 	plug-ins/nlfilt.c plug-ins/sinus.c plug-ins/zealouscrop.c: fixed
 	"inline" functions.  PLEASE DO NOT USE THIS.

	* plug-ins/dgimp/dgimp.c: Added inclusion of <sys/select.h> if necessary.

	* libgimp/gimp.c: Added inclusion of <sys/select.h> if necessary.

	* plug-ins/emboss.c (run): Fixed the check for the number of
	parameters --- this was causing the plug-in to crash when being
	called non-interactively.  Also changed accepted drawable types to
	RGB*; it was missing the *.

Wed Oct 15 08:52:23 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* plug-ins/png/Makefile.am (LDADD): Added -lm to LDADD.

	* plug-ins/AlienMap/AlienMap.c plug-ins/Curtain/Curtain.c
 	plug-ins/Encript_Decript/Encript_Decript.c plug-ins/Julia/Julia.c
 	plug-ins/Mandelbrot/Mandelbrot.c: Removed C++-style comments.
  	PLEASE DON'T PUT IN THIS KIND OF COMMENTS!

	* plug-ins/MapObject/mapobject_preview.c: Added prototypes for
	draw_wireframe_plane() and draw_wireframe_sphere().

	* Added -I$(includedir) to the Makefile.am's in all directories.

	* plug-ins/fp.c plug-ins/engrave.c plug-ins/hot.c
 	plug-ins/magiceye.c plug-ins/universal.c: Changed registered
 	procedure names to follow the plug-in convetion.

	* app/magnify.c: Added "info_window.h" to #includes.

	* app/app_procs.c (really_quit_delete_callback): casted widget to
	GTK_BUTTON to avoid warning.

	* plug-ins/tiff/tiff.c plug-ins/gqbist.c plug-ins/sgi.c
 	plug-ins/snp.c plug-ins/tileit.c plug-ins/sharpen.c
 	plug-ins/sgilib.c plug-ins/ifscompose_utils.c: Added <string.h> to
 	includes to avoid warnings.

	* libgimp/gimpwire.c: Added <string.h> to includes to avoid warnings.

	* app/convert.c (compute_color_rgb): Applied Adam's patch to fix
	division by zero on completely transparent images.

	* libgimp/gimpenums.h (enum): Fixed SUBTRACT_MODE typo.  Oops :-)

Mon Oct 13 14:28:20 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* libgimp/gimpmenu.h libgimp/gimp.h: Applied Tom Bech's patch to
	make ld not puke on plug-ins written in C++.

Sun Oct 12 09:19:19 1997  Tim Janik  <timj@psynet.net>

	* acconfig.h:
	* configure.in:
	* app/plug_in.c: Added configure check for IPC_RMID_DEFERRED_RELEASE,
	because shmat() fails after a shmctl(..., IPC_RMID,...) for OSF1 V3.2,
	SunOS 4.1.1, 5.5, 5.5.1, 5.6, IRIX 5.2 and 6.2.

Sat Oct 11 11:03:30 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* app/gdisplay_ops.c: Applied Shuji Narazaki's patch to fix the
	behavior of shrink-wrap and auto-resize window.

	* plug-ins/script-fu/script-fu.c (init_constants): Applied Shuji
	Narazaki's patch to replace SUBTRACTION for SUBTRACT, to be
	consistent with the rest of the program.

Thu Oct  9 19:32:17 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* app/fileops.c (file_open_callback): Applied Tom Bech's patch to
	fix disappearing file list items.

	* app/gimprc.c (gimp_directory): Applied Raphael Quinet's patch to
 	fix NULL home directory.

	* app/brush_select.c, app/pattern_select.c: Applied Tom Bech's
	patch to allow proper resizing of the windows.

Wed Oct  8 21:33:50 1997  Christoph Hoegl  <darkwing@bsdd.regensburg.com>

	* plug-ins/
	added MapObject (0.32) plugin (still requires libgck to be installed)
	written by Tom Bech <tomb@gimp.org>
	added, updated (all 1.01 now) and autoconfigured (ADUPAC) following
	 AlienMap, Anamorphose, CentralReflection, Curtain, Encript_Decript,
	 Julia, Mandelbrot by Daniel Cotting (CSP) <cotting@mygale.org>
	plug-ins/aa/aa.c: upgraded to v1.0
	plug-ins/xd:      noticed upgrade by Josh
	applied inline patch by Tim Mooney <mooney@dogbert.cc.ndsu.NoDak.edu>
	       (reduces gcc-ism a bit and makes use of autoconf features)
	reflecting plugin changes within managementfiles (configure.in)

Mon Oct  6 13:22:01 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* plug-ins/pat.c, plug-ins/gbr.c: Applied Lauri Alanko's patch to
	fix number of returned arguments.

	* configure.in: Applied Tim Mooney's patch to allow passing of
	extra linker options to X and Gtk tests.
	Applied Kaz Sasayama's patch to allow use of the srcdir option in
	configure.

Mon Oct  6 01:15:21 CDT 1997 Tim Mooney  <mooney@dogbert.cc.ndsu.NoDak.edu>

 	* configure.in, config.h.in, plug-ins/destripe.c, plug-ins/emboss.c,
 	plug-ins/gfli.c, plug-ins/nlfilt.c, plug-ins/sinus.c,
 	plug-ins/zealouscrop.c: added a call to AC_C_INLINE in configure.in
 	to test for the appropriate flavor of the inline keyword, and changed
 	all plug-ins currently using __inline__ to use just `inline', which will
 	be defined to something in the toplevel config.h

Fri Oct  3 19:36:50 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* app/fileops.c: Applied Kevin Turner's patch to fix resizing of
	the file open/save dialogs.

Thu Oct  2 17:41:51 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* app/color_select.c (color_select_update_hue_value): Applied
	Laury Alanko's patch to fix hue calculation.

	* libgimp/gimppixelrgn.c: Applied Adam Moss's patch to use
	memcpy() instead of for() loops to copy tile data.

Wed Oct  1 01:25:38 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* app/gdisplay_ops.c: Applied Lauri Alanko's patch for optional
	confirmation when closing dirty images.

Tue Sep 30 17:18:52 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* plug-ins/sinus.c: replaced rint() by the ROUND_TO_INT() macro.

	* app/commands.c (file_new_ok_callback): Applied Lauri Alanko's
	patch to mark new images as non-dirty.

	* app/color_select.c: Applied Lauri Alanko's patch to make color
	selection update immediate.

	* libgimp/gimplayer.c (gimp_layer_copy): fixed pdb run procedure.

	* main.c (main): Applied Miles O'Neal's patch to change the help output.

Mon Sep 29 13:08:47 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* configure.in: Applied Jason Riedy's patch for non-GNUish systems.

	* configure.in: Changed second function for testing of libtiff so
	that the previous cached result is not used.

	* plug-ins/Makefile.am: Fixed linking of libraries for some
 	plug-ins (Peter).

	* configure.in: Changed linking order of gtk and X libraries (Peter).

Fri Sep 26 14:57:12 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* Made 0.99.12 release.  Whew! :-)

	* app/paint_core.c (paint_core_button_press): Applied Ray
	Lehtiniemi's patch for pointer motion tracking when pressing MOD1.

	* app/disp_callbacks.c (gdisplay_canvas_events): Applied Owen
	Taylor's patch (sent by Adam Moss) to fix pointer tracking.

Thu Sep 25 17:16:47 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* plug-ins/lic.c: added the LIC plug-in.

	* plug-ins/tga.c: updated the TGA plug-in to the new version.

	* Added the xd plug-in by Josh MacDonald.

	* Separated Gtk+ from GIMP.  Hope the chainsawing was correct :-)

	* plug-ins/apply_lens.c: Morten Eriksen authorized the removal of
	the additional licensing restriction, so I removed it.  Thanks!!!

	* plug-ins/gflare/gtkmultioptionmenu.c: Changed "restrict" to
	"restrict_area" to avoid name collision.

Wed Sep 24 13:47:31 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* plug-ins/script-fu/script-fu-scripts.c: Applied Owen Taylor's
	patch to avoid multiple initializations of the Gtk.

	* plug-ins/smooth_palette.c: srandom(), random() replaced by
	srand() and rand().

	* plug-ins/sinus.c: PI replaced by M_PI.

	* plug-ins/gqbist.c: srandom(), random() replaced by srand() and rand().

	* plug-ins/laplace.c: ROUND_TO_INT() macro removed because it is
	not used.

	* plug-ins: Removed MIN/MAX/BOUNDS macros and replaced them by the
	appropriate ones from glib.h.

	* Now plug-ins that require special libraries reside in their own
	subdirectories.  This is sort of a kluge to make optional
	compilation work.

	* app/: Applied Larry Ewing's big patch to properly handle
	delete_event in all windows.

	* app/about_dialog.c: Applied Owen Taylor's patch to avoid eating
	infinite CPU time when the about dialog is resized.

Tue Sep 23 12:22:52 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* libgimp/gimp.c: From Tim Janik's patch; now _shm_ID = -1.

	* app/plug_in.c: Applied Tim Janik's patch to mark shm segments
	with IPC_RMID so that they are automatically removed always.

	* app/gdisplay.c (gdisplay_delete): Applied Nick Lamb's patch to
	fix file/open bug.

	* plug-ins/psd.c: Commented out "#include <endian.h>".  It does
	not seem to be required, but I'm not sure.

	* app/procedural_db.c (procedural_db_execute): Applied Gordon
	Matzigkeit's patch to avoid memory leak when calling plug-ins.

	* app/plug_in.h: Applied Gordon Matzigkeit's patch to avoid memory
	leak when calling plug-ins.

	* app/plug_in.c: Applied Gordon Matzigkeit's patch to avoid memory
	leak when calling plug-ins.

	* app/fileops.c (file_open): Applied Gordon Matzigkeit's patch to avoid
	memory leak when freeing arguments.

	* app/plug_in.c: Applied Gordon Matzigkeit's patch for plug-in return args.

	* plug-ins/dbbrowser/dbbrowser.c: Removed the X includes; they are
	not needed.

	* plug-ins/maze.c (run): Removed string from putchar() call and
	replaced it with fprintf().

	* app/layers_dialog.c (layers_dialog_set_menu_sensitivity): Fixed
	bug which would lead to crashes when layer == NULL.

	* plug-ins/script-fu/scripts/clothify.scm: Fixed "gratuitous
	vulgarity".  Bleh.

	* Fixed calls to plug-in-bump-map in all scripts that needed it.

	* app/brushes.c (brushes_refresh_brush_proc =): Fixed unterminated
	strings.

	* plug-ins/mblur.c (mblur): Fixed bad default case on switch().

	* plug-ins/hot.c: Fixed unterminated strings.

	* plug-ins: removed trailing semicolon from all MAIN() macro calls.

	* plug-ins/dbbrowser/dbbrowser.c (run): Changed values[0] to values[1].

	* plug-ins/sgi.c: Updated the sgi plug-in.

	* plug-ins/png.c: Updated the png plug-in.

	* Applied Lauri Alanko's patch to remove gcc-isms.

Mon Sep 22 21:19:14 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* Added the mpeg plug-in.

	* Made configure.in and plug-ins/Makefile.am properly detect
	whether file format libraries are installed and thus decide
	whether to build some plug-ins or not.


Wed Sep 24 13:47:31 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* plug-ins/script-fu/script-fu-scripts.c: Applied Owen Taylor's
	patch to avoid multiple initializations of the Gtk.

	* plug-ins/smooth_palette.c: srandom(), random() replaced by
	srand() and rand().

	* plug-ins/sinus.c: PI replaced by M_PI.

	* plug-ins/gqbist.c: srandom(), random() replaced by srand() and rand().

	* plug-ins/laplace.c: ROUND_TO_INT() macro removed because it is
	not used.

	* plug-ins: Removed MIN/MAX/BOUNDS macros and replaced them by the
	appropriate ones from glib.h.

	* Now plug-ins that require special libraries reside in their own
	subdirectories.  This is sort of a kluge to make optional
	compilation work.

	* app/: Applied Larry Ewing's big patch to properly handle
	delete_event in all windows.

	* app/about_dialog.c: Applied Owen Taylor's patch to avoid eating
	infinite CPU time when the about dialog is resized.

Tue Sep 23 12:22:52 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* libgimp/gimp.c: From Tim Janik's patch; now _shm_ID = -1.

	* app/plug_in.c: Applied Tim Janik's patch to mark shm segments
	with IPC_RMID so that they are automatically removed always.

	* app/gdisplay.c (gdisplay_delete): Applied Nick Lamb's patch to
	fix file/open bug.

	* plug-ins/psd.c: Commented out "#include <endian.h>".  It does
	not seem to be required, but I'm not sure.

	* app/procedural_db.c (procedural_db_execute): Applied Gordon
	Matzigkeit's patch to avoid memory leak when calling plug-ins.

	* app/plug_in.h: Applied Gordon Matzigkeit's patch to avoid memory
	leak when calling plug-ins.

	* app/plug_in.c: Applied Gordon Matzigkeit's patch to avoid memory
	leak when calling plug-ins.

	* app/fileops.c (file_open): Applied Gordon Matzigkeit's patch to avoid
	memory leak when freeing arguments.

	* app/plug_in.c: Applied Gordon Matzigkeit's patch for plug-in return args.

	* plug-ins/dbbrowser/dbbrowser.c: Removed the X includes; they are
	not needed.

	* plug-ins/maze.c (run): Removed string from putchar() call and
	replaced it with fprintf().

	* app/layers_dialog.c (layers_dialog_set_menu_sensitivity): Fixed
	bug which would lead to crashes when layer == NULL.

	* plug-ins/script-fu/scripts/clothify.scm: Fixed "gratuitous
	vulgarity".  Bleh.

	* Fixed calls to plug-in-bump-map in all scripts that needed it.

	* app/brushes.c (brushes_refresh_brush_proc =): Fixed unterminated
	strings.

	* plug-ins/mblur.c (mblur): Fixed bad default case on switch().

	* plug-ins/hot.c: Fixed unterminated strings.

	* plug-ins: removed trailing semicolon from all MAIN() macro calls.

	* plug-ins/dbbrowser/dbbrowser.c (run): Changed values[0] to values[1].

	* plug-ins/sgi.c: Updated the sgi plug-in.

	* plug-ins/png.c: Updated the png plug-in.

	* Applied Lauri Alanko's patch to remove gcc-isms.

Mon Sep 22 21:19:14 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* Added the mpeg plug-in.

	* Made configure.in and plug-ins/Makefile.am properly detect
	whether file format libraries are installed and thus decide
	whether to build some plug-ins or not.


Mon Sep 22 17:34:09 1997  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

	* Made 0.99.11 release.  See the files NOTES and TODO-DIST for
	more info.