File: ChangeLog

package info (click to toggle)
gnome-mud 0.11.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 3,124 kB
  • ctags: 1,288
  • sloc: ansic: 11,911; sh: 4,236; makefile: 226
file content (4835 lines) | stat: -rw-r--r-- 159,562 bytes parent folder | download
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
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
2009-02-27  Jordi Mallach  <jordi@sindominio.net>

	* NEWS: Updated for 0.11.2.

	* Makefile.am, configure.ac: Stop generating a .lsm file for ibiblio.
	* gnome-mud.lsm.in: Removed.

	* configure.ac: Release gnome-mud 0.11.2.

2009-02-27  Les Harris  <lharris@gnome.org>

	* src/mud-telnet-mccp.c (mud_mccp_decompress): Replaced character
	iteration with g_string_append_len.
	* ui/prefs.glade: Set the left treeview to no expand so the ui on the
	right expands properly.

2009-02-27  Les Harris  <lharris@gnome.org>

	* gnome-mud.schemas.in: Pruned unused keys from schema.
	* plugins/Makefile.am:
	* plugins/automapper/Makefile:
	* plugins/automapper/directions.h:
	* plugins/automapper/map-link.c:
	* plugins/automapper/map.c:
	* plugins/automapper/map.h: Removed old automapper.
	* src/gconf-helper.c (gm_gconf_load_preferences):
	* src/mud-profile.c (mud_profile_finalize),
	(mud_profile_copy_preferences), (mud_profile_gconf_changed): Removed
	code that accessed unused keys.
	* src/mud-window.c (mud_window_init): Removed Quick Connect.
	* ui/Makefile.am: Removed connect.glade.
	* ui/connect.glade: Removed file.
	* ui/main.glade: Removed quick connect from menu.
	* ui/muds.glade: Added space between port spinbutton and connect
	button.

2009-02-27  Les Harris  <lharris@gnome.org>

	* ui/muds.glade: Put the custom connect ui into a GtkExpander.

2009-02-27  Les Harris  <lharris@gnome.org>

	* src/mud-preferences-window.c
	(mud_preferences_window_fill_profiles): Preference window now auto
	selects the default functionality pane on opening.

2009-02-27  Les Harris  <lharris@gnome.org>

	* src/gconf-helper.c (gm_gconf_load_preferences): Formatting, closed
	leak.
	* src/gnome-mud.c (main): Create .gnome-mud dir.
	* src/modules.c: Closed leak.
	* src/mud-connection-view.c (mud_connection_view_new),
	(mud_connection_view_http_cb): Allocate the mud name into the view.
	* src/mud-parse-trigger.c (mud_parse_trigger_init): Formatting fixes.
	* src/mud-profile.c: Closed memory leaks, formatting changes.
	* src/mud-telnet-msp.c (mud_telnet_msp_parse),
	(mud_telnet_msp_get_files): Completely disabled T parameter,
	formatting.
	* src/mud-telnet.c (mud_telnet_process): Closed memory leak.
	* src/mud-window.[ch] (mud_window_textview_keypress),
	(mud_window_about_cb), (mud_window_finalize), (mud_window_new): Added
	missing comma, removed use of a gconf client stored in private.
	* ui/muds.glade: Marked untranslatable string as such.

2009-02-27  Jordi Mallach  <jordi@sindominio.net>

	* src/mud-window.c mud_window_about_cb): Add Les Harris to the
	about dialog Copyright credits, and Mart Raudsepp to author credits.

2009-02-24  Les Harris  <lharris@gnome.org>

	* src/mud-connections.c (mud_connections_init),
	(mud_connections_finalize), (mud_connections_qconnect_cb),
	(mud_connections_delete_cb), (mud_connections_properties_cb): Closed
	some memory leaks. Now deletes characters properly without deleting
	the entire mud. Added quick connect.
	* src/mud-telnet-msp.c (mud_telnet_msp_parse),
	(mud_telnet_msp_get_files): Disabled Zone in filepath for now since
	all MSP muds seems to ignore the standard.
	* src/mud-telnet.h: Increased subreq buffer to 2k
	* ui/muds.glade: Added quickconnect ui.

2009-02-24  Les Harris  <lharris@gnome.org>
	* src/mud_connection_view.c (mud_connection_view_reconnect),
	(mud_connection_view_send), (mud_connection_view_new),
	(mud_connection_view_queue_download): GConfClient Leak Fix
	* src/mud-preferences-window.c
	(mud_preferences_window_trigger_select_cb),
	(mud_preferences_window_alias_select_cb),
	(mud_preferences_window_trigger_enabled_toggle_cb),
	(mud_preferences_window_trigger_gag_toggle_cb),
	(mud_preferences_window_alias_enabled_toggle_cb),
	(mud_preferences_window_trigger_del_cb),
	(mud_preferences_window_alias_del_cb),
	(mud_preferences_window_trigger_ok_cb),
	(mud_preferences_window_alias_ok_cb),
	(mud_preferences_window_populate_trigger_treeview),
	(mud_preferences_window_populate_alias_treeview),
	(mud_preferences_window_update_proxy_combo): Formatting, Gconf Client
	Leak Fix
	* src/mud-profile.c (mud_profile_finalize), (mud_profile_delete),
	(mud_profile_new), (mud_profile_gconf_changed): Formatting,
	GconfClient Leak Fix
	* src/mud-telnet-handlers.c (MudHandler_ZMP_HandleSubNeg): GString
	fix.
	* src/mud-window.c (mud_window_finalize): GConfClient Leak Fix

2009-02-22  Les Harris  <lharris@gnome.org>

	* src/mud-connection-view.c (mud_connection_view_finalize),
	(mud_connection_view_disconnect), (mud_connection_view_reconnect),
	(mud_connection_view_network_event_cb): Closed memory leaks.
	* src/mud-log.c (mud_log_finalize), (mud_log_write), (mud_log_new):
	Log no longer erroneously reports write failures.  GString fixes.
	Closed memory leaks.
	* src/mud-parse-alias.c (mud_parse_alias_finalize),
	(mud_parse_alias_do), (mud_parse_alias_new): Closed memory leaks.
	* src/mud-parse-base.c (mud_parse_base_finalize),
	(mud_parse_base_parse): Closed memory leaks.
	* src/mud-parse-trigger.c (mud_parse_trigger_do),
	(mud_parse_trigger_new): Closed memory leaks.
	* src/mud-regex.c (mud_regex_finalize): Free substring array if it
	exists.
	* src/mud-telnet-handlers.c (MudHandler_CHARSET_HandleSubNeg),
	(MudHandler_ZMP_HandleSubNeg): GString fixes
	* src/mud-telnet-msp.[ch]: Added function to allow sound to be stopped
	externally of a MSP command.
	* src/mud-telnet.[ch] (mud_telnet_init), (mud_telnet_finalize),
	(mud_telnet_new): Close memory leaks, stop playing sound on
	finalization of the class.
	* src/utils.c (remove_whitespace), (strip_ansi): GString fixes.

2009-02-21  Les Harris  <lharris@gnome.org>

	* src/mud-telnet.c (mud_telnet_process): Set subreq_position on TEL_SB
	state change again.
	* src/mud-window.c (mud_window_reconnect_cb): Now sets the Start Log
	menuitem sensitive.

2009-02-21  Les Harris  <lharris@gnome.org>

	* src/mud-connection-view.[ch] (mud_connection_view_add_text),
	(mud_connection_view_islogging),
	(mud_connection_view_network_event_cb),
	(mud_connection_view_is_connected): Fixed a possible double free,
	added more runtime checks to islogging.  Now notifies the mud-window
	when the server has broken connection for ui update.  Added new
	function which allows other classes to query for connection status.
	* src/mud-connections.c (mud_connections_populate_iconview),
	(mud_connections_property_cancel_cb),
	(mud_connections_show_icon_dialog),
	(mud_connections_icon_fileset_cb): Formatting cleanups. The icon
	picker dialog will no longer attempt to add a NULL icon to it's view.
	* src/mud-telnet-mccp.c (mud_mccp_decompress): 
	* src/mud-telnet-msp.c (mud_telnet_msp_parse),
	(mud_telnet_msp_parser_args), (mud_telnet_msp_get_files): Now assigns 
	the return value of all GString functions to the string being changed
	as per the documentation.
	* src/mud-telnet.c (mud_telnet_new), (mud_telnet_process),
	(mud_telnet_get_telnet_string), (mud_telnet_get_telopt_string):
	GString fixes.  Fixed a bug that broke ZMP parsing while MCCP is
	enabled.
	* src/mud-tray.c (mud_tray_popup_menu_cb): Changed deprecated
	gtk_signal_connect to g_signal_connect.
	* src/mud-window.[ch] (mud_window_add_connection_view),
	(mud_window_disconnect_cb), (mud_window_reconnect_cb),
	(mud_window_disconnected), (mud_window_notebook_page_change),
	(mud_window_size_request), (mud_window_init): The ui will now update
	to better reflect the available options when a mud is either connected
	or disconnected. Added function to enable the view to notify the
	window upon non-user disconnection.
	* ui/main.glade: Close Window now has a stock icon.
	* ui/muds.glade: Proposed Quick Connect merge added.
	* ui/prefs.glade: 'Ok' changed to 'Save' in Alias/Trigger panes.

2009-02-20  Les Harris  <lharris@gnome.org>

	* src/mud-connection-view.c (mud_connection_view_add_text): Color will
	now be properly reset if there is a conversion error in add_text.

2009-02-20  Les Harris  <lharris@gnome.org>

	* src/mud-profile.c (mud_profile_copy_preferences): Fixed copying the
	foreground color to the background.

2009-02-20  Les Harris  <lharris@gnome.org>

	* src/mud-connection-view.c (mud_connection_view_add_text),
	(mud_connection_view_send): Workaround for a g_convert() problem where
	it doesn't return NULL when there is a conversion error.

2009-02-20  Les Harris  <lharris@gnome.org>

	* src/mud-connection-view.c (mud_connection_view_send): Check for null
	before freeing conv_text.

2009-02-20  Les Harris  <lharris@gnome.org>

	* src/mud-connection-view.c (mud_connection_view_send): Send UTF-8
	input if conversion to terminal codeset fails.

2009-02-20  Les Harris  <lharris@gnome.org>

	* src/mud-connection-view.c (mud_connection_view_send): Pass the
	correct string length to gnet_conn_write after conversion.

2009-02-20  Les Harris  <lharris@gnome.org>

	* src/mud-connection-view.c (mud_connection_view_send): Now convert
	user input to terminal encoding.

2009-02-17  Les Harris  <lharris@gnome.org>

	* src/mud-connection-view.c (mud_connection_view_add_text): Removed a
	useless buffer, removed logging.

2009-02-17  Les Harris  <lharris@gnome.org>

	* src/mud-connection-view.c (mud_connection_view_add_text):
	* src/mud-window.c (mud_window_textview_keypress): Consolidated
	encoding conversion into a single place.

2009-02-17  Les Harris  <lharris@gnome.org>

	* src/mud-connection-view.c (mud_connection_view_add_text): All
	gnome-mud messages sent to the terminal are now encoded to the
	encoding of the terminal.

2009-02-17  Les Harris  <lharris@gnome.org>

	* src/mud-telnet-msp.c (mud_telnet_msp_process_command): Fixed
	formatting.
	* src/mud-window.c (mud_window_textview_keypress): We now convert user
	input from the current locale into the encoding specified in the
	preferences.

2009-02-17  Les Harris  <lharris@gnome.org>

	* src/mud-connection-view.c (mud_connection_view_network_event_cb):
	The server disconnecting the user now behaves in the same way as the
	user disconnecting itself.

2009-02-16  Les Harris  <lharris@gnome.org>

	* configure.ac, plugins/Makefile.am: Removed obsolete plugin from
	autofoo.

2009-02-16  Les Harris  <lharris@gnome.org>

	* plugins/python/*: Removed obsolete plugin.

2009-02-16  Les Harris  <lharris@gnome.org>

	* src/mud-window.c (mud_window_remove_connection_view): GnomeMud
	picture will now be the correct size when the last view is closed.

2009-02-16  Les Harris  <lharris@gnome.org>

	* src/mud-connection-view.c (mud_connection_view_send_naws): Will no
	longer try to send NAWS when unconnected.
	* src/mud-window.c (mud_window_size_request): Now properly notifies
	each view of size change.

2009-02-16  Les Harris  <lharris@gnome.org>

	* src/mud-connection-view.c (mud_connection_view_disconnect),
	(mud_connection_view_reconnect), (mud_connection_view_send),
	(mud_connection_view_new): Disconnect and Reconnect now completely
	tear down the connection. Reconnect will then instantiate a new
	connection.  Fixed a leak on instantiation where we weren't freeing
	gconf returned strings.
	* src/mud-telnet.[ch] (mud_telnet_init), (mud_telnet_finalize): Make sure
	we properly free all allocated buffers on finalization. Moved
	prev_buffer references into ENABLE_GST blocks as it is only used when
	MSP is enabled.

2009-02-16  Les Harris  <lharris@gnome.org>

	* src/mud-connection-view.c (mud_connection_view_disconnect),
	(mud_connection_view_reconnect): Fixed an issue where the connection
	could get into an inconsistant state.
	* src/mud-telnet.c (mud_telnet_process): Check if buffer exists before
	creating a new buffer.

2009-02-16  Les Harris  <lharris@gnome.org>

	* src/mud-connection-view.c (mud_connection_view_reconnect): Added
	newline to reconnect.
	* src/mud-window.c (mud_window_init): Toolbar connect button now opens
	main connection window.

2009-02-16  Les Harris  <lharris@gnome.org>

	* ui/muds.glade: Changed the default port entry value to 23.

2009-02-16  Les Harris  <lharris@gnome.org>

	* src/mud-connections.c (mud_connections_connect_cb): Connections
	window will now close upon mud connection.

2009-02-16  Les Harris  <lharris@gnome.org>

	* src/mud-connection-view.c (mud_connection_view_reconnect): No longer
	free processed buffer in reconnect.
	* src/mud-telnet-handlers.c:
	* src/mud-telnet-msp.c (mud_telnet_msp_parse): Removed logging.

2009-02-16  Les Harris  <lharris@gnome.org>

	* src/mud-connection-view.c (mud_connection_view_disconnect): Removed
	the free of the processed buffer in disconnect since it is already
	freed by that point with the previous changes.

2009-02-16  Les Harris  <lharris@gnome.org>

	* src/Makefile.am: Removed GMUD_DEBUG variable. The configure script
	should add the debug flags.
	* src/mud-connection-view.c (mud_connection_view_network_event_cb):
	No longer relies on called functions to free the processed buffer.
	* src/mud-connections.c (mud_connections_populate_iconview): Closed
	a memory leak where two GSLists were not freed.
	* src/mud-telnet-handlers.c: Added some debug info.
	* src/mud-telnet-msp.c (mud_telnet_msp_parse): Now properly frees it's
	buffer.
	* src/mud-telnet.[ch] (mud_telnet_process): Simplified how the
	function returns it's processed buffer.  Fixed a corner case where
	MCCP data would try to decompress twice.

2009-02-16  Jordi Mallach  <jordi@sindominio.net>

	* NEWS: Update for 0.11.1.

	* configure.ac: Release GNOME-Mud 0.11.1.

2009-02-15  Les Harris  <lharris@gnome.org>
	
	* ui/prefs.glade: Rehid notebook tabs in prefs dialog.
	* src/mud-telnet-mccp.c: Rearranged things a bit to
	prevent a possible memory leak.

2009-02-15  Les Harris  <lharris@gnome.org>

	* configure.ac: Reenabled Zlib check.
	* src/Makefile.am: Readded mud-telnet-mccp.[ch]
	* src/mud-telnet-mccp.[ch]: Added files which decompress a
	zlib stream.
	* src/mud-connection-view.c:
	* src/mud-telnet-handlers.[ch]:
	* src/mud-telnet.[ch]: Reenabled MCCP related code.
	* src/mud-telnet-zmp.c (ZMP_ident): Made ident use VERSION
	from config.h.
	* src/mud-window.c (mud_window_about_cb): Updated email address.
	* ui/main.glade: Removed the toolbar from the handlebox.

2009-02-14  Les Harris  <lharris@gnome.org>

	* src/mud-connection-view.c (mud_connection_view_init),
	(mud_connection_view_send_naws): Will now only send NAWS
	subrequests when the window size has actually changed.
	* src/mud-telnet.c (mud_telnet_register_handlers): Reenabled
	all telnet options now that telnet parsing works.

2009-02-15  Mart Raudsepp  <leio@gentoo.org>

	* src/mud-telnet.c (mud_telnet_process): Add a missing break
	after TEL_STATE_DO handler to stop the WILL code to be
	executed as well. Fixes telnet options negotiated by the
	server with a DO request, such as NAWS and TTYPE.

2009-02-13  Les Harris  <lharris@gnome.org>

	* ui/prefs.glade: Changed GtkSpinButton's page size
	to 0 as it should be, fixes our spin button.

2009-02-12  Les Harris  <lharris@gnome.org>

	* src/mud-connections.c: Closed memory leak. Simplified logic
	in a control structure.
	* src/mud-connection-view.c, src/mud-log.c, src/modules.c,
	  src/mud-window.c: fwrites() now raise g_critical on failure.
	  All functions that expect a format get one now rather than
	  simply a string as format+data.

2009-02-05  Les Harris  <lharris@gnome.org>

	* src/mud-telnet-mccp.[ch]: Removed files.
	* src/mud-telnet.[ch], src/mud-telnet-handlers.[ch],
	  src/mud-connection-view.c: Removed MCCP related code.
	* src/Makefile.am: Removed references to removed files.
	* configure.ac: Disabled MCCP check.

2009-02-05  Les Harris  <lharris@gnome.org>

	* src/mud-connections.c: Fixed reimplemented
	certain list frees to the recommend form.
	Fixed a corner case where renaming a mud 
	would not delete the previous named mud from
	gconf.

2008-12-13  Przemysław Grzegorczyk  <pgrzegorczyk@gmail.com>

	* src/gconf-helper.c:
	* src/gnome-mud.c:
	* src/modules.c:
	* src/mud-connection-view.c:
	* src/mud-connection-view.h:
	* src/mud-preferences-window.c:
	* src/mud-profile.c:
	* src/mud-profile.h:
	* src/mud-regex.c:
	* src/mud-tray.c:
	* src/mud-window.c: Cleaned up gtk and glib includes
	to use only toplevel headers. Bug #564363.

2008-12-09  Les Harris  <lharris@gnome.org>

	* gnome-mud-desktop.in: Applied 
	patch from Emilio Pozeulo Monfort
	bringing the desktop file up to
	current standards (Bug# 563846)

2008-11-13  Les Harris  <lharris@gnome.org>

	* src/mud-connections.c: Removed
	logging g_messages.

	* ui/muds.ui, ui/prefs.ui: Changed
	the glade generated GtkSpinButton
	adjustment page size to 0 as it
	should be.

2008-11-01  Les Harris  <me@lesharris.com>

	* src/mud-connections.c: Remove some
	code that was causing double frees.

2008-08-08  Les Harris  <me@lesharris.com>

	* src/mud-window-profile.c: Added
	a destroy callback, removed old
	close signal.

	* src/mud-window.c: Properly unref
	the logo pixbuf to stop memory leak.

	* ui/prefs.glade: Refactored profile
	manager dialog to be cleaner.

2008-08-04  Les Harris  <me@lesharris.com>

	* ui/prefs.glade: Committed the proper
	glade file with the ui cleanup in it.

2008-08-01  Les Harris  <me@lesharris.com>

	* src/Makefile.am: Removed mud-window-mudedit.[ch],
	mud-window-mudlist.[ch], mud-window-mconnect.[ch].
	Added mud-connections.[ch]

	* src/mud-connections.[ch]: New files which
	implement an iconview-based appraoch to 
	handling mud connections.

	* src/mud-window-mudedit.[ch],
	  src/mud-window-mconnect.[ch],
	  src/mud-window-mudlist.[ch]: Removed these
	  files as their functionality is replaced
	  by mud-connections.[ch]
	
	* src/mud-log.h: Added GPL license information
	to file.

	* src/mud-telnet.c: Disabled mccp support 
	even if MCCP is compiled in. Currently broken.

	* src/mud-window.c: Updated to use the new
	mud-connections class.

	* src/mud-connection-view.c: Explicitly set
	the terminal to xterm emulation.  Updated
	history so duplicate items are not stored
	more than once.

	* src/mud-preferences-window.c: Changed so
	the proxy entry and checkbox are set
	insensitive if proxy use is disabled.

	* src/utils.[ch]: Changed remove_whitespace
	to return if passed a NULL value. Added
	utils_error_message which displays an
	error message in a dialog box easily.

	* ui/prefs.glade: Redid the preference pane
	to make it cleaner and more usable. Enable
	Sound checkbox is currently not functional.

	* ui/muds.glade, ui/prefs.glade, ui/main.glade:
	Removed various windows that no longer are used,
	saved them all with glade3 so we can use that
	instead of glade2 from now on.

2008-07-26  Les Harris  <me@lesharris.com>

	* configure.ac: Reenabled MCCP checks.
	
	* src/Makefile.am: Added mud-telnet-mccp.[ch]

	* src/mud-telnet-mccp.[ch]: New files which
	implement experimental mccpv2.

	* src/mud-telnet-handlers.[ch]: Added new 
	handler for mccpv2.
	
	* src/mud-telnet.[ch]: Integrated the 
	experimental mccpv2 handler into the 
	parser. Telnet subnegotiation currently
	broken with mccp enabled.

	* src/mud-connection-view.c: Added checks
	so we don't try to free empty queues.

2008-07-26  Les Harris  <me@lesharris.com>

	* Makefile.am: Removed gnome-doc-utils.make
	from EXTRA_DIST and DIST_CLEAN_FILES until
	we have updated documentation.

2008-07-26  Les Harris  <me@lesharris.com>

	* configure.ac: Changed to load gconf macros before
	checking for the tool.  Added test to check for 
	gconftool-2 presence.

	* Makefile.am: Changed schema installation to use
	GCONF_SCHEMA_FILE_DIR.

	* src/Makefile.am: Removed gamesdir path setting,
	switched to bin_PROGRAMS to let autotools do its
	job.

2008-07-26  Jordi Mallach  <jordi@sindominio.net>

	* configure.ac: Don't use GNOME_DOC_INIT, we have no docs.

2008-07-24  Jordi Mallach  <jordi@sindominio.net>

	* configure.ac: Release GNOME-Mud 0.11.

2008-07-24  Jordi Mallach  <jordi@sindominio.net>

	* NEWS: Update for 0.11.

	* README, gnome-mud.lsm.in, src/mud-window.c: Update website
	references to point at our wiki page at
	http://live.gnome.org/GnomeMud.

	* ROADMAP: Replace content with a link to wiki.

2008-07-23  Les Harris  <me@lesharris.com>

	* gnome-mud.spec.in: Updated dependencies, package
	information.

2008-07-19  Les Harris  <me@lesharris.com>

	* src/mud-connection-view.c: Explicitly set VTE
	to use xterm emulation.

	* src/mud-telnet.c: Removed unused #define.

2008-07-18  Les Harris  <me@lesharris.com>

	* src/mud-window.c: Updated window background
	icon and aboutbox icon to use the default
	gtk icon theme.

2008-07-18  Les Harris  <me@lesharris.com>

	* src/mud-tray.c: Set the icon name for all
	tray states to gnome-mud to prevent some harmless
	Gtk-CRITICAL's from showing up at runtime.

2008-07-18  Les Harris  <me@lesharris.com>

	* configure.ac: Updated icon Makefiles, removed obsolete
	header and function checks.

	* src/Makefile.am: Added gnome-mud-icons.h.

	* src/gnome-mud-icons.h: A new header which holds a
	definition of our icon's name.

	* src/gnome-mud.c: Properly set our icon based on our
	icon name rather than pointing to a file. Removed
	obsolete python code.

	* src/mud-tray.c: Removed references to our connection
	status icons, properly set our tray icon based on our
	icon name.

2008-07-18  Jordi Mallach  <jordi@sindominio.net>

	* configure.ac: Comment out all references to mapper and MCCP
	support, these features need to be rewritten in a future release.

2008-07-18  Jordi Mallach  <jordi@sindominio.net>

	* Makefile.am: Make schema installation conditional to
	GCONF_SCHEMAS_INSTALL.

	* gnome-mud.schemas.in: Remove "charset" from a string.
	* ui/prefs.glade: Mark a string as non-translatable.

2008-07-18  Jordi Mallach  <jordi@sindominio.net>

	* Get rid of all .cvsignore files, and add svn:ignore properties as
	needed.

	* configure.ac, doc/Makefile.am: Don't ship the GNOME-Mud manual
	for now, as it's outdated and not yet migrated to PO format.

	* configure.ac, src/Makefile.am, src/pixmaps, src/svg: Get rid of the
	old icons from the distribution.
	* src/Makefile.am, src/mud-tray.c: use the new SVG icon path for
	the tray icon.

	* src/Makefile.am: Fix typo in a filename which broke make dist.

2008-06-30  Les Harris  <me@lesharris.com>

	* configure.ac: Made gstreamer0.10 a conditional option, cleaned up
	a bit.

	* src/Makefile.am: Added MSP_CFLAGS and MSP_LIBS to build parameters.

	* src/gnome-mud.c, src/mud-connection-view.c,
	src/mud-telnet-handlers.[ch], src/mud-telnet-msp.[ch],
	src/mud-telnet.[ch]: Added conditionals to support disabling
	MSP support.

2008-06-30  Les Harris  <me@lesharris.com>

	* configure.ac: Added dependency for gstreamer0.10

	* gnome-mud-schemas.in: Added new schema for MSP remote downloading.

	* ui/prefs.glade: Added ui for MSP remote downloading.

	* ui/main.glade: Added downloading ui.

	* src/Makefile.am: Added files for MSP.

	* src/mud-msp-telnet.[ch]: New files which implement MSP.

	* src/gnome-mud.c: Added gstreamer initialization.

	* src/mud-connection-view.[ch]:  Added ui for downloading. Fixed
	disconnect and reconnect callbacks to propery dispose of and create
	the telnet object.  Changed the netcode to make a chain of processing
	such that a later link in the chain does not execute until the current
	link is finished.

	* src/mud-window.c: Fixed history code to avoid a potential crash when
	the history queue is empty.

	* src/mud-preferences-window.[ch], src/mud-profile.[ch],
	src/gconf-helper.c: Added in code to handle the new msp preference.

	* src/mud-telnet-handlers.[ch]: Added in MSP option handlers.

	* src/mud-telnet.[ch]: Added in MSP support. Changed mud_telnet_process
	to use a buffer that persists across calls to better handle cases where
	telnet control codes are broken across packets.

	* src/utils.c: Changed strip_ansi to use a GString to ensure a valid
	string return when malformed data is passed.

2008-06-27  Les Harris  <me@lesharris.com>

	* gnome-mud-schemas.in: Added in the new schemas for the new gconf
	preferences.

	* src/mud-window.c: Made the text entry widget auto-grab focus when
	the terminal comes into focus.

	* src/*.[ch]: Removed trailing whitespace in all source files.

2008-06-26  Les Harris  <me@lesharris.com>

	* src/Makefile.am: Added mud-telnet-zmp.[ch]

	* src/mud-telnet.[ch]: Added support for ZMP, removed debugging messages.

	* src/mud-connection-view.c: Added function call to clean up after ZMP.

2008-06-25  Les Harris  <me@lesharris.com>

	* ui/*.glade: Updated windows hints and made every window resizable to
	increase usability.

	* ui/prefs.glade: Removed Terminal type preference and Command History
	preference. Added ui for proxy and encoding support.

	* src/mud-profile.[ch]: Added in gconf handling and profile support for
	proxies and encoding. Fixed a segmentation fault when the command seperator
	was NULL and when the command seperator was entered by itself.

	* src/gconf-helper.[ch]: Added support for the new proxy and encoding
	preferences.

	* src/mud-connection-view.[ch]: Fixed an issue involving local echo and
	trigger responses.  Added support for proxy use and encoding.

	* src/mud-telnet-handlers.[ch], mud-telnet.[ch]: Added support for the
	CHARSET telnet option.

2008-06-25  Les Harris  <me@lesharris.com>

	* src/Makefile.am: Added mud-telnet-handlers.[ch]
	* src/mud-telnet-handlers.[ch]: New files which implement the telnet
	options. ECHO, NAWS, and TTYPE.

	* src/mud-connection-view.h: Added two new public fields for local echo
	and naws.  Added three new public methods that implement NAWS support in
	the client.

	* src/mud-connection-view.c: Set the encoding explicitly before every
	vte_terminal_feed() to ensure correct text rendering.  Implemented ECHO,
	server echoed text will not be stored to the history buffer (so passwords
	are not stored in plaintext).  Local echo is now disabled when server echo
	is in effect.  Provided a mechanism for choosing the default system font
	when the stored font cannot be loaded.  Implemented three functions that
	handle NAWS support.  Add mud_telnet_send_raw() function that sends a
	variable number of bytes through the connection.  Added
	mud_telnet_get_index_by_option() helper function.

	* src/mud-telnet.[ch]: Implemented a mechanism by which telnet options can
	be handled.  Now sets the initial telnet state correctly.  Enabled support
	for the EOR telnet option.  Implemented functions for NAWS and ECHO
	support.  The telnet parser now handles NOP.  The telnet parsers handles
	GA and TEL_EOR_BYTE as NOPs currently (this will change, they will be used
	to pass text to triggers).

	* src/mud-window.c: Added call to mud_connection_view_send_naws() in the
	size-request callback.

2008-06-21  Les Harris  <me@lesharris.com>

	* configure.ac: Removed gnomevfs, will wait for gtk 2.14.

	* src/Makefile.am: Converted spaces to tabs.

	* src/utils.[ch]: Removed gnome vfs url show.

	* src/mud-telnet.[ch]: Actually added the files now, whoops.

2008-06-21  Les Harris  <me@lesharris.com>

	* src/Makefile.am: Added mud-telnet.[ch]
	* src/mud-telnet.[ch]: New files which implement the telnet protocol.
	Converted from wxMud's implementation.
	* src/mud-connection-view.[ch]: Hooked up the new telnet parser to our
	network code.

2008-06-20  Les Harris  <me@lesharris.com>

	* plugins/test.plug/Makefile, plugins/statusbars/Makefile,
	plugins/outputwindows/Makefile, plugins/automapper/Makefile:
	Updated the dependencies in the plugins makefiles.  Added -fPIC to
	their cflags so they build properly in a 64 bit environment.

	* plugins/outputwindows/main.c,
	plugins/statusbars/main.c, plugins/test.plugin/main.c: Updated the
	data_in_function to accept a parameter passing the length of the data.

	* src/mudregex.[ch], src/mud-parse-alias.c, src/mud-parse-trigger.c,
	src/mud-window.c, src/mud-connection-view.c, src/modules-structures.h:
	Changed the plugin api to provide the length of the data recieved. This
	helps stop segmentation faults when malformed (non-null terminated) data
	is passed in.

	* src/mud-window.c: Since gnet does not flush its buffer plugins now only
	recieve a N-lengthed piece of the buffer where N is the length of the
	most current addition.

2008-06-20  Les Harris  <me@lesharris.com>

	* configure.ac: Removed dependency on libgnetwork, added dependency to gnet.
	* src/gnome-mud.[ch], src/mud-connection-view.[ch]: Removed libgnetwork
	calls and replaced them with gnet calls.

	* src/mud-window.c: Stopped using glade for the about box, moved it
	into here.  This complies with gnome and gtk+ best practice advice. Spruced
	up the aboutbox a bit. Close button works properly now.

	* src/mud-connection-view.c, src/mud-window.c, src/mud-window-mudedit.c,
	src/mud-window-mconnect.c, src/mud-parse-base.c, src/modules.c,
	src/mud-window-mudlist.c, src/mud-window-profile.c, src/mud-profile.c:
	Fixed various include problems to remove compile time warnings.

	* src/modules.c: Added explicit cast from void* to gpointer* to avoid type-
	punning warning at compile time.

2008-06-20  Les Harris  <me@lesharris.com>

	* src/mud-window.c: Fixed a segmentation fault when history was used with
	no open connection.

2008-06-17  Les Harris  <me@lesharris.com>

	* src/mud-window.c, src/mud-connection-view.c, src/mud-connection-view.h:
	Added in input history support for our text entry widget.

2007-07-13  Jordi Mallach  <jordi@sindominio.net>

	* configure.ac, Makefile.am: Prepare for icon changes.
	* src/pixmaps/Makefile.am: do not distribute the old icon for now.

	* data/icons/*: New Tango icons from Andreas Nilsson. Many thanks!

	* ui/main.glade: Add Andreas to credits.

2006-09-12  Jordi Mallach  <jordi@sindominio.net>

	* MAINTAINERS: Fix Les' email address, and add Mart.

2006-09-04  Les Harris  <lescom@comcast.net>

	* src/mud-window-mudedit.c, src/mud-window-mudlist.c,
	src/mud-connection-view.c:  Fixed a few things which
	were previously warnings in GTK+ 2.8 which are now
	critical in GTK+ 2.10.

2006-09-02  Les Harris  <lescom@comcast.net>

	* src/mud-parse-trigger.c, src/mud-parse-alias.c: Fixes a
	crash due to previous Lestupidy, frees slist properly now.

2006-08-29  Mart Raudsepp  <leio@dustbite.net>

	* configure.ac: Bump GTK_REQUIRED to 2.10.0 for GtkStatusIcon.
	* src/mud-tray.c: Port to GtkStatusIcon to get rid of libegg.
	Fixes #69909.
	* src/Makefile.am (gnome_mud_SOURCES): Remove eggtrayicon.[ch].
	* src/eggtrayicon.[ch]: Removed.

2006-08-24  Jordi Mallach  <jordi@sindominio.net>

	* src/mud-preferences-window.c, src/mud-window-mudedit.c,
	src/mud-window-mudlist.c: don't wrap gconf_client_get_string()
	calls around g_strdup(), as it leaks the string and
	gconf_client_get_string() already does the right thing.
	* src/mud-parse-alias.c, src/mud-parse-alias.c,
	mud-preferences-window.c, mud-window-mudlist.c: Plug memleaks.

	Thanks to Kjartan Maraas for the pointers.

2006-06-08  Jordi Mallach  <jordi@sindominio.net>

	* plugins/automapper/map.c, ui/prefs.glade,
	gnome-mud.schemas.in: Fix typos and unify some strings.
	Thanks Thierry Moisan. Fixes #328527, #343018.

2006-05-25  Jordi Mallach  <jordi@sindominio.net>

	* configure.ac (IT_PROG_LIBTOOL): Switch to IT_PROG_INTLTOOL and
	bump it to 0.35	for po/LINGUAS support.
	(ALL_LINGUAS): Removed, now in po/LINGUAS.

2006-05-11  Les Harris  <hl.harris@comcast.net>

	* configure.ac: Added two new dependencies for gmud, libpcre-6.0
	for trigger/alias support and gmodule-2.0 for plugin support.

	* src/Makefile.am: Added new files for triggers/aliases to sources.

	* src/mud-connection-view.[ch], src/mud-preferences-window.[ch],
	src/mud-window.[ch], mud-profiles.[ch]: Added in trigger/alias
	support for Gmud.

	* src/mud-regex.[ch], src/mud-parse-base.[ch],
	src/mud-parse-trigger.[ch], src/mud-parse-alias.[ch]: New files
	which implement trigger/alias support.

	* src/mud-connection-view.c, src/modules_api.[ch]: Added a stupid
	hack to allow plugins to gag a line of text from the main terminal.
	I'll remove this with the refactoring of the plugin system.

	* src/mud-window-mudedit.c: Fixed a bug thats been in there since I
	wrote it.  Now Gmud will properly add characters with a new mud.

	* src/utils.c: Reimplemented remove_whitespace() to make it not suck
	and more importantly, to not cause random crashes (especially in
	mudedit window and mudconnect window).

	* src/modules.[ch], src/modules_api.[ch], src/modules-structures.h:
	Converted the plugin system to use GModule instead of dl*.

	* ui/prefs.glade: Updated preferences window for triggers & aliases.

	* plugins/test.plugin/main.c: Updated test plugin for GModule use.

	* plugins/statusbars: Added a new plugin which provides a
	graphical status bar window (much like the old python one). Also
	demonstrates a more complex plugin.

	* plugins/outputwindows: Added a new plugin which provides
	support for multiple regex-based output windows for capturing
	stuff like channel text, tells, etc.

	* plugins/automapper: Implemented the 10.7 automapper code in
	a plugin form.  We really need to rewrite this but its too big a
	task before 0.11. This implementation will make it much easier to
	rip it out later. Also demonstrates a really fugly plugin hacked
	into using some gmud internals. Lets not steer new plugin authors
	to this as an example of What To Do ;)

2006-05-12  Jordi Mallach  <jordi@sindominio.net>

	* Makefile.am (EXTRA_DIST): Add gnome-doc-utils.make.

2006-04-25  Mart Raudsepp  <leio@dustbite.net>

	* src/mud-window.c, ui/main.glade: Re-implement the input box as
	a GtkTextView that adjusts its height as necessary.

	Return/Enter sends text, Return/Enter with any modifier keys goes
	to next line in the input box, adjusting height as necessary.
	A largest height of 5 is used, after which a scrollbar is used --
	that value can easily be changed by adjusting the value passed to
	mud_window_textview_ensure_height(). The height is always kept
	only as high as necessary.

2006-04-24  Les Harris  <hl.harris@comcast.net>
	* src/gnome-mud.c, src/modules.c, src/mud-preferences.window.c,
	ui/directions.glade, ui/main.glade, ui/prefs.glade,
	configure.ac: Removed all traces of libgnome and libgnomeui
	from gmud; converted functionality to gtk+ equivalents.

	* src/modules-api.c: Added a typecast to stop a warning on compile.
	* src/modules.c, src/modules-structures.h,
	src/mud-window.c: Fix "enabeled" typo.

2006-04-23  Mart Raudsepp  <leio@dustbite.net>

	* src/gnome-mud.c, src/modules.c, src/modules_api.c,
	src/mud-connection-view.c, src/mud-preferences-window.c,
	src/mud-profile.c, src/mud-tray.c, src/mud-window.c: Remove all
	"rcsid" variables from the source.

2006-04-23  Jordi Mallach  <jordi@sindominio.net>

	* src/mud-log.c: Fix gi18n.h include and unify log format.

2006-04-22  Les Harris  <hl.harris@comcast.net>

	* ui/main.glade: Added save dialog, set Start/Stop Logging and Save
	Buffer menu items to not sensitive on startup.

	* src/gnome-mud.c: Now adds various folders into its directory if they
	do not exist (plugins, logs).

	* src/mud-connection-view.[ch]: Added in support for the MudLog
	object.	Also added in two accessor functions to facilitate logging
	and buffer dumping.

	* src/mud-window.c: Made the various logging menu items activate and
	dim according to wether or not they are relevant. Added callbacks for
	the logging menuitems.

	* src/mud-log.[ch]: New files which implement the MudLog object.

2006-04-09  Paul Esson  <paul.esson@gmail.com>

	* src/mud-tray.c: Bugfix, fixes problem with two text boxes
	appearing simultaneously.

	* ui/main.glade:  Adds Connect, Disconnect & Reconnect buttons.
	Changes menu icons for Connect & Reconnect to gtk-standard icons.

	* src/mud-window.c (mud_window_inputtoggle_cb,
	mud_window_size_request, mud_window_init): Stops use of gtkpaned
	replaced with vbox in glade edit.

	* src/mud-window.[ch] (mud_window_init): Added callback for
	buttons from glade edit.

	(mud_window_add_connection_view): Added code to display either
	the MUDs name as listed in the mudlist, or the MUDs hostname,
	depending on the connection method.

2006-02-14  Jordi Mallach  <jordi@sindominio.net>

	* src/mud-preferences.[ch]: Removed.

2006-02-08  Daniel Patton  <seven-nation@army.com>

	* src/gnome-mud.h:  Removed a whole heap of cruft.

2006-02-03  Daniel Patton  <seven-nation@army.com>

	* src/mud-window.c (mud_window_textentry_activate): Added code to
	prevent crash on a blank line of input.
	Added if clause to honour keeptext gconf value.

2006-01-24  Clytie Siddall  <clytie@riverland.net.au>

	* configure.in:	Added vi in ALL_LINGUAS line.

2006-01-11  Jordi Mallach  <jordi@sindominio.net>

	* configure.ac: Cleanup. Update enabling of MCCP to be automatic,
	default mapper support to no.

	* src/gconf-helper.c (gm_gconf_load_preferences),
	src/gnome-mud.h: Update WITHOUT_MAPPER references to new name
	ENABLE_MAPPER.

2006-01-06  Jordi Mallach  <jordi@sindominio.net>

	* src/Makefile.am, src/data.c, src/directions.c, src/directions.h,
	src/init.c, src/keybind.c, src/log.c src/map-link.c, src/map.c,
	src/map.h, src/mccpDecompress.c, src/mccpDecompress.h, src/mudlist.c,
	src/net.c, src/prefs.c, src/profiles.c, src/python.c, src/telnet.c,
	src/tray.c, src/window.c: Remove old sources from CVS.

	* src/gnome-mud.h: Remove references to mccp.

	* MAINTAINERS: Add Les Harris and Daniel Patton.

2006-01-05  Jordi Mallach  <jordi@sindominio.net>

	* configure.ac: Don't check for Python, and don't link it in.

	* src/gnome-mud.c, src/modules.c, src/modules_api.c,
	src/mud-preferences-window.c, src/mud-profile.c, src/mud-tray.c,
	src/mud-window-mconnect.c, src/mud-window-mudedit.c,
	src/mud-window-mudlist.c, src/mud-window-profile.c, src/mud-window.c:
	Prune includes.

2006-01-05  Les Harris  <lescom@comcast.net>

	* src/mud-tray.h, src/mud-tray.c: Converted the old trayicon code into
	a full fledged GObject.
	* src/mud-window.c, src/mud-window.h, src/mud-connection-view.c,
	src/mud-connection-view.h, src/Makefile.am: Added in support for
	the tray icon.

	* src/modules.h: Add missing declaration.

2006-01-05  Daniel Patton  <seven-nation@army.com>

	* src/mud-window.c (mud_window_add_connection_view): Real fix for the
	double free.

2006-01-04  Daniel Patton  <seven-nation@army.com>

	* ui/muds.glade, ui/connect.glade: Dialog fixup.

2006-01-04  Daniel Patton  <seven-nation@army.com>

	* src/mud-window.c (mud_window_add_connection_view): Fix double
	free.

2006-01-04  Jordi Mallach  <jordi@sindominio.net>

	* src/mud-window.c (mud_window_populate_profiles_menu): Mark string
	for translation.

	* src/gnome-mud.c (main): Use GETTEXT_PACKAGE in i18n init.

	* src/mud-preferences-window.c (mud_preferences_window_init),
	src/mud-window-mconnect.c (mud_mconnect_window_init),
	src/mud-window-mudedit.c (mud_edit_window_query_glade),
	(props_window_dialog),
	src/mud-window-mudlist.c (mud_list_window_init),
	src/mud-window-profile.c (mud_profile_window_init),
	(mud_profile_window_add_cb),
	src/mud-window.c (mud_window_about_cb), (mud_window_connect_dialog),
	(mud_window_init): Pass the correct gettext domain to glade_xml_new(),
	so i18n works on glade dialogs.

	* src/mud-window.c (mud_window_about_cb): Don't hardcode the version
	string.

2006-01-04  Les Harris  <lescom@comcast.net>

	* src/svg/Makefile.am: Added file, will install gnome-mud.svg into
	  gmud's datadir.

	* src/mud-window-profile.c, src/mud-window-profile.h: Added files,
	  they implement the profile managment window.

	* src/mud-preferences.c, src/mud-preferences.h,
	  src/mud-connection-view.c, src/mud-connection-view.h,
	  src/mud-profile.c, src/mud-profile.h, src/mud-window.c,
	  src/mud-window.h, src/mud-window-mconnect.c,
	  src/mud-window-mconnect.h, mud-window-mudedit.c,
	  mud-window-mudedit.h: Implemented profile gui allowing users to
	  change and manage their profiles on a mud by mud basis.

	* src/mud-window.c: Replaced compilation information with our
	  attractive gnome-mud svg.

2006-01-04  Jordi Mallach  <jordi@sindominio.net>

	* ui/main.glade: Add Petter to documenters.

2006-01-04  Jordi Mallach  <jordi@sindominio.net>

	* MAINTAINERS: Make fatalerror happy.

2006-01-04  Jordi Mallach  <jordi@sindominio.net>

	* ui/main.glade: Cleanup the About dialog.

2006-01-04  Daniel Patton  <seven-nation@army.com>

	* ui/main.glade: Changed some mnemonics in the menus, added some
	more. Added an accelerator for file->connect.

2006-01-02  Jordi Mallach  <jordi@sindominio.net>

	* configure.ac: Set ALL_LINGUAS before calling AM_GLIB_GNU_GETTEXT,
	d'oh!.
	Set AM_MAINTAINER_MODE.

2006-01-01  Les Harris  <lescom@comcast.net>

	* src/Makefile.am, src/gnome-mud.h, src/gnome-mud.c, src/modules_api.h,
	  src/modules_api.c, src/modules.h, src/modules.c, src/mud-window.c,
	  src/mud-window.h, src/mud-connection-view.h, src/mud-connection-view.c,
	  src/modules-structures.h: Added cplugin support, added proper
	  MudConnectionView dealloc'ing at shutdown.

2006-01-02  Jordi Mallach  <jordi@sindominio.net>

	* ui/main.glade, ui/prefs.glade: Fix two newly introduced typos.
	Fixes #325335.
	Fix "completly" and "seperate" typos.

	* configure.ac: Update again, but do it right this time.

2005-12-31  Jordi Mallach  <jordi@sindominio.net>

	* configure.ac: Revert to AC_OUTPUT. Generated Makefiles are sometimes
	useful.

2005-12-29  Jordi Mallach  <jordi@sindominio.net>

	* configure.ac: GTK_REQUIRED=2.6.0, for GtkAboutDialog.

2005-12-29  Jordi Mallach  <jordi@sindominio.net>

	* Migration of gnome-mud-manual to gnome-doc-utils.
	* configure.ac: Add required changes for gnome-doc-utils.
	Make MCCP the default if zlib is present, warn if not.
	General cleanups.
	* Makefile.am: Add gnome-doc-utils stuff to DISTCLEANFILES,
	--disable-scrollkeeper to DISTCHECK_CONFIGURE_FLAGS.
	* doc/gnome-mud-manual/Makefile.am: Add gnome-doc-utils support.
	* doc/gnome-mud-manual/C/Makefile.am: Removed.
	* doc/gnome-mud-manual/gnome-mud-manual.omf.in: New, created from
	the old	omf file.
	* doc/gnome-mud-manual/C/gnome-mud-manual.omf: Removed.
	* doc/gnome-mud-manual/C/gnome-mud-manual.xml: Updated. Real content
	update will follow...
	* doc/Makefile.ac, configure.ac: Ignore the doc/gnome-mud-plugin-api
	and omf-install dirs, as the python plugin API is not available now,
	and omf-install is obsolete.
	* doc/omf-install: Removed.
	* doc/xmldocs.make: Removed.

	* .cvsignore, doc/gnome-mud-manual/.cvsignore: Updated.

2005-12-29  Robin Ericsson  <lobbin@localhost.nu>

	* src/mud-connection-view.c: Fixed the resize thing I broke earlier
	today :).

2005-12-29  Les Harris  <lescom@comcast.net>

	* src/mud-window.c, ui/main.glade: Added resizable entry widget
	support.

2005-12-29  Jordi Mallach  <jordi@sindominio.net>

	* ui/main.glade, ui/prefs.glade: Replace "colour" with "color", per
	GNOME guidelines. Fixes #325103.

2005-12-29  Robin Ericsson  <lobbin@localhost.nu>

	* src/mud-window.c (mud_window_about_cb), main.glade: Applied new
	GtkAboutDialog from Les Harris.

2005-12-29  Robin Ericsson  <lobbin@localhost.nu>

	* src/mud-connection-view.[ch]: Removed use global variables.

2005-12-28  Les Harris  <lescom@comcast.net>

	* Added a hook into MudConnectionView allowing for
	proper handling of connection strings.
	* Added Gnome-Mud window resizing.

2005-12-28  Jordi Mallach  <jordi@sindominio.net>

	* src/gnome-mud.h: Remove duplicate definition of
	remove_whitespace().

2005-12-27  Jordi Mallach  <jordi@sindominio.net>

	* src/Makefile.am (gnome_mud_SOURCES): Embarrasing typo.
	(INCLUDES): define GLADEDIR as $(pkgdatadir), not the local
	source ui/ directory.
	* src/mud-preferences-window.c, src/mud-window-mconnect.c,
	src/mud-window-mudedit.c, src/mud-window-mudlist.c,
	src/mud-window.c: add slashes to all glade file references.

2005-12-26  Les Harris  <lescom@comcast.net>

	* Add Mud List support.
	* Add Mud Connection support with data derived from Mud List.
	* ui/main.glade: Split into multiple glade files.

2005-12-20  Les Harris  <lescom@comcast.net>

	* Removed duplicate code that caused a crash on connect.

2005-09-14  Jordi Mallach  <jordi@sindominio.net>

	* Merge gnome-mud-glade-branch to HEAD.
	* Forwardport missing bits from gnome-mud 0.10.x.
	* Old branch is now gnome-mud-0-10.

2005-09-01  Pawan Chitrakar  <pchitrakar@gmail.com>

	* configure.ac: Added ne in ALL_LINGUAS

2005-08-02  Maxim Dziumanenko <mvd@mylinux.ua>

	* configure.in: Added "uk" to ALL_LINGUAS.

2005-05-16  Jordi Mallach  <jordi@sindominio.net>

	* src/directions.c (directions_window_ok_cb): Fix typo which
	would prevent directional keys from being saved correctly
	(fixes #304050).

2005-05-10  Jordi Mallach  <jordi@sindominio.net>

	* Makefile.am (EXTRA_DIST): Get rid of
	intltool-modules/XML/Parser/Style/OrigTree.pm.
	* src/Makefile.am (EXTRA_DIST): Add directions.h.

2005-05-10  Jordi Mallach  <jordi@sindominio.net>

	* src/init.c (text_entry_activate): Apply fix from Peter Andersson
	to fix history scrollback behaviour (fixes #116324).

2005-04-01  Steve Murphy  <murf@e-tools.com>

	* configure.in: Added "rw" to ALL_LINGUAS.

2005-03-13  Robin Ericsson  <lobbin@localhost.nu>

	* src/net.c (make_connection): Removed unused variable conn_id.
	(read_from_connection): Changed string to const char* and to
	_not_ free it, it's declared static in mccpDecompress.c.

2005-03-11  Robin Ericsson  <lobbin@localhost.nu>

	* src/gnome-mud.h [connection_data]: Added member naws.
	Added a few prototypes.

	* src/init.c (create_connection_data): Set news to FALSE and connect
	signals so we can detect changes in displayed w/h.

	* src/telnet.c (write_octet): Removed.
	(write_escaped_octet): Added.
	(connection_send_naws): Now escapes values of 255.
	(pre_process): Moved IAC WILL NAWS to connection_send_naws.

	* src/window.c (vte_might_need_naws): Added.
	(vte_char_size_changed_cb): Added.
	(vte_resize_window_cb): Added.

2005-03-07  Robin Ericsson  <lobbin@localhost.nu>

	* gnome-mud.schemas.in, ui/directions.glade: Changed short name to
	"Directional keybindings", fixes bugs #169184.

2005-03-04  Robin Ericsson  <lobbin@localhost.nu>

	* po/POTFILES.in: Added src/directions.c and ui/directions.glade.

2005-03-03  Robin Ericsson  <lobbin@localhost.nu>

	* Makefile.am: Added ui subdir.

	* configure.ac: Added requirement for libglade-2.0.

	* gnome-mud.schemas.in: Added default directions to Default profile.

	* src/Makefile.am, src/directions.[ch]: Added.

	* src/gnome-mud.h [profile_data]: directions added.

	* src/init.c (text_entry_key_press_cb): Use dynamic directions from
	profile.
	* src/map.c (user_command),
	(get_direction_text): Ditto.

	* src/profiles.c (profile_load_directions): Added.
	(load_profiles): Load directions.
	(profilelist_profile): Set directions.
	(profilelist_directions_cb): Added.
	(window_profile_edit): Added direction button in toolbar menu.

	* ui/Makefile.am, ui/directions.glade, ui/.cvsignore: Added.

2005-02-16  Jordi Mallach  <jordi@sindominio.net>

	* Makefile.am (EXTRA_DIST): Add gnome-mud.spec.
	* configure.ac (AC_OUTPUT): Add gnome-mud.spec.
	* gnome-mud.spec.in: Add RPM spec file from Adam Luchjenbroers.

2004-11-24  Amanpreet Singh Alam <amanlinux@netscape.net>

	* configure.ac: Add pa to ALL_LINGUAS

2004-07-18  Robin Ericsson  <lobbin@localhost.nu>

	* src/Makefile.am: mud-preferences.[ch] removed.

	* src/gconf-helper.c (gm_gconf_load_preferences): Rewritten to
	support profiles.

	* src/gnome-mud.c (main): Load profiles on startup.

	* src/mud-connection-view.c [_MudConnectionViewPrivate]: Removed
	prefs.
	(mud_connection_view_init): Changed callback for profile-change.
	(mud_connection_view_send): Now process command for separator.
	(mud_connection_view_set_*): Changed prefs to profile.
	(mud_connection_view_profile_changed_cb): Added callback for
	profile changes.
	(mud_connection_view_new): Now loads default profile.

	* src/mud-preferences.[ch]: Deleted.

	* src/mud-preferences-window.c [_MudPreferencesWindowPrivate]:
	Removed prefs, added profile and notification_count.
	[COLUMN_PREFERENCSE, COLUMN_ALIASE]: Added.
	[TAB_ALIASES]: Added.
	(mud_preferences_window_init): Connect callbacks.
	(mud_preferences_window_finalize): Disconnect callback.
	(mud_preferences_window_fill_profiles): Added aliases.
	(mud_preferences_window_tree_selection_cb): Added support for several
	tabs.
	(mud_preferences_window_change_profile_from_name): Added.
	(mud_preferences_window_change_profile): Added.
	(mud_preferences_window_connect_callbacks): Added.
	(mud_preferences_window_set_preferences): Added.
	(mud_preferences_window_*_cb): Changed preferences to profile and
	added return if notifying.

	* src/mud-profile.c [_MudProfilePrivate]: Added gconf_client, prefs
	and in_notification_count.
	(General): Moved a lot of functions from mud-preferences.c to
	mud-profile.c and renamed.

	* ui/main.glade: Added aliases tab.

2004-07-06  Jordi Mallach  <jordi@sindominio.net>

	* configure.ac: Bump libgnetwork requirement to 0.0.6.

2004-07-01  Robin Ericsson  <lobbin@localhost.nu>

	* gnome-mud.schemas.in [terminal_type]: Changed default to xterm.

	* src/mud-connection-view.c [_MudConnectionViewPrivate]: Added
	popup_menu, prefs, profile, signal and signal_profile_changed.
	(append_stock_menuitem): Added.
	(append_menuitem): Added.
	(popup_mnu_detach): Added.
	(choose_profile_callback): Added.
	(mud_connection_view_init): Listen to signal of changed preferences.
	(mud_connection_view_reread_profile): Added.
	(mud_connection_view_set_terminal_colors): Added.
	(mud_connection_view_set_terminal_scrollback): Added.
	(mud_connection_view_set_terminal_scrolloutput): Added.
	(mud_connection_view_set_terminal_font): Added.
	(mud_connection_view_set_terminal_type): Added.
	(mud_connection_view_prefs_changed_cb): Added.
	(mud_connection_view_button_press_event): Added.
	(mud_connection_view_popup): Added.
	(mud_connection_view_set_profile): Added.

	* src/mud-prefereces-window.c [_MudPreferencesWindowPrivate]: Added
	signal.
	(mud_preferences_window_finalize): Disconnect signal handler.
	(mud_preferences_window_new): Save signal handler.

	* src/mud-preferences.c (mud_preferences_new): Only load profiles
	when we create the singleton.

2004-06-29  Robin Ericsson  <lobbin@localhost.nu>

	* src/mud-preferences-window.c (mud_preferences_window_set_preferences):
	Changed the way color-selections are set.
	(mud_preferences_window_font_cb): Added.
	(mud_preferences_window_foreground_cb): Added.
	(mud_preferences_window_background_cb): Added.
	(mud_preferences_window_colors_cb): Added.
	(mud_preferences_window_changed_cb): Added history and scrollback.
	(mud_preferences_window_update_font): Added.
	(mud_preferences_window_update_foreground): Added.
	(mud_preferences_window_update_background): Added.
	(mud_preferences_window_update_colors): Added.

	* src/mud-preferences.c (color_to_string): Added.
	(set_Foreground): Added.
	(set_Background): Added.
	(set_Colors): Added.
	(set_FontName): Added.
	(mud_preferences_gconf_changed): Added font, foreground, background and
	palette.
	(mud_preferences_set_font): Added.
	(mud_preferences_set_foreground): Added.
	(mud_preferences_set_background): Added.
	(mud_preferences_set_colors): Added.

	* src/mud-preferences.h [MudPreferenceMask]: Added FontName, Foreground,
	Background and Colors.

2004-06-28  Robin Ericsson  <lobbin@localhost.nu>

	* src/mud-preferences-window.c (mud_preferences_window_set_preferences):
	Changed the way spinbuttons are set.
	(mud_preferences_window_history_cb): Added.
	(mud_preferences_window_scrollback_cb): Added.
	(mud_preferences_window_update_history): Added.
	(mud_preferences_window_update_scrollback): Added.
	(mud_preferences_window_changed_cb): Added history and scrollback.

	* src/mud-preferences.c (set_History): Added.
	(set_Scrollback): Added.
	(mud_preferences_gconf_changed): Added UPDATE_INTEGER.
	(mud_preferences_set_history): Added.
	(mud_preferences_set_scrollback): Added.

	* src/mud-preferences.h [MudPreferenceMask]: Added History and Scrollback,

	* ui/main.glade: Changed max on scrollback from 100 to 1000.

2004-06-24  Robin Ericsson  <lobbin@localhost.nu>

	* src/mud-preferences.c (mud_preferences_gconf_changed):
	terminal renamed to terminal_type.
	(mud_preferences_set_terminal): Ditto

2004-06-24  Robin Ericsson  <lobbin@localhost.nu>

	* src/mud-preferences-window.c (mud_preferences_window_set_preferences):
	Changed the way edit-boxes are set.
	(mud_preferences_window_disablekeys_cb): Wrote the code.
	(mud_preferences_window_scrolloutput_cb): Ditto.
	(mud_preferences_window_commdev_cb): Added.
	(mud_preferences_window_terminal_cb): Added.
	(mud_preferences_window_changed_cb): Added more callbacks.
	(mud_preferences_window_update_terminaltype): Added.
	(mud_preferences_window_update_commdev): Added.
	(mud_preferences_window_scrolloutput): Added.
	(mud_preferences_window_disablekeys): Added.

	* src/mud-preferences.c (set_TerminalType): Added.
	(set_CommDev): Added.
	(mud_preferences_gconf_changed): Added UPDATE_STRING and
	a few more entries.
	(mud_preferences_set_scrolloutput): Added.
	(mud_preferences_set_disablekeys): Added.
	(mud_preferences_set_commdev): Added.
	(mud_preferences_set_terminal): Added.

	* src/mud-preferences.h [MudPrefereneMask]: Added more entries.

2004-06-23  Robin Ericsson  <lobbin@localhost.nu>

	* src/mud-preferences-window.c [_MudPreferencesWindowPrivate]:
	Added scrollback, lines, font, foreground, background and color
	widgets.
	(mud_preferences_window_init): Binded a few more widgets.
	(mud_preferences_window_set_preferences): Change the way
	toggle-buttons are set, also set the last missing widgets.
	(mud_preferences_window_disablekeys_cb): Added.
	(mud_preferences_window_srolloutput_cb): Added.
	(mud_preferences_window_keeptext_cb): Added.
	(mud_preferences_window_echotext_cb): Added.
	(mud_preferences_window_changed_cb): Added.
	(mud_preferences_window_update_keeptext): Added.
	(mud_preferences_window_update_echotext): Added.
	(mud_preferences_window_new): Connected to signal changed
	from MudPreferences.

	* src/mud-preferences.c [_MudPreferencesPrivate]: Added
	prefs_signal and in_notification_count.
	(mud_preferences_init): Init variables.
	(mud_preferences_class_init): Create signal "changed".
	(mud_preferences_gconf_changed): Added.
	(mud_preferences_set_keeptext): Added.
	(mud_preferences_set_echotext): Added.
	(mud_preferences_new): Added gconf notify.

	* src/mud-preferences.h [MudPreferenceMask]: Added.
	[_MudPreferenceClass]: Added changed callback.

	* ui/main.glade: Renamed color-pick-widgets.

2004-06-21  Robin Ericsson  <lobbin@localhost.nu>

	* src/mud-connection-view (mud_connection_view_disconnect):
	Added asserts.
	(mud_connection_view_reconnect): Ditto.

	* src/mud-window.c (mud_window_disconnect_cb): Added some NULL
	checks on the current view.
	(mud_window_reconnect_cb): Ditto.
	(mud_window_textentry_activate): Ditto.
	(mud_window_init): Sett priv->current_view till NULL implicit.

2004-06-18  Robin Ericsson  <lobbin@localhost.nu>

	* src/mud-preferences-window.c [_MudPreferencesWindowPrivate]:
	Added a few new member.
	(mud_preferenes_window_init): Map some more widgets.
	Renamed a few functions more correctly.
	(mud_preferences_window_set_preferences): Added.

	* ui/main.glade: Added all preference-widgets.

2004-06-17  Robin Ericsson  <lobbin@localhost.nu>

	* src/Makefile.am: Added gconf-helper.[ch].

	* src/mud-preferences-window.c (mud_preferences_window_init):
	Connected to response signal.
	(mud_preferences_window_fill_profiles): Added global preferences.
	(mud_preferences_response_cb): Added.

	* src/mud-preferences.c (mud_preferences_finalize): Free values
	from properties.
	(mud_preferenes_new): Load preferences.

	* src/mud-preferences.h [_MudPreferences]: Added preferences
	member.

	* src/mud-profile.h [_MudPrefs]: Added.
	[_MudProfile]: Added preferences member.

	* ui/main.glade [preferences-window]: Changed responsetype of
	button to GTK_RESPONSE_CLOSE.

2004-06-16  Robin Ericsson  <lobbin@localhost.nu>

	* src/mud-preferences-window.c [MudPreferencesWindowPrivate]:
	Added notebook.
	[enums]: Added.
	(mud_preferences_tree_selection_cb): Added.
	(mud_preferences_show_tab): Added.
	(mud_preferences_window_fill_profiles): Added 3:d field to
	TreeView. Also show preferences child and attack selected
	callback.

	* src/mud-preferences.[ch]: Changed mud_preferences_get_profiles()
	into const.

	* ui/main.glade: Renamde notebook2 to notebook. Changed size of
	scrolledwindow for TreeView. Added missing labels for empty tabs
	at the moment. Added preferences tab with empty tabs.

2004-05-01  Adam Weinberger  <adamw@gnome.org>

	* configure.in: Added en_CA to ALL_LINGUAS.

2004-04-16  Robin Ericsson  <lobbin@localhost.nu>

	* src/Makefile.am: mud-profile.[ch] added.

	* src/mud-preferences-window.c [MudPreferencesWindowPrivate]:
	Removed gconf_client and added prefs and treeview.
	(mud_preferences_window_init): Save treeview in private data.
	(mud_preferences_window_fill_profiles): Added.
	(mud_preferences_window_new): Takes a MudPreferences as argument
	instead of GConfClient.

	* src/mud-preferences-window.h (mud_preferences_window_new):
	Changed prototype.

	* src/mud-preferences.c [MudPreferencesPrivate]: Added profile_list.
	(mud_preferences_finalize): Free private profile_list.
	(mud_preferences_get_profiles): Added.
	(mud_preferences_load_profiles): Added.

	* src/mud-profile.[ch]: Added.

	* src/mud-window.c [MudWindowPrivate]: Added prefs.
	(mud_window_init): Commented out non-working toolbar.
	(mud_window_new): Load preferences on startup.

	* ui/main.glade (preferences_window): Renamed treeview and removed
	headers.

2004-04-10  Gareth Owen  <gowen72@yahoo.com>

	* configure.ac: Added en_GB to ALL_LINGUAS

2004-04-07  Robin Ericsson  <lobbin@localhost.nu>

	* src/Makefile.am: Added mud-preferences.[ch] and
	mud-preferences-window.[ch]

	* src/gnome-mud.c (main): Enabled gconf sanitycheck and pass gconf-
	client to mud_window_new().

	* src/mud-window.c [_MudWindowPrivate]: Added gconf_client.
	(mud_window_preferences_cb): Added.
	(mud_window_new): Store gconf-client in private data.

	* src/mud-preferences.[ch]: Added.
	* src/mud-preferences-window.[ch]: Added.

	* ui/main.glade [main_window]: Added menuentry for preferences.
	[preferences_window]: Added.

2004-03-21  Gustavo Noronha Silva  <kov@debian.org>

	* configure.ac: added pt_BR to ALL_LINGUAS

2004-02-25  Robin Ericsson  <lobbin@localhost.nu>

	* ROADMAP: Removed entries.

	* src/mud-connection-view.c (mud_connection_view_finalize): Close
	connection before unref the object.

	* src/mud-window.c [_MudWindowPrivate]: Added current_view and
	nr_of_tabs.
	(mud_window_add_connection_view): Added checks for whether the
	standard label should be removed and whether to display the tabs.
	(mud_window_get_current_view): Removed.
	(mud_window_remove_connection_view): Added.
	(mud_window_disconnect_cb): Removed mud_window_get_current_view().
	(mud_window_reconnect_cb): Ditto.
	(mud_window_textentry_keypress): Ditto.
	(mud_window_closewindow_cb): Added.
	(mud_window_notebook_page_changed): Added.
	(mud_window_textentry_activate): Added.
	(mud_window_init): Added signals for close window, switch-notebook-page,
	and also reset nr_of_tabs.
	(mud_window_finalize): Added todo warning.

	* ui/main.glade [main_window]: Changed name of closewindow widget.
	Removed tabs from notebook.

2004-02-23  Robin Ericsson  <lobbin@localhost.nu>

	* src/mud-connection-view.c (mud_connection_view_reconnect): Added.
	(mud_connection_view_send): Added.
	(mud_connection_view_new): Added authentication-type and proxy-type.

	* src/mud-connection-view.h: Added prototypes.

	* src/mud-window.c [_MudWindowPrivate]: Added textentry.
	(mud_window_reconnect_cb): Added.
	(mud_window_textentry_keypress): Added.
	(mud_window_textentry_activate): Added.
	(mud_window_init): Connect reconnect button and textentry.

	* ui/main.glade: Added default width and height.
	Changed named of reconnect-buttons and textentries.

2004-02-22  Jordi Mallach  <jordi@sindominio.net>

	* src/init.c (window_menu_help_about): Use gtk_widget_show_all so
	the href shows up.
	Add a callback to destroy the about dialog, probably fixing a random
	segfault I was experiencing.

2004-02-19  Robin Ericsson  <lobbin@localhost.nu>

	* configure.ac: Added check for libnetwork.

	* src/Makefile.am, src/mud-connection.c, src/mud-connection.h: Removed.

	* src/mud-connection-view.c [_MudConnectionViewPrivate]: Added scrollbar
	and box.
	(mud_connection_view_str_replace): Added.
	(mud_connection_view_feed_text): Added.
	(mud_connection_view_add_text): Added.
	(mud_connection_view_init): Added the terminal and scrollbar to a box.
	(mud_connection_view_received_cb): Added.
	(mud_connection_view_send_cb): Added.
	(mud_connection_view_notify_cb): Added.
	(mud_connection_view_error_cb): Added.
	(mud_connection_view_disconnect): Added.
	(mud_connection_view_new_with_params): Moved into _new().

	* src/mud-connection-view.h [_MudConnection]: Changed connection from
	MudConnection to GNetworkTcpConnection.
	[MudConnectionColorType]: Added.

	* src/mud-window.c (mud_window_add_connection_view): Set newly created
	page active.
	(mud_window_get_current_view): Added.
	(mud_window_disconnect_cb): Added.
	(mud_window_init): Connected disconnected buttons.

	* ui/main.glade: Changed name of disconnect buttons.

2004-02-18  Robin Ericsson  <lobbin@localhost.nu>

	* First commit on glade-branch.

	* autogen.sh: Changed required automake to 1.7
	* configure.ac: Tipped version, added libglade and changed version of
	libgnome, libgnomeui and vte.

	* src/Makefile.am: Added GLADEDIR define, also removed a lot of
	sourcefiles to be compiled, these will have to added later.

	* src/gnome-mud.c: Remove globals, and code not used for the moment.

	* Also added three GObjects, MudWindow, MudConnectio, MudConnectioView.

2004-02-12  Jordi Mallach  <jordi@sindominio.net>

	* src/gnome-mud.c (main): Set the default application window using
	the new icon.

	* NEWS: Set release date.
	* configure.ac: Release gnome-mud 0.10.5.

2004-02-12  Jordi Mallach  <jordi@sindominio.net>

	* BUGS: Remove (old) items, just leave the Bugzilla pointer.
	* NEWS: Update for 0.10.5.

2004-02-11  Jordi Mallach  <jordi@sindominio.net>

	* src/window.c (terminal_feed): Revert last patch, doesn't work well.
	* src/net.c (connection_send_data): Patch from
	Juliano Ravasi Ferraz <jferraz@linkway.com.br>, convert all input
	text to the current locale before sending. Solves bad display on
	non-UTF-8 muds. Fixes bug #133517.

2004-02-11  Robin Ericsson  <lobbin@localhost.nu>

	* src/window.c (terminal_feed): Convert vte-feed-buffer from utf-8
	to locale fixing problem where user has a non-utf-8 locale.

2004-02-11  Jordi Mallach  <jordi@sindominio.net>

	* src/pixmaps/gnome-mud.png, src/pixmaps/gnome-mud-tray-icon.png,
	src/svg/gnome-mud.svg: New gnome-mud icon, courtesy of Daniel Taylor,
	thanks!
	* src/pixmaps/Makefile.am: Add new icons, and install gnome-mud.png in
	the general pixmapsdir.
	* src/tray.c (tray_update_icon): Use the new tray icon.
	* src/init.c (window_menu_help_about): Use new app icon.
	* gnome-mud.desktop.in: Likewise.

	* src/python.c: Placate silly warning.

	* src/init.c (window_menu_help_about): Add Adam, Nuno and Daniel to
	the credits dialog.

	* configure.ac: Fix AM_INIT_AUTOMAKE.
	* autogen.sh: Require automake >= 1.6.

2004-01-27  Robin Ericsson  <lobbin@localhost.nu>

	* ROADMAP: Removed some entries we've fixed. Whohoo!! :)

	* src/net.c (make_connection): Compile-fix for lost part of Adams
	patch from yesterday.

2004-01-26  Jordi Mallach  <jordi@sindominio.net>

	* src/python.c (pyConnection_equals): New function, still unfinished.
	(pyConnection_isFocus): New, return true if the connection object
	is the current focused connection; false otherwise. Patch by
	Adam Luchjenbroers.
	* plugins/python/HPinfo.py: Updated version from Adam Luchjenbroers.

2004-01-23  Jordi Mallach  <jordi@sindominio.net>

	* plugins/python/HPinfo.py: Updated version from Adam Luchjenbroers.

2004-01-20  Jordi Mallach  <jordi@sindominio.net>

	* plugins/python/HPinfo.py: New plugin from Adam Luchjenbroers.
	* plugins/python/Makefile.am (EXTRA_DIST): Add HPinfo.py.
	* configure.in (AC_OUTPUT): Add plugins/python/Makefile.

	* NEWS: Updated.

2004-01-18  Jordi Mallach  <jordi@sindominio.net>

	* src/python.c (pymud_pygtk_add_widget): Add missing gtk_widget_show()
	call to fix PyGTK support. Patch from Adam Luchjenbroers.

2004-01-13  Robin Ericsson  <lobbin@localhost.nu>

	* src/gnome-mud.h (destroy): Changed proto.

	* src/init.c (destroy): Changed from void to gboolean, returning TRUE
	if we want to keep the main window.
	(main_window): Changed signal from delete_event to delete-event.

	* src/tray.c (destroy): Removed proto already existing in gnome.mud.h.

2004-01-09  Jordi Mallach  <jordi@sindominio.net>

	* configure.ac: Remove call to AM_GNU_GETTEXT_VERSION, which confuses
	aclocal on some distros.

	* python.c (pymud_version): Pass correct arguments to
	gtk_box_pack_start(). Patch from Aravi. (This code is currently
	disabled).

2004-01-09  Jordi Mallach  <jordi@sindominio.net>

	* src/net.c: Fix the path for connection status icons.

2004-01-09  Jordi Mallach  <jordi@sindominio.net>

	* src/tray.c (tray_menu): Show/Hide labels were inverted.

	* src/pixmaps/Makefile.am: Embarrasing error...

2004-01-09  Jordi Mallach  <jordi@sindominio.net>

	* src/tray.c (tray_menu): Add mnemonics for menu items, change
	"Exit" to "Quit". Added separator.

2004-01-09  Jordi Mallach  <jordi@sindominio.net>

	* src/map.c (path_type_dialog): Fix compile warning.

	* src/init.c (window_menu_file_close), (main):
	* src/net.c (action_send_to_connection): Only show connection
	tabs if there's more than one, and set the main tab label to the
	connection name.
	Add a connection status icon to the connection tab.
	* src/eggtrayicon.[ch]:
	* src/tray.c: New file, notification area icon to show/hide the
	main window, and notify about new data.
	Patches by Nuno Sousa <nunofgs@punkass.com>.

	* src/Makefile.am (SUBDIRS): Add pixmaps.
	(GMPIXMAPSDIR): Added new directory for gnome-mud icons.
	(gnome-mud_SOURCES): Updated.
	* src/pixmaps/Makefile.am: New.
	* src/pixmaps/connection.png, src/pixmaps/connection-offline.png:
	Added.

	* configure.ac (AC_OUTPUT): Updated.

	* NEWS: Updated.

2004-01-03  Jordi Mallach  <jordi@sindominio.net>

	* src/modules_api.[ch], src/net.c: Reapply Quim's patch, with a pair
	of changes suggested by Dani Carbonell to fix the potential
	segfaults.

2004-01-02  Jordi Mallach  <jordi@sindominio.net>

	* src/modules_api.[ch], src/net.c: Unapply plugin patch which was
	causing segfaults.

	* Makefile.am (EXTRA_DIST): Add
	intltool-modules/XML/Parser/Style/OrigTree.pm.

	* NEWS: Updated.

	* configure.ac: Released gnome-mud 0.10.4a.

2003-12-22  Jordi Mallach  <jordi@sindominio.net>

	* Makefile.am (EXTRA_DIST): Duh, remove configure.in.

2003-12-22  Jordi Mallach  <jordi@sindominio.net>

	* NEWS: Updated for 0.10.4.

	* configure.ac: Release gnome-mud 0.10.4.

2003-12-19  Robin Ericsson  <lobbin@localhost.nu>

	* Applied patch from Quim Rovira.

	* NEWS: Updated.

	* src/modules_api.c (plugin_connection_send): Added.

	* src/modules_api.h (plugin_connection_send): Prototype added.

	* src/net.c (action_send_to_connection): Adds an extra \n so that
	trigger parsing will only occur once.
	(connection_send_data): Pass data through plugins registerd for
	outbound data.

2003-12-18  Jordi Mallach  <jordi@sindominio.net>

	* NEWS: Updated.

2003-12-18  Robin Ericsson  <lobbin@localhost.nu>

	* src/net.c (check_aliases): Remove alias nesting.
	Only check first word of input string for alises.

2003-12-18  Jordi Mallach  <jordi@sindominio.net>

	* gnome-mud.schemas.in: <menthaway> Oskuro: Wasn't Toto a band? ;-)
	Or in other words, fix a silly typo.

2003-12-17  Jordi Mallach  <jordi@sindominio.net>

	* gnome-mud.schemas.in: Added missing <long> descriptions.

2003-12-17  Robin Ericsson  <lobbin@localhost.nu>

	* configure.ac: Added checkes for time.h and sys/time.h

	* gnome-mud.schemas.in: Added key functionality/flush_interval

	* src/gnome-mud [connection_data]: Added last_log_flush.
	[system_data]: Added FlushInterval.

	* src/init.c (create_connection_data): Added current timestamp to new
	connection.

	* src/prefs.c (prefs_gconf_changed): Added flush_interval key.
	(load_prefs): Ditto.

	* src/window.c: Added extern prefs.
	(textfield_add): flush logfiles if a certain gconf settable amount
	of time have passed since last lines were written. Fixes bug #116325.

2003-12-17  Jordi Mallach  <jordi@sindominio.net>

	* autogen.sh: Remove workarounds for configure.ac, gnome-common 2.4.0
	groks new autoconf versions.

	* src/gnome-mud.c (gconf_sanity_check_string): New function stolen
	from gnome-games to check for badly installed schemas.
	(main): check for "/apps/gnome-mud/functionality/terminal_type" before
	starting.

2003-12-12  Jordi Mallach  <jordi@sindominio.net>

	* configure.ac (ALL_LINGUAS): Added "hr" (Croatian).

	* src/data.c (find_data): Robin's patch to ignore unuseful spaces in
	input. Fixes Debian Bug#222295.
	* src/log.c (window_menu_file_save_log_file_ok_cb): Use
	vte_terminal_get_text() to get the terminal data. Fix by Dani
	Carbonell. Fixes Debian Bug#222294.
	* src/profiles.c (connections_button_press_cb): Read data from the
	correct column, to avoid segfaulting. Fix by Dani Carbonell.
	Fixes #127166.

	* NEWS: Updated.

2003-11-20  Jordi Mallach  <jordi@sindominio.net>

	* src/net.c (open_connection): initialize all the fields in
	getaddrinfo() to fix a connect error on FreeBSD. Patch by Sjoerd
	Simons.

2003-11-11  Robin Ericsson  <lobbin@localhost.nu>

	* 0.10.3 release.

2003-09-29  Jordi Mallach  <jordi@sindominio.net>

	* NEWS: Updated.

2003-09-25  Robin Ericsson  <lobbin@localhost.nu>

	* src/profiles.s (profilelist_cleanup): Removed. Fixes bug #117242.

2003-09-12  Robin Ericsson  <lobbin@localhost.nu>

	* src/profiles.c (profile_gconf_sync_connection_list): fixed error
	that trashed the connectio list. Fixes bug #120044. Might fix
	bug #119451.

2003-09-02  Jordi Mallach  <jordi@sindominio.net>

	* src/prefs.c: Use ngettext in the messages that need it.
	Patch from Danilo.

2003-09-02  Jordi Mallach  <jordi@sindominio.net>

	* src/modules_api.c: Err, fix some more.

2003-09-02  Jordi Mallach  <jordi@sindominio.net>

	* gnome-mud.schemas.in: Fix typo.
	* src/modules_api: Fix up a few wrong sentences.
	* src/map.c: Add translator comment.
	Thanks to Danilo Šegan for the suggestions.

2003-09-01  Danilo Å egan  <dsegan@gmx.net>

	* configure.ac: Added "sr" and "sr@Latn" to ALL_LINGUAS.

2003-09-01  Metin Amiroff  <metin@karegen.com>

	* configure.ac: Added "az" in ALL_LINGUAS.

2003-08-11  Jordi Mallach  <jordi@sindominio.net>

	* configure.ac (ALL_LINGUAS): Added Malayalam (ml).
	* NEWS: Updated.

2003-07-30  Duarte Loreto <happyguy_pt@hotmail.com>

	* configure.ac: Added Portuguese (pt) to ALL_LINGUAS.

2003-07-25  Jordi Mallach  <jordi@sindominio.net>

	* NEWS: Updated.

2003-07-25  Artur Flinta  <aflinta@cvs.gnome.org>

	* configure.ac: Added "pl" to ALL_LINGUAS.

2003-07-17  Vincent van Adrighem  <V.vanAdrighem@dirck.mine.nu>

	* configure.ac: Dutch translation added.

2003-07-14  Robin Ericsson  <lobbin@localhost.nu>

	* NEWS: updated.

	* src/data.c, src/profiles.c: Escape wizard- and profilenames when
	used in gconf. Fixes bug #117241.

2003-07-14  Jordi Mallach  <jordi@sindominio.net>

	* src/init.c (window_menu_help_about): Remove obsolete comment.

2003-07-13  Miloslav Trmac  <mitr@volny.cz>

	* configure.ac: Added "cs" (Czech) to ALL_LINGUAS.

2003-07-11  Jordi Mallach  <jordi@sindominio.net>

	* src/init.c (window_menu_help_about): Use markup for the copyright
	symbol instead of UTF-8.
	(main_window): Don't show the Python version on startup, as it's
	mostly useless. Fixes bug #117108.

	* src/net.c (append_word_to_command): Use g_string_append_printf
	instead of deprecated g_string_sprintfa.

2003-07-11  Jordi Mallach  <jordi@sindominio.net>

	* src/init.c [toolbar_menu]: Oops, use N_(), not _().

2003-07-11  Jordi Mallach  <jordi@sindominio.net>

	* src/data (window_data): Don't include the function name in the
	warning message. Fixes bug #117099.

	* src/init.c [toolbar_menu]: Add hints to toolbar items.

	* src/modules.c (do_plugin_information): Improve checkbox label.

2003-07-11  Jordi Mallach  <jordi@sindominio.net>

	* src/init.c (main_window): Fix another string with Commonwealth
	English (Licence -> License).
	(window_menu_help_about): Change the copyright symbol to UTF-8 and
	unmark the string for translation. Fixes bug #117101.
	* src/profiles.c, src/map.c: Add translator comments on messages that
	can be misinterpreted. Fixes bug #117104.
	* src/mudlist.c: Remove uneeded spaces from strings. Partially fixes
	bug #117108.

2003-07-10  Jordi Mallach  <jordi@sindominio.net>

	* src/data.c, src/keybind.c, src/prefs.c, gnome-mud.schemas.in:
	Use American English instead of Commonwealth English for "Color" and
	"Center". Fixes bug #117100.
	* src/log.c: Fix the construct of a message to make it not look weird.
	Fixes bug #117102.
	* src/map.c: Fix typo. Fixes bug #117103.
	* src/prefs.c: Fix typos. Fixes bug #117107.
	* src/keybind.c, src/prefs.c, src/profiles.c, gnome-mud.schemas.in:
	Standarize the use of "keybinding" on all messages. Fixes bug #117105.
	* gnome-mud.schemas.in: Use "directory", not "dir". Fixes bug #117106.

2003-07-09  Robin Ericsson  <lobbin@localhost.nu>

	* Release 0.10.2

	* NEWS: Added date for 0.10.2.

	* configure.ac: Dumped to 0.10.2.

2003-07-04  Robin Ericsson  <lobbin@localhost.nu>

	* src/init.c (destroy): Only display dialog when we have open
	connections.
	(window_menu_file_connect): Pressing enter now works on
	connect dialog.

2003-07-02  Abigail Brady  <morwen@evilmagic.org>

	* src/telnet.c: Fix bug with dealing with SB.

2003-07-02  Robin Ericsson  <lobbin@localhost.nu>

	* NEWS: Fixed up a bit.

2003-07-02  Abigail Brady  <morwen@evilmagic.org>

	* src/telnet.c: Make it send out valid NAWS subnegs if our screen
	size happens to contain	255 in its serialisation.

	* src/telnet.c: Null-terminate the output buffer. Oops.

2003-06-31  Jordi Mallach  <jordi@sindominio.net>

	* README: Update for new mailing list, bugzilla, etc.

	* NEWS: Update for 0.10.2.

	* configure.ac: Remove some silly stuff.

2003-06-30  Abigail Brady  <morwen@evilmagic.org>

	* src/telnet.c, src/init.c, src/gnome-mud.h: Fix telnet
	handling to work if telnet sequences are split across
	packets.

2003-06-30  Robin Ericsson  <lobbin@localhost.nu>

	* plugins/text.plugin: Make it compile again.

	* src/Makefile.am: Remove GTK_ENABLE_BROKEN=1

	* src/modules.c (plugin_clist_select_row_cb):
	Changed from GtkText to GtkTextView.
	(do_plugin_information): Ditto.

	* src/modules_api.c [__MODULE__]: Remove define.

	* src/mudlist.c: Rewrote to use GtkTreeModel and
	GtkTextView instead of GtkTree and GtkText.

2003-06-25  Jordi Mallach  <jordi@sindominio.net>

	* BUGS: Add a pointer to bugzilla.

	* configure.ac (AC_INIT): Remove BUG-REPORT argument.

	* gnome-mud.desktop.in: Add X-GNOME-Bugzilla entries.

2003-06-24  Jordi Mallach  <jordi@sindominio.net>

	* configure.ac (ALL_LINGUAS): Added "mk" (Macedonian).

	* src/bind.c (window_keybind): Replace gdk_window_raise() &
	gdk_window_show() with gtk_window_present().
	* src/modules.c (do_plugin_information): Likewise.
	* src/mudlist.c (window_mudlist): Likewise.
	* src/prefs.c (window_prefs): Likewise.
	* src/profiles.c (profilelist_dialog): Likewise.
	(window_profiles): Likewise.
	(window_profile_edit): Likewise.

2003-06-18  Fatih Demir <kabalak@gtranslator.org>

	* configure.ac: Added Turkish ("tr") to the languages' list and re-
		ordered the languages list there.

2003-06-18  Jordi Mallach  <jordi@sindominio.net>

	* src/init.c (window_menu_help_about): Check for an existing about
	window before doing anything. Fixes a crash when you try to open the
	about dialog multiple times.

2003-06-10  Jordi Mallach  <jordi@sindominio.net>

	* src/gnome-mud.c (main): Yet another embarrasing bugfix, initialize
	the gettext textdomain correctly, specifying UTF-8 as the codeset.

2003-06-09  Jordi Mallach  <jordi@sindominio.net>

	* NEWS: Update for 0.10.1.

	* configure.in: Bump version to 0.10.1, update LSMDATE.

2003-06-08  Jordi Mallach  <jordi@sindominio.net>

	* src/init.c (text_entry_key_press_cb): Patch from Robin to fix the
	PageUp/PageDown segfault, by using the Vte function instead of the
	scrolled_window one.

	* doc/gnome-mud-manual/C/gnome-mud-manual.xml: Fix DTD declaration.
	* doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api.xml: Likewise.

	* NEWS: Updated.

2003-06-06  Jordi Mallach  <jordi@sindominio.net>

	* src/net.c (read_from_connection): Patch from Vashti, fixes a crash
	in connections with no profile set.

2003-06-05  Jordi Mallach  <jordi@sindominio.net>

	* NEWS: Updated, docs are finally working.

2003-06-05  Jordi Mallach  <jordi@sindominio.net>

	* src/init.c: Remove fixed FIXMEs.

	* BUGS: Add a few known issues.

2003-06-05  Abigail Brady  <morwen@evilmagic.org>

	* src/map.c, net.c, prefs.c, map-link.c: Backport to C90, which has
	declarations before code.

	* src/prefs.c: Kill a segfault if there are no saved colour palette
	settings.

Wed Jun  4 19:53:54 CEST 2003  Jordi Mallach  <jordi@sindominio.net>

	* doc/gnome-mud-manual/C/topic.dat: Removed.
	* doc/gnome-mud-plugin-api/C/topic.dat: Removed.
	* doc/xmldocs.make: change docdir to install the manuals into
	$(datadir)/gnome/help/$(PACKAGE)/$(lang), so gnome_help_display finds
	the documentation.

	* src/Makefile.am: Switch to a more common layout without a special
	target for gnome-mud.o.

Wed Jun  4 19:00:20 CEST 2003  Jordi Mallach  <jordi@sindominio.net>

	* src/Makefile.am: Pass a few needed variables at compile time.

	* src/gnome-mud.c (main): Init gnome properly with gnome_program_init.

	* src/init.c (window_menu_help_manual_activate_cb): Show an error
	message if viewing help fails.
	(window_menu_plugin_api_manual_activate_cb): Likewise.

Tue Jun  3 18:02:02 CEST 2003  Jordi Mallach  <jordi@sindominio.net>

	* gnome-mud.desktop.in: Changes to make it freedesktop.org-compliant.

Tue Jun  3 15:54:46 CEST 2003  Jordi Mallach  <jordi@sindominio.net>

	* doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api.xml: Change
	inclusion of monitor.py from an ENTITY to a XInclude.
	* doc/gnome-mud-manual/C/gnome-mud-manual-C.omf: Change section to
	GNOME|Games so it works with Yelp.
	* doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api-C.omf: Change
	section to GNOME|Development.
	* doc/gnome-mud-plugin-api/C/Makefile.am: add monitor.py to entities.

	* src/init.c, src/python.c: disable PyGTK stuff for now, as it's
	broken according to Petter.

	* ROADMAP: Updated.

Mon Jun  2 17:41:35 CEST 2003  Jordi Mallach  <jordi@sindominio.net>

	* doc/gnome-mud-manual/C/gnome-mud-manual-C.omf: Fix DTD errors.
	* doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api-C.omf: Likewise.

Mon Jun  2 17:08:47 CEST 2003  Jordi Mallach  <jordi@sindominio.net>

	* doc/gnome-mud-manual/C/gnome-mud-manual.sgml: Rename to .xml.
	* doc/gnome-mud-manual/C/gnome-mud-manual.xml: Convert to GNOME2
	documentation format.
	* doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api.sgml,
	doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api.xml: Likewise.
	* doc/omf-output/Makefile.am: Added, scrollkeeper stuff.
	* doc/Makefile.am: Updated.
	* configure.ac: add doc/omf-install/Makefile to AC_OUTPUT.


Fri May 30 12:49:42 CEST 2003  Robin Ericsson  <lobbin@localhost.nu>

	* AUTHORS, ROADMAP, configure.ac: Update for 0.10.0.

Wed May 28 13:26:44 CEST 2003  Jordi Mallach  <jordi@sindominio.net>

	* NEWS, README: Update for 0.10.0.

Wed May 28 10:43:31 CEST 2003  Robin Ericsson  <lobbin@localhost.nu>

	* Restructuring of gconf keys.

Tue May 20 12:41:44 CEST 2003  Jordi Mallach  <jordi@sindominio.net>

	* gnome-mud.schemas.in: Grammar fixes.
	* src/prefs.c (window_prefs): Reword movement commands tooltip a bit.

Fri May  2 11:25:36 CEST 2003  Robin Ericsson  <lobbin@localhost.nu>

	* Big patch from Remi Bonnet on the automapper.

	* po/*.po: Updated.

Wed Apr  9 14:22:59 CEST 2003  Jordi Mallach  <jordi@sindominio.net>

	* Makefile.am: Install desktop file in the freedesktop compliant
	directory.

	* configure.ac: Unquoted GETTEXT_PACKAGE.

Mon Apr  7 15:59:36 CEST 2003  Robin Ericsson  <lobbin@localhost.nu>

	* configure.ac: Changed gtetrinet to gnome-mud :)

Fri Apr  4 19:19:37 IST 2003  Naba Kumar   <naba@gnome.org>

	* src/keybinding.c(keybind_button_add_clicked_cb): Fixed a memory leak.
	Fixed a crash bug due to inappropriate looping of KEYBIND_DATA list
	in a for loop (crash occurs when we try to add the second keybinding).

	* src/gnome-mud.h(main): Calls gnome_init() before
	gconf_client_get_default() (and fixes a crash bug).

	* src/data.c(data_button_add): Fixed a crash bug (which occurs
	when we try to add the second trigger definition). The argument
	to the strdupv() should be a NULL terminated -- added third item
	in list[] and set it to NULL.

Sat Apr  5 00:14:55 CEST 2003  Jordi Mallach  <jordi@sindominio.net>

	* configure.ac: Define and substitute GETTEXT_PACKAGE.

	* src/prefs.c (window_prefs): Added missing mnemonic.

Thu Apr  3 19:53:42 CEST 2003  Jordi Mallach  <jordi@sindominio.net>

	* gnome-mud.schemas.in: Typo and style fixes.

	* src/prefs.c (window_prefs): Reword some tooltips.
	Add mnemonics to preferences.

	* src/init.c (window_menu_help_about): Unmark author names for
	translation, as they have no non-ASCII characters.

	[help_menu]: Change help items to GNOME_APP_UI_ITEM.
	(window_menu_help_manual_activate_cb): New function, launch User
	Manual help.
	(window_menu_plugin_api_manual_activate_cb): Likewise, for Plugin API.

Wed Apr  2 15:23:34 CEST 2003  Robin Ericsson  <lobbin@localhost.nu>

	* Fixed #623355.

	* gnome-mud.schemas.in: Added key connection_list.

	* src/gnome-mud.h [wizard_data]: Removed.

	* src/profilce.c (connection_send_data): secret added.
	(connection_send_secret): Added.
	(profile_gconf_sync_connection_list): Added.
	(profile_gconf_sync_wizard): Added.
	(profile_load_keybinds): Load connections.

Wed Apr  2 10:23:57 CEST 2003  Robin Ericsson  <lobbin@localhost.nu>

	* src/data.c (window_data): Changed to stock buttons.

	* src/init.c (destroy): Dialog rewritten.
	(window_menu_file_connect): Dialog rewritten.

	* src/keybind.c: Unused variables removed.
	(window_keybind): Changed to stock buttons.

	* src/mudlist.c: Remove the trailing \n from mudnames.

	* src/net.c: Pack vscrollbar ok.

	* src/prefs.c: Added tooltips to color prefs, and rewrote
	the preferences.

	* src/profiles.c (window_profiles): Changed order of buttons.

	* src/window.c (popup_window): Dialog rewritten.

	* src/*.po: Updated translations.

Fri Mar 28 10:58:45 CET 2003  Robin Ericsson  <lobbin@localhost.nu>

	* gnome-mud.schemas.in: Changed gnome-terminal to gnome-mud

	* po/*.po: Updated translations.

	* src/profiles.c (load_profiles, profile_load_list,
	profile_load_keybinds): Removed debug.

Fri Mar 28 10:01:55 CET 2003  Robin Ericsson  <lobbin@localhost.nu>

	* gnome-mud.schemas.in: Added keys profile_list, profile aliases,
	profile variables, profile triggers and profile keybinds.

	* data.c, gnome-mud.h, init.c, keybind.c, net.c, prefs.c,
	profiles.c: Profiles rebuilt using GList instead GtkCList, and
	also saving via gconf.

Mon Mar 17 16:20:38 CET 2003  Robin Ericsson  <lobbin@localhost.nu>

	* Fixes bug #533313.

	* gnome-mud.schemas.in: Added key history_count.

	* src/init.c (main_window): scrollbar is now packed correctly.

	* src/net.c (read_from_connection): Re-added pre_process().

	* src/prefs.c (prefs_gconf_changed): Removed debug message.
	Added key history_count.
	(load_prefs): Added key history_count
	(prefs_entry_history_cb): Changed to gconf
	(window_prefs): historyentry changed to spinbutton

	* src/telnet.c (pre_process): Added Petter E. Stokke's patch
	for telnet NAWS negotiation.

Wed Mar 12 11:35:34 CET 2003  Robin Ericsson  <lobbin@localhost.nu>

	* gnome-mud.schemas.in: Added key scroll_on_output.

	* src/gnome-mud.h [system_data]: Added ScrollOutput.

	* src/init.c (create_connection_data): Set scroll on output.

	* src/prefs.c: Removed a lot of unused callbacks.
	(prefs_changed_tab_location): Added.
	(prefs_gconf_changed): Added which takes care.
	(load_prefs): Changed to use macros.
	(prefs_scroll_output_changed_cb): Added.
	(window_prefs): Added scroll on output.

Tue Mar 11 10:47:28 CET 2003  Robin Ericsson  <lobbin@localhost.nu>

	* This commit fixed bug #569757.

	* configure.ac: VTE changed from 0.10.20 -> 0.10.26

	* gnome-mud.schemas.int: Added keys last_log_dir and
	scrollback_lines.

	* src/gnome-mud.h [system_data]: Added Scrollback.

	* src/init.c (create_connection_data): Set scrollback on
	init.

	* src/log.c (file_selection_cb_open): Set preference via
	gconf instead of directly.
	(window_menu_file_save_log_file_cb): Same.

	* src/net.c (open_connection): Connection refused would not stop
	the connection mechanism, fixed.

	* src/prefs.c (prefs_logdir_changed): Added.
	(prefs_scrollback_changed): Added.
	(load_prefs): Added key last_log_dir and scrollback_lines.
	(prefs_scrollback_value_changed_cb): Added.
	(window_prefs): Added SpinButton for changing scrollback.

	* src/window.c (textfield_add): Fixed colors for message_sent,
	_err and _system.

Mon Mar 10 16:13:10 CET 2003  Robin Ericsson  <lobbin@localhost.nu>

	* This commit fixed bug #607679.

	* gnome-mud.schemas.in: Added key tab_location.

	* src/gnome-mud.h: Define TAB_LOCATION_*
	[system_data]: Added TabLocation

	* src/init.c (main_window): Do not force GTK_POS_BOTTOM, remove
	commented code.

	* src/prefs.c (tab_location_by_name): Added.
	(tab_location_by_int): Added.
	(tab_location_by_gtk): Added.
	(prefs_tab_location_changed): Added.
	(load_prefs): Added key tab_location
	(prefs_tab_location_changed_cb): Added.
	(window_prefs): Added third page with tab location chooser.

Mon Mar 10 11:28:18 CET 2003  Robin Ericsson  <lobbin@localhost.nu>

	* gnome-mud.schemas.in: Added key palette.

	* src/gnome-mud.h [system_data]: Removed BoldForeground and
	changed Colors vector from 16 to C_MAX.
	(save_prefs): Removed prototype.

	* src/init.c (create_connection_data): Added palette to
	vte_terminal_set_colors().

	* src/log.c (file_selection_cb_open): Removed call to save_prefs()
	(window_menu_file_save_log_file_ok_cb): Same.

	* src/prefs.c (prefs_load_color): Removed.
	(prefs_save_color): Removed.
	(prefs_color_changed): Removed check for boldforeground and
	added palette to vte_terminal_set_colors()
	(prefs_palette_changed): Added.
	(load_prefs): Load palette.
	(save_prefs): Removed.
	(prefs_apply_cb): Removed.
	(prefs_select_palette_cb): Added.
	(prefs_set_color): Removed boldforeground stuff.

Fri Mar  7 16:06:17 CET 2003  Robin Ericsson  <lobbin@localhost.nu>

	* gnome-mud.schemas.in: Added keys terminal_type, mudlist_file,
	background_color, foreground_color.

	* src/init.c (create_connection_data): Set right colors on the
	terminal. Fixes bug #577598.

	* src/prefs.c (color_to_string): Added.
	(prefs_terminal_type_changed): Added.
	(prefs_mudlist_file_changed): Added.
	(prefs_color_changed): Added.
	(load_prefs): Added loading terminal_type, mudlist_file,
	fore- and background color.
	(prefs_entry_terminal_cb): Changed to gconf
	(prefs_entry_mudlistfile_cb): Changed to gconf
	(prefs_select_fg_color_cb): Renamed and changed to gconf
	(prefs_select_bg_color_cb): Added.

Wed Feb 26 13:18:03 CET 2003  Robin Ericsson  <lobbin@localhost.nu>

	* gnome-mud.schemas.in: Added keys commdev, echo, keeptext and
	system_keys.

	* src/prefs.c: Commented out several functions that was made
	unused by using gconf.
	(prefs_commdev_changed): Added.
	(prefs_echo_changed): Added.
	(prefs_keeptext_changed): Added.
	(prefs_system_keys_changed): Added.
	(prefs_fontname_changed): use the new prefs.FontName value.
	(load_prefs): New code for keys commdev, echo, keeptext and
	system_keys.
	(prefs_checkbox_keep_cb): Changed to gconf.
	(prefs_checkbutton_disablekeys_cb): Changed to gconf.
	(prefs_entry_divide_cb): Changed to gconf.
	(prefs_checkbox_echo_cb): Changed to gconf.

Mon Feb 24 12:43:57 CET 2003  Robin Ericsson  <lobbin@localhost.nu>

	* .cvsignore: Added gnome-mud.schemas

	* Makefile.am: Added schemas

	* configure.ac: Added GCONF checks

	* po/POTFILES.in: Added gnome-mud.schemas.in

	* src/gnome-mud.c (main): Added gconf initialization

	* src/prefs.c (prefs_fontname_changed): New function
	(load_prefs): prefs.FontName is now using gconf
	(prefs_select_font_cb): Now using gconf

Fri Feb 21 12:27:34 CET 2003  Robin Ericsson  <lobbin@localhost.nu>

	* src/gnome-mud.h: Cleanup

	* src/init.c (create_connection_data): Created
	(main_window): Cleanup

	* src/net.c (make_connection): Added vte for new tabs

	* src/prefs.c: prefs.Freeze removed.

	* src/window.c: Lot of old ANSI-code removed, this is handled
	by vte now

Tue Feb 18 15:22:32 CET 2003  Robin Ericsson  <lobbin@localhost.nu>

	* src/init.c: Fixed bug #539661

Tue Feb 18 11:36:21 CET 2003  Robin Ericsson  <lobbin@localhost.nu>

	* Added patch from Petter which adds support for python-gtk2

	* src/init.c, log.c, net.c, window.c: initial support for vte

	* src/precs.c (prefs_color_frame): Remove pango error.

Tue Jan 14 13:45:40 CET 2003  Robin Ericsson  <lobbin@localhost.nu>

	* src/profiles.c (connections_button_press_cb): Now returns
	false so button_press_event is propagated further to select row

Mon Jan 13 14:06:44 CET 2003  Robin Ericsson  <lobbin@localhost.nu>

	* src/profiles.c: Fixed apply button and re-added cancel button.

Mon Jan 13 13:33:34 CET 2003  Robin Ericsson  <lobbin@localhost.nu>

	* ROADMAP: Rearranged.

	* src/init.c (main_window): Background is now set.

Thu Jan  9 01:33:17 CET 2003  Jordi Mallach  <jordi@sindominio.net>

	* Makefile.am: fix typo.
	* autogen.sh: do not rm the configure.in symlink (gnome-autogen.sh is
	broken still).

Thu Jan  9 00:13:41 CET 2003  Jordi Mallach  <jordi@sindominio.net>

	* Makefile.am (EXTRA_DIST): add intltool files.
	(Applications_in_files): added by intltool-prepare.
	(Applications_DATA): modified by intltool-prepare.
	* configure.ac (AC_PROG_INTLTOOL): added intltool support.
	* gnome-mud.desktop: replaced...
	* gnome-mud.desktop.in: ... by this.
	* .cvsignore: update ignorable files.


Wed Jan  8 21:52:12 CET 2003  Jordi Mallach  <jordi@sindominio.net>

	* configure.ac: add AM_GLIB_GNU_GETTEXT, so gnome-autogen behaves.

Wed Jan  8 21:05:24 CET 2003  Jordi Mallach  <jordi@sindominio.net>

	* autogen.sh: use gnome-autogen.sh.
	* macros/*: removed. GNOME2 uses system wide macros.

Wed Jan  8 13:10:24 CET 2003  Robin Ericsson  <lobbin@localhost.nu>

	* src/data.c (data_button_add): g_strdup on text entry
	(text_entry_send_command): gchar -> const gchar
	(keybind_button_add_clicked_cb): g_strdup and null check added
	(stop_logging_connection): gchar -> const gchar + g_strdup

	* src/map.c (save_maps): gchar -> const gchar
	(file_sel_delete_event): ditto
	(load_automap_from_file): ditto

	* src/mudlist.c (mudlist_parse_hoststring): gchar -> const gchar
	(mudlist_button_connect_cb): ditto
	(mudlist_button_import_cb): ditto

	* src/prefs.c (prefs_entry_terminal_cb): added g_strdup
	(prefs_entry_mudlistfile_cb): ditto
	(prefs_entry_divide_cb): ditto

	* src/profiles.c (profilelist_new_profile): Added const + g_strdup
	(connections_find): gchar -> const gchar
	(connections_button_info_cancel_cb): Removed
	(window_profiles): Removed button_info_cancel
	(window_profile_edit): fixed stock images

Wed Jan  8 09:34:47 CET 2003  Robin Ericsson  <lobbin@localhost.nu>

	* Makefile.am: No need for macros subdir

	* ROADMAP: Added a new entries

	* configure.ac: Moved to autoconf 2.5 and GNOME2

	* macros/*: GNOME2 changes.

	* po/*.po: Updated.

	* src/*.c: GNOME2 changes.

Tue Nov 12 11:32:48 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* src/profiles.c: apply dos2unix to remove CRLF strings. Have been
	there since day one!

Sun Nov 10 03:26:53 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* src/data.c, src/init.c, src/keybind.c src/prefs.c: fix a few
	American English labels (color, center, license) spotted by Abigail.
	Americans, if it hurts your eyes please submit an en_US.po.

Mon Nov  4 02:10:44 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* src/init.c (window_menu_plugin_api_manual_activate_cb): new
	function, create a GtkMenuItem for the plugin API.
	Add it to help_menu.

Mon Nov  4 01:26:13 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* src/init.c (window_menu_help_manual_activate_cb): search for
	"gnome-mud-manual", not "gnome-mud". Thanks, Kevin Ryde.

Tue Oct 29 20:12:21 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* Upgrade to GNU gettext 0.11.5.
	* configure.ac: add AM_GNU_GETTEXT_VERSION(0.11.5) for autopoint.

	* .cvsignore: add mkinstalldirs.

Tue Oct 29 19:47:13 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* src/telnet.c, src/window.c: patch from
	Abigail Brady <morwen@evilmagic.org> which fixes the handling of a
	few telnet codes + minor cleanups.

Mon Oct 28 19:19:49 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* configure.ac: lots of cleanups. Temporarily remove the debug stuff.
	Add checks for getaddrinfo and getnameinfo and a configure. Better
	zlib check.
	* Makefile.am (CFLAGS): removed definition.
	* src/Makefile.am (CFLAGS): removed definition.
	(gnome_mud_LDADD): add $(Z_LIBS).

Mon Oct 28 17:09:16 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* AUTHORS: change contact info for Abigail, per request.

Wed Sep 11 00:36:44 CEST 2002  Jordi Mallach  <jordi@sindominio.net>

	* src/net.c: Patch from Sjoerd Simons <sjoerd@beast.luon.net>
	which adds IPv6 support.  Woohoo!

	* ROADMAP: added IPv6 to 0.10.
	* NEWS: add 0.10.0 items.

Thu Aug  1 16:41:01 CEST 2002  Jordi Mallach  <jordi@sindominio.net>

	* Move to autoconf 2.50.

	* configure.in: renamed to configure.ac.
	* configure.ac: changes for autoconf 2.52, and remove some old
	stuff.
	* acclocal.h: removed, included templates in configure.ac.
	* autogen.sh: fail if one command returns error.

Tue Jul 30 10:59:36 CEST 2002  Jordi Mallach  <jordi@sindominio.net>

	* po/Makevars: set Copyright holder to Robin.

Sat Jul  6 02:07:31 CEST 2002  Jordi Mallach  <jordi@sindominio.net>

	* src/python.c (python_init): changed search path of python modules
	to "~/.gnome-mud/plugins/".

Wed Jul  3 17:20:32 CEST 2002  Jordi Mallach  <jordi@sindominio.net>

	* Upgraded to gettext 0.11.2.

	* Makefile.am (SUBDIRS): Added macros.
	(SUBDIRS): Removed intl.
	(ACLOCAL_AMFLAGS): New variable.
	(EXTRA_DIST): Added config.rpath.
	* configure.in (AC_OUTPUT): Added macros/Makefile.
	(AC_OUTPUT): Removed intl/Makefile.

Wed Jul  3 14:51:16 CEST 2002  Jordi Mallach  <jordi@sindominio.net>

	* Makefile.am: removed man_MANS, trimmed down EXTRA_DIST.
	* configure.in: defined LSMDATE, bumped release number.
	* gnome-mud.lsm.in: New template, replacing gnome-mud.lsm.
	* gnome-mud.1: moved to doc/gnome-mud.6.

	* doc/Makefile.am: man_MANS = gnome-mud.6.

	* src/Makefile.am: define $(gamesdir) and use it to install the
	binary.

Tue Jul  2 11:32:41 CEST 2002  Jordi Mallach  <jordi@sindominio.net>

	* Release 0.9.1.

	* configure.in: Update to 0.9.1.
	* NEWS, gnome-mud.lsm: Updated for 0.9.1.

Mon Jul  1 17:57:05 CEST 2002  Jordi Mallach  <jordi@sindominio.net>

	* doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api-C.omf:
	corrected typo in tag.

Mon Jul  1 12:29:15 CEST 2002  Robin Ericsson  <lobbin@localhost.nu>

	* po/sv.po: updated.

Tue Jun 25 14:31:25 CEST 2002  Jordi Mallach  <jordi@sindominio.net>

	* src/prefs (window_prefs): i18nized a string.
	* po/{ca,es}.po: updated.
	* po/fr.po: French update by Martin Quinson.

Mon Jun 24 16:46:24 CEST 2002  Jordi Mallach  <jordi@sindominio.net>

	* NEWS: added items for 0.9.1.

Mon Jun 24 13:00:05 CEST 2002  Jordi Mallach  <jordi@sindominio.net>

	* src/init.c: added mnemonics to all menu items.
	(window_menu_help_about): removed iso-8859-1 characters from C
	strings.
	* src/modules.c (do_plugin_information): removed gettext call to
	an empty string.
	* po/{ca,es}.po: Updated.

Sun Jun 23 13:33:21 CEST 2002  Jordi Mallach  <jordi@sindominio.net>

	* gnome-mud.desktop: fixed "Type" so it works under GNOME 2.

Tue May  7 17:52:18 CEST 2002  Jordi Mallach  <jordi@sindominio.net>

	* doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api.sgml: removed
	markup from <title>s, and a typo.

Tue May  7 16:40:47 CEST 2002  Jordi Mallach  <jordi@sindominio.net>

	* doc/gnome-mud-manual/C/gnome-mud-manual-C.omf: updated
	manual filename.
	* doc/gnome-mud-plugin-api/C/gnome-mud-plugin-api-C.omf: ooops...
	add a propper description, not just a copy from g-m-manual.

Tue May  7 16:04:59 CEST 2002  Jordi Mallach  <jordi@sindominio.net>

	* Completely revamped doc/.
	* doc/C: moved to doc/gnome-mud-manual/C/.
	* doc/python: rewritten in DocBook, moved to
	doc/gnome-mud-plugin-api/C.
	* configure.in: changes for new layout.
	* config.h.in: removed.

Fri Mar 15 19:39:52 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* doc/C/Makefile.am: oops, fixed typo in previous commit.

Fri Mar 15 16:29:02 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* doc/C/Makefile.am: added missing screenshots to figs list.

Fri Mar 15 08:04:40 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* gnome-mud.lsm, configure.in, NEWS: Updated version.

Mon Mar 11 07:56:18 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* src/net.c (read_from_connection): Fixed formatting errors.

Fri Mar  1 17:49:22 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* README: typo fixes, and misc corrections.

Fri Mar  1 15:11:24 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* src/gnome-mud.h: added action_send_to_connection()

	* src/init.c (text_entry_select_child_cb): Removed.
	(text_entry_activate): Moved here from net.c/send_to_connection
	(text_entry_key_press_cb): Pretty much rewritten :)
	(main_window): Combo box removed for a simple GtkEntry.

	* src/net.c (read_from_connection): Small patch from Vashti that
	seems to fix the last errors in MCCP.
	(send_to_connect): Moved to init.c

	* src/prefs.c (load_prefs): Small fix.

Thu Feb 28 14:37:11 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* src/profiles.c: A small comment snuck into the rewrite earlier
	today.

Thu Feb 28 13:22:40 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* po/{ca, es, fr}.po: unfuzz.

	* doc/C/gnome-mud.sgml: several changes to <articleinfo>.

Thu Feb 28 13:04:48 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* po/{es, de, ca, fr}.po: make update-po
	* po/sv.po: added one missing string.

	* src/net.c (connection_send_telnet_control): Compile fix for
	bug #523666.

	* src/profiles.c (profilelist_new_input_cb): Renamed to
	profilelist_new_profile
	(profilelist_new_cb): Changed gnome_request_dialog to
	gnome_dialog.

Wed Feb 27 14:54:35 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* po/sv.po: added two missing strings.

Wed Feb 27 14:01:53 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* po/fr.po: added two missing strings, from Mt.

Wed Feb 27 13:11:48 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* doc/C/gnome-mud.sgml: removed fixed bugs from the "Bugs and
	Limitations" section.

Wed Feb 27 12:38:08 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* NEWS: minor additions.
	* ROADMAP: MCCP fixed.
	* gnome-mud.desktop: added French translation. Yes, my French sucks.

Tue Feb 26 21:04:16 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* NEWS: fr updated.
	* po/fr.po: French translation update by Martin Quinson.

Tue Feb 26 08:02:24 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* NEWS: Added sv as language.

	* src/net.c (read_from_connection): Compile fix when not using
	MCCP

	* src/telnet.c (pre_process): Patch from Vashti regarding IAC GA
	and EOR.

Mon Feb 25 12:37:39 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* src/net.c: patch by Vashti & Robin: fixes MCCP crash (really).
	As a bonus effect, it causes some text corruption every now and
	then.

Sun Feb 24 02:40:42 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* configure.in: changed python detection script so you can
	specify a diferent python binary. Patch from Gergely Nagy.

Sat Feb 23 22:32:59 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* doc/C/gnome-mud.sgml: added descriptions for latest features.
	* doc/C/figures/main-window.png: updated.

Fri Feb 22 15:49:48 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* po/sv.po: Updated again. :)

Fri Feb 22 08:28:12 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* po/sv.po: Updated translations.

	* src/window.c: Applied patch from Vashti.

Thu Feb 21 15:43:46 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* po/ca.po: corrected a few typos.

Thu Feb 21 14:55:39 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* NEWS: updated.

	* src/data.c: removed duplicate libintl.h includes.
	* src/init.c: likewise.
	* src/modules.c: likewise.
	* src/modules_api.c: likewise.
	* src/net.c: likewise.
	* src/prefs.c: likewise.

	* src/init.c: added a few missing gettext calls.
	* src/log.c: added gettext calls to translatable strings.

	* po/POTFILES.in: added src/log.c.

	* po/ca.po, po/es.po: Updated translations.
	* po/de.po, po/fr.po, po/sv.po: update-po.

Mon Feb 18 12:16:41 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* Added 2 new patches from Vashti, one adds a reconnect feature.
	and the other fix for aliases.

	* ROADMAP: Moved around.

Wed Feb 13 07:25:14 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* NEWS, ROADMAP: Fixed nested alias.

	* src/log.c: Changed the includes a bit.

	* src/net.c (heck_aliases): Rewritten, now returns void
	(action_send_to_connection): Now uses a GString internally.

Tue Feb 12 07:51:34 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* Added patch from Vashti which fixes blackbold bug.

	* AUTHORS: Added more information on Vashti
	* ROADMAP: Added new idea

	* src/gnome-mud.h (system_data): BoldForeGround added.
	* src/init.c (window_menu_help_about): Removed some contributers,
	although they still exist in AUTHORS.
	* src/prefs.c (load_prefs): Added BoldForeground.
	(prefs_color_frame): Likewise.
	* src/telnet.c (pre_process): Bug fix, overriting memory which
	would destroy buf and cd variable.
	* src/window.c (con_escm): Changed by Vashti (see patch above)

Mon Feb 11 14:50:34 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* Forgot src/log.c.

Mon Feb 11 08:50:34 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* Added new patch from Vashti
	lets you turn session recording (logging in real time) on and off
    from the file menu.

	* moves the existing logging code into the same file as the new code,
	and renames the option on the menu so as to avoid confusion.

	* adds a new message type to textfield_add (MESSAGE_SYSTEM)
	which is used for non-error system messages.

	* prettifies a few places where strerror(errno) was printed to
	the window.

	* explicitly closes all open connections and logfiles on
	program exit.

Mon Feb 11 08:34:56 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* src/net.c (pre_process): Fixed formatting of source to be more
	readable.

Thu Feb  7 04:00:27 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* doc/C/gnome-mud.sgml: fixes and additions for 0.9.0 features.
	Python docs still not merged, though.

Wed Feb  6 23:57:20 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* doc/C/main-window.png: moved to figures/.
	* doc/C/preferences-window.png: likewise.
	* doc/C/profiles-window.png: likewise.

	* doc/C/figures/main-window.png: updated for 0.9.0.
	* doc/C/figures/preferences-window.png: likewise.
	* doc/C/figures/profiles-window.png: likewise.
	* doc/C/figures/mudlist-window.png: new image.
	* doc/C/figures/connections-window.png: new image.

	* doc/sgmldocs.make: updated.
	* doc/C/Makefile.am: cleaned up.

	* doc/C/gnome-mud.sgml: moved to DocBook 4.0. Still needs merge of
	Petter's stuff and extensions for new features.

Tue Feb  5 19:46:22 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* macros/codeset.m4: removed, looks it's not really needed.
	* macros/compiler-flags.m4: likewise.
	* macros/curses.m4: likewise.
	* macros/gettext.m4: likewise.
	* macros/glibc21.m4: likewise.
	* macros/iconv.m4: likewise.
	* macros/isc-posix.m4: likewise.
	* macros/lcmessage.m4: likewise.
	* macros/progtest.m4: likewise.

	* macros/gnome-gettext.m4: added. This looks like the right macro
	for GNOME apps. It should work with automake 1.4 and 1.5.

Tue Feb  5 16:07:18 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* src/gnome-mud.h, src/net.c, src/prefs.c, src/telnet.c: new
	patch from Vashti, adds terminal autodetection support, allows
	users to specify their term type from preferences, and other
	cleanups for telnet code.

Tue Feb  5 15:26:15 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* src/mudlist.c (mudlist_parse_hoststring): Added.
	(mudlist_button_import_cb): Added.
	(window_mudlist): Different behavior if called from wizard
	or not.

	* src/profiles.c (connections_fields_clean): Moved from
	connections_button_info_cancel_cb.
	(connections_button_info_fethc_cb): Added.

Tue Feb  5 12:21:17 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* src/mudlist.c (mudlist_fix_codebase): Added, now changes some
	codebases into better namnes.

Mon Feb  4 22:45:20 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* src/mccpDecompress.c: include config.h.

Mon Feb  4 13:13:21 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* ROADMAP: Updated

	* src/gnome-mud.c: init_window renamed to main_window

	* src/init.c: Renamed of alot of functions to more intelligent
	names.
	* src/keybind.c: Ditto.
	* src/prefs.c: Renamed copy_preferences to prefs_copy.

Mon Feb  4 11:58:14 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* ROADMAP: Updated

	* src/keybind.c (on_KB_button_delete_clicked): Segfault fix,
	now uses correct profile data.

Mon Feb  4 11:22:15 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* src/init.c: More MCCP #ifdef's
	* src/mccpDecompress.c: Ditto

Mon Feb  4 10:31:36 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* ROADMAP: Changed a little.

	* src/net.c (make_connection): Added MCCP #ifdef's
	(disconnect): Ditto
	(road_from_connection): Removed unused variable.

Mon Feb  4 09:50:38 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* src/init.c (about_window): added Vashti.
	* src/net.c (read_from_connection): Robin's fix to MCCP segfaults.
	* src/prefs.c (window prefs): added title to preferences window.
	* src/modules.c (do_plugin_information): likewise.
	* po/{ca,es}.po: Updated translations.
	* BUGS: removed old color dialog bug.

Mon Feb  4 09:31:23 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* AUTHORS: added Vashti.
	* CONTRIBUTERS: removed.

Sat Feb  2 20:11:21 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* Forgot to cvs remove some stuff in intl/.
	* Removed config.guess & config.sub, provided by automake,
	added them to .cvsignore.

Sat Feb  2 17:29:25 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* Upgraded to gettext 0.10.40.

Sat Feb  2 16:21:42 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* src/telnet.c: patch from Vashti to get rid of the annoying
	ASCII 255 char at the end of telnet packets in some MUDs.

Fri Feb  1 17:35:44 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* src/init.c: patch from Petter Stokke to fix a bug in the
	python stuff.

Fri Feb  1 15:34:32 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* Added patch from Vashti <vashti@jml.net> which adds support
	for keypad keys for directions.

	* CONTRIBUTERS: Added.
	* src/gnome-mud.h (system_data): Added bool DisableKeys;

	* src/init.c (text_entry_send_command): Added.
	(text_entry_key_press_cb): profilekeybinds can now override
	system keybinds.

	* src/prefs.c: Added prefs.DisableKeys to load/save, and to
	prefs dialog.

Fri Feb  1 14:08:27 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* NEWS: added some 0.9.0 notes.

Fri Feb  1 13:40:36 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* po/{ca,es}.po: Updated.

Fri Feb  1 13:17:35 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* intl/Makefile.in: temporary fix for non-glibc systems.

Fri Feb  1 10:42:42 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* src/Makefile.in: color.c removed.

Fri Feb  1 09:19:36 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* po/POTFILES.in: removed color.c
	* po/*.po: make update-po

	* src/color.c: removed.

	* src/gnome-mud.c (main): Removed load_colors().

	* src/gnome-mud.h (connection_data): Added foreground/background.
	(system_data): Added Foreground/Background and Colors[16].

	* src/init.c (init_window): Use colors from prefs instead of
	extern variables.

	* src/modules_api (plugin_add_connection_text): Changed behaviour
	of textfield_add()

	* src/net.c: Changed calls to textfield_add.
	Use colors from prefs instead of extern variables.

	* src/prefs.c (prefs_load_color): Added.
	(prefs_save_color): Added.
	(load_prefs): Loading of colors added.
	(save_prefs): Saving of colors added.
	(prefs_copy_color): Added.
	(copy_preferences): Now takes another argument if allocate colors.
	(prefs_select_color_cb): Added.
	(prefs_set_color): Added.
	(prefs_color_frame): Added.
	(prefs_window): Added color frame. Removed old frame.

	* src/python.c: textfield_add fixed.

	* src/window.c: Changed from extern colors to prefs.

Sun Jan 27 03:43:21 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* po/POTFILES.in: removed wizard.c.

Thu Jan 17 15:46:39 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* ROADMAP: Moved things around :)

	* config.h.in, configure.in: Made a few fixes for python
	detection.

	* src/Makefile.am: Removed wizard.c

	* src/init.c (free_connection_data): Moved from wizard.c

	* src/keybind.c: Global variables removed.

	* src/map.c: Commented #includes reomved.

	* src/modules.c: Global variables removed.
	* src/profiles.c: Ditto.

Wed Jan 16 08:23:38 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* src/profiles (profilelist_cleanup): Added.
	(profilelist_dialog): Changed signal to check if widget already
	have been destroyed.

Mon Jan 14 14:26:07 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* ROADMAP: Updated.

Mon Jan 14 14:04:39 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* src/mudlist.c (mudlist_tree_fill_subtree): Added.
	(mudlist_tree_fill): Added.
	(mudlist_compare_char_struct): Added.
	(mudlist_comapre_structs): Added.
	(mudlist_parse): HashTable removed, linked list added.

Mon Jan 14 12:21:18 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* src/init.c (text_entry_key_press_cb): Added support for Page Up
	and Page Down (Bug #481493)
	(init_window): scrollbar changed to scrolled window, and now
	mousewheel works aswell :)

	* src/net.c (make_connection): Removed scrollbar, and added
	scrolled window.

Fri Jan 11 14:58:10 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* ROADMAP: Updated mudconnect

	* po/POTFILES.in: Added mudlist.c
	* po/*.po: Updated translations.

	* src/gnome-mud.h [system_data]: Added MudListFile.
	(window_mudlist): Added.

	* src/init.c [file_menu]: Added MudList to menu.

	* src/mudlist.c: Added.

	* src/prefs.c (load_prefs): Added MudListFile preference.
	(save_prefs): Ditto.
	(copy_preferences): Ditto.
	(prefs_entry_mudlistfile_cb): Added callback.
	(window_prefs): Added gnomefileentry for mudlist file.

Wed Jan  9 01:27:37 CET 2002  Jordi Mallach  <jordi@sindominio.net>

	* po/{ca,es}.po: Updated translations.

Tue Jan  8 14:13:09 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* The year is now 2002, and a lot of files were updated.

	* po/*.po: Updated.

Tue Jan  8 09:31:31 CET 2002  Robin Ericsson  <lobbin@localhost.nu>

	* Added patch from Petter E. Stokke that enables pythons
	scripting support.

	* ROADMAP: Moved pythonsupport to done section.

	* AUTHORS: Added Petter E. Stokke

	* po/*.po: make update-po

Sat Jan  5 02:51:40 CET 2002  Jordi Mallach  <jordi@debian.org>

	* gnome-mud.1: renaming leftovers.

Mon Dec 10 12:26:40 CET 2001  Robin Ericsson  <lobbin@localhost.nu>

	* ROADMAP: Added some more.

	* src/gnome-mud.c (main): Changed formatting, and readded init
	for modules.

	* src/profiles.c: Removed a global variable.

Tue Nov 27 18:33:07 CET 2001  Robin Ericsson  <lobbin@localhost.nu>

	* README: Copied changed from BRANCH_0_8.

	* ROADMAP: Added.

	* src/net.c (check_aliases): Added to be able to do nested
	aliases.
	(action_sent_to_connection): Now calls check_aliases instead
	of check_alias.

Fri Nov 23 15:23:17 CET 2001  Robin Ericsson  <lobbin@localhost.nu>

	* Makefile.am: PLUGIN.API should be distributed in "HEAD" CVS
	aswell as BRANCH_0_8.

	* ROADMAP: Added double entry for easier NEWS catchup :)

	* src/profiles.c (connections_button_press_cb): Added function
	to trap doubleclick events.
	(window_profiles): Added signal for "button_press_event"

Mon Nov 12 17:21:59 CET 2001  Robin Ericsson  <lobbin@localhost.nu>

	* configure.in: Stepped version to 0.8.99.

	* ROADMAP: Done on save log.

	* src/init.c (save_log_cb): Added.
	(save_log_file_ok_cb): Added.
	Now able to save logfiles from mud.

Mon Nov 12 11:22:39 CET 2001  Robin Ericsson  <lobbin@localhost.nu>

	* ROADMAP: Added GNOME 2.0 and some other.

Wed Nov  7 16:34:41 CET 2001  Robin Ericsson  <lobbin@localhost.nu>

	* NEWS: Added relasedate to version 0.8.

Wed Nov  7 10:54:39 CET 2001  Robin Ericsson  <lobbin@localhost.nu>

	* Branched into GNOMEMUD_0_8_BRANCH

Wed Nov  7 09:42:31 CET 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/init.c (window_menu_help_manual_activate_cb): Changed to
	just call "ghelp:gnome-mud", which seems to do the trick.

Tue Nov  6 18:30:01 CET 2001  Jordi Mallach <jordi@sindominio.net>

	* po/{ca,es}.po: Updated.

Tue Nov  6 16:46:59 CET 2001  Robin Ericsson  <lobbin@localhost.nu>

	* po/sv.po: Updated.

Tue Nov  6 16:42:17 CET 2001  Robin Ericsson  <lobbin@localhost.nu>

	* doc/C/Makefile.am: Removed a circular dependency.
	* src/init.c: (window_menu_help_manual_activate_cb): Added.
	Also added help entry to menu.

Mon Nov  5 16:49:34 CET 2001  Jordi Mallach <jordi@sindominio.net>

	* src/init.c: Robin's patch for the Manual link in the help
	menu.

	* po/{ca,es,fr}.po: updated About entry.

	* NEWS: added note about the GNOME limitation described below.

	* AUTHORS: added Martin Quinson, updated myself.

Mon Nov  5 16:43:04 CET 2001  Jordi Mallach <jordi@sindominio.net>

	* doc/C/topic.dat: added, file with the title of the manual
	for the Help menu. Beware, it won't work if GNOME-Mud is
	installed in /usr/local. Known GNOME bug, will be fixed in
	GNOME 2.
	* doc/C/Makefile.am: added topic.dat to EXTRA_DIST.

Mon Nov  5 13:20:16 CET 2001  Jordi Mallach <jordi@sindominio.net>

	* po/fr.po: French update by Martin Quinson.
	* src/init.c: added Martin to "About".

Mon Oct 29 14:17:32 CET 2001  Jordi Mallach <jordi@sindominio.net>

	* po/{ca,es}.po: minor fixes.

Mon Oct 29 03:05:35 CET 2001  Jordi Mallach <jordi@sindominio.net>

	* Makefile.am: added gnome-mud.desktop to EXTRA_DIST.

	* doc/sgmldocs.make: woops, too much snipage. Fixed the
	installation of generated docs.

Mon Oct 29 02:31:27 CET 2001  Jordi Mallach <jordi@sindominio.net>

	* Makefile.am: removed VERSION from EXTRA_DIST.

Mon Oct 29 02:22:52 CET 2001  Jordi Mallach <jordi@sindominio.net>

	* NEWS: added notes about the manual.

	* ROADMAP: request for IPv6 support.

Mon Oct 29 02:17:11 CET 2001  Jordi Mallach  <jordi@sindominio.net>

	* doc/sgmldocs.make: fixed paths of screenshots and removed
	cruft that we (still) don't need.

	* configure.in, Makefile.am: enable doc building. Beware, you now
	need a shitload of sgml packages to build gnome-mud.

Fri Oct 26 14:04:49 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/gnome-mud.h (pre_process): Returns gint instead of char*.
	* src/telnet.c (pre_process): Ditto.

	* src/map.c: Changed (void *) casting to glib macros to remove
	warnings on alpha systems.
	* src/modules.c, src/net.c, src/profiles.c: Ditto.

Thu Oct 25 17:19:49 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* po/*.po: Updated

	* src/map.c (get_direction_type): Changed gettext macro used to
	fix segfault when not using synced translation.

Thu Oct 25 15:04:56 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* ROADMAP: Added one entry, and changed another.

Thu Oct 25 13:05:43 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/profiles.c (profilelist_new_cb): Close this window when
	parent window closes.
	(profilelist_delete_cb): Close this window when parent window
	closes.

Wed Oct 24 15:33:23 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/map.c (button_cb): Changed /.amcl/ to /.gnome-mud/.

	* src/prefs.c (load_prefs): Added code for check if ~/.gnome-mud
	exists, and if not, then create it.

Mon Oct 22 12:34:20 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/color.c (window_color): Menu now works when you close the
	window via window manager destroy.

	* src/gnome-mud.h: Removed old unused function calls.

	* src/keybind.c (save_keys, load_keys): Removed, not used.

	* src/profiles.c (profilelist_new_input_cb): Send in parent
	window to gnome_request_dialog().

	* src/wizard.c (load_wizard, save_wizard): Removed, not used.

Mon Oct 22 02:25:23 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* doc/C/gnome-mud.sgml: fixes (missing closing tags, etc).
	Thanks to jfleck, of #docs@irc.gnome.org.

	* doc/Makefile.am, doc/sgmldocs.make doc/C/Makefile.am,
	doc/C/gnome-mud-C.omf: added automake and scrollkeeper files, not
	activating it in configure.in still, not sure if things are working
	ok still.

Sun Oct 21 23:46:55 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* doc/C/gnome-mud.sgml: first draft of the GNOME-Mud Manual.
	It describes all the current features in GNOME-Mud, all the menu's,
	dialogs and toolbars. And, I had to write it twice! (luckily, this
	second version is so much better than the original).

	* doc/C/main-window.png, doc/C/preferences-window,
	doc/C/profiles-window.png: screenshots for the manual.

Fri Oct 19 18:00:18 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* src/prefs.c: fixed typos.

	* src/init.c: fixed labels of some menu entries.

Fri Oct 19 15:35:09 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* ROADMAP: Added some more entries.

Fri Oct 19 14:23:53 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/net.c [open_connection]: Fixed a small bug I added a few
	days ago :)

Fri Oct 19 13:02:18 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* gnome-mud.desktop: removed path to icon.

Fri Oct 19 12:43:10 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* Makefile.am: TODO removed and ROADMAP added once again :)

Fri Oct 19 10:59:35 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/init.c [do_close]: Fixed small bug which occured if you
	closed a notebook-tag somewhere before the last tab.

	* src/wizard.c [free_connection_data]: Added #ifdef ENABLE_MCCP
	so that we are not removing non-existing timers.

Fri Oct 19 09:26:15 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* gnome-mud.desktop: Added translation into swedish.

Fri Oct 19 04:00:33 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* gnome-mud.desktop: make "gnome-gmush.png" our icon for now.

Fri Oct 19 03:19:03 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* gnome-mud.desktop: added GNOME menu entry for gnome-mud.
	It's missing an icon... artists around?

	* Makefile.am: install .desktop file into the apps dir.

Thu Oct 18 16:36:21 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/sv.po: updated.

Thu Oct 18 16:28:52 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* src/wizard.c: fixed typos (conection -> connection).

	* po/{ca,es,sv}.po: fixed the generated fuzzy's.

Thu Oct 18 15:38:25 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* NEWS, ROADMAP: doc updates.

Thu Oct 18 14:38:10 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/net.c [open_connection]: A little fix when not entering a
	port.

Thu Oct 18 10:22:21 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* Makefile.am: TODO removed, ROADMAP added.

	* configure.in: Old things for version.h removed.

	* Alot of code cleanup, removed various comments, and fixed code
	with warnings, etc...

Wed Oct 17 17:19:29 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* TODO: Removed.

	* ROADMAP: Added.

Wed Oct 17 15:53:40 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* po/ca.po: tons of grammar fixes and updates to the Catalan
	translation.

Tue Oct 16 14:55:22 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* po/sv.po: Translation fixes.

	* README: Updated a bit.

Tue Oct 16 13:48:00 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* configure.in: really commit po/ fixes.

Fri Oct 12 13:45:53 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* NEWS: added new releases and dates.

Fri Oct 12 09:36:25 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* TODO: Added some more.

	* src/color: c_structs[], changed order of color_grey and
	color_white.

Thu Oct 11 16:56:36 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* TODO: Added some things, and removed some other things :)

Wed Oct 10 18:22:53 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* NEWS: reformatted this, and added some things after some
	research on old versions.
	* ChangeLog: added a missing chunk from before March 1999.
	* VERSION: removed, it's worthless and it's not getting updated.

Wed Oct 10 16:52:38 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* src/init.c: renamed Connection Wizard menu entry.

	* configure.in: fixed things so po/ works again.

	* po/es.po: updated.

Wed Oct 10 16:17:35 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/Makefile.am: dialog.c deleted.

	* src/dialog.c: Removed.

	* src/init.c: Removed README and AUTHORS menu.

Wed Oct 10 15:54:01 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* NEWS: updated release info for 0.8.0.

Wed Oct 10 15:00:39 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* init.c: print version information, the easy way.

Wed Oct 10 13:32:21 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* mkhelp lobotomy! Removed Anything related to version.c or
	author and readme .h's.

	* src/Makefile.mkhelp src/config.h.in src/mkhelp.c src/version.c
	src/version.h.in: removed.

	* configure.in. Removed VERSION and PACKAGE cruft. It now
	outputs	these defines to config.h.

	* Robin bumped version to 0.7.99.

	* po/POTFILES.in: removed version.c.

	* dialog.c: README and AUTHORS options should be removed. Right now,
	they display a nice, blank box.

	* init.c: don't call get_version_info()

	* automake.sh: removed echo's about version.c & cia.

Wed Oct 10 13:08:01 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* configure.in: Moved config.h.in from src to root

Wed Oct 10 09:16:13 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/init.c: Removed keybinds from the menu.

	* src/profiles.c (profiledata_find): When creating a new profile,
	also create lists and profile information.

Tue Oct  9 16:08:42 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/gnome-mud.c (main): Commented out some signaling, removed
	loading of plugins, and loading of keys.

	* src/gnome-mud.h: window_keybind() changed, and
	profiledata_savekeys() added.

	* src/init.c (destroy): Added profiledata_savekeys().
	(text_entry_key_press_cb): Reformatted and added code for
	keybinds on profiles.

	* src/keybind.c ((load|save)_keys): Commented out.
	Removed save button, reformatted code.

	* src/profiles.c (load_profiles): keybinds, variables and
	triggers added to savelist.
	(profiledata_savekeys): New function for saving keybinds to
	profile.
	(window_profiles): Added close button, and now only displays
	one window until window closed.

Thu Oct  4 16:40:16 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* src/map.c: Ok, it only took 14 months and one week to notice
	this major bug in map.c. If using a locale, clicking on directions
	or Load/Save, etc. would make amcl/gnome-mud crash.
	The "fix" right now is to translate some extra directions, but that
	code should be cleaned a bit. Removed gettext marks from debug
	messages.

	* po/es.po: updated Spanish translation.

Thu Oct  4 15:46:02 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* src/init.c: tiny typo fixes.

Thu Oct  4 15:29:56 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* src/init.c: merged AUTHORS into the gnome_about dialog. Marked
	many things as translatable. Hopefully this is the first step to
	get rid of those widgets in the Help menu.

	* autogen.sh: call automake with -add-missing, for automake 1.5.

Thu Oct  4 15:23:18 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/.cvsignore, src/Makefile.am: changed gnomemud to gnome-mud.

	* src/gnome-mud.h, src/net.c (make_connection): Now takes a third
	argument which is the profile being used, and Default if not found.

	* src/init.c, src/wizard.c: Pass profilename "Default" to
	make_connection()

	* src/profiles.c: Pass profilename to make_connection().

Thu Oct  4 13:56:33 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/data.c [own_data]: Removed some unused variables.
	(load_data()/save_data()): Removed, no longer needed.
	(window_data): Takes PROFILE_DATA * as argument instead of GtkWidget,
	also all references to own_data.menu was removed.

	* src/init.c: Removed alias/triggers/variables from menu.

	* src/gnome-mud.h (window_data): Changed.

	* src/profiles.c (profilelist_alias_cb): Callback for editing profiles
	through old data_* function.
	(profilelist_triggers_cb): ditto
	(profilelist_variables_cb): ditto
	(profilelist_(un)select_row_cb): Remade a little.
	(profilelist_dialog): Removed some functionality.
	(window_profile_edit): Added some signals.

Wed Oct  3 13:18:50 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/data.c (save_data, load_data, data_button_delete):
	Removed sensitivity of button_save, which is not in use
	anymore.

	* src/profiles.c (profilelist_new_input_cb): Use live ProfileList,
	do not use temporary.
	(profilelist_new_cb): append clist with gnome_dialog call.
	(profilelist_delete_cb): Check and delete from right ProfileList
	and CList.
	(window_profile_edit): Added a few signal for button new/delete
	and CList.

Thu Sep 13 11:44:41 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* Small changes to README.

Thu Aug 30 09:55:43 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/gnome-mud.h: Added window_profile_edit()

	* src/init.c: Added "Profiles" to toolbarmenu.

	* src/profiles.c (load_profiles): Fixed crash that appeared
	when running AMCL first time without config.
	(window_profile_edit): Added better editor for profiles.

	* po/*.po: make update-po, with profiles.c included.

Mon Aug 27 18:43:58 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* po/es.po: minor typo fix.

Sun Aug 12 20:52:41 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/net.c (read_from_connection): Changed buf from 2048 to 3000.

	* src/window.c (textfield_add): Removed some old commented code.

Mon Jul  9 15:34:24 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* config.sub, config.guess: updated to latest versions to fix
	compile problems in new arches like IA64 or HPPA.

Tue Jun 19 22:58:29 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* po/POTFILES.in, *.po: Added profiles.c to the list, and updated
	.po files.

	* src/color.c: Small fixes, removed some GTK warnings.

	* src/config.h.in: New update

	* src/gnome-mud.c: Removed load_wizard(), and added load_profiles()

	* src/gnome-mud.h [struct wizard_data2]: added.
	[struct profile_data]: added.

	* src/init.c (destroy): Added saving for profiles and connections.
	(init_window): Added profiles, and remove old data*

	* src/data.c (data_button_close): Changed to new profiles.
	(window_data): Changed to new profiles.

	* src/net.c: Changed old lists[*] to use the new profile-lists.

	* src/profiles.c: Complely new and working connection and profile
	list functions.

Sat Jun  9 18:17:24 CEST 2001  Jordi Mallach  <jordi@sindominio.net>

	* src/Makefile.am: added LOCALEDIR to INCLUDES, so the
	translated mo's can get installed wherever "datadir" points to.

	* src/gnome-mud.c: removed the static LOCALEDIR define, and
	removed the libintl.h include too. Every file including gnome.h
	has libintl.h included already, so we need to wipe those of every
	c source file, later.

	* po/sv.po, po/fr.po: corrected charset and encoding definitions.

Fri Jun  8 17:15:58 CEST 2001  Robin Ericsson  <robin@noname4us.com>

	* src/color.c [(load|save)_colors): Removed old code for saving
	to file, and changed to use gnome_config_(get|set)_vector.

Fri Jun  8 15:34:02 CEST 2001  Robin Ericsson  <robin@noname4us.com>

	* src/init.c: Added window_color() to the menu again.

Thu May 31 22:05:49 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/net.c: Fixed bug #408834.

Thu May 31 21:15:27 CEST 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/profiles.c: Added, going to contain the new connection wizard

	* src/gnome-mud.h, src/init.c: Added new function-def and added
	new wizard to menu.

Thu Mar  8 04:18:57 CET 2001  Jordi Mallach  <jordi@sindominio.net>
	* po/fr.po: added missing "\n".

Tue Feb 20 04:10:49 CET 2001  Jordi Mallach  <jordi@sindominio.net>

	* configure.in, po/fr.po: added French translation from Martin
	Quinson.

Wed Jan 24 20:59:31 CET 2001  Robin Ericsson  <lobbin@localhost.nu>

	* configure.in, src/Makefile.am, version.h.in, applied
	patch from CrezyboY.

	* src/data.c: Small patch sent in from message board.

Sat Jan 20 02:29:40 2001  Robin Ericsson  <lobbin@localhost.nu>

	* Makefile.am, amcl-lsm, gnome-mud.lsm: renamed amcl.lsm
	to gnome-mud.lsm.

	* NEWS, PLUGIN.API, README, autogen.sh, configure.in:
	Changed AMCL to GNOME-Mud.

	* src/amcl.c, src/gnome-mud.c, Makefile.am: amcl.c renamed
	to gnome-mud.c

Sun Jan 14 22:50:09 2001  Robin Ericsson  <lobbin@localhost.nu>

	* src/*: Renamed amcl.h to gnome-mud.h, and tried to change
	AMCL into GNOME-Mud where I could.

	* po/*.po: make update-po

Thu Jan  1 17:08:21 2001  Jordi Mallach  <jordi@sindominio.net>
	* amcl.1, gnome-mud.1, Makefile.am: renamed the fake manpage
	and added the real one to the distribution.

Thu Dec 28 23:30:43 2000  Robin Ericsson  <robin@noname4us.com>

	* src/amcl.c [main]: save_plugins() removed.
	* src/init.c: Removed some global variables.
	[about_window]: Added a gnome_href widget to gnome-mud
	homepage.
	[do_close]: Fix for not closing main_window.
	* src/modules.c [do_plugin_information]: rebuild the
	window, and saves for plugins now uses gnome_config_*.
	[save_plugins]: removed.
	* src/modules_api.c: Commented out some code.
	* src/prefs.c [open_file]: Added some more debug.

Thu Dec 28 09:51:45 2000  Robin Ericsson  <robin@noname4us.com>

	* Makefile.am: Added manpage.
	* amcl.1: Manpage added.

Wed Dec 27 18:03:55 2000  Robin Ericsson  <lobbin@localhost.nu>

	* TODO: removed some outdated stuff
	* po/*.po: Made another update-po and edited the sv and de.po
	* src/init.c [destroy]: Added yes/no question when quitting amcl.
	Also saving the command history here.
	* src/modules_api.c [plugin_register_menu]: Commented out some
	variables.
	* src/net.c: Removed some unused variables.
	* src/prefs.c [save_prefs]: Save Command history as a vector.
	* src/telnet.c: [pre_process]: changed == to =, as it wasn't
	an if statement ;)

Tue Dec 26 10:37:32 2000  Jordi Mallach  <jordi@sindominio.net>
	* TODO: added some GNOME specific items.
	* Moved some items to "Under Development".

Tue Dec 26 15:42:34 2000  Robin Ericsson  <lobbin@localhost.nu>

	* po/ca.po, de.po, es.po, sv: make update-po,

	* src/.cvsignore: Added TAGS and tags.

	* src/amcl.h [system_data]: gint History; added.

	* src/data.c: Removed include for gtk.h and added gnome.h
	instead.

	* src/init.c [text_entry_select_child_cb]: Changes EntryCurr
	if the combo box changes the textentry.
	[do_disconnect]: disconnect only if connected.
	(toolbar_menu[]): added variable for setting toolbar.
	[init_window]: changed text_entry into a combo box to make it
	look more like zmud.

	* src/modules_api.c: Commented out code for adding a menuitem
	from a plugin.

	* src/net.c [general]: Removed a bunch of gtk_widget_set_sensitive
	for mostly main_disconnect menu.
	[send_to_connection]: History can now be a configurable length.
	[connection_send]: Smashed a bug that made command divided commands
	sendable again.

	* src/prefs.c [load_prefs]: load History.
	[save_prefs]: Save history.
	[copy_preferences]: added History.
	[prefs_entry_history_cb]: get new history.
	[prefs_window]: new entries for history.

	* src/telnet.c: Small changes with echo usage.

Sat Dec 23 11:24:08 CET 2000  Robin Ericsson  <lobbin@localhost.nu>

	* Made a lot of changes, trying to make it completly gnome.

	* Added newer files for the gnome macros, and edited almost
	every file ;).

Tue Dec 19 18:22:09 2000  Robin Ericsson  <lobbin@localhost.nu>

	* src/init.c, src/net.c, src/prefs.c: Applied patch from
	Benjamin Geiger <bgeiger@ithink.net>

	* src/init.c [about_window]: changed url to homepage.

	* configure.in: Moved back to 0.7.5.

	* Makefile.am: changed README-NLS to ABOUT-NLS.

	* AUTHORS: Added Benjamin above.

	* AMCL-0.7.5-RELEASE!

Tue Dec 12 20:34:44 2000  Robin Ericsson  <lobbin@localhost.nu>

	* TODO: Added some more things...

Wed Nov 29 10:21:07 CET 2000  Robin Ericsson  <lobbin@localhost.nu>

	* TODO: Added a few things...

Sun Oct  1 03:40:32 CEST 2000  Jordi Mallach  <jordi@sindominio.net>
	* src/prefs.c: fix for a compile error with Woody's CVS gcc.
	* configure.in: add ca to ALL_LINGUAS.
	* po/ca.po: Initial Catalan translation.
	* po/es.po: More of the traditional small fixes.

Tue Sep 26 10:12:18 CEST 2000  Robin Ericsson  <robin@noname4us.com>

	* README: included OpenBSD in list of successful builds.

Thu Sep 11 02:44:29 CEST 2000 Jordi Mallach <jordi@debian.org>
	* po/es.po: updated strings.

Thu Sep  7 01:11:58 CEST 2000 Jordi Mallach <jordi@debian.org>
	* plugins/test.plugin/Makefile: stupid fix in libgtk and libglib
	  calls so the test plugin can compile again. Jorge spotted this,
	  really.

Thu Aug 31 23:34:30 CEST 2000 Jorge Garcia <jorge.garcia@uv.es>

	* Added Vars. (generic 'data' functions to work with alias, actions
                       and vars):
	  + src/data.c: created (absorving code of alias.c and action.c)
		- src/Makefile.am (+data.c -alias.c -action.c)
		- src/amcl.h: deleted all alias and action structs
		- src/init.c: some modifications (alias and action -> data)
	  + src/amcl.c: moved load_alias and load_actions to init.c (load_data)
	  + src/net.c: [action_send_to_connection] more 'gtktized' and
                       needed modifications to allow vars.c
	* src/init.c:
	  + converted some global variables to local
	  + removed all gtk_widget_show(...) and added gtk_widget_show_all(...)
	* src/amcl.h: added <stdio.h> to allow compilation of plugins

Fri Aug 11 18:32:14 2000  Jordi Mallach  <jordi@debian.org>
	* src/color.c, src/window.c: fix button labels that remained
	  unchanged, woops (updated *.po's manually, sorry for
	  inconveniences).
	* BUGS: add the gdk errors in color.c to the buglist.

Wed Aug  9 13:40:31 2000  Robin Ericsson  <robin@noname4us.com>

	* configure.in, po/de.po: Added german translation.

Wed Aug  2 15:59:36 2000  Robin Ericsson  <robin@noname4us.com>

	* Initial sv.po, most of the things is translated.

Tue Jul 25 16:04 2000  Jordi Mallach  <jordi@debian.org>
	* Cosmetic fixes: unify button labels, MUD and AMCL nomeclature.
	* Reformat or delete redundant comments in the sources. We've had an
	  AUTHORS file for a while.
	* Improvements in help strings, etc.

Tue Jul 25 10:49:57 2000  Robin Ericsson  <robin@noname4us.com>

	* acconfig.h: added #undef ENABLE_MCCP

	* configure.in: Added --enable-mccp as option.

	* src/net.c [open_connection,read_from_connection]: made some changes
	so AMCL can compile with MCCP as it don't really seems to work right now.

Thu Jul 20 17:20 2000  Jordi Mallach  <jordi@debian.org>
	* Added internationalization support.
	  + Added gettext calls to all strings. Affects action.c, amcl.c,
	    alias.c, color.c, init.c, keybind.c, map.c, modules.c,
	    modules_api.c, net.c, prefs.c, version.c, window.c and wizard.c.
	  + added libintl.h include in all the gettextized files.
	  + src/amcl.c: added locale.h include and setlocale() and
	    textdomain calls in main().
	  + Added intl/ and po/ directories.
	  + aclocal.m4: added needed macros by gettext.
	  + acconfig.h: added NLS config options.
	  + configure.in, Makefile.am, Makefile.in, src/Makefile.in: tweaked
	    paths, added variables needed for po making and added ABOUT-NLS
	    to the documentation.
	* Corrected a selection of typos while browsing the code, specially
	  in src/alias.c and src/wizard.c.
	* Initial es.po. It's not complete, but only the automapper needs to
	  be translated, the rest is finished.

Mon Jul 17 16:04:20 2000  Robin Ericsson  <robin@noname4us.com>

	* configure.in: added check for zlib, and if, enable MCCP.

	* src/Makefile.am: added mccpDecompress.[ch].

	* src/amcl.h: #include for stdio.h removed, and added mccpDecompress.h
	(connection_data): added *mccp, and mccp_timer.

	* src/dialog.h: added stdio.h include.

	* src/init.c: added stdio.h
	[init_window]: call mudcompress_new() on ->mccp.

	* src/modules_api.c: added stdio.h

	* src/net.c [make_connection]: added call to mudcompress_new()
	[mccp_pendingresponse]: timer function to check for compress data to
	send.
	[disconnect]: clear mccp, and initialize it again.
	[open_connection]: added timer to mccp_pendingresponse(), also alot
	of other MCCP changes.

	* src/version.c: added stdio.h

	* src/wizard.c [free_connection_data]: delete timer, and free MCCP
	data.

Tue Jul 11 02:16:04 CEST 2000  Jorge Garcia <Jorge.Garcia@uv.es>

	* Moved most global variables from init.c to proper files and
          same about extern declarations.

	* src/alias.c: Added check_aliases with same structure of
          check_actions.

	* src/amcl.h: Removed comented header functions and declaration of
          extern global variables.

	* src/init.c: Removed comented functions. Added key accelerators to
          basic menu items.

        * src/net.c: Removed redundant code and some minor optimizations
          [str_replace]: Absorved by read_from_connection and optimized
          [alias_check]: Absorved data from action_send_to_connection and
          check_aliases (src/alias.c)
          [connection_send]: Minor optimization.
          [action_send_to_connection]: Now calls connection_send.
          [send_to_connection]: Now calls action_send_to_connection.

Sat Jul  8 17:48:47 2000  Robin Ericsson  <lobbin@localhost.nu>

	* action.c [match_line]: now checking triggers via regex
	instead of the old strncmp().

	* net.c [action_send_to_connection]: if prefs.EchoText is set,
	then echo the text sent be actions aswell.

Mon Jul 3 20:52:37 2000  Jeroen Ruigrok  <asmodai@wxs.nl>

	* AUTHORS: Add my email address.  Fix text to fit 80 column
	displays.  Remove some leading dots to make the sentences
	consistent.

	* configure.in: Fix mapper start of sentence to be consistent
	with the rest.  Add --enable-debug, which adds a few debugging
	flags, to know: -g -DDEBUG -DG_ENABLE_DEBUG.  This allows easy
	addition of DEBUG preprocessor definitions and makes sure we
	debug GTk+, as well as compile it with symbols.

	* plugins/Makefile.am, src/Makefile.am: Make sure the
	DEBUG_FLAGS get incorporated into CFLAGS.

Sun Jul 2 14:02:11 2000  Jeroen Ruigrok  <asmodai@wxs.nl>

	* src/amcl.c: Reorder include order.  Fix comments.
	Fix cosmetics on gtk_main() calling.

Sun Jul 2 13:31:23 2000  Jeroen Ruigrok  <asmodai@wxs.nl>

	* src/window.c: Reorder include order.  Proper prototyping.
	Usage of C comment characters to be consistent with the rest.
	Remove unnecessary prototype.  Divide rcsid[] over two lines.

Sat Jul 1 09:24:28 2000  Jeroen Ruigrok  <asmodai@wxs.nl>

	* src/prefs.c: Reorder include order.  Proper prototyping.
	Usage of C comment characters to be consistent with the rest.

Sat Jul 1 03:01:00 CEST 2000 Jorge Garcia <Jorge.Garcia@uv.es>

	* src/misc.c: deleted. No more uid_info used

	* src/amcl.c: uid_info changed to g_get_home_dir()

	* src/Makefile.am: removed misc.c

	* src/net.c: disconnect(...) now deactivates "disconnect" button

	* src/prefs.c: little optimization in load_prefs
	changed save_prefs header to save_prefs( void )

Fri Jun 30 22:07:16 2000  Jeroen Ruigrok  <asmodai@wxs.nl>

	* src/action.c: Proper prototyping.

	* src/alias.c: Proper protoyping.  Seperate function declarations
	from prototypes with 3 white lines, probably want to add a comment
	delimiter there instead.

	* src/amcl.h: Proper prototyping of load_actions().

	* src/color.c: Remove double inclusion of <string.h>.  Remove
	bogus function prototype since we include this with <amcl.h>.

	* src/misc.c, src/net.c: Reorder include order, this should make
	sure it will cause no compilation problems on most non-Linux
	platforms now and in future.


Wed Jun 28 22:58:32 2000  Jeroen Ruigrok  <asmodai@wxs.nl>

	* src/action.c: Proper prototyping.

	* src/alias.c: Do _real_ function prototyping.

	* src/color.c: Add string.h for strdup(), proper prototyping,
	be consistent in comment character usage.

	* src/init.c: Be consistent with rcsid[], proper prototyping,
	be consistent in comment character usage, remove unused
	variables.

	* src/keybind.c: Use include with quotation marks since we want
	to search for config.h in the local directory, not system defined
	ones, proper prototyping, remove unused variables, make sure
	function definitions are consistent.

	* src/map.c: include stdlib.h for free(), proper prototyping,
	make sure function definitions are consistent, be consistent in
	comment character usage.

	* src/window.c: remove alias_button_add() prototype since it is not
	needed there.

Wed Jun 28 03:00:00 CEST 2000  Jorge Garcia  <Jorge.Garcia@uv.es>

        * Cleaned unused variables in almost all .c files
        * src/prefs.c: check_amcl_dir changed to
          FILE *open_file(gchar *filename, gchar *mode)
          it checks for proper perms on ~/.amcl dir
          (changes on alias.c action.c init.c wizard.c color.c
           modules.c init.c)
        * src/alias.c: fixed minor bugs about buttons
                       optimized load_aliases

        * src/action.c: fixed minor bugs about buttons
                        optimized load_actions

Tue Jun 27 08:39:13 2000  Jeroen Ruigrok  <asmodai@wxs.nl>

	* src/action.c: Proper prototyping, removal of unused variables
	and proper lining up of the internal functions.

Mon Jun 26 21:34:53 2000  Jeroen Ruigrok  <asmodai@wxs.nl>

	* AUTHORS: Fix small typo.

	* BUGS: Document small bug about Main > disconnect not being
	updated.

	* TODO: Add MCCP support request.

	* configure.in: Allow for more compiler warnings.

	* src/alias.c: proper prototyping and removal of unused
	variables.

Mon Apr  3 20:42:55 2000  Robin Ericsson  <lobbin@localhost.nu>

	* Fixed bugs:
	[103619]: Resizing AMCL-Window will not resize the textarea

	* AUTHORS: Added Jörgen Kosche for his focus-patches.

	* README: Added some more OSes and GTK versions.

	* src/amcl.h: grab_focus_cb() added.

	* src/init.c, src/net.c: See bug above.

	* src/prefs.c (check_amcl_dir): Removed some messages.

	* src/version.c (get_version_info): Added some \n:s

	* src/window.c (grab_focus_cb): Added.

Tue Mar 28 22:11:36 2000  Robin Ericsson  <lobbin@localhost.nu>

	* Fixed bugs:
	[103542]: Key-bindings are now loaded.

	* src/amcl.c: See above.

	* src/window.c: Fix for focus-problem.

Fri Mar 24 22:07:10 2000  Robin Ericsson  <lobbin@localhost.nu>

	* Fixed bugs:
	[103014]: Scroll bar only works for the main window

	* acconfig.h/autogen.sh/configure.in: Changed some checkings
	mostly regarding dlopen stuff.

	* src/amcl.h (CONNECTION_DATA): the vscrollbar needs to follow
	the connection, can not use the main one.

	* src/init.c (init_window): Both window and scrollbar are now
	included in the notebook.

	* src/modules.c: Use some new <dirent.h> stuff I found in the
	autoconf documentation.

	* src/net.c (make_connection): also create scrollbar when we
	create a new notebook tab.

	* src/wizard.c: Just some code cleaning.

Mon Mar 13 19:03:35 2000  Robin Ericsson  <lobbin@localhost.nu>

	* AUTHORS: Added Benjamin Curtis (email not known)

	* TODO: Added some stuff.

	* configure.in: Moved to 0.8.0.

	* src/Makefile.am: telnet.c added to the files.

	* src/Makefile.mkhelp: Fixed compiling errors.

	* src/amcl.c: Do not initialize modules in PKGDATADIR (yet).

	* src/amcl.h: Added savefiles version.
	(connection_data): Added gboolean echo.

	* src/color.c: Compile warning fixes only.

	* src/net.c: Removed some unnecessary definitions.
	(read_from_connection): Added TELNET protocol support.
	(connection_send): Fixed for the above.

	* src/prefs.c: Fixed spelling errors.
	(prefs_font_selected): Fixed crash when not choosing a font.

	* src/wizard.c: Added version to wizard savefile.
	(window_wizard): Password is now not seen.

	* src/telnet.c: Added, functions for TELNET protocol.

Mon Feb 28 19:36:49 2000  Robin Ericsson  <lobbin@localhost.nu>

	* Makefile.am: Added acconfig.h.

	* README: Spelling errors.

	* src/Makefile.am: mkhelp removed, and readme_doc.h and
	authors_doc.h added.

	* src/Makefile.mkhelp: added to create readme_doc.h and
	authors_doc.h.

	* src/amcl.c (main): Create ~/.amcl/plugins aswell as
	~/.amcl

	* src/color.c (create_color_box): renamed to window_color(),
	now it doesn't break when opening, closing, and open again.

	* src/init.c (init_window): fix for the above.

	* src/map.c (auto_map_new): Fix window title.

Wed Feb 23 17:00:19 2000  Robin Ericsson  <lobbin@localhost.nu>

	* AUTHORS: Added Maxim Kiselev.

	* BUGS: This file should be empty for now ;)

	* NEWS: News about version 0.7.

	* PLUGIN.API: Useful information about the plugin api now
	added.

	* README, TODO, amcl.lsm: Minor changes for 0.7.

	* AMCL-0.7-RELEASE!

Mon Jan  3 20:50:22 2000  Robin Ericsson  <lobbin@localhost.nu>

	* README: Fixed up a little bit.

	* PLUGIN.API: File which describes the plugin API added.

	* src/error.xpm, src/ok.xpm: removed

	* src/modules.c: Removed the silly nonsens about pixmaps in
	plugin list. Now it even works.

Sat Nov 20 18:42:55 1999  Robin Ericsson  <lobbin@localhost.nu>

	* NEWS: Added information about the news in version 0.7.0.

	* TODO: Added information about ongoing development and new
	ideas.

	* src/amcl.c: removed comment

	* src/error.xpm, src/ok.xpm: added.

	* src/map.c: cleaned up a little bit.

	* src/modules.c: Plugin information now has a pixmap, red
	or green depended of if module is enabled or disabled.

Thu Nov 11 20:19:04 1999  Robin Ericsson  <lobbin@localhost.nu>

	* Added keybind.c to CVS.

	* Makefile.am: Added subdir plugins.
	* src/Makefile.am: Added keybind.c.

	* src/amcl.c (main): init_colors() replace with load_colors().
	* src/amcl.h (KEYBIND_DATA): structure and typedef added.
	(SYSTEM_DATA): gchar *CommDev added.
	Also some extern variables and function declares.

	* src/color.c: Patch received from Maxim Kiselev. Added support for
	saving colors.

	* src/init.c: As above, some functions moved around.
	(init_window): Added Key on the options menu.
	(text_entry_key_press_cb): Maxim Kiselevs patch changed some here.

	* src/modules.c: Just moved around things.

	* src/net.c: Added things from Maxim again so multiple commands
	can be sent right away.

	* src/prefs.c: Added the ability to set what command char to the
	above.

	* src/wizard.c: If AutoSave is on, then it should save when closing
	window.

1999-09-24  Robin Ericsson  <lobbin@localhost.nu>

	* README: Added info about that is compiles under FreeBSD 3.3-STABLE.

	* src/Makefile.am: amcl.o is now compiled by it self so $(pkgdatadir)
	can be added to compilation. Also misc.c was added.

	* src/action.c: All getenv("HOME") replaced with uid_info->pw_dir.

	* src/alias.c: ditto

	* src/precs.c: ditto

	* src/wizard.c: ditto

	* src/amcl.c (main): init_uid() now called. init_modules uses the
	correct PKGDATADIR from configure.

	* src/amcl.h: extern struct passwd *uid_info added in misc.c.

	* src/misc.c: Added.

	* src/modules.c (init_modules): g_warning when not finding the right
	directory was changed to g_message().

	* src/mkhelp.c (main): char c; changed to int c; so I can compile under
	MkLinux PPC.

1999-08-17  Robin Ericsson  <lobbin@localhost.nu>

	* src/modules.c (Plugin_datain_list): Name changed to Plugin_data_list
	and is now responsible for both in and out data.

	* src/modules.h (_plugin_data): Added enum PLUGIN_DATA_DIRECTION that
	tell which way it is to be.

	* src/modules_api.c (plugin_data_register_incoming/outging): Both call
	plugin_data_register() now.

	* src/net.c (read_from_connection): Plugin_datain_list changed name and
	now checks the direction to be sure there are no problems.

	* src/prefs.c: Fixed stupid font bug that probably appeared with
	GTK+ 1.2.3. Changed one call from gtk_signal_connect_object() to
	gtk_signal_connect() and the problem went away.

1999-08-15  Robin Ericsson  <lobbin@localhost.nu>

	* src/dialog.c: Use font "fixed" instead of no font at all, look a lot
	better that way.

	* src/init.c: Load font "fixed" into font_fixed.

	* src/modules.c (plugin_get_plugin_object_by_handle): Should be pretty
	clear.
	(plugin_get_plugin_object): renamed to plugin_get_plugin_object_by_name.
	(plugin_enable_check_cb): Take care of enable/disable the plugin.

	* src/modules.h (_plugin_data): Added to be used when register for data
	in or out going.

	* src/modules_api.c (plugin_register_data_incoming): Check which plugin
	and add that plugin and function to a linked list.

	* src/modules_api.h: Added a bunch of extern.

	* src/net.c (read_from_connection): Now checks if any plugin is registred
	for recieving incoming data and if so, run the associated function.

1999-08-10  Robin Ericsson  <lobbin@localhost.nu>

	* src/modules.c (plugin_get_plugin_object): Get object from linked
	list via the name.
	(plugin_clist_select_row_cb): Callback function that updates the
	entrys in info window.
	(do_plugin_information): Window that displays information about the
	plugins, name, author, version, etc. Here is also where you enable
	the plugin.
	(plugin_query): No knows what the entire path to the plugin is.

	* src/amcl.c (main): Checks for modules in path ./plugins, ~/.amcl/plugins
	and /usr/local/share/amcl, the last should be changeable via the configure
	script.

	* src/init.c (init_window): Added signal so do_plugin_information gets
	started.

	* src/modules.h (struct plugin_info): redesigned, plugin_startfunc
	removed.

	* src/net.c (make_connection): Finally got rid of that annoying
	compilation warning.

	* src/prefs.c (window_prefs): No idea in setting color of tooltip
	when it is never used.

1999-08-01  Robin Ericsson  <lobbin@localhost.nu>

	* src/amcl.h (make_connection): Changed to CONNECTION_DATA
	*make_connection(gchar *host, gchar *port);
	(connection_send): Changed to
	void connection_send(CONNECTION_DATA *cd, gchar *message).

	* autogen.sh: automake changed again to just automake.

	* src/init.c (do_connection): Added to use make_connection from a
	function instead of calling make_connection directly from the menu.
	(init_window): Added "Plugin Information" menu item which will
	display information about the plugins ala Gimp.

	* src/modules.c (plugin->info->init_function()): now gets called with
	NULL, plugin->handle.

	* src/modules_api.c (plugin_register_menu): New function so plugins are
	able to register a menuitem that can be used.

	* src/net.c (make_connection): changed and some moved into "do_connection".
	(connection_send): Changed and is now working ;).

	* src/window.c (switch_page_cb): Debug message removed.

	* src/wizard.c: Now calling make_connection() the right way and is
	thanks to that working with multiple connections.

1999-07-30  Robin Ericsson  <lobbin@localhost.nu>

	* src/net.c (action_send_to_conneciton): Now takes a connection
	as argument to make it support multiple connections.
	(send_to_connection): Ditto.

	* src/wizard.c (free_connection_data): GtkWidget *window, does
	not need to be freed.

1999-07-29  Robin Ericsson  <lobbin@localhost.nu>

	* src/amcl.h: New global (CONNECTION_DATA *connections[15]) added.

	* src/init.c (do_close): New function. Close notebook page.
	(do_disconnect): Support for multiple connections, now even
	working.

	* src/net.c (make_connection): Support for multiple connections,
	now even working.

	* src/window.c (switch_page_cb): Enable/disable close/disconnect
	on the menu.

	* src/wizard.c (free_connection_data): New function for clearing
	a CONNECTION_DATA entry.

1999-07-24  Robin Ericsson  <lobbin@localhost.nu>

	* amcl.h (connection_data): Added notebook and sockfd entry.
	(open_connection): Changed fron gchar *host, gchar *port to
	CONNECTION_DATA *connection.

	* init.c (do_close/do_disconnect): New functions.
	(init_window): Added "Close Window" to the menu, added callback
	for the notebook.

	* modules_api.c (plugin_add_connection_text): Text sent without
	wanting to a specific connection now goes to main.

	* net.c (make_connection): Added support for multiple connections.
	(disconnect): ditto
	(open_connection): ditto
	(read_from_connection): ditto

	* window.c (switch_page_cb): Added function.

	* wizard.c (wizard_button_connect): Support for multiple connections
	needed alot of changed. Not ready yet.

Fri Jul 23 18:37:33 CEST 1999  Robin Ericsson  <lobbin@localhost.nu>

	* autogen.sh: changed automake; to automake --gnu --include-deps;

	* config.h.in, Makefile.am: removed old unused stuff.


Tue Mar  9 18:27:42 CET 1999  Robin Ericsson  <lobbin@localhost.nu>

	* src/init.c [!WITHOUT_GNOME]: Fixed the GNOME compiling
	bugs.

	* src/net.c: Fixed the bug that accured when you recieved
	alot of data from the at one time.

	* src/wizard.c: Fixed the bug in connection wizard.

	* src/version.c: Cosmetic fixes.

	* Released 0.6.1.

Thu Mar  4 18:29:46 CET 1999  Robin Ericsson  <lobbin@localhost.nu>

	* Minor changes.

	* Version 0.6 is going to be released at work tomorrow, this
	is the last changes.

Tue Mar  2 20:56:08 CET 1999  Robin Ericsson  <lobbin@localhost.nu>

	* version.h removed, this is created every make so this file
	is not necissary to include in the archive.

	* The configure option below made working :)

Mon Mar  1 20:56:06 CET 1999  Robin Ericsson  <lobbin@localhost.nu>

	* version.[ch] added. mkhelp.c added in the dist.

	* Configuring option --without-mapper added to compile
	without the automapper.

	* Added RCS/CVS $Id tags to the files.

Tue Feb 23 18:15:41 CET 1999  Robin Ericsson  <lobbin@localhost.nu>

        * Alot of changes..., action.c, mkhelp.c and dialog.c added.

	* src/amcl.c: Added call to load_actions()

	* src/amcl.h: Added action_data stucture and some function
	defines.

	* src/init.c: Added two new menu items.

	* src/net.c, action.c: Bret Robideaux new trigger system.


Thu Jan 28 20:14:54 CET 1999  Robin Ericsson  <lobbin@localhost.nu>

	* src/color.c added.

	* src/amcl.h: Changed some colorvariables. Added declares
	for some calls in color.c

	* src/init.c: Added some functions in color initiation
 	(from Robert's patch).
	(init_window): Added call to create_color_box().

	* src/window.c: Background ANSI, and other minor changes.

Sun Jan 17 20:31:04 CET 1999  Robin Ericsson  <lobbin@localhost.nu>

	* Changed copyright date from 1998 to 1998-1999.

	* src/map.c added.

	* src/amcl.c (main): Added a couple of things from Paul's
	automapper.

	* src/init.c: Added AutoMapper to the menus.

Thu Jan 14 22:08:33 CET 1999  Robin Ericsson  <lobbin@localhost.nu>

	* src/alias: Alias linked list rebuilt completly and should
	now work as it is supposed to.

	* src/prefs.c: Squashed small memory leek.

Fri Jan  8 21:35:39 CET 1999  Robin Ericsson  <lobbin@localhost.nu>

	* Changed homepage and email addresses.

	* Applied Paul's patch so it will compile on GTK+ >= 1.1.3

Tue Dec  8 20:46:11 CET 1998  Robin Ericsson  <lobbin@spikdildo.nu>

	* src/alias.c, src/window.c: Alias specific code moved into
	alias.c.

	* src/window.c [!WITHOUT_GNOME] (popup_window): Instead of
	making my own popup function I'm using the gnome built in
	function gnome_app_message().
	(textfield_add): If Freeze option is on then use gtk_text_freeze/
	gtk_text_thaw.

	* src/amcl.h (system_data): bool Freeze, new member.

	* src/prefs.c (load_prefs/save_prefs/window_prefs): New option
	called Freeze.
	(prefs_freeze_cb): New function.

Tue Oct 20 18:57:34 CEST 1998  Robin Ericsson  <lobbin@lobbin.ml.org>

	* src/init.c (init_window): Fixed the resizing missfeature.

Mon Oct 19 19:00:06 CEST 1998  Robin Ericsson  <lobbin@lobbin.ml.org>

	* Version 0.5.1 Released!

	* net.c: Applied a patch I recieved, you could create a buffer
	if you sent text bigger then 300 chars.

	* prefs.c [!HAVE_DEVGTK]: Stable GTK+ (1.0.x) doesn't have the
	font selection widget included, added some #ifdef HAVE_DEVGTK
	to fix this.

Sun Oct 18 14:11:38 CEST 1998  Robin Ericsson  <lobbin@lobbin.ml.org>

	* Version 0.5 Released!

Tue Oct 13 21:16:50 CEST 1998  Robin Ericsson  <lobbin@lobbin.ml.org>

	* alias.c (save_aliases): Added a check to see if there are any
	entries to save.

	* init.c [!WITHOUT_GNOME]: Made all the GnomeUIInfo structures
	global.
	[WITHOUT_GNOME] (init_window): Moved pack of menu_bar so that the
	bar isn't at the bottom. :)
	[!WITHOUT_GNOME]: Added some gtk_widget_set_sensitive

	* net.c [!WITHOUT_GNOME]: Added some gtk_widget_set_sensitive
	* prefs.c: Likewise
	* window.c: Likewise
	* wizard.c: Likewise

Sun Sep 27 11:16:13 CEST 1998  Robin Ericsson  <lobbin@lobbin.ml.org>

	* README: Added a few things.

	* amcl.c: #include "config.h"

	* prefs.c (prefs_select_font_callback): Now sets the font to
	preview.

Thu Sep 24 16:08:08 CEST 1998  Robin Ericsson  <lobbin@lobbin.ml.org>

	* init.c (EntryHistory): New global
	(text_entry_find): New function
	(text_entry_key_press_cb): Likewise
	(init_window): Connected text_entry signal "key_press_event" to
	text_entr_key_press_cb in other to make entry scollback work.

	* net.c (send_to_connection): Added just entered command last, and
	check if connected and only send text then.

Thu Sep 24 11:09:07 CEST 1998  Robin Ericsson  <lobbin@lobbin.ml.org>

	* amcl.h (system_data): bool AutoSave added.
	(wizard_data): gchar *cstring added.

	* init.c (init_window,WITH_GNOME): Trailing separators in menu
	removed.

	* prefs.c (load/save_prefs): AutoSave added.
	prefs_autosave_cb() added.
	(window_prefs): Check button for AutoSave added.

	* window.c: Support for AutoSave.

	* wizard.c (window_wizard): Modify button renamed to apply.

Mon Sep 21 03:25:24 1998  Robin Ericsson  <lobbin@lobbin.ml.org>

	* init.c (init_window): Now supports GNOME menus, with pixmaps and
	all.

Sun Sep 20 15:20:01 1998  Robin Ericsson  <lobbin@lobbin.ml.org>

	* alias.c prefs.c window.c wizard.c: Removed sprintf and snprintf
	calls and changed those to g_snprintf.

 	* config.h.in configure.in: Don't have to check for snprintf now
	as it isn't used.

Sat Sep 19 16:14:22 1998  Robin Ericsson  <lobbin@lobbin.ml.org>

	* Started using CVS.