~vcs-imports/bug-buddy/master

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
2009-03-17  Cosimo Cecchi  <cosimoc@gnome.org>

	* README.STABLE_BRANCH:
	* configure.in: post-branch bump to 2.27.0.

=========================== 2.26.0 ==============================

2009-03-17  Cosimo Cecchi  <cosimoc@gnome.org>

	* NEWS:
	* configure.in: update for 2.26.0.

2009-03-09  Cosimo Cecchi  <cosimoc@gnome.org>

	* configure.in: let gnome-doc-utils handle scrollkeeper presence
	rather than hardcoding a check in our configure script (#574617).

=========================== 2.25.91 =============================

2009-02-16  Cosimo Cecchi  <cosimoc@gnome.org>

	* NEWS:
	* configure.in: update for 2.25.91.

2009-02-15  Cosimo Cecchi  <cosimoc@gnome.org>

	* configure.in: build correctly with --disable-eds (#571918).

=========================== 2.25.2 ==============================

2008-12-01  Cosimo Cecchi  <cosimoc@gnome.org>

	* MAINTAINERS: add myself.
	* NEWS:
	* configure.in: update for 2.25.2.

2008-11-13  Cosimo Cecchi  <cosimoc@gnome.org>

	* gnome-breakpad/gnome-breakpad.cc:
	Use the correct index when freeing strings.
	Patch by Josseline Mouette (#560657).

2008-11-11  Cosimo Cecchi  <cosimoc@gnome.org>

	* gnome-breakpad/gnome-breakpad.cc:
	Don't free uninitialized memory. Fix segfaults when using 2.25.1.

=========================== 2.25.1 ==============================

2008-11-04  Cosimo Cecchi  <cosimoc@gnome.org>

	* AUTHORS: add myself.
	* NEWS: update for 2.25.1.

2008-11-04  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bug-buddy.c: (show_version_cb):
	Re-add --version option after libgnome dropping.

2008-10-20  Cosimo Cecchi  <cosimoc@gnome.org>

	* configure.in:
	* src/Makefile.am:
	* src/bug-buddy.c: (fill_system_info):
	Enforce single header policy under maintainer mode.

2008-10-19  Cosimo Cecchi  <cosimoc@gnome.org>

	* gnome-breakpad/Makefile.am:
	Update to google-breakpad r290.

2008-10-17  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bug-buddy.c: (fill_system_info):
	Check if the GTK+ module is activated in GConf before adding it to
	the report.

2008-10-16  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bug-buddy.c: (gconf_get_key_name_from_path),
	(fill_system_info):
	Include the loaded GTK+ modules in the report (#555037).

2008-10-15  Cosimo Cecchi  <cosimoc@gnome.org>

	* Makefile.am:
	* configure.in:
	* bugzilla/*: deleted, this is now useless (#556364).
	Pointed out by Matthias Clasen.

2008-10-13  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bug-buddy.c: (on_send_clicked):
	Actually hide the "Send" button after clicking it (#556129).

2008-10-03  Matthias Clasen  <mclasen@redhat.com>

	Bug 554931 – make gtk module resident

	* gnome-breakpad/gnome-breakpad.cc (g_module_check_init): New
	function to prevent unloading the module, since unloading it
	doesn't work.

2008-10-04  Cosimo Cecchi  <cosimoc@gnome.org>

	* gnome-breakpad/gnome-breakpad.cc:
	Add a license header and remove commented code.

2008-10-01  Cosimo Cecchi  <cosimoc@gnome.org>

	* gnome-breakpad/gnome-breakpad.cc:
	* src/bug-buddy.c: (unknown_app_finished), (fill_custom_info),
	(main):
	Implement a logger for critical and fatal warnings, which will be
	included in the bug report sent to bugzilla (#350221).
	This also moves the files included with the --include option down
	at the bottom of the stacktrace (if present).
	* src/gnome-crash.c: (main):
	Update the test to contain a critical warning.

2008-09-29  Cosimo Cecchi  <cosimoc@gnome.org>

	* help/*: removed, as it's obsolete, not used anymore and just wastes
	time for some translators who don't read the "this is obsolete" notice.

2008-09-27  Cosimo Cecchi  <cosimoc@gnome.org>

	* gnome-breakpad/gnome-breakpad.cc:
	* src/gnome-crash.c:
	Use g_file_read_link () instead of readlink () and some minor style
	fixes.

2008-09-27  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bug-buddy.c: (main): use --unlink-tempfile instead of --own-file,
	as Evince seems to do the same and it sounds a bit better as well.
	Suggested by Christian Persch.

2008-09-26  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bug-buddy.c: (fill_include_file), (main):
	* src/bug-buddy.h:
	Add an option to own the included file (i.e. delete it after
	including). That only works together with the --include option
	and is disabled by default (#540150).

2008-09-26  Kjartan Maraas  <kmaraas@gnome.org>

	* src/bugzilla.h: Remove gnome-vfs-uri.h include which broke
	the build.

2008-09-25  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bug-buddy.c: (send_report), (main):
	Style nitpicks.

2008-09-25  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/gdb-buddy.c: (get_process_executable), (gdb_get_trace):
	Take the real path of the process from /proc, on supported platforms
	(Linux and Solaris).
	Thanks to Sam Morris and Matt Keenan (#172394).

2008-09-25  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bug-buddy.c: (link_callback):
	Drop the check on GTK_VERSION now that we require GTK+ 2.14.0.

2008-09-24  Cosimo Cecchi  <cosimoc@gnome.org>

	* configure.in:
	Make google-breakpad support optional (but enabled by default for
	the platforms that support it).
	Thanks to Sjoerd Simons (#479507).

2008-09-24  Cosimo Cecchi  <cosimoc@gnome.org>

	* configure.in:
	* src/Makefile.am:
	* src/bug-buddy.c: (get_gnome_version_info), (help_callback),
	(main):
	* src/bugzilla.c:
	* src/gnome-crash.c: (main):
	Drop dependency on libgnome and libgnomeui.

2008-09-22  Cosimo Cecchi  <cosimoc@gnome.org>

	* README: update README file with some recent information.

2008-09-15  Cosimo Cecchi  <cosimoc@gnome.org>

	* data/bug-buddy.schemas.in:
	Install the GConf key to enable gnomebreakpad loading by XSettings.

2008-09-15  Cosimo Cecchi  <cosimoc@gnome.org>

	* gnome-breakpad/gnome-breakpad.cc:
	Simplify the code and do not use google-breakpad to connect the
	exception handler, as for some reason that doesn't seem to work
	when we load the gnomebreakpad module with XSettings.

2008-09-11  Cosimo Cecchi  <cosimoc@gnome.org>

	* README.STABLE_BRANCH:
	* configure.in:
	Bump after branching, trunk is now 2.25.1 and the stable branch
	is gnome-2-24.

======================= 2.23.91.1 ==============================

2008-09-01  Cosimo Cecchi  <cosimoc@gnome.org>

	* NEWS:
	* configure.in:
	Bump for 2.23.91.1 release.

2008-09-01  Cosimo Cecchi  <cosimoc@gnome.org>

	* configure.in:
	* gnome-breakpad/gnome-breakpad.cc:
	Reverted latest commit as it throws out a runtime warning.
	Added a comment with reference to a GTK+ bug.

======================= 2.23.91 ==============================

2008-08-31  Cosimo Cecchi  <cosimoc@gnome.org>

	* NEWS:
	* configure.in:
	Bump for 2.23.91 release.

2008-08-31  Cosimo Cecchi  <cosimoc@gnome.org>

	* configure.in:
	* gnome-breakpad/gnome-breakpad.cc:
	Replace a direct call to X API with gdk_x11, and do not specify x11
	anymore as a required module in the configure script.
	Removed a bit of duplicate code.
	This should also fix bug #500179.

2008-08-31  Cosimo Cecchi  <cosimoc@gnome.org>

	* data/bug-buddy.desktop.in.in:
	Remove the deprecated "Encoding" key.
	Thanks to Pacho Ramos (#550031).

======================= 2.23.90 ==============================

2008-08-17  Cosimo Cecchi  <cosimoc@gnome.org>

	* NEWS:
	* configure.in:
	Bump for 2.23.90 release.

2008-08-12  Stéphane Raimbault  <stephane.raimbault@gmail.com>

	* src/bug-buddy.c: (network_error):
	Fix a typo with 'Internet' (#547309).

2008-08-06  Cosimo Cecchi  <cosimoc@gnome.org>

	* configure.in:
	Remove useless gnome-desktop dependency.
	* data/Makefile.am:
	Fix a typo.

2008-08-06  Cosimo Cecchi  <cosimoc@gnome.org>

	* .cvsignore:
	* */.cvsignore:
	Remove .cvsignore files.

2008-08-05  Cosimo Cecchi  <cosimoc@gnome.org>

	* data/bug-buddy.desktop.in.in:
	Adds a missing semicolon.

========================= 2.23.6 =========================

2008-08-04  Cosimo Cecchi  <cosimoc@gnome.org>

	* NEWS:
	* configure.in:
	Bump for 2.23.6 release.
	* data/Makefile.am:
	Fix to pass distcheck.

2008-08-04  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bug-buddy.c: (on_send_clicked):
	Add mnemonics to the new review description dialog.
	Thanks to Andre Klapper.

2008-08-04  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bug-buddy.c: (on_send_clicked):
	Fix coding style and indentation.

2008-08-03  Diego Escalante Urrelo  <diegoe@gnome.org>

	* src/bug-buddy.c: (on_send_clicked):
	Add a GtkMessageDialog warning about a too short description, the user is
	allowed to still send the report but he's advised to fill a more detailed
	description (#361311).

2008-08-02  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bug-buddy.c: (network_error):
	Use a better wording when reporting a network error to the user.
	Thanks to Dominic Cleal (#506442).

2008-08-01  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bug-buddy.c: (copy_link_item_activated_cb),
	(build_link_menu), (link_button_press_event_cb), (bug_sent):
	Add a right click menu item "Copy Link Address" on the GtkLinkButton
	to allow copying of the bug URL (#540174).

2008-07-31  Diego Escalante Urrelo  <diegoe@gnome.org>

	* src/bug-buddy.c:
	* src/bugzilla.h:
	* src/gdb-buddy.c:
	Remove single includes regarding gtk. Forgot to add this changelog entry on
	my commit, woops :).

2008-07-31  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bug-buddy.c: (email_domain_is_valid):
	Activate the send button only if the domain part contains
	at least a dot (#437333).

2008-07-31  Cosimo Cecchi  <cosimoc@gnome.org>

	* data/bug-buddy.gtkbuilder:
	Set the right icon size.

2008-07-31  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/Makefile.am:
	Fix a leftover of the code reorganization.

2008-07-31  Cosimo Cecchi  <cosimoc@gnome.org>

	* data/bug-buddy.schemas.in:
	Fix an incoherent singular/plural schema description.
	Thanks to Diego Escalante Urrelo (#390982).

2008-07-31  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bug-buddy.c: (main):
	Fix a incorrect check which would lead to a leak or to undefined
	behaviour
	Thanks to Christian Persch (#508631).

2008-07-27  Cosimo Cecchi  <cosimoc@gnome.org>

	* debian/.cvsignore:
	* debian/Makefile.am:
	* debian/changelog.in:
	* debian/control:
	* debian/copyright:
	* debian/rules:
	There's no need for having an (outdated) debian/ directory here.

2008-07-26  Cosimo Cecchi  <cosimoc@gnome.org>

	* Makefile.am:
	* autogen.sh:
	* configure.in:
	* data/*:
	* src/*.in:
	* src/bug-buddy.gtkbuilder:
	* src/bug-buddy.c:
	* src/bugzilla.c:
	* src/Makefile.am:
	* src/libglade-buddy.h
	* pixmaps/*:
	* m4/:
	* gentool/*:
	Rearranged the code tree into a more coherent fashion.
	Added data/ to hold icons, XML and .in files, added m4/ to
	hold macro files.
	Change the icon to a new Tango one, thanks to Andreas Nilsson,
	Michael Monreal and Sebastian Kraft (#406958).
	Fixed bits of autogen.sh, configure.in and Makefile.am to get rid
	of old stuff and fix some warnings.
	Remove some useless includes and obsolete libglade-buddy.h file.

2008-07-26  Cosimo Cecchi  <cosimoc@gnome.org>

	* bug-buddy.spec.in:
	* configure.in:
	Don't ship spec file in the tarball anymore.

2008-07-26  Cosimo Cecchi  <cosimoc@gnome.org>

	* configure.in:
	Remove useless dependency on libgnomecanvas.

2008-07-26  Cosimo Cecchi  <cosimoc@gnome.org>

	* Makefile.am:
	* configure.in:
	* docs/Makefile.am:
	Added a manual and install it (#517514).

2008-07-26  Cosimo Cecchi  <cosimoc@gnome.org>

	* docs/*
	Moved help away from the docs folder.

2008-07-26  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bug-buddy.c:
	Remove unused command line switches (#428205).

2008-07-21  Cosimo Cecchi  <cosimoc@gnome.org>

	* configure.in:
	Add tar-ustar to AM_INIT_AUTOMAKE to pass make dist.

2008-07-21  Cosimo Cecchi  <cosimoc@gnome.org>

	* NEWS:
	* configure.in:
	Bump for release 2.23.5.1.

2008-07-21  Cosimo Cecchi  <cosimoc@gnome.org>

	* pixmaps/Makefile.am:
	Correctly install bug-buddy.png.
	Thanks to Sebastien Bacher (#544009).

2008-07-21  Cosimo Cecchi  <cosimoc@gnome.org>

	* NEWS: Update for release.

2008-07-21  Cosimo Cecchi  <cosimoc@gnome.org>

	* Makefile.am:
	* configure.in:
	Bump intltool required version to 0.40.0.

2008-07-15  Cosimo Cecchi  <cosimoc@gnome.org>

	* pixmaps/Makefile.am:
	* src/Makefile.am:
	* src/bug-buddy.c: (main):
	Use gtk_image_set_from_icon_name instead of custom code to
	load the application icons.
	Based on a patch from David Farning (#435948).

2008-07-15  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bug-buddy.c: (keypress_callback), (main):
	Close the window when pressing Escape.
	Patch from BVK Chaitanya (#328952).

2008-07-15  Rodrigo Moya <rodrigo@gnome-db.org>

	Added missing header files for compilation with gcc4.3 (#517635).

2008-07-15  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/Makefile.am:
	Only ship bug-buddy.desktop.in.in inside the tarballs. (#521824).

2008-07-15  Cosimo Cecchi  <cosimoc@gnome.org>

	* pixmaps/Makefile.am:
	Fix gtk-update-icon-cache for uninstall-hook.
	Patch by Brian Pepple (#432437).

2008-07-14  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bug-buddy.desktop.in.in:
	Use "OnlyShowIn=GNOME" for the desktop file.
	Patch from Rodrigo Moya (#517633).

2008-07-14  Andre Klapper  <a9016009@gmx.de>

        * src/distribution.c: Add PLD Linux detection.
	Patch by Marcin Banasiak (#514811).

2008-07-14  Andre Klapper  <a9016009@gmx.de>

	* configure.in:
	Fix X11 underlinking problem.
	Patch by Frederic Crozat (#535098).

2008-07-14  Cosimo Cecchi  <cosimoc@gnome.org>

	* configure.in:
	* src/bug-buddy.c:
	Remove vestiges of NetworkManager dependency (#519134).

2008-07-14  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bugzilla.c: (bugzilla_parse_response),
	(bugzilla_create_report):
	Fix some warnings.

2008-07-14  Cosimo Cecchi  <cosimoc@gnome.org>

	* gnome-breakpad/gnome-breakpad.cc:
	Fix some leaks.
	Patch by Hans Petter Jansson (#484728).

2008-07-14  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bugzilla.c: (bugzilla_create_report):
	Initialize the GError to NULL to avoid reading of uninitialized memory.
	Patch from Hans Petter Jansson (#484737). 

2008-07-14  Cosimo Cecchi  <cosimoc@gnome.org>

	* src/bug-buddy.c: (link_callback):
	Fix the build.

2008-07-14  Cosimo Cecchi  <cosimoc@gnome.org>

	* README.STABLE_BRANCH:
	* configure.in:
	* src/bug-buddy.c: (link_callback):
	* src/verify-desktop-files.c: (main):
	Port to GIO and bump version to 2.23.5.

2008-03-10  Fernando Herrera  <fherrera@onirica.com.com>

	* configure.in: Release 2.22.0

2008-01-30  Fernando Herrera  <fherrera@novell.com>

	* src/bugzilla.c: (bugzilla_create_report): Fixed title param.

2008-01-30  Fernando Herrera  <fherrera@novell.com>

	* configure.in: Bump version to 2.21.90
	* src/bugzilla.c: (bugzilla_create_report): remove UTF-8 control
	characters from the report to make bugzilla.gnome.org happy.

2008-01-07  Dan Winship  <danw@gnome.org>

	* configure.in: require libsoup-2.4

	* src/bugzilla.c (bugzilla_create_report): Use new libsoup XML-RPC
	API.
	(bugzilla_parse_response): Likewise. Now returns SOUP_XMLRPC_FAULT
	GErrors in some cases.

	* src/bug-buddy.c: Update for libsoup 2.4
	(bug_sent): deal with different bugzilla_parse_response() error
	semantics

2007-10-06  Fernando Herrera  <fherrera@onirica.com>

	* Merge from http://www.gnome.org/~fherrera/bug-buddy.git

	commit c15013d422afce63e5c876e5109f95157a95bb0a
		Send os_version param containing distro in the XML-RPC call

	commit 29e5abc75ffb4b7d6e0113aad676b490fc047fdc
		Fix breakpad Makefile.am typo

	commit 43081dd128b69127392548be0bd86616bfdf47e4
		Updated configure.in for 2.20.1

2007-10-06  Fernando Herrera  <fherrera@onirica.com>

	* Merge from http://www.gnome.org/~fherrera/bug-buddy.git

	commit 7d7817008ee16e0de3b38989dd69452bfe2ce719

		Make Dependency on e-d-s optional. Based on a patch by Brent Smith. Fix bug #345130

	commit 91a2ecdc240a15ac2753e2696b348500d220dd31

		Depend on gtk+ >= 2.12. Fix bug #483436

2007-10-06  Fernando Herrera  <fherrera@onirica.com>

	* Merge from http://www.gnome.org/~fherrera/bug-buddy.git

	commit a38a1ecf39912c9778491739a72473d6d7f67f10

		Parse xml reponse from the collector server. Point to gnome server

	commit e2c03b628fc01ab0de8e678fcbec94a0c1da6dc8

		Add minidump-id to the XML-RPC call

	commit d227ff5b70cf217912a42b4527dedc4ac1da6cbe

		Point to http://localhost/breakpad/xmlrpc-collector.py for testing

	commit 659f1dc9e394eeec0163ca82e5659ed97ea77ffe

		Add back the method name as BugBuddy.createBug

	commit de614a6cf2fc6a11a7173c046548e4fb1ee26831

		Fix filename of the dumped file on gnome-breakpad bug-buddy invocation
		Implement sending minidumps

2007-09-28  Fernando Herrera  <fherrera@onirica.com>

	* gnome-breakpad/Makefile.am: Fix typo

2007-09-27  Fernando Herrera  <fherrera@onirica.com>

	* configure.in:
	* gnome-breakpad/Makefile.am: Compile Solaris or linux handler
	conditionally.

2007-09-27  Fernando Herrera  <fherrera@onirica.com>

	* google-breakpad/*: Update to upstream r216 version.

2007-09-25  Fernando Herrera  <fherrera@onirica.com>

	* gnome-breakpad/gnome-breakpad.cc: Return always 0 on gtk_module_init
	function.

2007-09-25  Fernando Herrera  <fherrera@onirica.com>

	* gnome-breakpad/gnome-breakpad.cc: Fix Solaris compilation.

2007-09-25  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Disable static libs.
	* gnome-breakpad/Makefile.am: Don't install libgnomebreakpad as a
	versioned library. Patch by Fryderyk Dziarmagowski. Fixes bug #473671

2007-09-25  Fernando Herrera  <fherrera@onirica.com>

	* gnome-breakpad/gnome-breakpad.cc: Don't include google-breakpad
	header / don't use google_breapad namespace if ENABLE_GOOGLE_BREAKPAD
	if not defined.

2007-09-25  Fernando Herrera  <fherrera@onirica.com>

	* gnome-breakpad/gnome-breakpad.cc: Fix memleak. Patch by Priit Laes.
	Fixes bug #479536

2007-09-25  Fernando Herrera  <fherrera@onirica.com>

	* gnome-breakpad/gnome-breakpad.cc: Don't install any handler if
	application has set any of them already (that is before gtk_init). It
	was causing crashes (exposing bugs?) with SWT applications. Fixes bug
	#479929

2007-09-25  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (email_local_part_is_valid), (email_is_valid):
	check email address against RFC 3696 rules. Patch from Sjoerd Simons.
	Fixes bug #480130

2007-09-17  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Release 2.20.0

2007-09-03  Fernando Herrera  <fherrera@onirica.com>

	* google-breakpad/Makefile.am: install breapad library under
	$prefix/lib/bug-buddy dir because it's private to our instalation
	(until google-breakpad is properly released and we can depend on it)

2007-09-03  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Always configure google-breakpad dir.
	* Makefile.am: distcheck always google-breakpad dir, but compile it
	only on supported platforms.

2007-09-02  Fernando Herrera  <fherrera@onirica.com>

	* po/POTFILES.in: Added gtkbuilder file here with the right type to
	get in translated. Thanks to Priit Laes. Fixes bug #471290

2007-09-01  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (all_sent): Don't connect close button twice.
	Fixes bug #471425

2007-08-28  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* configure.in: Release 2.19.91

2007-08-28  Fernando Herrera  <fherrera@onirica.com>

	* src/distribution.c: Add Frugalware Linux detection. Patch by Alex
	Smith. Fix bug #414641

2007-08-28  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (on_save_clicked), (main): Don't free desktop path.
	Translate program description correctly, patch by Gabor Kelemen, fix
	bug #450144

2007-08-28  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (on_save_clicked): Use special dir functions to get
	homedir. Patch by Luca Ferretti. Fix bug #453115

2007-08-28  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.gtkbuilder: Mark copy button as translatable. Fix bug
	#454632

2007-08-28  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (on_save_clicked): Mark save dialog title for
	translation. Patch by Gabor Kelemen. Fix bug #459107

2007-08-28  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (main): Correct the string asking the information
	to be provided in English. Patch by Claudio Saavedra. Fix bug #361312

2007-08-28  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (unknown_app_finished): Include binary name at
	least when an unknown application backtrace has been collected.

2007-08-28  Fernando Herrera  <fherrera@onirica.com>

	* src/Makefile.am: use -export-dynamic instead of --export-dynamic to
	fix build in SunStudio 12. Patch from Dave Lin. Fix bug #463569

2007-08-16  Fernando Herrera  <fherrera@onirica.com>

	* Makefile.am:
	* configure.in:
	* gnome-breakpad/Makefile.am: Compile google-breakpad conly in supported
	achitectures and OS.
	* gnome-breakpad/gnome-breakpad.cc: Install a seghandler if
	google-breakpad is not compiled in (it will only launch bug-buddy if
	debug symbols are present).

2007-08-15  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: check for gelf.h
	* gnome-breakpad/gnome-breakpad.cc: Use gelf functions for accessing
	32 and 64 bits elf files. Check not only for regular debug information
	but also for separate .debug file.

2007-08-15  Fernando Herrera  <fherrera@onirica.com>

	* gnome-breakpad/gnome-breakpad.cc: Fix leak of the elf file.

2007-08-08  Fernando Herrera  <fherrera@onirica.com>

	* MAINTAINERS: updated with userid

2007-08-02  Fernando Herrera  <fherrera@onirica.com>

	* configure.in:
	* src/Makefile.am:
	* src/bug-buddy.c: (lock_text), (search_forbidden_words),
	(copy_review), (edit_review), (show_review), (network_error),
	(all_sent), (previous_sent), (bug_sent), (send_report),
	(check_email), (on_send_clicked), (gdb_insert_text),
	(show_pending_checkbox_if_pending), (useless_finished),
	(known_app_finished), (gdb_finished), (on_save_clicked),
	(unknown_app_finished), (send_minidump),
	(gdb_finished_unknown_app), (bug_buddy_quit), (close_callback),
	(fill_gnome_info), (fill_custom_info), (fill_proccess_info),
	(fill_include_file), (fill_system_info), (fill_stderr_info),
	(main):
	* src/bug-buddy.glade:
	* src/bug-buddy.gtkbuilder:
	* src/bugzilla.c: (bugzilla_create_report):
	* src/bugzilla.h: Port to GtkBuilder. Remove libglade dependency.

2007-08-01  Wouter Bolsterlee  <wbolster@svn.gnome.org>

	* NEWS: Fix typo

2007-07-31  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* README.STABLE_BRANCH: Release 2.19.0 "Young Explorer"

2007-07-31  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Check for libelf headers

2007-07-27  Fernando Herrera  <fernando.herrera-de-las-heras@nokia.com>

	* google-breakpad:*/* Add google-breakpad.
	* gnome-breakpad: Include a seghandler as a GTK_MODULE invoking either
	gnome-terminal+gdb, bug-buddy+gdb or bug-buddy+minidump.
	* Makefile.am: 
	* configure.in: Bump version to 2.19.0. Add libelf checks
	* src/bug-buddy.c: (send_minidump), (main):
	* src/bug-buddy.h: Dummy dialog, as we don't have yet the debug server.

2007-04-09  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Bump version to 2.18.1
	* src/bugzilla.c: (add_bugzilla_application), (application_free):
	* src/bugzilla.h: Refcount applications. Fix a crash when closing
	bug-buddy and there were dups other-binaries. Patch by Matthias
	Clasen. Fix bug #424711

2007-04-02  Frederic Crozat  <fcrozat@mandriva.com>

	* src/bugzilla.c:
	Correct key for OtherBinaries lookup in .desktop.

2007-03-13  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* configure.in: Released 2.18.0

2007-03-08  Christian Kirbach  <Christian.Kirbach@googlemail.com>

	* src/bug-buddy.desktop.in.in:
	"Application" is not a valid category in the freedesktop specification.

=========================== 2.17.4 ==========================

2007-02-20  Kjartan Maraas  <kmaraas@gnome.org>

	* Makefile.am: Dist MAINTAINERS.

2007-02-18  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (main): Don't register with the session manager.
	Patch by Dan Winship. Fix bug #406009

2007-01-20  Andre Klapper  <a9016009@gmx.de>

	* src/bug-buddy.glade: remove an empty string from translation.

2007-01-08  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (fill_system_info): Add gtk-theme and
	icon-theme information to the report.

2007-01-08  Fernando Herrera  <fherrera@onirica.com>

	* autogen.sh:
	* configure.in:
	* src/Makefile.am:
	* src/bug-buddy.c: (delete_review), (get_gnome_version_info),
	(save_to_file), (network_error), (bug_sent), (create_report_title),
	(send_report), (on_save_clicked), (fill_stderr_info), (main):
	* src/bugzilla.c: (get_i18n_slist), (load_applets),
	(load_applications), (bugzilla_create_report):
	* src/distribution.c: (get_lines_from_file):
	* src/distribution.h:
	* src/eds-buddy.c:
	* src/gdb-buddy.c:
	* src/proccess.c: (proccess_get_mem_state), (proccess_get_time):
	* src/verify-desktop-files.c: (main): Upadte autogen stuff and configure.
	Make bug-buddy compile without warnings. Fix some wrong g_free.
	Patch by Christian Persch. Fix bug #394054

2007-01-07  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (create_debuginfo_link): Add a comment for translators
	for the http://live.gnome.org/GettingTraces/DistroSpecificInstructions
	link. Thanks to Priit Laes.

2007-01-07  Fernando Herrera  <fherrera@onirica.com>

	* COPYING.ximian-logos:
	* Makefile.am:
	* pixmaps/Makefile.am: Removed old logos not used anymore.

2007-01-07  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (bug_sent), (main):
	* src/verify-desktop-files.c: (check_bugzilla_info): s/bugzilla/Bugzilla.
	Patch by Diego Escalante Urrelo. Fixes bug #354287

2007-01-07  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (on_save_clicked): Use home when desktop_is_homedir
	to save bug reports. Patch by Diego Escalante Urrelo. Fixes bug #349941

2007-01-07  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.menu.in: Include also autostar dir in the .desktop
	files search path.

2006-12-20  Fernando Herrera  <fherrera@onirica.com>

	* src/bugzilla.c: (load_applications): dup the
	string from gmenu_tree_entry_get_name for prev_name
	before freeing the keyfile/entry. Fix bug #357203.
	Thanks to Mark McLoughlin!.

2006-12-18  Fernando Herrera  <fherrera@onirica.com>

	* NEWS: Released 2.17.3 ("Paris connection")

2006-12-14  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (email_local_part_is_valid),
	(email_domain_label_is_valid), (email_domain_is_valid),
	(email_is_valid): Rework the email address checking.
	Patch by Alex Jones. Fix bug #350621

2006-12-14  Fernando Herrera  <fherrera@onirica.com>

	* src/gdb-buddy.c: (gdb_get_trace): set the GIOChannel as
	G_IO_FLAG_NONBLOCK. Now bug-buddy does not freeze anymore while
	reading gdb output!. Fix bug #326680

2006-12-14  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (delete_review), (show_review): handle delete
	event of the review window to hide it.

2006-12-13  Dennis Cranston  <dennis_cranston@yahoo.com>

	* src/bug-buddy.c: (known_app_finished): String format fix

2006-12-13  Andre Klapper  <a9016009@gmx.de>

	* src/bug-buddy.c: fixing two typos.

2006-12-13  Fernando Herrera  <fherrera@onirica.com>

	* src/bugzilla.c: (bugzilla_parse_response): use g_return_val_if_fail
	instead of g_return_if_fail. Patch from OpenSuSE RPM.

2006-12-13  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.glade: Remove the focus from the hidden Send button.
	It was respossible of some spurious crashes when pressing a key
	over the window. 

2006-12-13  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (gdb_insert_text), (create_debuginfo_link),
	(useless_finished), (gdb_finished): Don't submit reports with less than
	3 steps on the backtrace. Fix bug#383349

2006-12-13  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (network_error), (all_sent), (send_report),
	(on_save_clicked), (bug_buddy_quit), (close_callback), (main):
	* src/bugzilla.c: (add_bugzilla_application), (application_free),
	(load_applications): Don't leak the hash table. Allow also colissions
	on the other_binaries case.

2006-12-13  Fernando Herrera  <fherrera@onirica.com>

	* src/bugzilla.c: (add_bugzilla_application): Allow colissions on the hash
	table, i.e.: different "Applications" with the same binary name. Next
	step would be add parameters to the BugzillaApplication struct and 
	compare them.

2006-12-07  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (lock_text), (show_review),
	(known_app_finished), (main): Show locked text with the INSENSITIVE color
	for the background. Move custom script output to the editable part of the
	report.

2006-12-06  Dennis Cranston  <dennis_cranston@yahoo.com>

	* src/bug-buddy.c: (bug_sent):  Convert button from cancel to 
	close after sending the bug report.

2006-12-05  Dennis Cranston  <dennis_cranston@yahoo.com>

	* src/bug-buddy.c: (known_app_finished):  Add the application 
	name, string fixes, and remove unnecessary line feeds, 
	(unknown_app_finished):  Add mnemonic and use a more descriptive
	label for the save button, and string fixes; (main): String fixes,
	and remove unnecessary line feeds.
	* src/bug-buddy.glade:  Clean up the user interface.

2006-12-05  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (search_forbidden_words), (show_review),
	(known_app_finished):
	* src/forbidden-words.h: Add some heuristitcs to detect sensitive
	data on the bug report. If they are present, mark the privacy label
	as bold and remark those words in the review window.

2006-12-05  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (lock_text), (edit_review): Lock some text in the
	report. Fix bug #382075

2006-12-05  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (network_error), (all_sent), (send_report),
	(known_app_finished), (unknown_app_finished), (main):
	* src/bug-buddy.glade:
	* src/bug-buddy.h: Remove status bar. Use progress bar to tell
	the user what bug-buddy is doing. Don't specify any initial size.

2006-12-03  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Post-release version bumping to 2.17.3

2006-12-03  Fernando Herrera  <fherrera@onirica.com>

	* NEWS: Release 2.17.2 ("3rd coin")

2006-12-03  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (send_report), (on_send_clicked):
	* src/bug-buddy.glade:
	* src/bugzilla.c: (bugzilla_create_report):
	* src/bugzilla.h: Hide review/button after submitting a bug.
	Fix a last-minute bug preventing the bug link to be shown (and
	crashing because the warning). Do not set priority/severity when
	submiting a non-crash. Fix bug #348863

2006-12-03  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Post-release version bumping to 2.17.2

2006-12-03  Fernando Herrera  <fherrera@onirica.com>

	* NEWS: Release 2.17.1 instead of wrong 2.17.0
	* po/LINGUAS: Add this file in order to get po files
	into the tarball.

2006-12-03  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Post-release version bumping to 2.17.1

2006-12-03  Fernando Herrera  <fherrera@onirica.com>

	* NEWS: Release 2.17.0 ("Coin, operated boy").

2006-12-03  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (on_send_clicked), (unknown_app_finished): Don't show
	review info/button when app does not belong to GNOME bugzilla and it's
	going just to be saved. Removed references to old expander.

2006-12-03  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (copy_review), (edit_review), (close_review),
	(show_review), (known_app_finished), (unknown_app_finished):
	* src/bug-buddy.glade: Use a new window for reviewing the report
	instead of an small window inside an expander. Add ability to copy
	the report and editing it.

2006-12-03  Fernando Herrera  <fherrera@onirica.com>

	* README.STABLE_BRANCH: Update info about branches

2006-12-02  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (help_callback), (main):
	* src/bug-buddy.glade: Add a Help button to bug-buddy.
	Patch by Brent Smith. Fix bug #353087

2006-12-02  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.glade: Added missing accelerators. Fix bug
	#351485.

2006-12-02  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.glade: Removed unused hbox.

2006-12-01  Ruben Vermeersch  <ruben@savanne.be>

	* src/gdb-cmd: Added "set backtracelimit 200", fixes bug #306465.

2006-12-01  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (load_icon), (main):
	* src/bugzilla.c: (add_bugzilla_application):
	* src/bugzilla.h: Don't load _all_ applications icons. Load only
	the needed one.

2006-11-28  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Bump version to 2.17.0
	* src/bug-buddy.c: (fill_custom_info), (main):
	* src/bugzilla.c: (add_bugzilla_application), (load_applets),
	(load_applications):
	* src/bugzilla.h: Add support for "X-GNOME-Bugzilla-ExtraInfoScript"
	and "bugzilla:extra_info_script" entries in .desktop and .server
	files. The output of that custom script is included on the bug-buddy
	report.

2006-11-28  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (known_app_finished), (main): Add an string
	aksing to fill the bug report in English. This does not break
	the string freeze, because if the string is not translated it's not 
	showed on the UI. Fix bug #361312. Patch by Claudio Saavedra and
	Mariano Suárez-Alvarez.

2006-11-28  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (known_app_finished): Disable send button if
	initial email address is empty. Fix bug #363782

2006-11-16  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: po/LINGUAS support. Luca Cavalli.
	Closes bug #337850.

2006-11-16  Kjartan Maraas  <kmaraas@gnome.org>

	* src/bug-buddy.c: (main): Remove markup from translatable
	message. Closes bug #360444.

2006-11-16  Kjartan Maraas  <kmaraas@gnome.org>

	* bug-buddy.schemas.in: Fix a typo. Closes bug #351049.
	Clytie Siddall and Rob Bradford again.

2006-11-16  Kjartan Maraas  <kmaraas@gnome.org>

	* src/bug-buddy.c: (link_callback), (bug_sent), (main):
	Re-commit the fix for 351006.

2006-11-16  Kjartan Maraas  <kmaraas@gnome.org>

	* src/bug-buddy.c: (link_callback), (bug_sent), (main):
	Revert until we branch.

2006-11-16  Kjartan Maraas  <kmaraas@gnome.org>

	* src/bug-buddy.c: (link_callback), (bug_sent), (main):
	Use consistent naming for Bug Buddy. Rob Bradford, Clytie
	Siddall. Closes bug #351006.

2006-11-16  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: 
	* src/Makefile.am:
	Fix mis-handling of libexecdir. Based on suggestions from
	dmacks at netspace org and Christian Persch. Closes
	bug #344029.

2006-11-16  Kjartan Maraas  <kmaraas@gnome.org>

	* src/bug-buddy.desktop.in.in: Add GTK to the category.
	Patch from Stephane LOEUILLET. Closes bug 328026.

2006-11-16  Brian Pepple  <bdpepple@ameritech.net>

	* Makefile.am (EXTRA_DIST): 
	* bug-buddy.spec.in
	Drop spec file. bug #121993.

2006-11-16  Kjartan Maraas  <kmaraas@gnome.org>

	* src/bug-buddy.c: (bug_sent), (set_proxy), (send_report),
	(show_pending_checkbox_if_pending), (main): Fix use of proxy
	username and password. Patch from Ali Sabil. Closese
	bug #354624. I also fixed a couple leaks in there.
	* src/eds-buddy.c: Fix compiler warnings.
	* src/verify-desktop-files.c: Same.

2006-11-11  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Bump version to 2.16.1

2006-11-11  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (known_app_finished), (unknown_app_finished),
	(fill_system_info), (fill_stderr_info), (main): Add more info to
	bug-buddy reports, including:
		- A11y enabled or not
		- uname full info
		- selinux enabled or not
		- .xsession-errors last lines
	Patch by Alexander Larsson. Fixes bug #362855

2006-10-26  Francisco Javier F. Serrador  <serrador@openshine.com>

	* src/bug-buddy.c: Mark some strings for translation.

2006-09-05  Fernando Herrera  <fherrera@onirica.com> 

	* NEWS:
	* configure.in: Release 2.16.0

2006-09-04 Fernando Herrera  <fherrera@onirica.com> 

	* src/bug-buddy.c: (focus_details), (unknown_app_finished): focus details
	view on an idle call, because doing just after expanding the expander
	crashes gtk+. Fix bug #353348

2006-09-04  Brent Smith  <gnome@nextreality.net>

	* Makefile.am: remove the docs subdirectory as the bug-buddy manual is
	out of date.
	* src/bug-buddy.desktop.in.in: Add a NoDisplay=true so that bug-buddy
	doesn't appear in the menus

2006-08-30  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Remove "no" from ALL_LINGUAS.

2006-08-21  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* configure.in: Release 2.15.92 ("Lumbago")

2006-08-21  Olav Vitters  <olav@bkor.dhs.org>

	* src/bug-buddy.glade: Mark _Send button as translatable. Patch by
	Kalle Vahlman. Fixes bug 352166.

2006-08-20  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (create_report_title): Remove extra "%".
	* src/bugzilla.c: (bugzilla_create_report): Remove debug_string

2006-08-18  Erdal Ronahi  <erdal.ronahi@gmail.com>
	
	* configure.in: Added (ku) Kurdish language

2006-08-17  Fernando Herrera  <fernando.herrera-de-las-heras@nokia.com>

	* src/bug-buddy.c: (set_proxy), (create_report_title),
	(send_report), (main):
	* src/bug-buddy.h:
	* src/bugzilla.c: (bugzilla_create_report):
	* src/bugzilla.h: Construct report title based on first words of
	the description. Added a missing NULL to g_object_set.

2006-08-15  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (send_report):
	* src/bugzilla.c: (bugzilla_create_report): Removed debug messages.

2006-08-15  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (main): If bugzilla product has not been found for
	the --package argument fallback to search for a binary.

2006-08-15  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.keys.in: removed. Fix #328479

2006-08-15  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.glade: Make gdb-text non-editable. Fix bug #350437.
	Make details view text wrap.
	* src/bug-buddy.c: (known_app_finished), (unknown_app_finished): set
	focus to the details text entry after finished colleting all info.

2006-08-15  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.glade: Fix spacing issues. Patch from Christian Persch.

2006-08-13  Brent Smith  <gnome@nextreality.net>

	* src/bug-buddy.menu.in: add a forward slash in the LegacyDir so 
	the path is actually correct; otherwise bug-buddy only finds applets.

2006-08-13  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (main):
	* src/bugzilla.c: (get_all_applications_from_dir),
	(load_applications): Show main window application before loading
	.dekstop files and run g_mainloop interactions while loading to
	make app update progress bar so it feels more responsive.

2006-08-13  Fernando Herrera  <fherrera@onirica.com>

	* configure.in:
	* src/bug-buddy.menu: Removed.
	* src/bug-buddy.menu.in: Added to use <LegacyDir> pointing
	to ${sharedir}/applications. Fix the problem with 
	~/.local/share/applications files not having bugzilla info.

2006-08-12  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>

	* src/Makefile.am:
	Remove applications_DATA from Makefile.am.

2006-08-11 Vladimer Sichinava  <vlsichinava@gmail.com>

	* configure.in: Added "ka" (Georgian) to ALL_LINGUAS

2006-08-09  Fernando Herrera  <fernando.herrera-de-las-heras@nokia.com>

	* src/bug-buddy.c: (main): Fix a double-free.

2006-08-01  Fernando Herrera  <fernando.herrera-de-las-heras@nokia.com>

	* src/bugzilla.c: (add_bugzilla_application), (load_applets),
	(load_applications), (bugzilla_create_report):
	* src/bugzilla.h: Port to GKeyFile API for reading desktop files
	removing deprecated libgnome stuff. Use untranslated application name
	for report title.

2006-08-01  Fernando Herrera  <fernando.herrera-de-las-heras@nokia.com>

	* configure.in: Require new libsoup. Bump version to 2.15.91
	* src/bug-buddy.c: (send_report): use new libsoup xml-rpc
	deserialization function.
	* src/xmlrpc.c:
	* src/Makefile.am: Removed xmlrpc.c file.

2006-07-24  Fernando Herrera  <fernando.herrera-de-las-heras@nokia.com>

	* NEWS:
	* configure.in: Release 2.15.90

2006-07-24  Fernando Herrera  <fernando.herrera-de-las-heras@nokia.com>

	* src/verify-desktop-files.c: (main): Initialize bonobo-activation.

2006-07-24  Fernando Herrera  <fernando.herrera-de-las-heras@nokia.com>

	* src/Makefile.am:
	* src/bug-buddy.c: (save_to_file), (network_error),
	(remove_pending_reports), (all_sent), (previous_sent), (bug_sent),
	(send_report), (show_pending_checkbox_if_pending),
	(known_app_finished), (main):
	* src/bug-buddy.glade: Added a check button for sending old bug
	reports not sent because no network connection. Load them and send
	them.
	* src/xmlrpc.c: (hacked_soup_xmlrpc_message_from_string): Ugly hack
	for deserializing a XML-RPC message until we got it into libsoup.

	Removed NetworkManager code at all.

2006-07-24  Fernando Herrera  <fernando.herrera-de-las-heras@nokia.com>

	* pixmaps/Makefile.am:
	* src/bug-buddy.c: (main):
	* src/bug-buddy.desktop.in.in: make application use theme-friendly
	icons. Patch from Brian Pepple. Fixes bug #337813

2006-07-24  Fernando Herrera  <fernando.herrera-de-las-heras@nokia.com>

	* src/bug-buddy.c: (main):
	* src/bug-buddy.glade:
	* src/bugzilla.c: (bugzilla_search_for_package):
	* src/bugzilla.h: Invoke bug-buddy only with --package=XXX command
	line to get it in non-crash/suggestion mode, so applications like
	evolution can invoke it from the help menu.

2006-07-24  Fernando Herrera  <fernando.herrera-de-las-heras@nokia.com>

	* README.STABLE_BRANCH: Update branch information.
	* configure.in: Don't use NetworkManager because it is giving lot
	of false positives (usually people with wired and wireless networks)
	* src/Makefile.am:
	* src/bugzilla.c: (add_bugzilla_application),
	(get_all_applications), (bugzilla_parse_response): Use own .menu file
	for reading all applications. Patch from Brent Smith, fixes #347422

2006-07-24  Fernando Herrera  <fernando.herrera-de-las-heras@nokia.com>

	* src/bug-buddy.c: (send_report):
	* src/bug-buddy.glade: Fix some typos pointed by Matthias Clasen
	Fixes bug #348064

2006-07-18  Guntupalli Karunakar  <karunakar@freedomink.org>

	* configure.in: Added "dz" (Dzongkha) to ALL_LINGUAS.

2006-07-03  Runa Bhattacharjee <runabh@gmail.com>

	* configure.in: Added Bengali India (bn_IN) to ALL_LINGUAS.

2006-06-30  Thierry Randrianiriana  <thierryR@cvs.gnome.org>

	* configure.in: Added Malagasy code 'mg' in ALL_LINGUAS.
	* po/mg.po: Added Malagasy translation.

2006-06-28  Frederic Peters  <fpeters@0d.be>

	* configure.in:
	* src/Makefile.am:
	* src/bug-buddy.c: Make libnm_glib optional.  Closes bug #346091.

2006-06-25  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Require libnm_glib to check for network
	* src/bug-buddy.c: (bug_sent), (save_to_file), (send_report),
	(on_send_clicked), (on_save_clicked), (main): If there is no network
	available save report to a file for sending next time. Resize fixes
	* src/bug-buddy.glade: Add mnemonic to Send
	* src/bugzilla.h: Remove an old GtkTreeIter

2006-06-18  Brent Smith  <gnome@nextreality.net>

	* src/bug-buddy.c: (unknown_app_finished): Mark the button text for
	translation

2006-06-18  Brent Smith  <gnome@nextreality.net>

	* src/proccess.c: (proccess_get_mem_state): Fix a mispelling, thanks
	to Baptiste Mille-Mathias for pointing this out.

2006-06-18  Brent Smith  <gnome@nextreality.net>

	* src/bug-buddy.c: (fill_include_file): initialize GError to NULL,
	otherwise we can get a crash

2006-06-18  Brent Smith  <gnome@nextreality.net>

	* src/gdb-buddy.c: remove debug define
	* src/gdb-buddy.h: added this missing file (needed to compile)

2006-06-18  Fernando Herrera  <fherrera@onirica.com>

	* src/Makefile.am:
	* src/bug-buddy.c: (gdb_insert_text), (known_app_finished),
	(gdb_finished), (save_to_file), (on_save_clicked),
	(unknown_app_finished), (gdb_finished_unknown_app),
	(close_callback), (fill_gnome_info), (fill_include_file), (main):
	* src/bug-buddy.glade:
	* src/bug-buddy.h:
	* src/bugzilla.c:
	* src/gdb-buddy.c: (gdb_stop), (gdb_handle_input), (gdb_destroy),
	(gdb_buddy_error_quark), (gdb_get_trace): Add support for saving
	traces from unknow applications. Patch from Brent Smith. Closes bug
	#164747.

	Add support again for the --include option, so crashes on gnome-python
	and Gtk# can invoke bug-buddy for sending traces to our bugzilla.

2006-06-13  Olav Vitters  <olav@bkor.dhs.org>

	* configure.in: Bump libsoup requirement to >= 2.2.94.

2006-06-12  Brent Smith  <gnome@nextreality.net>

	* NEWS:
	* configure.in:
	- Version 2.15.0

2006-06-12  Brent Smith  <gnome@nextreality.net>

	* po/POTFILES.in:
	* src/Makefile.am:
	Fix some build issues caused by the merge
	* src/bugzilla.c: (bugzilla_create_report):
	Submit bug reports to bugzilla.gnome.org instead of
	bugzilla-test.gnome.org

2006-06-12  Brent Smith  <gnome@nextreality.net>

	* Makefile.am:
	* NEWS:
	* TODO:
	* bug-buddy.schemas.in:
	* configure.in:
	* docs/ChangeLog:
	* docs/Makefile.am:
	* docs/vi/vi.po:
	* macros/ChangeLog:
	* po/dz.po:
	* po/ka.po:
	* po/ku.po:
	* po/mg.po:
	* po/no.po:
	* src/Makefile.am:
	* src/bb-marshal.list:
	* src/bug-buddy-core.desktop.in.in:
	* src/bug-buddy.applications:
	* src/bug-buddy.c: (on_gdb_stop_clicked), (stock_pixmap_buddy),
	(get_gnome_version_info), (update_progress_bar), (save_email),
	(link_callback), (bug_sent), (set_proxy), (send_report),
	(email_is_valid), (check_email), (on_send_clicked), (gdb_finished),
	(close_callback), (delete_callback), (fill_gnome_info),
	(fill_proccess_info), (main):
	* src/bug-buddy.glade:
	* src/bug-buddy.h:
	* src/bugzilla.c: (add_bugzilla_application), (load_applets),
	(bugzilla_error_quark), (load_applications),
	(bugzilla_parse_response), (bugzilla_create_report):
	* src/bugzilla.h:
	* src/cell-renderer-uri.c:
	* src/cell-renderer-uri.h:
	* src/config.c:
	* src/distribution.c: (get_distro_name_from_file),
	(get_distro_name):
	* src/distribution.h:
	* src/eds-buddy.c: (get_default_user_email):
	* src/eds-buddy.h:
	* src/gdb-buddy.c: (get_trace_from_gdb), (stop_gdb),
	(handle_gdb_input), (get_trace_from_pair):
	* src/md5-utils.c:
	* src/md5-utils.h:
	* src/proccess.c: (proccess_get_mem_state), (proccess_get_time):
	* src/proccess.h:
	* src/save-buddy.c:
	* src/save-buddy.h:
	* src/signal-buddy.c:
	* src/signal-buddy.h:
	* src/united-states-of-bug-buddy.c:
	* src/verify-desktop-files.c: (check_bugzilla_info), (main):
	Merged bug-buddy-xmlrpc branch to HEAD using the following commands on
	a fresh checkout of HEAD:
	cvs update -j HEAD -j BUG_BUDDY_2_13_0
	cvs update -j BUG_BUDDY_2_13_0 -j bug-buddy-xmlrpc
	cvs update -C po/*

2006-06-11  Brent Smith  <gnome@nextreality.net>

	* src/bug-buddy.c: (main):
	- Complain if --pid is not specified

2006-06-11  Brent Smith  <gnome@nextreality.net>

	* src/bug-buddy.c: (fill_gnome_info), (main):
	- If we can't get information about the GNOME version (probably due to a
	missing or bad installation of gnome-desktop), then spit out an error
	dialog
	- Don't gtk_widget_show() the main window until right before we start
	the main loop; this way we don't see the main_window when we call
	buddy_error() before gtk_main()

2006-06-11  Brent Smith  <gnome@nextreality.net>

	* src/bug-buddy.c: (main):
	Pop up an error dialog if --appname is not passed.

2006-06-11  Brent Smith  <gnome@nextreality.net>

	* src/bug-buddy.c: (main):
	* src/bug-buddy.h:
	Ported bug-buddy from Popt to GOption

2006-06-10  Brent Smith  <gnome@nextreality.net>

	* src/bug-buddy.c: (bug_sent), (send_report):
	Handle errors creating the report in send_report()
	* src/bugzilla.c: (bugzilla_parse_response),
	(bugzilla_create_report):
	More error handling using GError
	* src/bugzilla.h:
	Migrated some enumerations to the BUGZILLA_ERROR_* enums so there is
	only one set of error codes

2006-06-10  Brent Smith  <gnome@nextreality.net>

	* src/bug-buddy.c: (bug_sent), (send_report), (on_send_clicked),
	(gdb_finished), (close_callback):
	- Provide intelligent error messages based on the XML-RPC response
	- Many text changes
	- Hide the send button immediately after the user clicks it to prevent
	duplicate bugs from being submitted
	* src/bug-buddy.glade:
	- Make "app-image" vertically aligned to the top
	- Make "main-text" selectable and turn on label wrapping
	* src/bug-buddy.h:
	- Move GnomeVersionInfo to bugzilla.h header to remove circular
	dependency between header files
	* src/bugzilla.c: (bugzilla_error_quark),
	(bugzilla_parse_response):
	- Much better error handling of the XML-RPC response; Also, return a
	GError with information about the particular error message
	* src/bugzilla.h:
	- Added GError support structures for BUGZILLA_ERROR
	- Moved GnomeVersionInfo struct to here
	- provide function prototypes for all functions with extern linkage
	* src/distribution.h:
	- provide prototype for get_distro_name()
	* src/proccess.c:
	- Use proccess.h header file
	* src/proccess.h:
	- Add this header file to declare function prototypes

2006-06-04  Brent Smith  <gnome@nextreality.net>

	* src/bug-buddy.c: (link_callback): Display an error in a dialog box
	instead of stdout if the gnome_vfs_url_show call fails.

2006-06-04  Brent Smith  <gnome@nextreality.net>

	* src/bug-buddy.glade: Switch the order of the "Send" and "Close"
	button, so that "Send" is on the right.

2006-06-04  Brent Smith  <gnome@nextreality.net>

	* configure.in: Bump the required GTK+ version to 2.9 since we make
	use of the new GtkLinkButton
	* src/bug-buddy.c: (link_callback), (bug_sent), (send_report),
	(gdb_finished), (close_callback), (delete_callback), (main):
	Added a GtkLinkButton after the bug report has been sent so that
	the user can view their bug immediately by clicking on the button;
	Renamed the cancel-button to close-button and changed the names of the
	callbacks; Also fixed a couple of compiler warnings
	* src/bug-buddy.glade: Moved the "Send" button to the bottom in the
	button bar and removed the "Cancel" button in favor of a more
	simple scheme with just "Send" and "Close"; Also changed
	alignment of the button box so that it is always aligned at the
	bottom of the vertical box.

2006-06-02  Fernando Herrera  <fherrera@onirica.com>

	* Makefile.am:
	* bug-buddy.schemas.in: Re-added schemas, only with
	contact info.

2006-06-02  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Add eds dependency.
	* src/Makefile.am:
	* src/bug-buddy.c: (save_email), (bug_sent), (send_report),
	(email_is_valid), (check_email), (gdb_finished):
	* src/bug-buddy.glade: email address now is mandatory. Get it
	from gconf settings and if not available, from eds.

2006-05-31  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (send_report): Add text from the "What were you
	doing" entry to the report.

2006-05-31  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (set_proxy), (send_report): Use proxy from gconf
	settings when available.
	* src/bugzilla.c: (bugzilla_create_report): Remove password param
	* TODO: Add some stuff to do in the new branch

2006-05-30  Olav Vitters  <olav@bkor.dhs.org>

	* src/bugzilla.c: Add User-Agent header to HTTP request as requested
	by myself.

2006-05-30  Olav Vitters  <olav@bkor.dhs.org>

	* src/bugzilla.c: Change XML-RPC method call to match GNOME Bugzilla
	server changes. Also update URL.

2006-02-08  Fernando Herrera  <fherrera@onirica.com>

	* src/Makefile.am:
	* src/bug-buddy.c: (bug_sent), (send_report), (on_send_clicked),
	(gdb_finished), (main):
	* src/bug-buddy.glade:
	* src/bugzilla.c: (bugzilla_parse_response),
	(bugzilla_create_report): Added UI to include user comnmets about what
	he was doing and email address. Added a Send button. UI needs more love

	* src/verify-desktop-files.c: (check_bugzilla_info), (main): Added
	a little program to verify installed .desktop files for correct
	X-GNOME-Bugzilla-* stuff

2006-02-07  Fernando Herrera  <fherrera@onirica.com>

	* COPYING: Re-add notice about using only v2 of GPL that was
	removed accidentaly by some automake weirdness.
	* src/distribution.c: Use only v2 of GPL fot this code.

2006-02-07  Fernando Herrera  <fherrera@onirica.com>

	* configure.in:
	* src/Makefile.am:
	* src/bug-buddy.c: (send_report), (gdb_finished),
	(fill_gnome_info), (fill_proccess_info), (main):
	* src/bug-buddy.glade:
	* src/bugzilla.c: (bugzilla_send_report):
	* src/proccess.c: (proccess_get_mem_state), (proccess_get_time): Change
	windows main title. Add mem and cpu info for the crashed procces from
	libgtop.

2006-02-06  Fernando Herrera  <fherrera@onirica.com>

	* configure.in:
	* src/bug-buddy.c: (get_gnome_version_info), (bug_sent),
	(send_report), (gdb_finished):
	* src/bug-buddy.glade:
	* src/bug-buddy.h:
	* src/bugzilla.c: (got_response), (bugzilla_send_report):
	* src/bugzilla.h: Implement the XML-RPC sending. Currenty it uses
	hard-coded bugzilla URL and username/password. Don't try to play
	with it as bugzilla-test is IP-protected :)

2006-02-03  Fernando Herrera  <fherrera@onirica.com>

	* Makefile.am:
	* configure.in:
	* po/POTFILES.in:
	* src/Makefile.am:
	* src/bb-marshal.list:
	* src/bug-buddy-core.desktop.in.in:
	* src/bug-buddy.applications:
	* src/bug-buddy.c: (on_gdb_stop_clicked), (get_gnome_version_info),
	(update_progress_bar), (send_report), (gdb_finished),
	(cancel_callback), (delete_callback), (main):
	* src/bug-buddy.glade:
	* src/bug-buddy.h:
	* src/bugzilla.c: (add_bugzilla_application), (load_applets),
	(load_applications), (add_application):
	* src/bugzilla.h:
	* src/cell-renderer-uri.c:
	* src/cell-renderer-uri.h:
	* src/config.c:
	* src/distribution.c: (get_distro_name_from_file),
	(get_distro_name):
	* src/gdb-buddy.c: (get_trace_from_gdb), (stop_gdb),
	(handle_gdb_input), (get_trace_from_pair):
	* src/md5-utils.c:
	* src/md5-utils.h:
	* src/save-buddy.c:
	* src/save-buddy.h:
	* src/signal-buddy.c:
	* src/signal-buddy.h:
	* src/united-states-of-bug-buddy.c: Big rewrite. Only one window. Only one
	click for submit a bug. Removed all the selections stuff. Bug Buddy now
	only reports crashes. Currently the XML-RPC sending stuff is missing,
	so it does not send anything yet.

2006-01-06  Fernando Herrera  <fherrera@onirica.com>

	* src/bugzilla.c: update treeview headers when switching
	beetwen applcations/products. Patch from Matthias Clasen
	(Closes bug #317530)

2006-01-06  Fernando Herrera  <fherrera@onirica.com>

	* src/distribution.{c,h}: Fix the LSB distro detection

2006-01-05  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.glade: Center main window. Patch from
	Christian Neumair. Closes bug #321297

2006-01-05  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.glade: Set the GnomeFileEntry in
	save mode for saving the bug report (Closes bug #323967)

2006-01-05  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.glade: Lot of HIGification by
	Christian Persch. Closes bug #325650

2006-01-05  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Bump version to 2.13.0
	* src/bugzilla.c: workaround for gnome-vfs bug

2005-12-28  Abel Cheung  <maddog@linuxhall.org>

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

2005-11-30  Fernando Herrera  <fherrera@onirica.com>

	* configure.in:
	* NEWS: Release 2.12.2 ("Il vulcano")

2005-10-28  Simos Xenitellis  <simos@gnome.org>

	* configure.in: Added ky (Kirghiz) to ALL_LINGUAS.

2005-10-01  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* configure.in: Release 2.12.1 "i Party 7"

2005-10-01  Fernando Herrera  <fherrera@onirica.com>

	* src/bugzilla.c: Remove duplicate entries. Patch
	from Matthias Clasen. Fixes bug #317524

2005-09-06  Fernando Herrera  <fherrera@onirica.com>

	* NEWS: Release 2.12.0 ("My fatal fate")

2005-08-23  Vincent Untz  <vuntz@gnome.org>

	* src/united-states-of-bug-buddy.c: don't mark the copyright string as
	translatable

2005-08-23  Vincent Untz  <vuntz@gnome.org>

	* configure.in: post-release bump to 2.12.0.

==================== 2.11.92 ====================

2005-08-23  Vincent Untz  <vuntz@gnome.org>

	* NEWS:
	* configure.in: version 2.9.92.

2005-07-19  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (init_gnome_version_stuff):
	* src/bug-buddy.h:
	* src/bugzilla.c: (gify), (load_mostfreq_xml), (load_config_xml),
	(load_products_xml):
	* src/cell-renderer-uri.c:
	* src/distribution.c:
	* src/gdb-buddy.c:
	* src/gnome-crash.c:
	* src/libglade-buddy.h:
	* src/md5-utils.c: (md5_get_digest):
	* src/save-buddy.c:
	* src/united-states-of-bug-buddy.c: (on_druid_about_clicked),
	(email_is_valid): lot of (all) gcc4 and misc warning fixed.
	Ported to GtkAboutDialog. Patch from Kjartan Maraas. Closes
	bug #300065

2005-07-19  Fernando Herrera  <fherrera@onirica.com>

	* configure.in:
	* src/bug-buddy.c: (update_crash_type), (init_ui), (delete_me),
	(main):
	* src/bug-buddy.glade:
	* src/bugzilla.c: (update_severity), (update_version),
	(add_severity), (update_version_menu),
	(bugzilla_product_add_components_to_clist),
	(bugzilla_add_mostfreq):
	* src/united-states-of-bug-buddy.c: (select_version),
	(select_severity): Port to GtkComboBox. Patch by Michael Gossard.
	Fixes #300065 and #130288

2005-07-19  Michael Gossard <michael.gossard@free.fr>

	* src/bugzilla.c : (sort_mostfreq_list),
	(create_mostfreq_list), (bugzilla_add_mostfreq) sort frequently reported
	bugs list by ID, product, component, description. (fix bug #171935)

2005-07-19  Fernando Herrera  <fherrera@onirica.com>

	* src/distribution.c: (get_lines_from_file), (get_lsb_version),
	(get_redhat_version), (get_turbolinux_version),
	(get_debian_version):
	* src/distribution.h: Reworked the code to use fancy g_file functions.
	Add support for reading LSB files (ie: Ubuntu distro support). Closes
	bug #168379

2005-07-19  Fernando Herrera  <fherrera@onirica.com>

	* src/united-states-of-bug-buddy.c: Include signal.h. Patch by
	Dan Winship, closes #160544

2005-07-18  Danilo Šegan  <danilo@gnome.org>

	* docs/sr/sr.po: Updated translation not to break the build (until
	I fix xml2po).

2005-07-18  Danilo Šegan  <danilo@gnome.org>

	* docs/Makefile.am (DOC_LINGUAS): Added "sr".

	* docs/sr/sr.po: Added.

2005-07-11  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Post release version bump
	* docs/C/bug-buddy.xml: Fix docs build
	* src/save-buddy.c: (bb_write_buffer_to_fd): Pass 0
	as arg 3 to waitpid() not NULL pointer.

2005-06-04  Swapnil Hajare  <dreamil@gmail.com>

	* configure.in: added entry for Marathi language (mr) in ALL_LINGUAS

2005-05-18  Olav Vitters <olav@bkor.dhs.org>

	* src/bugzilla.c: (load_applications): Initialize prev_name variable
	to NULL to prevent crash on startup. Patch from <rwahl@gmx.de>. Closes
	bug #172874.

2005-05-04  Fernando Herrera  <fernando.herrera@tecsidel.es>

	* src/bugzilla.c: (load_applications): Use gmenu API to fix
	build. Patch by Elijah Newren. Closes bug #302769

2005-04-11  Mark McLoughlin  <mark@skynet.ie>

	* src/Makefile.am, src/bugzilla.c: update for
	libgnome-menu API renaming.

2005-04-06  Mark McLoughlin  <mark@skynet.ie>

	* src/bugzilla.c: (get_all_applications): update for
	slight change in menu_tree_lookup() API.

2005-04-01  Adi Attar  <aattar@cvs.gnome.org>

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

2005-03-31  Steve Murphy  <murf@e-tools.com>

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

2005-03-30  Christian Rose  <menthos@menthos.com>

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

2005-03-23  Fernando Herrera  <fernando.herrera@tecsidel.es>

	* configure.in: require libgnomemenu >= 2.11.1.
	* src/bugzilla.c: (get_all_applications_from_alias),
	(get_all_applications_from_dir), (get_all_applications),
	(load_applications): Port to the new libgnomemenu API. Patch
	by Mark McLoughlin <markmc@redhat.com>

2005-03-23  Fernando Herrera  <fernando.herrera@tecsidel.es>

	* README.STABLE_BRANCH: Branched. HEAD is now for GNOME 2.11
	* configure.in: Postrelease version bumpig to 2.11.0

2005-03-07  Fernando Herrera  <fernando.herrera@tecsidel.es>

	* NEWS:
	* configure.in: Release 2.10.0 ("La movida")

2005-02-28  Fernando Herrera  <fernando.herrera@tecsidel.es>

	* NEWS:
	* configure.in: Release 2.9.92 ("Magical Fenix")

2005-02-11  Maxim V. Dziumanenko <mvd@mylinux.com.ua>

	* docs/uk/bug-buddy.xml:
	* docs/uk/legal.xml:
	* docs/uk/.cvsignore: Added Ukrainian translation of the documentation.

2005-02-11  Shaun McCance  <shaunm@gnome.org>

	* docs/bug-buddy.omf.in
	- Added missing file

2005-02-10  Fernando Herrera  <fernando.herrera@tecsidel.es>

	* NEWS:
	* configure.in: Release 2.9.91 ("Hänsel und Gretel")

2005-02-10  Fernando Herrera  <fernando.herrera@tecsidel.es>

	* configure.in:
	* src/Makefile.am: Require gnome-menus.
	* src/bugzilla.c: (bugzilla_application_new), (load_applets),
	(compare_applications), (get_all_applications_from_dir),
	(get_all_applications), (load_applications): Use libmenu to get all
	applications instead of removed "applications-all-users:///" gnome-vfs
	method. Don't require applets to have defined (panel:category), as
	it seems to be reomved for GNOME 2.10. Load icons code fixes.

2005-01-29  Fernando Herrera  <fherrera@onirica.com>

	* Makefile.am:
	* autogen.sh:
	* configure.in:
	* src/Makefile.am: Lot of autofoo updates by Shaun McCance and me.
	* docs/C/bug-buddy.xml: Updated docs by Shaun McCance.
	* docs/C/Makefile.am:
	* docs/C/bug-buddy-C.omf:
	* docs/Makefile.am:
	* docs/de/Makefile.am:
	* docs/de/bug-buddy-de.omf:
	* docs/es/Makefile.am:
	* docs/es/bug-buddy-es.omf:
	* docs/fr/Makefile.am:
	* docs/fr/bug-buddy-fr.omf:
	* docs/it/Makefile.am:
	* docs/it/bug-buddy-it.omf:
	* docs/ja/Makefile.am:
	* docs/ja/bug-buddy-ja.omf:
	* docs/ko/Makefile.am:
	* docs/ko/bug-buddy-ko.omf:
	* docs/sv/Makefile.am:
	* docs/sv/bug-buddy-sv.omf:
	* docs/zh_CN/Makefile.am:
	* docs/zh_CN/bug-buddy-zh_CN.omf:
	* docs/zh_HK/Makefile.am:
	* docs/zh_HK/bug-buddy-zh_HK.omf:
	* docs/zh_TW/Makefile.am:
	* docs/zh_TW/bug-buddy-zh_TW.omf: Files removed from CVS, they are
	now autogenerated from gdu.

2005-01-24  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Post release version bumping.

2005-01-24  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* configure.in: Released 2.9.3 "Wild Rose"

2005-01-07  Kjartan Maraas  <kmaraas@gnome.org>

	* src/bug-buddy.glade1: Remove
	* src/bug-buddy.gladep: Remove

2004-11-30  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* configure.in: Released 2.9.2 "Tres Jotas"

2004-11-21  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (init_ui):
	* src/bug-buddy.h:
	* src/united-states-of-bug-buddy.c: (submit_ok): Added a kill command line
	argument for killing that pid after the bug report is sent.

2004-11-20  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (init_ui), (main):
	* src/bug-buddy.glade:
	* src/bug-buddy.h:
	* src/united-states-of-bug-buddy.c: (mail_write_template),
	(on_druid_about_clicked), (enter_intro), (done_intro), (done_gdb),
	(enter_desc): Skip the product/component pages if the application is
	passed on the command line (also show its name in the intro page).
	Use the command line option --include-file to include a file in the
	bug description.

2004-11-13  Fernando Herrera  <fherrera@onirica.com>

	* README.STABLE_BRANCH: Branched for gnome-2-8
	* configure.in: Bump version to 2.9.0

2004-11-11  Fernando Herrera  <fherrera@onirica.com>

	* docs/C/bug-buddy-C.omf: Fix omf file to validate against
	scrollkeeper-omf.dtd. Patch from Joe Marcus Clarke and
	David Weinehall (fix bug #157817 and debian 280641)

2004-09-24  Pawan Chitrakar  <pawan@nplinux.org>

	* configure.in: Added ne "Nepali" in ALL_LINGUAS

2004-09-22  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Post release version bumping to 2.8.1
	* src/gdb-buddy.c: (get_trace_from_pair): Fix search for binaries
	in libexec dir.

2004-09-12  Fernando Herrera  <fherrera@onirica.com>

	* NEWS: Release 2.8.0 "Chicote"

2004-09-12  Fernando Herrera  <fherrera@onirica.com>

	* docs/Makefile.am: Disable build of outdated docs.
	* src/bug-buddy.glade:
	* src/united-states-of-bug-buddy.c: (on_druid_help_clicked),
	(on_druid_about_clicked): Enable help button and point help to
	the right section. Patch by Shaun McCance (Fix bug #135573)

2004-09-11  Shaun McCance  <shaunm@gnome.org>

	* docs/C/bug-buddy-C.omf:
	* docs/C/bug-buddy.xml:
	- Updates for 2.8

2004-09-12  Fernando Herrera  <fherrera@onirica.com>

	* configure.in:
	* po/POTFILES.in:
	* src/Makefile.am:
	* src/bug-buddy-core.desktop.in.in:
	* src/bug-buddy.desktop.in.in: Install a new desktop file to handle
	the application/x-core MIME type correctly (it is open with --core
	command line option only).

2004-09-11  Shaun McCance  <shaunm@gnome.org>

	* docs/C/bug-buddy-C.omf:
	* docs/de/bug-buddy-de.omf:
	* docs/es/bug-buddy-es.omf:
	* docs/fr/bug-buddy-fr.omf:
	* docs/it/bug-buddy-it.omf:
	* docs/ja/bug-buddy-ja.omf:
	* docs/ko/bug-buddy-ko.omf:
	* docs/sv/bug-buddy-sv.omf:
	* docs/zh_CN/bug-buddy-zh_CN.omf:
	* docs/zh_HK/bug-buddy-zh_HK.omf:
	* docs/zh_TW/bug-buddy-zh_TW.omf:
	- Various OMF fixes

2004-09-08  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Post release version bumping to 2.8.0

2004-09-08  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* bugzilla/gnome/products:
	* bugzilla/ximian/mostfreq:
	* bugzilla/ximian/products:
	* configure.in: Release 2.7.92 (RC1) "Ojos verdes"

2004-09-03  Gora Mohanty  <gmohanty@cvs.gnome.org>

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

2004-08-21  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* bugzilla/gnome/mostfreq:
	* bugzilla/gnome/products:
	* bugzilla/ximian/products:
	* configure.in: Release 2.7.91 (Beta 2) "budyboop"

2004-08-16  Christian Rose  <menthos@menthos.com>

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

2004-08-15  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Added nb to ALL_LINGUAS.

2004-07-21  Ray Strode  <rstrode@redhat.com>
	* bug-buddy/src/bug-buddy.desktop.in.in: Add MimeType line
	to desktop file new mime sytem.

2004-06-01  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Post release version bumping to 2.7.1

2004-06-01  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* bugzilla/gnome/config:
	* bugzilla/gnome/mostfreq:
	* bugzilla/gnome/products:
	* bugzilla/ximian/config:
	* bugzilla/ximian/mostfreq:
	* bugzilla/ximian/products: Release 2.7.0 "Lully"

2004-04-15  Simon Frankau  <sgf@arbitrary.name>

	* src/united-states-of-bug-buddy.c: (druid_set_sensitive):
	Removed.
	* src/united-states-of-bug-buddy.c: (email_is_valid): Rewritten
	* src/united-states-of-bug-buddy.c: Various minor tidy-ups.

2004-04-15  Simon Frankau  <sgf@arbitrary.name>

	* src/bug-buddy.c: (main):
	* src/bug-buddy.h:
	* src/bugzilla.c: (load_bugzilla_xml):
	* src/united-states-of-bug-buddy.c: (druid_draw_state),
	(on_druid_prev_clicked), (druid_set_state),
	(on_druid_next_clicked), (on_druid_cancel_clicked), (enter_intro),
	(done_intro), (enter_gdb), (done_gdb), (enter_product),
	(done_product), (enter_component), (done_component),
	(enter_mostfreq), (done_mostfreq), (enter_desc), (done_desc),
	(enter_email_config), (done_email_config), (enter_email),
	(done_email), (enter_finished), (done_finished): : Druid tab state
	machine rearranged so that the code for each state can be localised within
	the source.


2004-04-15  Simon Frankau  <sgf@arbitrary.name>

	* src/bug-buddy.c: (init_ui):  Warning added if a pid is given without
	application name.
	* src/bug-buddy.h:
	* src/gdb-buddy.c: (start_animation), (stop_animation), (stop_gdb),
	(get_trace_from_pair): Rewritten to tidy freeing
	of strings (memory lead fixed), with some error messages added.

2004-04-15  Simon Frankau  <sgf@arbitrary.name>

	* src/bug-buddy.c: (on_gdb_go_clicked), (on_gdb_stop_clicked),
	(on_list_button_press_event), (main):
	* src/bug-buddy.h:
	* src/bugzilla.c: (async_update), (end_bugzilla_download),
	(start_bugzilla_download), (products_list_load):
	* src/gdb-buddy.c: (start_gdb), (get_trace_from_pair):
	* src/united-states-of-bug-buddy.c: (druid_set_state): remove
	druid_data.explicit_dirty, druid_data.download_in_progress.

2004-04-15  Simon Frankau  <sgf@arbitrary.name>

	* src/bug-buddy.c: (buddy_error), (on_gdb_save_clicked), (main):
	* src/bug-buddy.h:
	* src/bugzilla.c: (load_bugzillas):
	* src/gdb-buddy.c: (get_trace_from_core), (get_trace_from_pair):
	* src/united-states-of-bug-buddy.c: (mail_config_page_sendmail_ok),
	(mail_config_page_gnome_ok), (desc_page_ok), (submit_ok),
	(on_druid_next_clicked): use new buddy_error function.

2004-04-15  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (init_ui): Fix two strings. Fix bug #140053

2004-04-15  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.glade: add scroll bar to description bug text box if
	needed. Fix bug #137540

2004-04-15  Fernando Herrera  <fherrera@onirica.com>

	* bug-buddy.schemas.in:
	* src/united-states-of-bug-buddy.c: (druid_set_state): Fix wrong
	strings.

2004-04-15  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.glade: s/Next/Forward/ . Fix bug #136191, patch from
	Ben Sutton

2004-04-13  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: Bump version to 2.7.0

2004-04-12  Fernando Herrera  <fherrera@onirica.com>

	* README.STABLE_BRANCH: update branch info.
	* configure.in: Post release version bumping to 2.6.1

2004-04-09  Guntupalli Karunakar  <karunakar@freedomink.org>

	* configure.in: Added "gu" (Gujarati) to ALL_LINGUAS.

2004-04-03  Samúel Jón Gunnarsson  <sammi@techattack.nu>

	* is.po: Added "is" to ALL_LINGUAS.

2004-03-22  Fernando Herrera  <fherrera@onirica.com>

	* src/Makefile.am: (Fix a compiler issue, bug #135625)
	* NEWS:
	* bugzilla/gnome/products:
	* configure.in: Release 2.6.0 "Almodóvar did it again!"

2004-03-20  Guntupalli Karunakar  <karunakar@freedomink.org>

	* configure.in: Added 'pa' for Punjabi to ALL_LINGUAS.

2004-03-17  Gareth Owen

	* configure.in: Added en_GB to ALL_LINGUAS

2004-03-16  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* bugzilla/gnome/products:
	* configure.in: Release 2.5.92 "We are the champions"

2004-03-16  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c:
	* src/bug-buddy.glade: set the filechooser in save mode with the new
	property.
	* src/united-states-of-bug-buddy.c: remove an unused function.

2004-03-15  Glynn Foster  <glynn.foster@sun.com>

	* configure.in: Add docs to build.
	* docs/Makefile.am: Add docs to build.
	* docs/*: Put back localized online help for de, fr, es, it, ja, ko, sv,
	zh_TW, zh_CN and zh_HK from Sun's translation team - may be a little
	outdated, but it's a good start to update them from.

2004-02-25  Fernando Herrera  <fherrera@onirica.com>

	* src/united-states-of-bug-buddy.c: (druid_set_state): Disable Back
	button when debugging is the first page. Fix #135343

2004-02-24  Fernando Herrera  <fherrera@onirica.com>

	* src/Makefile.am:
	* src/bug-buddy.applications:
	* src/bug-buddy.keys.in: Update to application/x-core MIME type from the
	new share-mime-info
	* src/bug-buddy.mime: removed

2004-02-24  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* bugzilla/gnome/products:
	* configure.in: Release 2.5.90 "I love it when a plan comes
	together"

2004-02-24  Fernando Herrera  <fherrera@onirica.com>

	* src/united-states-of-bug-buddy.c: (check_old_version),
	(on_druid_next_clicked): Only check old version once (Fix #134167). If
	failing getting application product from application name, load the product
	list.

2004-02-24  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.glade:
	* src/united-states-of-bug-buddy.c:
	(on_email_file_gnome_entry_browse_clicked): Set the FileChooser in
	save mode for saving bug reports.

2004-02-24  Fernando Herrera  <fherrera@onirica.com>

	* src/united-states-of-bug-buddy.c: (on_druid_cancel_clicked): Remove
	confirmation dialog after the UI-review recomendation.

2004-02-24  Fernando Herrera  <fherrera@onirica.com>

	* src/bugzilla.c: (generate_email_text): Don't free version string.
	Fix #126449. Patch from Simon Frankau

2004-02-21  Christian Rose  <menthos@menthos.com>

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

2004-02-15  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* bugzilla/gnome/products:
	* configure.in: Release 2.5.3, "No name release"

2004-02-11  Fernando Herrera  <fherrera@onirica.com>

	* src/Makefile.am: add -export-dynamic. Fix bug #132174. Patch from
	Vincent Berger

2004-02-11  Fernando Herrera  <fherrera@onirica.com>

	* gentool/gentool.m4: Add quotes AC_PROG_GENTOOL. Patch from Alexander
	Winston. Fix bug #133150

2004-02-11  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.glade: Use GtkFileChooser in GnomeFileEntries

2004-01-20  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (init_gnome_version_stuff): read GNOME date
	* src/bug-buddy.h:
	* src/united-states-of-bug-buddy.c: (check_old_version),
	(druid_set_state): if GNOME version is older than 6 months suggest
	upgrading.

2004-01-20  Fernando Herrera  <fherrera@onirica.com>

	* Makefile.am: Remove OrigTree
	* configure.in: requiere intltool 0.29

2004-01-20  Fernando Herrera  <fherrera@onirica.com>

	* bug-buddy.schemas.in: Fix some typos. Fix bug #131876.

2004-01-20  Jason Leach  <leach@wam.umd.edu>

	* Makefile.am (install-data-local): builddir != srcdir fix.

2004-01-06  Vincent Untz  <vincent@vuntz.net>

	* src/bug-buddy.desktop.in.in: changed the comment to be less
	GNOME-specific (proposition by Luis Villa). Fix bug #89356.

2004-01-03  Fernando Herrera  <fherrera@onirica.com>

	* Makefile.am: added intltool-modules/XML/Parser/Style/OrigTree.pm
	* src/bugzilla.c: (load_bugzilla): store and free string returned by
	gnome_config_get_string

2004-01-02  Robert Sedak  <robert.sedak@sk.htnet.hr>

	* configure.in: Added "hr" in ALL_LINGUAS .

2003-12-26  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* bugzilla/gnome/products:
	* configure.in: Release 2.5.2, "Franco Corelli"

2003-12-25  Fernando Herrera  <fherrera@onirica.com>

	* Makefile.am:
	* bug-buddy.schemas.in:
	* configure.in:
	* po/POTFILES.in: Schema file stuff
	* src/bug-buddy.c: (init_ui), (delete_me):
	* src/bug-buddy.glade:
	* src/bug-buddy.h:
	* src/config.c: (entry_changed_notify), (config_entry_commit),
	(init_gconf_stuff):
	* src/united-states-of-bug-buddy.c: (on_druid_cancel_clicked): Port
	bug-buddy configuration to gconf

2003-12-14  Fernando Herrera  <fherrera@onirica.com>

	* src/united-states-of-bug-buddy.c: (on_druid_about_clicked): Add
	support for translators in the about dialog.

2003-12-14  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (main):
	* src/united-states-of-bug-buddy.c: (on_druid_about_clicked): Use
	gtk_icon_theme_* to load icons.

2003-12-13  Fernando Herrera  <fherrera@onirica.com>

	* src/bugzilla.c: (load_products_xml): Don't add closed products.
	* src/united-states-of-bug-buddy.c: (on_druid_next_clicked): Refuse
	selected application if its bugzilla info doesn't match with any
	bugzilla xml info (a non-existant, mistyped or closed
	product/component in .desktop file). Fix bug #123435

2003-12-13  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.glade:
	* src/united-states-of-bug-buddy.c: (on_druid_next_clicked): add
	context to component selection page (Application or product
	selected). Fix bug #128349. Also remove code for unknown applications

2003-12-13  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (on_applications_products_changed), (init_ui):
	Switch between apps and products.
	* src/bug-buddy.glade: Remove toggle button and no product/app
	checkbox. Use two radio buttons for switching between apps and
	products.
	* src/config.c: (save_config), (load_config): Don't load/store
	applications/products view setting. Show apps by default
	* src/libglade-buddy.h: Change app/products function
	* src/bugzilla.c: (generate_email_text):
	* src/united-states-of-bug-buddy.c: (on_druid_prev_clicked),
	(on_druid_next_clicked): Remove email generation and warning for
	unknown apps.
	This closes bug #129137

2003-12-13  Fernando Herrera  <fherrera@onirica.com>

	* src/bugzilla.c: (load_applets), (visit_cb): Show only applications
	and applets with known bugzilla info (Fixes #129138)

2003-12-12  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (on_gdb_save_clicked): remove hard coded
	GtkFileChooser size

2003-12-12  Fernando Herrera  <fherrera@onirica.com>

	* src/distribution.c: (get_irix_version): Report "Irix"
	* src/distribution.h: add support for Fedora and Gentoo

2003-12-11  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.h:
	* src/united-states-of-bug-buddy.c: (druid_set_state),
	(on_druid_next_clicked): preserve bug description if filled

2003-12-09  Fernando Herrera  <fherrera@onirica.com>

	* bugzilla/gnome/products:
	* configure.in:
	* NEWS: Update for 2.5.1 release ("Mi mamáprefiere GNOME")

2003-12-04  Jan Arne Petersen  <jpetersen@uni-bonn.de>

	* src/bug-buddy.c: (on_gdb_save_clicked): Use GtkFileChooser
	instead of GtkFileSelection.

2003-12-04  Fernando Herrera  <fherrera@onirica.com>

	* src/bugzilla.c: (load_products_xml): Fix a bug introduced when
	fixing #125396 that prevented the component list to be loaded.

2003-11-09  Fernando Herrera  <fherrera@onirica.com>

	* bugzilla/gnome/products:
	* NEWS: Update for 2.5.0 release ("He tardado 10 minutos en
	atarme las botas")

2003-11-06  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (init_gnome_version_stuff):
	* src/bugzilla.c: (load_products_xml), (get_xml_file): Fix some
	leaks, patch from Kjartan Maraas (fix bug #125396)

2003-11-06  Fernando Herrera  <fherrera@onirica.com>

	* README.STABLE_BRANCH:
	* configure.in: gnome 2.5 branch info

2003-11-06 Sivaiah N  <snallagatla@novell.com>

	* configure.in:
	* src/Makefile.am: disable deprecations by
	default, added a --enable-deprecations option to enable them.

2003-10-06  Vincent Untz  <vincent@vuntz.net>

	* src/bug-buddy.c: (main) don't show up to three windows at a time when
	updating the product databases. And we don't need to tell the user the
	update was successful (it's supposed to be successful).
	Fix bug #110817.

2003-10-06  Vincent Untz  <vincent@vuntz.net>

	* src/gdb-buddy.c: (get_trace_from_pair) fix crash when debugging a
	program not in the path and search in GNOME2_PATH instead of
	GNOME_PATH. Should fix bug #115147.

2003-09-17  Fatih Demir <kabalak@gtranslator.org>

	* configure.in: Added "ta" (Tamil) to the languages' list.

2003-09-01  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* bugzilla/gnome/products:
	* configure.in: Update for 2.4.0 Release ("Galactic")

2003-08-25  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* bugzilla/gnome/products:
	* configure.in: Updte for 2.3.5 Release ("La Espiral")

2003-08-14  Guntupalli Karunakar  <karunakar@freedomink.org>

	* configure.in: Added "hi" in ALL_LINGUAS.

2003-08-03  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* bugzilla/gnome/products:
	* bugzilla/ximian/mostfreq:
	* bugzilla/ximian/products:
	* configure.in: Update for 2.3.4 Release ("Pinochio")

2003-07-23 Fernando Herrera  <fherrera@onirica.com>

	* src/bugzilla.c: (load_products_xml): Workaround for a bugzilla
	create-products-xml bug, that made bug-buddy crash.

2003-07-21  Fernando Herrera  <fherrera@onirica.com>

	* src/bugzilla.c: (generate_email_text): Fix a str free (bug #117806)
	* src/united-states-of-bug-buddy.c: (select_version),
	(on_druid_next_clicked): Fix a crash (bug #117809). Fill version entry
	with unspecified if version is not know after selecting a product
	(bug #117934)

2003-07-18  Fernando Herrera  <fherrera@onirica.com>

	* src/united-states-of-bug-buddy.c: (on_druid_about_clicked):
	Unify copyright strings. Patch from Christian Neumair. Fixes #101725

2003-07-15  Fernando Herrera  <fherrera@onirica.com>

	* configure.in
	* NEWS:
	* bugzilla/gnome/mostfreq:
	* bugzilla/gnome/products:
	* bugzilla/ximian/config:
	* bugzilla/ximian/mostfreq:
	* bugzilla/ximian/products: Update for 2.3.3 Release ("I've given up
	smoking")

2003-07-15  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (init_ui):
	* src/bug-buddy.glade:
	* src/bug-buddy.h:
	* src/bugzilla.h: Use a combo for version entry.
	* src/bugzilla.c: (update_version), (update_version_menu), (generate_email_text):
	* src/united-states-of-bug-buddy.c: (select_version),
	(select_severity), (on_druid_next_clicked): Select version and severity.
	* src/bugzilla.c: (load_products_xml), (load_bugzilla_xml_file). If not downloading
	new bugzilla files, compare dates of ~/.gnome/bug-buddy.d/* and prefix/share/bug-buddy/*
	to use the most recent. Use again applications-all-users because gnome-vfs bug was fixed.

2003-07-14  Fernando Herrera  <fherrera@onirica.com>

	* src/gdb-buddy.c: (handle_gdb_input): convert gdb output from ISO-8859-1
	(the charset gdb is using) to UTF-8 using a fallback, preventing incomplete
	traces with non-convertible chars.

2003-06-28  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (init_ui):
	* src/bug-buddy.h:
	* src/bugzilla.c: (generate_email_text):
	* src/united-states-of-bug-buddy.c: (mail_write_template),
	(mail_lock_text), (druid_set_state): Use differents templates for each
	kind of bug report. Fix also a crash when reporting non-bugzilla bugs
	without the "Description:" field

2003-06-26  Fernando Herrera  <fherrera@onirica.com>

	* src/bugzilla.c: (generate_email_text): s/Gnome
	distributor/Gnome-Distributor/ as spaces in headers break halloween
	pasrsing at submit@bugs.gnome.org. Thanks to Andrew Sobala for
	pointing this. (Fix #116058)

2003-06-15  Taneem Ahmed  <taneem@eyetap.org>

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

2003-06-10  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.glade: Some HIG changes. Mostly accelerators, padding,
	and text corrections.
	* src/united-states-of-bug-buddy.c: (submit_ok): Fix a typo, remove
	confirmation dialog before submiting a bug.

2003-06-10  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.glade:
	* src/united-states-of-bug-buddy.c: (submit_ok): String changes and
	corrections from Luis Villa (bug #114822)

2003-06-09  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* bugzilla/gnome/products:
	* bugzilla/ximian/mostfreq:
	* bugzilla/ximian/products: Update for 2.3.2 Release ("In the
	Neighbourhood")

2003-06-09  Fernando Herrera  <fherrera@onirica.com>

	* po/POTFILES.in:
	* src/bug-buddy.desktop.in:
	* src/bug-buddy.desktop.in.in: Move bug-buddy.desktop.in to
	bug-buddy.desktop.in.in to be parsed by configure script in order to
	get @VERSION@ replaced. Update POTFILES.in entry.

2003-06-09  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: bump version number.
	* src/bug-buddy.desktop.in: Add X-GNOME-Bugzilla-version (this will
	requiere the move to .desktop.in.in)
	* src/bugzilla.h:
	* src/bugzilla.c: (bugzilla_application_new), (load_applets),
	(visit_cb), (generate_email_text): read version from .desktop file.
	Add Bugzilla-Version field to email
	* src/united-states-of-bug-buddy.c: (on_druid_next_clicked): Merge
	patch from ximian to stop crashing in product view (bug #114712). Also
	write the version number in the entry.

2003-06-07  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.glade: Add a privacy warning.
	* src/bugzilla.c: (bugzilla_application_new): Don't add duplicated
	applications.
	* src/bugzilla.c: (add_products):  Fix for a NULL-dereference
	(Fixes #104357, thanks to Jens Askengren for the patch)
	* src/bug-buddy.c: (init_ui):
	* src/united-states-of-bug-buddy.c: (mail_lock_text),
	(druid_set_state): Don't allow the user to modify Bugzilla headers in
	the email page

2003-06-04  Abel Cheung  <maddog@linux.org.hk>

	* src/united-states-of-bug-buddy.c(on_druid_next_clicked): Fixed
	  string marked for translation.

2003-05-31  Paisa Seeluangsawat  <paisa@colorado.edu>

	* configure.in: Added Thai (th) to ALL_LINGUAS.

2003-05-27  Abel Cheung  <maddog@linux.org.hk>

	* src/bug-buddy.glade: Fix small typo.

2003-05-19  Fernando Herrera <fherrera@onirica.com>

	* NEWS:
	* configure.in:
	* src/bug-buddy.c: (init_ui): Go to STATE_GDB when invoked from crash.
	2.3.1 "My brown paper bag" release!

2003-05-18  Fernando Hererra <fherrera@onirica.com>

	* AUTHORS:
	* NEWS:
	* bugzilla/gnome/mostfreq:
	* bugzilla/gnome/products:
	* bugzilla/ximian/config:
	* bugzilla/ximian/mostfreq:
	* bugzilla/ximian/products:
	* configure.in: update for 2.3.0 release ("Sex, lies and Div-Xs")

2003-05-16  Telsa Gwymme  <hobbit@aloss.ukuu.org.uk>

	* configure.in: Added "cy" (Welsh) to ALL_LINGUAS

2003-05-16  Fernando Herrera <fherrera@onirica.com>

	* src/united-states-of-bug-buddy.c: (on_druid_next_clicked):fix some
	warnings and a typpo.

2003-05-15  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.c: (init_ui), (main):
	* src/bug-buddy.glade:
	* src/bug-buddy.h: New first page when invoked from scratch. Ask for
	bug type
	* src/bugzilla.c: (generate_email_text): Add keywords based on bug
	type, and set priority "enhancement" when it is a a feature request.
	* src/united-states-of-bug-buddy.c: (on_druid_about_clicked),
	(druid_set_state), (on_druid_prev_clicked),
	(on_druid_next_clicked): Manage new intro page. Show debug page
	always when invoked from scratch and debug type is selected. Add
	myself to the about dialog.

2003-05-06  Fernando Herrera <fherrera@onirica.com>

	* src/bug-buddy.c: (init_gnome_version_stuff):
	* src/bug-buddy.h:
	* src/bugzilla.c: (generate_email_text): s/vendor/distributor as done
	in gnome-desktop (to make RMS happy)

2003-05-06  Fernando Herrera <fherrera@onirica.com>

	* src/bugzilla.c: (async_update): Print the progress label only when
	all files/sizes are calculated (Fixes #108408)
	(generate_email_text): Print Distribution name after the Subject
	field.

2003-05-04  Christian Rose  <menthos@menthos.com>

	* configure.in: Added sr and sr@Latn to ALL_LINGUAS.

2003-04-01  Fernando Herrera  <fherrera@onirica.com>

	* src/Makefile.am:
	* src/bug-buddy.h:
	* src/distribution.c: (get_line_from_fd), (get_line_from_file),
	(get_redhat_version), (get_turbolinux_version),
	(get_debian_version), (get_irix_version),
	(get_distro_name_from_file), (get_distro_name): Add distribution
	detection to bug-buddy.
	* src/distribution.h:
	* src/bugzilla.c: (generate_email_text): Add distribution info to
	report, and Gnome Vendor as "Gnome Vendor".

2003-03-13  Christian Rose  <menthos@menthos.com>

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

2003-02-17  Roozbeh Pournader  <roozbeh@sharif.edu>

	* configure.in: Added "fa" to ALL_LINGUAS

2003-02-10  Mohammad DAMT  <mdamt@bisnisweb.com>

	* po/id.po: Added Indonesian Translation
	* configure.in: Added "id" to ALL_LINGUAS

2003-02-07  Abel Cheung  <maddog@linux.org.hk>

	* configure.in: Removed "en_GB" from ALL_LINGUAS (completely
	  empty translation)

2003-01-25  Alex Duggan  <aldug@astrolinux.com>

	* src/united-states-of-bug-buddy.c: use the bug-buddy icon in the
	about dialog.  Fixes #104445

2003-02-03  Fernando Herrera <fherrera@onirica.com>

	* NEWS:
	* bugzilla/gnome/mostfreq:
	* bugzilla/gnome/products:
	* bugzilla/ximian/products:
	* configure.in: update for 2.2.102 release ("Oh na na na")

2003-02-01  Fernando Herrera <fherrera@onirica.com>

	* TODO: Update with some ideas from Owen and me.
	* src/bugzilla.c: (bugzilla_application_new),
	  (generate_email_text): Only add a binary to the list if it is not
	  already in. If the app doesn't have bugzilla product, ask for email
	  address to send the report. (Fix #104599)
	* src/united-states-of-bug-buddy.c: (select_component_row): Check if
	  component is NULL.

2003-01-21  Christian Rose  <menthos@menthos.com>

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

2002-01-19  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* bugzilla/*/*:
	* configure.in: 2.2.101 release "Fidelio"

2003-01-14  Pablo Saratxaga <pablo@mandrakesoft.com>

	* configure.in: Added Amharic (am) and Macedonian (mk) to ALL_LINGUAS

2003-01-05  Fernando Herrera  <fherrera@onirica.com>

	* src/gdb-buddy.c: (get_trace_from_pair): set NULL encoding for gdb
	output, so g_io_channel can read text with invalid UTF-8 strings
	(fixes #102493).

2002-12-31  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.desktop.in: add StartupNotify

2002-12-31  Fernando Herrera  <fherrera@onirica.com>

	* NEWS:
	* bugzilla/*/*:
	* configure.in: 2.2.100 release "I should be there, baby!"
	* pixmaps/gnome.png: Update GNOME logo to the new version.

2002-12-29  Fernando Herrera  <fherrera@onirica.com>

	* src/united-states-of-bug-buddy.c: Little text typo. Fixes (#99564)
	Thanks to Christian Rose for pointing this.

2002-12-29  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.glade: Don't use gtk stock button "Refresh". Use
	  "Update" as label to be consistent with the text (fixes #101693).
	  Remove references to help button (fixes #86410).

2002-12-29  Fernando Herrera  <fherrera@onirica.com>

	* src/united-states-of-bug-buddy.c: (select_component_row),
	  (on_druid_next_clicked): If component is in the .desktop file
	  preselect it. (Thanks to Kristian Rietveld for its gtktree
	  wisdom)

2002-12-29  Fernando Herrera  <fherrera@onirica.com>

	* src/bugzilla.c: (visit_cb): don't use all-applications because it is
	  not working. Use applications-all-users:/// and check for recursion

2002-12-28  Fernando Herrera  <fherrera@onirica.com>

	* configure.in: requiere libgnomeui 2.1.x for gnome-icom-theme

2002-12-16  Fernando Herrera  <fherrera@onirica.com>

	* MAINTAINERS:
	* NEWS:
	* README.STABLE_BRANCH:
	* TODO:

	* bugzilla/gnome/config:
	* bugzilla/gnome/mostfreq:
	* bugzilla/gnome/products:
	* bugzilla/ximian/config:
	* bugzilla/ximian/mostfreq:
	* bugzilla/ximian/products: Updated for the new release.

2002-12-15  Fernando Herrera  <fherrera@onirica.com>

	* src/bug-buddy.glade:
	* src/bugzilla.c: (async_update): Tweak progress dialog. Show only
	  number of files "1 of 6".
	  http://bugzilla.gnome.org/bugzilla.gnome.org/config.xml is nothing
	  relevant for the user.

2002-12-13  Fernando Herrera <fherrera@onirica.com>

	* bugzilla/gnome.bugzilla:
	* bugzilla/ximian.bugzilla:
	* src/Makefile.am:
	* src/bug-buddy.glade:
	* src/bug-buddy.h:
	* src/bugzilla.c: (md5str_equal_digest), (get_xml_file),
	  (bugzilla_get_md5sums), (load_bugzilla):
	* src/bugzilla.h:
	* src/config.c: (save_config), (load_config): Download md5sums from
	  bugzilla (only if it didn't in the last 24h), and compare with local
	  bugzilla files. If different, aks the user for updating them.
	* src/md5-utils.h:
	* src/md5-utils.c: Copied md5 functions from somewhere in the gnome
	  cvs.

2002-12-13  Fernando Herrera <fherrera@onirica.com>

	* src/gdb-buddy.c: Try to look in libexec dir (Needed to debug
	  applets)

2002-12-10  Fernando Herrera <fherrera@onirica.com>

	* src/bug-buddy.c (stop_progress, queue_download_restart,
	  on_proxy_settings_clicked, on_progress_start_clicked,
	  on_progress_stop_clicked, main):

	* src/bug-buddy.glade:

	* src/bugzilla.c (async_update, copy_from_system_to_cache,
	  get_xml_file, end_bugzilla_download, start_bugzilla_download,):
	  Changed the logic of downloading. First try the newer version from
	  local cached bugzilla files and the ones from sharedir. If they are
	  too old, ask the user for updating. New dialog for updating and
	  new progress dialog.

2002-12-15  Fernando Herrera  <fherrera@onirica.com>

	* src/united-states-of-bug-buddy.c: add Kevin and Eric to credits as
	  documenters

2002-12-14  Fernando Herrera  <fherrera@onirica.com>

	* src/bugzilla.c: (open_mostfreq_bug):
	* src/cell-renderer-uri.c: (cell_renderer_uri_set_property),
	(cell_renderer_uri_activate): Workaround to fix #86711. As cru->uri is
	not set correctly (maybe a gtk+ or a problem derivating the class?),
	use a new function to open the bug with bug_position --> iter -->
	model --> url.

2002-12-03  Fernando Herrera <fherrera@onirica.com>

 	* src/bugzilla.c (products_list_load): Removed code to autoselect
 	component (it didn't work)

 	* src/united-states-of-bug-buddy.c (on_druid_prev_clicked)
 	on_druid_next_clicked: When invoked from crash, try to guess
 	product and component (from .desktop file) corresponding to the
 	crashed app. When invoked from scratch, after the user has
 	selected an application, guess the product. This implies skipping
 	two sometimes hard steps. Autoset critical severity for crashes.

2002-12-08  Malcolm Tredinnick <malcolm@commsecure.com.au>

	* src/united-states-of-bug-buddy.c: Unbreak the build and
	restore Ximian's copyright notice.

2002-12-07  Christian Neumair  <chris@gnome-de.org>

	* src/united-states-of-bug-buddy.c: Made copyright string translatable
	and changed it (pattern is "(C) first-year-code-was-published
	first-author").	Sorry Ximian, but that's the way we ought to refer to
	authors.

2002-11-21  Kjartan Maraas  <kmaraas@gnome.org>

	* src/bugzilla.c (load_bugzilla): Free the path. Fixing a leak
	and closing bugzilla #95981.

2002-11-17  Dmitry G. Mastrukov  <dmitry@taurussoft.org>

	* configure.in: Added Belarusian to ALL_LINGUAS.

2002-09-30  jacob berkman  <jacob@ximian.com>

	* src/bugzilla.c (load_applets):
	(visit_cb):
	(visit_cb):
	(load_applications): port from GnomeIconLoader to GnomeIconTheme

2002-09-06  jacob berkman  <jacob@ximan.com>

	* src/bug-buddy.[ch]:
	* src/bugzilla.[ch]:
	* src/gdb-buddy.c"
	* src/united-states-of-bug-buddy.c: commit 2 week old changes on
	my local tree.  i think this adds support for pre-selecting a
	crashed app in the list of applications.  or, it would but
	gtktreeview doesn't work right.

	* src/save-buddy.c: include signal.h

2002-09-04  Ross Burton  <ross@burtonini.com>

	* src/bug-buddy.desktop.in: Fix the desktop file so that it
	validates correctly.

2002-08-15  jacob berkman  <jacob@ximian.com>

	* src/bugzilla.c (create_products_list):
	(create_components_list): sort by the first column

	* src/config.c (save_config):
	(load_config): don't persist "show debugging info"

	* configure.in: require bonobo-activation and libbonobo

	* src/bugzilla.c (bugzilla_application_new): helper func
	(get_i18n_slist): cut-n-paste from (gasp!) menu.c
	(load_applets): get the list of applets from bonobo-activation
	(visit_cb): use bugzilla_application_new()
	(load_applications): load the applets too and don't leak the icon
	loader

2002-08-14  jacob berkman  <jacob@ximian.com>

	* src/bugzilla.c (BUGZILLA_*):
	* src/bug-buddy.desktop.in (X-GNOME-Bugzilla-*): spell it GNOME

	* configure.in: check for gnome-desktop

	* src/united-states-of-bug-buddy.c (druid_set_state): disable next
	button if we are downloading
	(on_druid_prev_clicked): handle a new state we can be in
	(submit_ok): handle the user selecting an application (this
	function needs to be refactored)

	* src/save-buddy.c (bb_write_buffer_to_*): add a wait_msg arg that
	is the label of the dialog that pops up after a while

	* src/config.c (save_config):
	(load_config): persist whether we are showing products or
	applications

	* src/bugzilla.c (load_bugzilla_xml): only populate the products
	list if we are showing products
	(end_bugzilla_download):
	(start_bugzilla_download): turn the next button off while
	downloading if we are on the product page
	(visit_cb):
	(load_applications): load a list of applications from
	all-applications:/// to present the user, rather than using a list
	of products.  .desktop files with X-Gnome-Bugzilla-* headers will
	work automagically
	(products_list_load): populate the products list with either
	products or applications

	* src/bug-buddy.h (DruidData): add show_products and applications
	list

	* src/bug-buddy.glade: add a button to swtich between product and
	application selection mode

	* src/bug-buddy.desktop.in: add X-Gnome-Bugzilla-* entries

	* src/bug-buddy.c (buddy_set_text_widget):
	(buddy_get_text_widget): add support for GtkButton
	(on_gdb_save_clicked): pass a wait message
	(on_product_toggle_clicked): toggle the tree view between
	applications / products listing
	(on_list_button_press_event): don't continue if a download is in
	progress
	(main): load the list of applications

	* src/bugzilla.[ch] (bugzilla_bts_add_products_to_clist): nuke
	(BugzillaProduct): make components a hash table
	(BugzillaBTS): make products a hash table
	(generate_email_text): submit data from gnome-version.xml
	(*): fixups for hash tables, and i think fix bug #83109 (can't
	tell because gnome-vfs crashes for me)

	* src/bug-buddy.h (DruidData): make bugzillas a GHashTable, and
	nuke all_products

	* src/bug-buddy.glade: kill the bts selection option menu

	* src/bug-buddy.[ch] (init_gnome_version_stuff): read gnome
	platform version and vendor from
	$prefix/share/gnome-about/gnome-version.xml

	* src/bugzilla.c (generate_email_text): clean up a bit

2002-08-13  jacob berkman  <jacob@ximian.com>

	* src/united-states-of-bug-buddy.c (submit_ok): fix a crash

	* configure.in: bump to 2.2.99

	* src/united-states-of-bug-buddy.c: use new saving code (fixes
	#84914)

	* src/save-buddy.c (bb_write_buffer_to_fd): use an io channel to
	write to a file, and pop up a dialog if it takes more than 1.1
	seconds which allows the user to cancel the action (fixes #73443)

	* src/*.[ch]: nuke some #if 0'd code and fix some compile warnings

	* src/Makefile.am:
	* src/signal-buddy.[ch]: steal unix signal/glib mainloop code from gdm

2002-08-12  jacob berkman  <jacob@ximian.com>

	* NEWS (2.2.1): updates, but need to fix the other part of 84914
	before releasing a new version

	* src/save-buddy.c (bb_save_file): steal file saving from gedit
	(fixes #80334)

	* src/united-states-of-bug-buddy.c (on_druid_cancel_clicked): kill
	gdb (should fix bug #86404)

	* src/save-buddy.c (bb_save_file): prompt the user to overwrite
	the file if it already exists (bug #84914)

	* src/gdb-buddy.c (handle_gdb_input): convert gdb data to UTF-8
	(michael meeks, bug #82722)

2002-07-28  Christian Rose  <menthos@menthos.com>

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

2002-06-19  jacob berkman  <jacob@ximian.com>

	* NEWS:
	* configure.in: 2.2.0

2002-06-05  jacob berkman  <jacob@ximian.com>

	* src/Makefile.am (EXTRA_DIST): dist .applications file

2002-06-05  Alex Graveley  <alex@ximian.com>

	* src/bug-buddy.keys.in: Remove unsupported open action, add
	settings for nautilus1 user-levels, and set default_action_type to
	'application'.

	* src/bug-buddy.applications: Add bug-buddy-core-file handler for
	application/x-core-file mimetype, with the command "buddy --core",
	and the name "Bug Buddy".

	* src/Makefile.am (applications_DATA): Install
	bug-buddy.applications.

2002-06-04  Yanko Kaneti <yaneti@declera.com>

	* configure.in: (ALL_LINGUAS) Added Bulgarian (bg).

2002-05-28  Eric Baudais  <baudais@kkpsi.org>

	* docs/C/bug-buddy.xml: Updated the docs for 2.1.6.
	* docs/C/bug-buddy-C.omf: Updated for 2.1.6.

2002-05-26  Chris Lyttle  <chris@wilddev.net>

	* docs/C/bug-buddy-C.omf: Added rights and version tags
	* docs/C/Makefile.am: changed figs to figdir
	* Makefile.am: Add omf.make to EXTRA_DIST
	* configure.in: Added scrollkeeper test for v0.3.8 and removed
	omf-install from makefile list
	* omf.make: Added for new scrollkeeper
	* xmldocs.make: changed to new version

2002-05-21  Eric Baudais  <baudais@okstate.edu>

	* docs/C/bug-buddy-C.omf: Changed the OMF file to conform with
	the OMF DTD Scrollkeeper uses.

2002-05-15  jacob berkman  <jacob@ximian.com>

	* docs/Makefile.am (man_MANS):
	* docs/bug-buddy.1: man page from David LaBissoniere
	<labisso@debian.org>

	* AUTHORS: i haven't been to CMU in over 2 years

2002-05-13  jacob berkman  <jacob@ximian.com>

	* NEWS:
	* configure.in: release 2.1.6

	* bugzilla/*: update

	* src/united-states-of-bug-buddy.c (on_druid_next_clicked):
	(on_druid_prev_clicked): if there are no mostfreq bugs, skip that
	page (fixes bug #76405)

	* configure.in:
	* Makefile.am:
	* bugzilla/Makefile.am:
	* bugzilla/gnome/Makefile.am:
	* bugzilla/ximian/Makefile.am: finally give in to automake 1.5
	breaking backwards compat behaviour and waste cpu by not using my
	cool automake hack (also fixes #74390)

	* src/bug-buddy.glade:
	* src/bug-buddy.c (on_proxy_settings_clicked):
	* src/config.c: remove proxy config dialog, just run
	gnome-network-properties

	* src/bugzilla.c (load_bugzillas): don't crash if no bugzillas
	were found.  put up a dialog and bail instead.  fixes bug #74390

2002-05-10  Wayne Schuller  <k_wayne@linuxpower.org>

	* src/bugzilla.c: (bugzilla_add_mostfreq): The most frequent list
	is for display only, so don't let anything get
	selected. http://bugzilla.gnome.org/show_bug.cgi?id=77277

2002-05-08  Pablo Saratxaga <pablo@mandrakesoft.com>

	* configure.in: Added Vietnamese (vi) to ALL_LINGUAS

2002-05-07  Archit Baweja  <bighead@users.sourceforge.net>

	* src/united-states-of-bug-buddy.c (submit_ok): show Cancel/Submit
	instead of No/Yes to adhere to UI Guidlines. fixed #74816.

2002-02-29  Pablo Saratxaga <pablo@mandrakesoft.com>

	* configure.in: Added Basque language (eu) to ALL_LINGUAS

2002-04-19  jacob berkman  <jacob@ximian.com>

	* configure.in: 2.1.5

	* src/bug-buddy.glade: fix icon

	* bugzilla/*: update

2002-04-17  Abel Cheung  <maddog@linux.org.hk>

	* configure.in: Removed en_AU, it's a completely empty translation,
	unhandled for 2 years.

2002-04-16  jacob berkman  <jacob@ximian.com>

	* src/bug-buddy.glade: fix packing of copy/save buttons (fixes bug
	#78674)

	* src/gdb-cmd: do 'bt full' rather than 'bt' - suggested by havoc
	(fixes bug #78675)

2002-04-10  jacob berkman  <jacob@ximian.com>

	* src/bugzilla.c (gify): if convert didn't work just strdup

2002-04-09  jacob berkman  <jacob@ximian.com>

	* src/bug-buddy.glade: turn word wrap on
	add copy/save buttons

	* src/bug-buddy.c (on_gdb_copy_clicked): copy the contents of the
	gdb text widget to the clipboard
	(on_gdb_save_clicked): save the contents of the gdb text widget to
	a file

	* src/gdb-buddy.c (start_animation):
	(stop_animation): enable/disable copy/save buttons

	fixes bug #77891

	* src/united-states-of-bug-buddy.c (on_druid_help_clicked): call
	gnome_help_display()

	* configure.in (AC_OUTPUT):
	* Makefile.am (SUBDIRS): add omf-install/

2002-04-02  jacob berkman  <jacob@ximian.com>

	* configure.in: fix stupid tyop in previous commit (noticed by
	Jeong-Hee Kang)

2002-04-01  jacob berkman  <jacob@ximian.com>

	* src/Makefile.am (bug_buddy_LDFLAGS):
	* configure.in: fix #77035 and #76834 (thanks to danw)

	* src/Makefile.am (bug_buddy_LDFLAGS): add back -export-dynamic
	for now (fixes #77035)

2002-03-29  jacob berkman  <jacob@ximian.com>

	* src/bug-buddy.keys.in: add a nl

	* src/Makefile.am (bug_buddy_LDFLAGS): remove -export-dynamic
	(fixes bug #76834)

	* src/bug-buddy.glade:
	* src/bug-buddy.glade2: use glade 2

	* src/bug-buddy.c (main): load bug-buddy.glade

	* configure.in: remove libglade-convert stuff

2002-02-21  Seth Nickell  <snickell@stanford.edu>

	* src/Makefile.am:
	* src/bug-buddy.desktop.in:

	Install into $(datadir)/applications and add a
	Categories field for GNOME2.

2002-03-18  jacob berkman  <jacob@ximian.com>

	* src/gdb-buddy.c (get_trace_from_pair): change wording

	* NEWS:
	* configure.in: 2.1.4

	* docs/C/bug-buddy.sgml: remove

	* Makefile.am (SUBDIRS): re-add docs

	* docs/C/bug-buddy.xml: updated per patch from Kevin Conder
	<kevin@kevindumpscore.com> for bug #71189

	* bugzilla/*: update files

	* src/bug-buddy.glade: set the default button to Forward, not
	Back.

	* src/gdb-buddy.c (get_trace_from_pair): add a message saying
	which program generated the core file

2002-03-14  jacob berkman  <jacob@ximian.com>

	* src/united-states-of-bug-buddy.c (submit_ok): fix up some memory
	management stuff (from Wayne Schuller <k_wayne@linuxpower.org>,
	fixes #73675)

2002-03-12  jacob berkman  <jacob@ximian.com>

	* src/Makefile.am ($(bug_buddy_OBJECTS)): build fix for automake
	1.5 (bug #74341)

2002-02-19  jacob berkman  <jacob@ximian.com>

	* Makefile.am: add gnome's mostfreq.xml and update xml files

2002-02-11 John Fleck <jfleck@inkstain.net>

	* added:
	* xmldocs.make
	* omf-install/Makefile.am
	* docs/C/bug-buddy-C.omf

	* changed:
	* docs/Makefile.am
	* docs/C/Makefile.am
	* docs/C/bug-buddy.xml
	add new xml versions of the docs and other things needed for the
	build infrasture - awaiting update to the docs to match GNOME2ness
	before adding 'em into the build

2002-02-07  jacob berkman  <jacob@ximian.com>

	* configure.in: add AM_PROG_LIBTOOL (Laszlo PETER
	<Laszlo.Peter@ireland.sun.com>)

2002-02-04  jacob berkman  <jacob@ximian.com>

	* configure.in:
	* NEWS: 2.1.3

2002-02-03 John Fleck <jfleck@inkstain.net>

	* docs/C/bug-buddy.xml - patch from Kevin Conder converting doc to
	xml
	* docs/C/legal.xml - added document with newly required legalisms,
	next step toward docs that are no longer "way busted".
	The xml docs are not yet included in the build.

2002-02-01  jacob berkman  <jacob@ximian.com>

	* Makefile.am (SUBDIRS):
	* configure.in: don't build docs as they are way busted.

	* src/bug-buddy.c (init_ui): hide windows when they are deleted,
	and fill in bug report template untranslated. (bugzilla 69460)

	* src/bugzilla.c: download files to a temporary file, then rename
	them.  also try to do something sensical when downloads fail, but
	sadly gnome-vfs is kind of broken when your proxy doesn't work and
	reports success.

	* src/bug-buddy.glade: make toplevels invisible by default, and
	hide the options for spawning external mailers (bugzilla #70156)

	* src/config.c: default to using sendmail

2002-01-18  jacob berkman  <jacob@ximian.com>

	* pixmaps/Makefile.am (pixmap_DATA): remove some files that aren't
	used any more

	* src/united-states-of-bug-buddy.c (on_druid_about_clicked): set
	ourselves as transient for the toplevel
	(druid_set_state): call druid_set_sensitive() rather than hacking
	around that
	(druid_set_state): fixup for new state order
	(on_druid_prev_clicked): skip pages when we aren't reporting to
	bugzilla
	(email_is_valid): don't allow mails from root@ (fixes #57490
	luis@ximian.com)
	(mail_config_page_gnome_ok): quick and error prone check that they
	filled in the mail command
	(mail_config_page_ok): clean up
	(on_druid_next_clicked): fixup for new state order

	* src/gdb-buddy.c (animate): pulse a progress bar
	(start_animation):
	(stop_animation): un-comment in

	* src/config.c (configs): comment out removed widgets
	(load_config):
	(save_config): clean up the mess i made the other day.

	* src/bugzilla.c (goto_product_page): comment out unused function
	(async_update): if the download is done then update the ui and
	load the xml
	(on_progress_cancel_clicked): comment out unused func
	(load_bugzilla_xml_file): try to load from cache, fallback to
	system
	(load_bugzilla_xml): simplify a little
	(create_products_list): put the icon and product name in the same
	column (thanks anders)
	(end_bugzilla_download): hide some widgets and cancel the vfs xfer
	if applicable
	(start_bugzilla_download): move code here so we can start the
	download from multiple places
	(load_bugzillas): don't try to download
	(generate_email_text): handle when we aren't submitting to
	bugzilla, and wrap gdb text

	* src/bug-buddy.c (get_widget): be a bit more verbose when we
	can't find a widget
	(on_list_button_press_event): go fwd when double clicked (fixes
	#57036 by ettore)
	(on_email_group_toggled): fixup for there being 3 types now, and
	set the fwd button to some appropriate text if applicable
	(queue_download_restart): start a download of the xml after a
	delay
	(on_proxy_settings_clicked): show the proxy settings dialog
	(on_progress_start_clicked): kick off a download
	(on_progress_stop_clicked): kill a download
	(on_debugging_options_button_clicked): show / hide debugging
	options
	(fixup_notebook): make a notebook clean
	(init_ui): make a better initial message, and fix a bunch of stuff
	(make_image): handle loading stock icons (unused now though)
	(main): don't skip pages initially any more, and kick off a
	download

2002-01-16  jacob berkman  <jacob@ximian.com>

	* configure.in: add et translation from Ilmar Kerm
	<ilmar.kerm@riigikontroll.ee>

2002-01-14  jacob berkman  <jacob@ximian.com>

	* src/bug-buddy.c (init_ui): reverse the text direction of the
	forward button.  also make it compile

	* src/united-states-of-bug-buddy.c (druid_set_state): steal some
	code from the new GnomeDruidPageStandard
	(on_druid_next_clicked): if "use_gnome_mailer" was set fire off
	the mailer and jump to the finished page

	* src/gdb-buddy.c: comment out animation stuff until it gets fixed

	* src/config.c (update_string):
	(gconf_buddy_connect_string):
	(update_bool):
	(gconf_buddy_connect_bool):
	(update_int):
	(gconf_buddy_connect_int): some gconf sugar
	(save_config): save the new mailer settings
	(load_config): load the vfs proxy and new mailer settings

	* src/bugzilla.c (generate_email_text): don't generate a Subject:
	line if we were told not to

	* src/bug-buddy.c (on_email_mailer_radio_toggled):
	(on_email_default_radio_toggled):
	(make_image):
	(build_custom_mailers): new funcs for new gui stuff
	(init_canvi): removed
	(init_ui): initialize the new widgets
	(on_druid_window_style_set): use colors from the theme rather than
	ugly hard coded ones
	(main): set GNOME_PARAM_APP_DATADIR and use it for finding files.

2002-01-10  jacob berkman  <jacob@ximian.com>

	* NEWS:
	* configure.in: 2.1.2

	* bugzilla/*: updates

	* src/united-states-of-bug-buddy.c (get_selected_row): clean up a
	little

	* src/bug-buddy.glade: use new button layout (cancel to the left
	of prev/next)

2001-12-28  jacob berkman  <jacob@ximian.com>

	* src/bugzilla.h: gnome-vfs-types.h is deprecated

	* src/bugzilla.c (load_bugzilla): gdk_pixbuf_unref is deprecated

	* src/bug-buddy.h: include gnome-vfs-async-ops.h

	* src/bug-buddy.c (init_canvi): gdk_pixbuf_unref is deprecated

	* src/Makefile.am (INCLUDES): add some more
	-DFOO_DISABLE_DEPRECATED

2001-12-21  jacob berkman  <jacob@ximian.com>

	* src/gdb-buddy.c (stop_gdb): fix a crash by jumping to the
	correct page

	* src/bugzilla.c (generate_email_text): print the gnome version if
	we had one

	* src/bug-buddy.h: add a gnome_version field

	* src/bug-buddy.c (init_ui): get the "gnome version" from the
	environment.  this is set by gnome_segv.

2001-12-17  jacob berkman  <jacob@ximian.com>

	* src/bug-buddy.c (init_ui): set the help / about buttons as
	secondary

	* src/bugzilla.c (gify): g_convert() rather than g_strdup() since
	i think the xml files are ISO8859-1 or something.  the spanish n
	thing displays correctly now instead of generating a pango warning

2001-12-13  jacob berkman  <jacob@ximian.com>

	* gentool/gentool.m4: some games

2001-12-12  jacob berkman  <jacob@ximian.com>

	* src/bugzilla.c (load_mostfreq_xml): add each bug, not just one
	per product.  this code was so broken before.

	* src/united-states-of-bug-buddy.c (on_druid_next_clicked): don't
	get stuck on the description page

2001-12-11  jacob berkman  <jacob@ximian.com>

	* */*: add mostfreq support and some other stuff.  this module is
	mine so i don't have to add good changelog entries.
	neener-neener.

2001-12-08  Abel Cheung  <maddog@linux.org.hk>

	* configure.in: Re-enable zh_TW.po. It's in UTF8 encoding,
	  shouldn't fail even with older version of gettext.

2001-12-06  jacob berkman  <jacob@ximian.com>

	* src/Makefile.am (INCLUDES): add -DLIBGLADE_DISABLE_DEPRECATED

	* src/*.c: s/GTK_DIALOG_NO_SEPARATOR/0/

2001-11-28  jacob berkman  <jacob@ximian.com>

	* src/gdb-buddy.c (get_trace_from_pair):
	(get_trace_from_pair):
	* src/config.c (load_config): gnome_is_program_in_path is
	deprecated, use g_find_program_in_path

2001-11-09  jacob berkman  <jacob@ximian.com>

	* src/*.c: set the default response on all of our dialogs

2001-11-08  jacob berkman  <jacob@ximian.com>

	* configure.in: zh_TW.po seems to be broken on gettext 0.10.35;
	disabling for now

	* src/united-states-of-bug-buddy.c (desc_page_ok): use the public
	mime type function

	* src/Makefile.am (EXTRA_DIST): ship the .desktop.in file

2001-11-07  jacob berkman  <jacob@ximian.com>

	* src/Makefile.am (INCLUDES): build with
	-DGNOME_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED
	-DG_DISABLE_DEPRECATED

	* src/*.c: use GtkMessageDialog instead of GnomeMessageBox, and
	the other things to get it to build w/o deprecated stuff

	* src/united-states-of-bug-buddy.c (get_selected_row): get the
	selected row from a TreeView
	(on_druid_next_clicked): use get_selected_row for the product /
	component

	* src/bugzilla.c (create_products_list): create a GtkListStore and
	set up the columns with the GtkTreeView
	(create_components_list): ditto
	(load_bugzillas): setup the trees
	(add_product):
	(bugzilla_bts_add_products_to_clist):
	(add_component): port to GtkTreeView / GtkListStore

	* src/bug-buddy.c: removed a bunch of unused glade callbacks
	(init_ui): setup some stock things glade 1 doesn't know about

	* src/Makefile.am (INCLUDES): don't set the clist height any more

2001-11-02  jacob berkman  <jacob@ximian.com>

	* src/bug-buddy.glade: use the template description from
	bugzilla.ximian.com.

	* src/gdb-buddy.c (handle_gdb_input): port to GtkTextView

	* src/bug-buddy.c (buddy_set_text_widget):
	(buddy_get_text_widget): sane and consistent api for get/set of
	text across multiple gtk widgets

	* src/*.c: use new text calls

	* po/POTFILES.in: remove some removed files

2001-10-28  jacob berkman  <jacob@ximian.com>

	* src/gdb-buddy.c (get_trace_from_pair): use the awesome
	g_spawn_async_with_pipes() function.  glib2 rules.

	* src/bugzilla.c (format_for_width):
	(append_line_width): move from util.c as these are still needed

	* src/bug-buddy.c (add_to_clist):
	(append_packages): remove unused functions

	* src/*.bts:
	* src/ctree-combo.[ch]:
	* src/distro*:
	* src/gnome.appmap:
	* src/packages.c:
	* src/bts.c:
	* src/*-packages:
	* src/util.[ch]:
	* src/bug-buddy.buddy: remove outdated / unused files

	* src/*.[ch]:
	* COPYING: add in a nice little note saying only version 2 of the
	gpl applies

2001-10-27  jacob berkman  <jacob@ximian.com>

	* src/bugzilla.c (start_xfer): use GNOME_VFS_PRIORITY_DEFAULT
	rather than GNOME_VFS_DEFAULT_PRIORITY

2001-10-23  jacob berkman  <jacob@ximian.com>

	* configure.in (GETTEXT_PACKAGE): we don't have to be parallel installable

	* src/bugzilla.c (load_config_xml):
	(load_products_xml): fix libxml 2 port

	* src/bug-buddy.c (init_canvi): use a PangoFontDescription rather
	than a fontset
	(main): glade file is .glade2 now

2001-10-20  jacob berkman  <jacob@ximian.com>

	* */*: initial gnome 2 port

2001-10-12  Carlos Perelló Marín <carlos@gnome-db.org>

	* configure,in (ALL_LINGUAS): Added pt.

2001-10-07  Gediminas Paulauskas <menesis@delfi.lt>

	* configure.in (ALL_LINGUAS): added lv

2001-09-08  Wang Jian  <lark@linux.net.cn>

	* configure.in(ALL_LINGUAS): Rename zh_CN.GB2312 to zh_CN

2001-08-31  Abel Cheung  <maddog@linux.org.hk>

	* configure.in (ALL_LINGUAS): zh_TW.Big5 -> zh_TW

2001-08-06  jacob berkman  <jacob@ximian.com>

	* configure.in:
	* NEWS: 2.0.8

	* src/gdb-buddy.c (get_trace_from_pair):
	(get_trace_from_core): revert --nw patch: it seems to break things
	for me pretty badly.  i'm an idiot.

	* configure.in:
	* NEWS: 2.0.7

	* src/util.c (format_for_width): wrap to GStrings rather than text
	entries

	* src/bugzilla.c (generate_email_text): wrap the mail bodies at 72
	chars again

	* src/gdb-cmd: also run `thread apply all bt' to get all of the
	stack traces for currently running threads

	* bugzilla/*: update

2001-08-05  Leonard Norrgard  <vinsci@bugg.lnorrgard.com>

	* gdb-buddy.c (get_trace_from_core): Add --nw option for running
	GDB, to make Bug-Buddy work with the GNUPro Insight debugger,
	which defaults to using a GUI.  All GDB versions, starting with
	gdb-4.13 released in 1994, support the --nw option.)
	(get_trace_from_pair): Likewise.

2001-08-04  Leonard Norrgård  <vinsci@sourceforge.net>

	* united-states-f-bug-buddy.c (email_is_valid):
	Added the seven new toplevel domains.
	* gdb-buddy.c (start_gdb):
	Moved the CRASH_NONE case into the switch.

Tue Jul 10 12:34:00 2001  Jonathan Blandford  <jrb@redhat.com>

	* configure.in: change order of xml in gnome-config command to fix
	broken include path.
	(src/Makefile.am): ditto.

2001-06-21  jacob berkman  <jacob@ximian.com>

	* NEWS:
	* configure.in: 2.0.6

	* src/bugzilla.c (load_config_xml): use the configured xml node
	names
	(load_bugzilla): load the name of the severity nodes and header
	from the config file
	(generate_email_text): use the configured severity header

2001-06-19  jacob berkman  <jacob@ximian.com>

	* NEWS:
	* configure.in: 2.0.5

	* src/bugzilla.c (async_update): touch files we download so that
	the cache finally works

	* NEWS:
	* configure.in: 2.0.4

	* src/united-states-of-bug-buddy.c (submit_ok): thank the
	submitter
	(submit_ok): set the From: line.  it used to do this before 2.0.
	i apparently am a doofus.
	(submit_ok): pop up a question dialog before sending the bug
	report

2001-06-15  jacob berkman  <jacob@ximian.com>

	* NEWS:
	* configure.in: 2.0.3

	* src/bugzilla.[ch]:
	* src/bug-buddy.c:
	* src/bts.[ch]:
	* src/bts-debian.c: libxml include fixes

2001-06-12  jacob berkman  <jacob@ximian.com>

	* various makefiles: fixes and ximian bugzilla support

	* src/bug-buddy.c (init_ui): set the row height to 20

	* src/bugzilla.c (load_bugzilla): make icons 16 pixels
	(load_bugzilla): fix a tyop
	(generate_email_text): comment out some fields
	(add_severity): also default to unknown

2001-06-03  Karl Eichwalder  <ke@suse.de>

	* src/Makefile.am (EXTRA_DIST): Remove
	xml-i18n-extract will directly work on .glade files.
	* glade-strings.c: Remove file.

2001-05-31  Karl Eichwalder  <ke@suse.de>

	* .cvsignore: Add xml-i18n-extract, xml-i18n-merge, and
	xml-i18n-update.

2001-05-30  Karl Eichwalder  <ke@suse.de>

	* Makefile.am (EXTRA_DIST): Add xml-i18n-extract.in
	xml-i18n-merge.in xml-i18n-update.in.
	* xml-i18n-extract.in: Add from xml-i18n-tools 0.8.4.
	* xml-i18n-update.in: Ditto.
	* xml-i18n-merge.in: Ditto.

	* configure.in: Add AM_PROG_XML_I18N_TOOLS.

	* Start to apply xml-i18n-toolization running xml-i18n-prepare
	(0.8.4):
	* src/Makefile.am (utils_in_files): Fix bug-buddy.desktop entry.
	* src/.cvsignore: Add bug-buddy.desktop.
	* src/bug-buddy.desktop: Remove file.
	* src/bug-buddy.desktop.in: New file.

2001-03-28  jacob berkman  <jacob@ximian.com>

	* src/bug-buddy.c (delete_me): save the config here

	* src/united-states-of-bug-buddy.c (on_druid_cancel_clicked): save
	the config here

	* src/*.c: turn off debugging output

	* src/bugzilla.c (get_xml_file): really fix cache this time

	* NEWS:
	* configure.in: 2.0.1

2001-03-26  jacob berkman  <jacob@ximian.com>

	* src/bugzilla.c (get_xml_file): turn an or into an and to make
	the cache update itself.  also added some ()'s so people will
	think twice about changing this code.

2001-03-20  Karl Eichwalder  <ke@suse.de>

	* src/united-states-of-bug-buddy.c (intro_page_ok): Normalize
	single quote.

2001-03-19  Karl Eichwalder  <ke@suse.de>

	* src/bugzilla.c (load_bugzillas): s/bug-buddy/Bug Buddy/.
	* src/gdb-buddy.c (get_trace_from_pair): Ditto.

2001-02-26  jacob berkman  <jacob@ximian.com>

	* src/united-states-of-bug-buddy.c (druid_set_state): don't
	desensitize the next button for the component and product page, so
	telsa isn't confused

	* src/bug-buddy.c (main): save config after the main loop
	(*): remove an assbarn full of #if 0'd code

	* src/bugzilla.c (bugzilla_product_add_components_to_clist): if
	there is only one component, select it

	* src/united-states-of-bug-buddy.c: fill in missing doc pages

	* docs/C/bug-buddy.sgml: new version from telsa

2001-02-18  Akira TAGOH  <tagoh@gnome.gr.jp>

	* src/bug-buddy.desktop: Updated Japanese entry.

2001-02-15  jacob berkman  <jacob@ximian.com>

	* src/united-states-of-bug-buddy.c (intro_page_ok): make these
	dialogs modal (wasn't code i wrote!)  fixes bugzilla #50865

2001-02-12  Karl Eichwalder  <ke@suse.de>

	* src/bug-buddy.c (init_bts_menu): s/bug-buddy/Bug Buddy/ .
	* src/gdb-buddy.c (get_trace_from_pair): Ditto.
	* src/gdb-buddy (main): Ditto.
	* src/bug-buddy.glade: Ditto.
	* src/glade-strings.c (N_): Ditto.
	* src/united-states-of-bug-buddy.c (on_druid_about_clicked): Ditto.

	* src/bugzilla.c (load_bugzillas): Fix message.

2001-02-12  jacob berkman  <jacob@ximian.com>

	* src/bug-buddy.glade: un-split a string

2001-02-12  Gediminas Paulauskas <menesis@delfi.lt>

	* configure.in: added lt to ALL_LINGUAS.
	* src/bug-buddy.glade, src/glade-strings.c: fixed two typos.

2001-02-11  jacob berkman  <jacob@ximian.com>

	* `find .`: (almost) completely rewritten to support bugzilla and
	have a new UI

2001-02-05  Fatih Demir	<kabalak@gmx.net>

	* src/gnome.appmap: Added gtranslator.

2001-01-23  Gregory Leblanc  <gleblanc@cu-portland.edu>

	* docs/C/bug-buddy.sgml: Updated for/tested in Nautilus
	* docs/it/bug-buddy.sgml: Updated for/tested in Nautilus

2001-01-05  Kjartan Maraas  <kmaraas@gnome.org>

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

2000-12-24  Pablo Saratxaga <pablo@mandrakesoft.com>

	* configure.in,po/az.po: Added Azeri language file

2000-11-23  Yukihiro Nakai  <nakai@gnome.gr.jp>

	* configure.in: Add zh_CN.GB2312 to ALL_LINGUAS.

2000-11-15  Jacob "Ulysses" Berkman  <jacob@helixcode.com>

	* src/bug-buddy.c (on_debian_page_next): fix bug #29310
	(load_config): allow the included file to be set by a command line
	argument

2000-11-14  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>

	* src/bug-buddy.desktop: added Slovak strings.

2000-11-04  Yukihiro Nakai  <nakai@gnome.gr.jp>

	* configure.in (ALL_LINGUAS): Add sk(Slovak)

2000-10-31  Christopher R. Gabriel  <cgabriel@softwarelibero.org>

	* configure.in (ALL_LINGUAS): added 'pt_BR' under the request of
	Juan Carlos Castro y Castro <jcastro@appi.com.br>

2000-10-29  Christopher R. Gabriel  <cgabriel@softwarelibero.org>

	* configure.in (AC_OUTPUT): added Makefile for italian documentation

2000-10-04  Jacob "Ulysses" Berkman  <jacob@helixcode.com>

	* src/gdb-buddy.c (get_trace_from_pair): check that the file
	exists, and is not a directory.  If it doesn't, look for it in our
	path.  This fixes problems with evolution and ~/evolution.

	* src/bug-buddy.c: warning fixes, removed #if 0'd code
	(save_entry): don't prepend history if entry is blank
	(save_config): change the email var name
	(load_config): pass NULL for email, since we don't want to guess
	(on_debian_page_next): do not accept 'general' as a package at all
	(email_is_invalid): add stricter checking of email addresses.
	Based on a patch from Robert Brady <robert@suse.co.uk>.

	* src/util.c:
	* src/gtk-combo-box.c:
	* src/bug-buddy.h:
	* src/bts.h:
	* src/bts-debian.c: warning fixes

	* src/distro.h:
	* src/bts.c:
	* src/distro-irix.c:
	* src/Makefile.am: add irix support

2000-10-02  Christophe Merlet  <christophe@merlet.net>

	* src/bug-buddy.desktop: added french strings.

2000-09-06  Simos Xenitellis  <simos@hellug.gr>

	* src/bug-buddy.desktop: added messages for the Greek language

2000-06-02  Szabolcs BAN <shooby@gnome.hu>

	* po/hu.po: added po of Greg Nagy <greg@gnome.hu>
	Hungarian Translation Team rulez

2000-05-21  Jacob Berkman  <jacob@helixcode.com>

	* src/bug-buddy.c (on_debian_page_next): bother the user a bit if
	they specify 'general'
	(make_pixmap_button): try an ugly hack

	* src/bts-debian.c (debian_bts_init): give the miggie combo text
	some intelligence

2000-05-13  Karl Eichwalder  <ke@suse.de>

	* src/bug-buddy.c (on_complete_page_prepare): Improve the looking
	of the msg string; remove \t.

2000-05-12  Andreas Hyden  <a.hyden@cyberpoint.se>

	* src/bug-buddy.desktop: Added Swedish translation.

2000-05-10  Jacob Berkman  <jacob@helixcode.com>

	* configure.in: 0.90 release

	* src/bug-buddy.c (on_action_page_prepare):
	* src/bts-debian.c (debian_bts_doit):
	* src/util.c (append_widthv): fix bug #10159

	* src/bug-buddy.c (on_complete_page_prepare): fix bug #9493

2000-05-04  Jacob Berkman  <jacob@helixcode.com>

	* src/bug-buddy.glade: mention that reports should be in English

	* configure.in: check for new gnome-libs 1.0.59

	* src/bug-buddy.c (main): push / pop the visual / colormap
	(init_ui): use the default icon on the main window
	(main): set the default icon

2000-05-02 Telsa Gwynne <hobbit@aloss.ukuu.org.uk>

	* Silly typo fix in docs.

2000-04-29  Jacob Berkman  <jacob@helixcode.com>

	* NEWS:
	* configure.in: 0.9 releasage action

2000-04-28  Jacob Berkman  <jacob@helixcode.com>

	* src/Helix_Code.bts:
	* src/GNOME.bts: add gnome-print for jody

	* src/bug-buddy.c (init_ui): show the href again
	(on_desc_page_next): use gnome-mime to ensure we have a text
	file

	* src/bts-debian.c (debian_bts_doit): get rid of warning when we
	start feeding the GtkText

2000-04-27  Jacob Berkman  <jacob@helixcode.com>

	* src/bug-buddy.c (init_ui): only have border on mouseover for
	the Big Ugly Button

	* docs/C/bug-buddy.sgml: doc updates

2000-04-25  Sami Pesonen <spesonen@dlc.fi>

	* src/bug-buddy.desktop : Added [fi]
	* configure.in (ALL_LINGUAS): added Finnish

2000-04-24  Arjan van de Ven	<arjan@fenrus.demon.nl>

	* po/nl.po : Updated dutch translation

2000-04-20  Fatih Demir	<kabalak@gmx.net>

	* src/bug-buddy.desktop : Added [tr] .

2000-04-19  Karl EICHWALDER  <ke@suse.de>

	* src/bug-buddy.desktop (Name): Improve [de].

2000-04-18  Pablo Saratxaga <pablo@mandrakesoft.com>

	* configure.in (ALL_LINGUAS): added Catalan (also put it in sync
	  with po/ directory, that is added en_AU, en_GB and pl)

2000-04-18  Jacob Berkman  <jacob@helixcode.com>

	* src/bug-buddy.glade: remove the menus from some option
	menus as these are generated by the source, and move the
	ugly button down

2000-04-18  Karl EICHWALDER  <ke@suse.de>

	* src/bug-buddy.glade: Typo.
	* src/glade-strings.c (N_): ditto.

2000-04-17  Jacob Berkman  <jacob@helixcode.com>

	* lot's of hacking this weekend

	* turbolinux should now correctly be detected

	* add Helix Code's BTS, and an 'Independent' BTS... for submitting
	to other email addresses

	* docs from Telsa

	* rework the user experience:

	* now, you have to have a subject / description (no more empty
	reports hopefully)

	* remove the redundant 'how to repeat' section

	* move the system config page to the end, since it is rather
	boring

	* you can now Cc: yourself on reports you submit

	* UI retouching

	* there is now a preview of the report at the end

	* changes to the popt stuff as suggested by Karl Eichwalder

	* new button to browse bugs for a package, so hopefully people
	will stop submitting g-h-b crash reports

	* basicall bug-buddy is ready for some 1.0 action

2000-04-05  Dan Damian  <dand@dnttm.ro>

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

2000-03-29  Karl EICHWALDER  <ke@suse.de>

	* src/bug-buddy.desktop: Add de.
	* src/bug-buddy.c (init_ui): Delete spurious white space.
	* src/bug-buddy.c (on_contact_page_next): Typo.

2000-03-27  Christopher R. Gabriel  <cgabriel@firenze.linux.it>

	* configure.in (ALL_LINGUAS): added italian translation.

2000-03-27  Karl EICHWALDER  <ke@suse.de>

	* src/bug-buddy.c (on_stop_button_clicked): Add missing \n's.
	* configure.in (ALL_LINGUAS): Add de.

2000-03-11 Alastair McKinstry <mckinstry@computer.org>

	* configure.in (ALL_LINGUAS): Added Irish (ga) translation.

2000-03-04  Jacob Berkman  <jacob@helixcode.com>

	* src/bug-buddy.[ch] (on_complete_page_prepare): use email address from
	BTS instead of GNOME one

	* src/bts-debian.c (debian_bts_get_email): implement get_email
	for debian

	* src/bts.h: add get_email function

2000-02-23  Jacob Berkman  <jacob@helixcode.com>

	* NEWS, configure.in: 0.7 release

	* src/util.c (get_line_from_commandv): remove unused variables

	* src/gdb-buddy.c (stop_gdb): remove unused variable

	* src/bug-buddy.c (stop_progress): remove the timeout, and
	hide the progress bar
	(append_packages): call stop_progress()
	(on_version_page_prepare): show the progress bar, since we
	are now hiding it
	(make_pixmap_button): translate this string
	(delete_me): exit the app when the dialog is deleted.  Fixes
	bug #6013

	* src/bts.c (load_bts_xml):
	(update_das_clist): call stop_progress()

	* src/bug-buddy.c (init_toggle): connect the signal first
	so we get the correct initial setting

	* src/bug-buddy.desktop (Name): be a big more descriptive

2000-02-22  Dan Winship  <danw@helixcode.com>

	* src/Makefile.am (bug_buddy_LDFLAGS): Add -export-dynamic so
	libglade can resolve bug-buddy's symbols (on all platforms).

2000-02-16  Fatih Demir	<kabalak@gmx.net>

	* configure.in : Added tr to ALL_LINGUAS .

2000-01-26  Yukihiro Nakai <nakai@gnome.gr.jp>

	* configure.in (ALL_LINGUAS): add ja

2000-01-24  Jacob Berkman  <jacob@helixcode.com>

	* configure.in (ALL_LINGUAS): add el

2000-01-24  Sergey Panov <sipan@mit.edu>

	* configure.in (ALL_LINGUAS): Added Russian (ru)

2000-01-06  Jesus Bravo Alvarez  <jba@pobox.com>

	* configure.in (ALL_LINGUAS): Added Spanish (es)

1999-12-30  Richard Hult  <rhult@hem.passagen.se>

	* configure.in (ALL_LINGUAS): Added "sv".

1999-12-29  Jesus Bravo Alvarez  <jba@pobox.com>

	* configure.in (ALL_LINGUAS): Added Galician (gl)

	* src/bug-buddy.desktop: Added Galician entries

1999-12-29  Yuri Syrota  <rasta@renome.rovno.ua>

	* configure.in (ALL_LINGUAS): added "uk"

1999-12-09  Arjan van de Ven <arjan@fenrus.demon.nl>

	* po/nl.po: Updated Dutch translation

1999-12-09  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* NEWS:
	* configure.in: version 0.6

	* src/*.c: use GET_WIDGET ()

	* src/GNOME.bts: reformatting

	* src/bts-debian.c: moved some debian specific functions here;
	parse the xml a little better; support including a file

	* src/bts.c: removed some functions; remove the gtk timeout
	for the progress bar

	* src/bug-buddy.c: don't declare PoptData here; save more state;
	hide the save-to-file file entry when we aren't saving to a file;
	druid path reorganization; support for the progress bar;
	support function for async package version getting; load up
	xml files when we init the UI

	* src/bug-buddy.glade: some reorg, change padding to 4/8

	* src/bug-buddy.h: define some debian specific stuff here, this
	should be moved soon;  get rid of a lot of stuff in DruidData

	* src/ctree-combo.c: lots of stuff

	* src/distro-debian: get version stuff asyncly

	* src/distro-redhat.c: append_packages ()

	* src/distro.h: no more post_command

	* src/gdb-buddy.c: on _ERROR_AGAIN try again

	* src/glade-druid.h: defing a couple more widgets

	* src/gtk-combo-box.c: block toggled signal in _hide_popdown()

	* src/util.[ch]: added get_line_from_ioc ()

1999-12-06  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* src/ctree-combo.c (on_ctree_select_row): only _popup_hide()
	on leaves

	* src/bts-debian.c (debian_bts_init): add a max of 20
	leavs per subtree

	* src/ctree-combo.c (on_ctree_select_row): This seems
	to work.  I wonder why.
	(ctree_combo_construct):

	* src/ctree-combo.c: maybe getting closer to working

	* src/bts-debian: use the new ctree combo box

	* src/glade-druid.h: sync with .glade file

	* src/Makefile.am:
	* src/kde-packages: packages files shouldn't be backwards
	any more

	* src/ctree-combo.[ch]: combo box with a drop down ctree

	* src/gtk-combo-box.[ch]: steal miguel's combo box from
	gnumeric

1999-12-05  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* src/KDE.bts:
	* src/kde-packages:
	* src/Makefile.am:  support for KDE BTS

	* src/bts.c:
	* distro-redhat.c:
	* src/bts-debian.c:  remove some debugging output;  packages
	whose version was obtained via rpm/dpkg are now in the clist
	again

1999-12-04  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* src/GNOME.bts:
	* src/Debian.bts: cleanups; in <package> use attributes

	* src/Makefile.am: don't depend on ../debbugs/Maintainers... yet

	* src/bts.c:
	* src/bts-debian.c:
	* src/bug-buddy.c: optimize stuff a little, and don't leak
	so much memory

	* configure.in: find debian root dir
	* src/*: Initial support for supporting multiple BTS's
	Currently Debian and GNOME are supported.

1999-12-02  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* configure.in (ALL_LINGUAS): added nl.po, from
	Arjan van de Ven <arjan@fenrus.demon.nl>

1999-11-30  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* 0.5 release

	* src/*: clean up warnings

	* src/bug-buddy.glade:
	* src/bug-buddy.[ch]: add an entry for sendmail's path

	* configure.in:
	* debian/changelog(.in): generate changelog with the
	correct version

	* Makefile.am:
	* debian/Makefile.am: dist stuff in debian/

	* src/bug-buddy.c:
	* src/bug-buddy.glade: ugly glade hackery to get an about
	button

	Please do not look at the code for this commit.

	* src/bug-buddy.glade: more ui nicities

	* src/bug-buddy.c (on_the_druid_cancel): save config
	on cancel, to save email

	* src/bug-buddy.glade: add some padding and stuff

	* src/util.[ch]: actually read a line at a time

	* src/distro-debian.c: it works now

	* src/bug-buddy.glade:
	* src/bug-buddy.c: merge the attach/core/nature pages;
	some cleanup

	* src/gdb-buddy.c: don't pipe() on the fd anymore

	* src/distro-debian.c: some fixes, not working yet

1999-11-29  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* src/util.[ch]:
	* src/distro.h:
	* src/distro-debian.[ch]:
	* src/distro-redhat.[ch]: detect package versions a bit
	differently, and move some stuff used all around to util.c

	* src/gdb-buddy.c:
	* src/bug-buddy.[ch]: use the new package and util stuff

1999-11-24  Jacob Berkman  <jberkman@serendipity.res.cmu.edu>

	* src/bug-buddy.c: fudge around with dpkg and extract
	some things.  This is really slow and sucks.  Better
	ways will follow.

1999-11-24  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* debian/*: add stuff to make .debs  (no idea if this really
	works yet)

	* src/bug-buddy.glade:
	* src/bug-buddy.c: added ability to add info to existing
	reports

1999-11-23  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* src/bug-buddy.c: fix debian detection

	* src/bug-buddy.c (write_72):
	* src/bug-buddy.c (write_72v): wrap lines at 72 chars

	* src/gdb-buddy.c (get_trace_from_pair): we don't need to
	set the fd to non blocking

1999-11-14  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* NEWS:
	* configure.in: 0.4 release

	* src/gdb-buddy.c:
	* src/bug-buddy.c: don't print out status messages
	(on_version_list_select_row): fix a crash if there is no text
	in the row

	* src/bug-buddy.c (on_stop_button_clicked): better dialog box,
	I think.

	* src/gdb-buddy.c: don't be so verbose

	* src/gdb-buddy.c:
	* src/bug-buddy.[ch]: use g_io_channels and do the
	fork()/exec() for gdb ourselves

	* src/bug-buddy.c (load_entry, save_entry): work with
	GnomeFileEntries right

	* src/gdb-buddy.c:
	* src/bug-buddy.glade:
	* src/bug-buddy.[ch]: add stop/refresh button to the
	less page, and code to support this

	* src/bug-buddy.c: code clean up
	(get_data_from_command): remove extra \n's and add _()'s

	* src/bug-buddy.c (init_ui): actually do something
	for the --package command line arg

1999-11-13  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* src/bug-buddy.c: fix tyop (bug #3545)
	(on_action_page_back): use on_action_page_back like
	the .glade specifies

1999-11-12  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* src/prog.bugmap: add gnomeicu

1999-11-11  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* src/bug-buddy.[ch]:
	* src/bug-buddy.glade: reorder the dialogs a little

	* src/bug-buddy.c: change the scripts so that we have
	the distribution for debian and slackware on one line

	* src/Makefile.am (buddy_DATA): add prog.bugmap (stolen
	from the crashed app web page).  added bug-buddy and rp3
	do it first

	* src/bug-buddy.c (init_ui): figure out which package the
	app is from, and which version.  We are smart now.

	also fixed some tyops.

	* NEWS: update for 0.3

	* src/bug-buddy.c (on_action_page_next): ask the
	user if they really want to override a file if
	it exists  (based on a patch from Ali Abdin
	<ALIABDIN@aucegypt.edu>)
	(on_action_page_next): fix something dumb
	(on_complete_page_finish): we don't need -t and the
	address

1999-11-10  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* src/packages.c (packages): add crescendo

	* configure.in:
	* bug-buddy.spec.in: may as well have one

	* configure.in: bump to 0.3

	* src/bug-buddy.glade:
	* src/bug-buddy.[ch]: stuff to look more like gnome-bug

	* src/bug-buddy.c (init_ui): if no data was obtained, display
	a blank thing anyway (so people can type it in)
	(main): better warning and stuff
	(on_complete_page_finish):

	* src/Makefile.am:
	* src/gdb-buddy.c (get_trace_from_pair):
	* src/bug-buddy.c (make_anim):
	(main): define the prefix, so we can locate our data
	This will be unnecessary with gnome-libs 2

1999-11-08  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* docs/multiple_bts.txt: email excerpt talking about
	supporting multiple BTS's, and what needs to be done.

1999-11-07  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* src/bug-buddy.mime: ok, this regex works now

	* configure.in: bump to 0.2

	* src/bug-buddy.c: slightly better gnome-core version script;
	grave, not severe, is the correct severity

	fixes bugs 3388, 3389

1999-11-06  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* src/packages.c (packages): add bug-buddy

	* 0.1 release

	* src/bug-buddy.mime: go back to the old regex

	* src/bug-buddy.c (load_config): initially default to real/user name

	* src/Makefile.am (bug_buddy_SOURCES): distcheck fix

	* src/bug-buddy.mime: better regexp

	* src/gdb-buddy.c (handle_gdb_input): don't print a line of
	garbage at the end

	* pixmaps/bug-anim.png: new file

	* pixmaps/Makefile.am (pixmap_DATA): add bug-anim.png

	* src/gdb-buddy.c (get_trace_from_pair): start the animator
	(handle_gdb_input): stop the animator

	* src/bug-buddy.c (make_anim): create a GnomeAnimator for glade

	* src/bug-buddy.glade: add a custom widget until glade supports
	GnomeAnimators

	* src/bug-buddy.c (on_complete_page_prepare): mark another
	string for i18n (sorry kmarass)

	* src/bug-buddy.c (on_less_page_prepare):
	* src/gdb-buddy.c (handle_gdb_input): fix some things when you
	get a trace, then go back and change things and get another one

 	* src/gdb-buddy.h:
	* src/bug-buddy.h: use bug-buddy.h for a while

	* src/gdb-buddy.c:
	* src/bug-buddy.c: some reorganization with the non blockingness
	stuff.

	Look at me, coding on a Friday night.

1999-11-05  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* src/bug-buddy.glade:
	* src/gdb-buddy.[ch]:
	* src/bug-buddy.c: bye-bye blocking bug-buddy

	This probably introduces lots of nice bugs.

	* src/bug-buddy.glade: spelling mistake

	* src/bug-buddy.c (on_complete_page_prepare): add a \n

	* src/Makefile.am (EXTRA_DIST): make it distcheck

	* src/bug-buddy.c (on_complete_page_prepare): print a summary
	of the bug submission.

	* src/bug-buddy.keys.in:
	* src/bug-buddy.mime: mime type foo for launching bug-buddy
	on a core file

	* src/Makefile.am (mime_DATA): generate/install mime type foo

	* src/bug-buddy.glade:
	* src/bug-buddy.c: do some not-so-clever determination (?)
	of what is going on wrt stack obtaination;  remember how
	the bug was submitted from last time

1999-11-04  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* src/bug-buddy.glade:
	* src/bug-buddy.c (save_config): change the configuration around
	a little, and add make name/email a GnomeEntry again

	* src/Makefile.am (EXTRA_DIST):
	* pixmaps/Makefile.am (EXTRA_DIST): make distable

	* src/bug-buddy.glade:
	* src/bug-buddy.c: support output to a file

1999-10-30  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* src/glade-strings.c:
	* src/bug-buddy.glade: a couple translation bugs in
	glade are gone

	* src/bug-buddy.c (main): show the window before gtk_main()
	(list_data): add slackware detection
	(on_complete_page_finish): if no version info available, don't
	print the version of the last thing we visited

	# src/bug-buddy.glade: make the main window not visible by default
	(so we can do the init before the gui shows)

1999-10-29  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* src/bug-buddy.c (on_contact_page_next): mark a string for
	translation

1999-10-28  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* src/bug-buddy.c: mark more strings for translation

	* src/Makefile.am: install the new .desktop

	* pixmaps/Makefile.am (pixmap_DATA): add bug-buddy.png
	(thanks, tigert)

	* src/bug-buddy.c: save the name/email in our config file

1999-10-27  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* src/packages.c (packages): fix tyop

	* src/bug-buddy.c (update_selected_row): don't crash when
	no rows have been selected

	* pixmaps/Makefile.am
	* Makefile.am:
	* configure.in: get pixmaps to work

	* src/bug-buddy.glade:
	* src/bug-buddy.c: change to using a clist instead of lots
	of gtk_entry's.  This gets rid of a druid page, and is nicer.
	(main): bindtextdomain() and textdomain() so translations work

1999-10-26  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* src/gdb-buddy.c (get_trace_from_pair): try batch mode
	here too

1999-10-23  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* src/bug-buddy.c (main): don't crash when the
	.glade file isn't found

	* src/gdb-cmd: use bt not w

1999-10-23  Kjartan Maraas  <kmaraas@online.no>

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