File: NEWS

package info (click to toggle)
anjuta 2%3A2.32.0.0-5
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 61,524 kB
  • ctags: 29,402
  • sloc: ansic: 207,516; xml: 31,169; cpp: 11,403; sh: 10,749; perl: 7,107; makefile: 3,373; yacc: 1,018; lex: 126; sql: 97; python: 91; java: 6
file content (2724 lines) | stat: -rw-r--r-- 123,154 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
Anjuta 2.32.0 "Goodbye Berlin" (27 Sep 2010) -- Johannes Schmid

This is our new stable release. Older releases won't see any bug-fixing, support,
etc and master is now heading for GNOME 3.0 which will rock!

Bugs fixed:
bgo#630460 PackageKit integration is not working on all distros
project-wizard: Update default ui file to use gtk+-2.16

Various translation updates, Anjuta is now fully available in over 20 and more
languages. Thanks for your effort.

Thanks to (again, mostly translators):
Andika Triwidada, Andrea Zagli, Aron Xu, Bruce Cowan, Bruno Brouard,
Chao-Hsiung Liao, Christian Kirbach, Duarte Loreto, Fran Diéguez, Gabor Kelemen,
Jonh Wendell, Jorge González, Kenneth Nielsen, Marek Černocký, Mario Blättermann,
Matej Urbančič, Michael Kotsarinis, Milo Casagrande, Piotr Drąg, Takayuki KUSANO,
Yuri Myasoedov

Anjuta 2.31.92 "What's reality like?" (13 Sep 2010) -- Johannes Schmid

Bugs fixed:
python-loader: bgo #628975 - error in python loader .plugin
sourceview: bgo #626541 - Crash when saving to unavailable location
bgo #628397: Fix anjuta-idl-compiler to keep typedef comments
bgo #628397 - gir build error

Thanks to (mostly translators):
Abderrahim Kitouni, Andika Triwidada, Aron Xu, Bruno Brouard, Christian Kirbach,
Claude Paroz, Daniel Nylander, Dragos Dena, Gabor Kelemen, Hiroyuki Sekihara,
Jorge González, Kjartan Maraas, Philip Withnall, Sébastien Granjoux,
Takayuki KUSANO

Anjuta 2.31.91 "Cold summer rain" (30 Aug 2010) -- Johannes Schmid

Updated:
- More updates to the vala support

Bugs fixed:
libanjuta: Fixed bgo #622922: migrated to GDBus
pm: bgo #626690 - wrong project clean on new-project
project-wizard: bgo #627595 - Ambiguous strings for translation
bgo #627648 - Add IDE to Categories in .desktop file
symbol-db: bgo#622340 - Tried to close project and Anjuta crashed
bgo #628099 - Remove markup from translatable strings
language-support-python: bgo#627437 - couldn't find python rope.
bgo #628286 Fix introspection build when builddir != srcdir
bgo #628285 Don't distribute the .gir files

Thanks to Abderrahim Kitouni, Andika Triwidada, Ask H. Larsen, Branko Kokanović,
Bruno Brouard, Christian Kirbach, Fran Diéguez, Gabor Kelemen, James Liggett,
Jorge González, Massimo Corà, Matej Urbančič, Philip Withnall, Robert Ancell,
Sébastien Granjoux

Anjuta 2.31.90 "GSoC is over - we have snippets now" -- Johannes Schmid

New:
- Python is now fully supported
- Initial support for python plugins (Abderrahim Kitouni)
- Snippets plugins from GSoC (Dragos Dena)

Updated:
- Language support for Vala got a major update

Bugs fixed:
project-wizard: bgo#625434 - remove cvsignore from templates
python-support: bgo#626950 Anjuta crash with python support
build-basic-auotools: bgo#626562 crash refusing to clean the configuration
symbol-db: bgo#622529 - Crash when trying to open a non-writable project
symbol-db: bgo#616560  - Symbol views do not display names containing especial chars correctly
manual: Fixed mailing list adress (bgo#625588)
language-support-vala: bgo#626306 Symbol completion doesn't work with "this."
libanjuta: Increase launcher buffer size (bgo#624700)
class-gen: add missing include (#626265)
Add PyGTK project template. Fixes bug #608304.

Abderrahim Kitouni, Andika Triwidada, Daniel Nylander, Dragos Dena
Fran Diéguez, James Liggett, Jens Georg, Jorge González, Leandro Mattioli
Massimo Corà, Matej Urbančič, Vincent Untz, Yang Hong

Anjuta 2.31.6.1 "Thank you, The Hague (5 Aug 2010) -- Johannes Schmid

Bugs fixed:
symbol-db: bgo#625964 anjuta-tags does not build
libanjuta: bgo#621919 AnjutaAsyncCommand class is inconsistent

Thanks to James Liggett and Vicent Untz

Anjuta 2.31.6 "Thank you, The Hague" (2 Aug 2010) -- Johannes Schmid

Updated:
- Debugger is now much more polished (Sebastien)
- Project wizard shows better package chooser

Bugs fixed:
devhelp: Use Devhelp-2 API (bgo#625841)
build: bgo #625604  - anjuta crashes on starting the debugger
gdb: bgo#625605  - register function is not found in a pretty printer
symbol-db: bgo #625350 - critical warning on project unload
debugger: bgo#558954  - Documentation for debug interfaces is incomplete
libanjuta: bgo#624660 introspection build order problem
debugger: bgo #515395  - Mouse cursor is a clock in debug mode
debugger: bgo #598187  - Feature request: Make 'Locals' columns configurable
project-wizard: bgo #624091  - Use AnjutaPkgConfigChooser
debugger: bgo #516112  - Debugger create too much variable objects

Thanks to Chao-Hsiung Liao, Eleanor Chen, Fran Diéguez, Frédéric Péters,
Jorge González, Mario Blättermann, Massimo Corà, Matej Urbančič, Naba Kumar,
Sébastien Granjoux, Sergei Grudinin, Tao Wang

Anjuta 2.31.5 "Too hot to code" (12 June 2010) -- Johannes Schmid

New:
- Debugger supports pretty-printing now

Updated:
- More work on the symbol database code quality and performance

Bugs fixed:
project-wizard: bgo #623754  - focus on wrong text-field
run: bgo #623944  - buttons swapped on "Program parameters"
gdb: bgo#494292  - Set next statement
gdb: bgo #617323  - Save debugger stack trace
configure: Fix the forced debugging mode even if --disable-debug is given (bgo#612453)
Fix for bgo #622706 and allow to sort shortcuts by accelerator
symbol-db: Fixed bgo #617472: doubled items in locals view
bgo #622526  - HAVE_INTROSPECTION does not appear in AM_CONDITIONAL
terminal: bgo#619253  - Problem of ianjuta_terminal_execute_command in 2.28
anjuta: F6 switches focus instead of setting over (bgo#621678)
symbol-db: Fixed crasher bgo #622139
project-wizard: bgo #621512  - Remove deprecated glib symbols
language-support-vala: bgo#620927  - Vala plugin compilation
libanjuta: bgo#620664  - Drag and drop of multiple source files

Thanks to Abderrahim Kitouni, Akom C, Andika Triwidada, Fran Diéguez,
G. Baylard, Gennaro Bellizio, Jorge González, Massimo Corà, Matej Urbančič,
Naba Kumar, Romain Perier Sébastien Granjoux

Anjuta 2.31.3 "Smile, tommorow will be worse" (7 June 2010) -- Johannes Schmid

New:
- language-support for Vala

Updated:
- Symbol database is super fast now
- Glade plugins was cleaned a lot and doesn't spit warnings anymore

Bugs fixed:
anjuta: bgo #618273  - Anjuta closes when pressing ESC in the save dialog
bgo #586428  - paths with symlinks do not get 'real' absolute paths
language-support-cpp-java: bgo#618955  - Smart brace completion is no longer smart
message-view: bgo#620209  - Message View Crashes When Hovering Mouse Cursor Over Message Toggle Icons
npw: fix #610934  - Improve translations for the wizard files
Remove deprecated GTK+ symbols. Fixes bug 572754.

Anjuta 2.31.2 "There are no ugly girls, just lazy ones" (25 May 2010) -- Johannes Schmid

New:
- class-inheritance is included using libfoocanvas

Bugs fixed:
file-wizard: #616810 Error when creating new c source and header
language-support-cpp-java: bgo#618314  - Anjuta crash on while editing
symbol-db: Fixes #bgo 617433 Tab switching is slow because of rescanned symbols
symbol-db: Partially fixes bgo #615429: Optimize global and local views sql queries
libanjuta: Completes fixing bgo #615428: new column is_container

Anjuta 2.31.1 "Better late than never" (6 May 2010) -- Johannes Schmid

New:
- Symbol-db tree model with direct database access
This brings faster a faster and more up-to-date symbol tree

Bugs fixed:
anjuta-tags: bgo #616780 - Wrong return type recognition
document-manager: fixed bgo #616739 - doesn't open .ui files, neither in xml mode
anjuta-tags: fixed bgo #616503 - updates to the ctags vala parser.
symbol-db, language-support-js: bgo #616435 - make distclean removes y.tab.c
document-manager: bgo#550027  - Open a source tab in full window size
document-manager: bgo #586689 - close all but this
symbol-db: Bug 613962 - symbol-db views need alphabetical ordering
symbol-db: Fixes bgo #614906 - Local view shows namespaces far too often
symbol-db: bgo #614408 - convert GET_PRIV () to ->priv
anjuta: Fixed bgo 500962 - Further icons
symbol-db: Fixed bgo #611834 - Symbol icons are wrong for members
macro: #613118 - Please fix escaping of UTF-chars in ui file

Anjuta 2.30.1 "BASIC's not the answer" (26 April 2010) -- Johannes Schmid

Bugs fixed:
symbol-db: Fixed bgo #611834 - Symbol icons are wrong for members
document-manager: bgo #600083 - close documents by middle-mouse click
symbol-db: bgo #614936 - compile error with cfiles under js_parser
symbol-db: bgo #614932 - void function cannot return value
symbol-db: bgo #614933 - build fail with sun cc because zero-sized struct
language-support-cpp-java: libstdc++ is not available on Solaris #614928
gtodo: Deselecting "Hide completed items" does nothing (#614751)
language-support-cpp-java: bgo#615596  - . -> completions doesn't work with prefixed &, %, etc
libanjuta: #615718  - anjuta-command crash call on set_error_message.
js: bgo#615341  - Use correct LDFLAGS for the JS plugins
dir-project: bgo #616503 consider Vala files as sources
patch: Fixed bug 616740 - duplicated shortcuts nodes

Anjuta 2.30.0 "Ostern in Berlin" (29 March 2010) -- Johannes Schmid

Bugs fixed:
git: Free the log message for merges at the right time
Makefile.am missing libxml flags in some plugins (bgo#613559)
macro: #613118 - Please fix escaping of UTF-chars in ui file
project-wizard: JS template support and require GJS 0.6
build: bgo#612959 - Anjuta crashes when clicked 'Compile'
language-support-cpp-java: Avoid duplication of local symbols in project search
language-support-cpp-java: Fixed some undo problems with indentation
sourceview: bgo#567029 - underline warnings/errors using user-selected message colors
starter: Add tooltip for recent projects.

Anjuta 2.29.92 "Give me Shortcuts" (8 March 2010) -- Johannes Schmid

Changes:
- Stabilisation fixes with autocompletion
- Performance work

Bugs fixed:
anjuta: bgo#567689 -  Shortcuts grabbed all components of anjuta
bgo #566194 -  Garbage in the message pane for messages with bold font
sourceview: Don't block F7 shortcut (bgo#611204)
language-support-cpp-java: Better expression parsing (bgo#608499)
project-wizard: Added back translatable-strings.h until bgo#610934 is fixed
preferences: fix preferences registration for recent gtk+ versions (bgo#609190)
project-wizard: bgo#606596 -  Javascript template doesn't make sense
fm: bgo#605050 -  Saving a file duplicates its entry in File Manager
build-basic-autootls: Get make targets for files from language-manager plugin (bgo#611933)
bgo #611312 -  Make manual page up-to-date

Anjuta 2.29.91 "Vala la Révolution" (22 February 2010) -- Johannes Schmid

Features:
- Support for Vala symbols in the symbol-db

Bugs fixed:
language-support-cpp-java: bgo#609227 -  autocompletion problem (and some memory leaks)
bgo #550715 - Smaller icons in plugin list.
language-support-cpp-java: reapplied previous commit. bgo#610397 bgo#610404
symbol-db: bgo#610404 added cancel logic to search command.
starter: bgo#582726 -  Loading file from command-line/nautilus puts starter page in front of file
project-import: bgo#582717 -  'Create Folder' button not applicable in 'New From Existing Sources' file
    chooser dialog

Also special thanks to all translaters!

Anjuta 2.29.90 "Jag älkar svesk..." (7. Februar 2010) -- Johannes Schmid

Features:
- None (we are in feature freeze) except new language for Codename ;)

Bugs fixed:
bgo #608701 -  Compiler warnings
bgo #608396 -  crash while refreshing a buffer with some breakpoints
+ Several fixed in symbol-db and language-support-cpp-java

This is the first beta release in the 2.30 cycle so please give it some testing!

Anjuta 2.29.6 "Naba is back" (25 January 2010) -- Johannes Schmid

Features:
- Packagekit integration (Naba Kumar)
- Project manager supports a simple "Directory" project now which allows
to handle project that either don't use automake or where the automake parser
can detect the files correctly. (Sébastien Granjoux)

Bugs fixed:
bgo#541687 - selecting properties of executable with mouse
class-gen: bgo#606801 -  Bad translation error + GTKmm Project error
bgo#572754 - Replace deprecated GTK_OBJECT_TYPE with G_OBJECT_TYPE
bgo#601750 -  Tooltip evaluation doesn't respects mouse position
bgo#605060 -  Single-step highlighting works only for the first-opened project
bgo#607415 -  Anjuta creates lots of random directories

Anjuta 2.29.5 "Birthday present" (12 January 2010) -- Johannes Schmid

Features:
- Completion for ., ->, and :: in C/C++

Bugs fixed:
symbol-db: re-fixed bgo#605952 with patch from Sébastien Granjoux.
language-support-cpp-java: #566982 -  don't autocomplete inside string or comment
sourceview: Implement ianjuta_editor_cell_get_attribute() properly (#586457)
bgo #605763 -  No file found while adding a simple c++ class
bgo #605730 -  completion "." "->" are not shown
bgo #606069 -  Anjuta won't attach to process to debug it
symbol-db: bgo#605952 -  Some small fixes for symbol-db
bgo #559876 -  I can't add python file source code to Project > Add source code
bgo #565191 -  'add project target' is mostly broken
bgo#566209 -  "generate inhertances..." progress bar doesn't disappear
symbol-db: fixed bgo#605343 - fix build warnings
symbol-db: fixed bgo#605306 -  Add missing include to fix build

Anjuta 2.29.4 "Snow makes happy aka Last X-Mas" (21. December 2009) -- Johannes Schmid

Features:
- Javascript support (Deniz Ermilov)
- Support for parsing expressions allowing member completion (Massimo' Cora)
- Improved autocopletion support using GtkSourceCompletion support in
GtkSourceview master (Johannes Schmid)

Bugs fixed:
bgo#597318 - Anjuta terminal crashes X
bgo#597815 - Crash due to malformed UI definition file
bgo#599532 - plugin.c: missing call to fclose
bgo#600924 - misc. build fixes for 2.28
bgo#601567 - Import from git fails
bgo#585529 - Replace AnjutaMessageArea with GtkInfoBar
bgo#559925 - Send special keys to the terminal
bgo#602784 - Remove unneeded libsexy code
bgo#604581 - Crash Scintilla when writing a comment
bgo#599323 - symbol-db plugin can't create the symbol database
bgo#604954 - Configure project fail if project path contains space
bgo#604621 - specify /dev/shm at config time.

Anjuta 2.29.2 "Prager Herbst" (14 November 2009) -- Johannes Schmid

Features:
- New codename ;)
- For upcoming features, see the new-project-manager and the cxxparser branches

Bugs fixed:
String review (thanks to Phillip Withnall)
symbol-db: fix #597113
search-plugin: unmerge ui and remove action group when the plugin is deactivated
git: remove action groups when the plugin is deactivated
file-manager: fix bug where we accessed the FileView even though it was freed
debug-manager:bgo #596009 -  Easier adding of watches

Anjuta 2.28.0 (28 September 2009) -- Johannes Schmid

Bugs fixed:
gdb: bgo#594665 -  Fix link of test program
sourceview: Report error when location is > 0 for markers (bgo#593954)
terminal: bgo#594648 -  Terminal does not work
sourceview: #355151 -  drag/drop into editor window should open file

And of course lots of translation updates!

Anjuta is translated fully into the following languages:
pt_BR, en_GB, bg, de, da, fr, gl, it, pt, sv, es, tr, uk, hu, th

The manual is fully translated for:
el, es and th

Anjuta 2.27.92 (7 September 2009) -- Johannes Schmid

Bugs fixed:
class-gen: bgo #593532 - Untranslated strings
language-support-cpp-java: bgo #593291 - fix small typo

Thanks to all translators!

Anjuta 2.27.91 (27 August 2009) -- Johannes Schmid

Updates:
- Some git fixes (file-status, etc.)
- Stability fixes on symbol-db

Bugs fixed:
Typo in Anjuta pot file (bgo#593236)
bgo #592941 – Fixed errors in Anjuta IDE Manual (Greek translation)
bgo #591758 -  Fix language mistakes
bgo #591887 -  Bad strings for translation
bgo #590117 – Build failure: local scandir() function collides with system's
bgo #589828 – Can't open GtkBuilder files with the glade plugin
bgo#590708 – Some untranslated strings
project-wizard: bgo#591359 – Need an easier and intuitive way to create a shared library project
bgo #590337 – Compile failure: not allowed to link against a -module
bgo #590720 – glade plugin FTBFS on mips(el) and alpha, LANGUAGE_C built-in
bgo#590337 – Compile failure: not allowed to link against a -module
language-support: bgo#575926 – 'Maintain past indentation' disables itself
bgo #578690 – Several components underlinked
bgo #585428 – Context needed to translate
bgo#590334 – Fix -I ordering
bgo #590338 – Missing plugins flags
git: Add init support (bgo 566698)
language-support-cpp-java: fixed critical #588112 - infinite loop / freeze
bgo#587248 – Encoding key in desktop file is deprecated
bgo#588485 – fixes from running anjuta with G_DEBUG="fatal_warnings"
bgo#589699 – When ~/.cache isn't exists, session data isn't saved
bgo#588506 – Wrong value of PACKAGE_DOC_DIR
bgo#589601 – "gtk-execute" and "gtk-cancel" marked for translation

Anjuta 2.27.5 (27 July 2009) -- Johannes Schmid

Updates:
- Even better git plugin (James Liggett)
- Work to get C++ autocompletion done (Massimo' Cora)

Bugs fixed:
git: Show the active branch in the status bar (bgo 589401)
symbol-db: #588387 make typeahead searching caseless
Migrate anjuta project wizards from libglade to GtkBuilder (GnomeBug:530740)
bgo #575147 – Headers of new C++/GObject classes have wrong copyright and license notices.
bgo #577741 – "single step over function" does not always work as expected
bgo #587957 – doap file missing bug-database
bgo #583731 – Some untranslated strings
git: Refresh the log view when switching branches (bgo 580276)
bgo#578438 – broken svn libraries detection in configure
git: Fix a typo in a menu tooltip (bgo 587191)
gbf-am: build fix #586926
#586926 – gdbmi_test build fails
bgo#513156 – Get rid of libgnome(ui)
git: Add descriptions to the menu items (bgo 577924)
#586621 – Crash while loading project file
go#586148 – Case had to be the other way around
bgo#586148 – Fixing setting whitespace for the editor not working
bgo#577924 – Fixing AnjutaStatusbar for displaying menu tags
#577232 – run-program plugin: projects's working directory should be set to project root on start
#586030 – Value of a new environment variable is not saved in run parameter dialog
#584180 – Duplicate copy of GBF/General.pm installed to same location
#582961 – Replace SexyIconEntry by GtkEntry icon functionality (available in GTK+ 2.16)
subversion: Show conflicted files in the commit dialog (bgo 578411)
symbol-db: #585498 – Completion stop working and strange warning

Anjuta 2.27.3 (14 June 2009) -- Johannes Schmid

Updates:
- Pixel-saving UI for tabs
- Remove markup from translatable strings

Bugs fixed:
- Lots of git bugs fixed
#584013 – libanjuta-1.0.pc.in still requires libglade-2.0
#584347 – Don't reference child revisions
#567214 - bookmarks window wastes too much space
#582464 – crash in Anjuta IDE: Hacking on Empathy, dele...

Anjuta 2.27.2 (26 May 2009) -- Johannes Schmid

Updates:
- Lots of git improvements
- Subversion improvements
- Removed libglade dependency

#581416 - Fix void function cannot return value
#581869 - anjuta fails to build outside source tree
#582710 - Please consider using g_timeout_add_seconds to reduce wakeups
#582977 – String misspelled
#581421 - build fail on symbol-db/test
#530740 – Use GtkBuilder instead of libglade
#583589 – Some untranslated strings
#580340 - Reuse the last commit message when amending commits

Anjuta 2.27.1 (4 May 2009) -- Johannes Schmid

Updates:
- Improvements in git plugin
- Improvements with auto-completion speed

Bugs fixed:
#530740 - Use GtkBuilder instead of libglade
#581074 - Creating a new wxWidgets project should not include libglade
#580994 - using DEBUG_PRINT instead of g_print
#580013 – patch plugin doesn't handle patch-files with whitespace
#568779 – project wizard should infer project name from base path
#577721 – tooltips appears in wrong position
#579118 – Segmentation fault when adding file to project
#578087 – Artwork for Symbol Database is actually not from Monodevelop
#567588 – highlight default button in Find dialog
#576959 - Search does not point to correct line number on first match when file is not opened in editor.
#577006 – crash creating new file
#574607 – Replace function selects text uncorrectly
#576057 – doesn't build with graphviz 2.22.2
#575617 – Update FSF address

Anjuta 2.26.0 (16 March 2009) -- Johannes Schmid

Bugs fixed:
#397883 – The license info is almost empty
#574376 – Save doesn't always save
#573858 – link fail on Solaris for plugin symbol-db
#562113 – Clean docbook syntax in order to validate
#571740 – Get rid of deprecated libgnomecanvas
- Fixed crash in git plugin
- Fixed little problem in build plugin
- Fixed distcheck

- Translation updates:
Anjuta is now fully translated into the following languages:
pt_BR, en_GB, da, fi, fr, gl, el, it, ca, pt, sv, es, tr, hu, vi, de, sl
and over 80% in
ru, ja, mr, ar, th, pl
The manual is translated into Spanish now.

Thanks to all translators

Anjuta 2.25.903 (2 March 2009) -- Johannes Schmid

Bugs fixed:
- Valgrind memory fixes
- Documentation fixes and updates
- Fixes in the glade plugin
- Version control integration fixes
- Auto-indentation fixes
#564282 – configure error: source directory already configured
#567513 – Running configure doesn't make anjuta be aware that the
  project doesn't need a configure stage in its menus
#565170 – Invalid read in plugin.c
#573326 – Debug misfunction
#572637 – Valgrind shows some errors in symbol-db
#567068 – autocomplete box should vanish on backspace
#564306 – don't ask which program to run if project has only one target
#559806 – Anjuta crashes when closing unsaved file
#556970 – Swap .h/.c doesn't work for C header files (*.h)
#555895 – Save configure options for build configuration
#572608 – crash clicking on 'find in files...' results.
#572451 - crash on closing project
#571760 – Find & Replace is broken (due to my previous changes)
#511589 - remove missed includes
#572289 – Make code less ambiguous
#564891 – Crash when closing editor window

Anjuta 2.25.902 (16 February 2009) -- Johannes Schmid

This is a bug-fix release for the GNOME 2.25.91 Beta!

Updates:
- Code completion
- Searching
- Project Management

Bugs fixed:
#570820 – problem with gtk+ trunk
#564942 – display project-relative path in search results pane
#571381 – Seach button disabled if no files opened. 
#571733 – file manager should sort files case-insensitively
#571233 – Uncorrect loading of subversion plugin
#571215 – doesn't indent function declarations correctly
#570492 – Some criticals in the terminal plugin
#556148 – it's impossible to remove project variables
#571262 – gbf-am: treat tail slash as a package
#566991 – list project modules in sorted order
#571114 – Crash after clicking on Edit/Preferences with open document
#571143 - Double free crasher of path string.
#563704 – Anjuta displays column/line numbers after edit windows closed
#556970 – Swap .h/.c doesn't work for C header files (*.h)
#570720 – There are warnings in some cases when I press cancel in 
	program arguments dialog
#566785 – Anjuta crashes after enabling and disabling a plugin
	often
#567606 – Auto-indentation in Anjuta gets tab indentation wrong for function paramaters
#565015 – duplicate matches in search results pane
#539580 – Uncorrect pass search result to
#570614 – outdated download addresses
#566531 – Find & Replace results in wrong result for files
	containing multi-byte UTF-8 sequences
#570877 – symbol-db doesn't scan user-added packages.
#570929, initialize widgets before add watches.
#566987 – display tooltip with prototype when calling function in project.
#570245 – gbf gio-critical g_file_query_exists
#566693 – Code completion of symbols usually not working
#570492 – Canot open editor - crash
#567100 – opening Find dialog causes GtkSpinButton warning
#570444 – can't change numbers in preferences dialog
#566987 – display tooltip with prototype when calling function in project

Thanks to anybody involved!

Anjuta 2.25.901 (3 February 2009) -- Johannes Schmid

This is a bug-fix release for things that were broken too much in 2.25.90

Bugs fixed:
#570249 – glade plugin does not build
#566702 – Please add a separator between Build Project and Build Tarrbal
#570264 – cannot do subversion->commit: no modified files are detected anymore
#570223 – Replace all in open buffers crashes
#567206 – Build doesn't start if auto-save fails

Anjuta 2.25.90 (2 February 2009) -- Johannes Schmid

New:
- Glade integration work (GSoc) merged
- Support for scratchbox2

Updates:
- Improved file status display
- Don't depend on Gnomeprint

Bugs fixed:
#561370 – there is no way to know which files are in repository and which not.
#566800 – Had a random crash in "File manager" preferences pane
#569908 – completion of symbol shouldn't scroll the editor
#511589 - fix c&p error in uri_is_parent; fix uri_get_chrooted_path
#570136 – add option to not show unversioned files
#542412 – GSoc: Glade3 integration
#567728 – Copypasting build errors, messages and warnings
#564276 – useless checkbox next to action groups in Shortcuts view
#514609 – install-data-hook problem on Gentoo
#563499 – Goto Matching Brace and other commands missing in GtkSourceView editor
#564272 – Highlight Mode menu should indicate current mode
#567030 – gtksourceview editor should underline warnings
#561094 – Creation of backup files can't be disabled using gtksourceview
#569585 – translation issues, typos
#570034 – the open ToolbarItem is named "Open recent file"
#570056 – version mismatch for dependency gtk+
#567846 – A lot of g_warning-s when starting up Anjuta
#570014 – invalid print of uninitalized value
#560857 – GNOME Goal: Remove deprecated GLib symbols
#567361 – allow me to jump to declaration in external package header
#513156 – Get rid of libgnome(ui) (partial)
#569857 – terminal copy/paste doesn't work
#566209 – "generate inhertances..." progress bar doesn't disappear (partial)
#549958 – user is not notified if a file is removed from filesystem
#567206 – Build doesn't start if auto-save fails
#357275 – allow user to jump directly to Symbols / Search
#357275 – allow user to jump directly to Symbols / Search
#491491 – Auto save's problem (automatic reload was a bad idea)
#357820 – Goto / Previous history should return to previous cursor position
#569225 – glade-plugin build error
#568493 – Anjuta freezes after moving around large portions of code
#511589 for debug-manager plugin
#491491 – Auto save's problem (reload automatically)
#549958 – user is not notified if a file is removed from filesystem
#564308 – autogenerated gtk/gnome program does not exit
#565188 – Invalid write on deinitialization
#568119 – Automatic scanning of system-packages doesn't work
#568381 – Website manual chapter 5. Debugging
#548310 – Allow plugins to load/save key accelerators
#565320 – sbox2 support for anjuta
#564659 – Port anjuta to use Gtk+ print instead of deprecated gnomeprint
#566696 – Make the terminal plugin open in the directory of the project
#568254 – build fail on symbol-db-engine-core.c with suncc

Anjuta 2.25.5 (19 January 2009) -- Johannes Schmid

New:
- File-browser shows version control status for subversion using emblems

Updates:
- Removed gnome-vfs usage
- Lots of improvements with auto-completion and symbol-db
- string fixes

Bugs fixed:
#567967 – build fail with sun cc because zero-sized struct
#568068 – critical warnings on activation of debug-manager
#531717 - remove tray icon
#511589 - port to gio
#568008 – invalid g_object_unref in file-manager
#568020 – critical warning on bracket completion
#565353 – View Log and Diff context menu commands should 
	act immediately
#568028 – goto [declaration|implementation] should prefer the current 
	file.
#567060 – symbol search should ignore case.
#565342 – wizard creates useless dist-hook in Makefile.am
65024 – "Retrieving log..." still displayed after retrieval 
	complete
#564988 – Subversion context menu should have a Revert command
Fix #567222 – Please add comments for translators
Fix #567216 – Don't leave trailing spaces
Fix #567226 – Don't leave trailing spaces
Fix #567224 – Don't leave trailing spaces
Fix #567881 – Strange strings
#567523 (Goto Implementation jumps to declaration).
#567504 – New Project dialog is not centered
#567505 – Anjuta hangs while generating inheritances
#567217 – Don't use trailing spaces.
#567228 – Don't leave trailing spaces.
#548910 Hide the Global tab in case only C-files are used in a project.
#567360 – Context Help needs an icon
566924 - Subversion diff should be done from the project's root
	directory.  
#566943 – Icons are not not found
#567156 – better autodetection of language
#567010 - Can't import project if parse scripts failed
#567068 – autocomplete box should vanish on backspace
#566987 – display tooltip with prototype when calling function in project
#566693 – Code completion of symbols usually not working
#567227 – Don't leave trailing spaces
#567223 – Don't leave trailing spaces
#567219 – String fixes
#567218 – Don't leave spaces before punctuation
#567203 – small signal error in symbol-db-system
#566985 – sort multiple symbol matches by file path
#567058 – Goto Implementation can't jump to struct or typedef types
#566690 – Goto declaration menu item should go to implementation if 
	there's no delcaration
#567067 – Anjuta hangs if I close project while scanning symbols
#567049 – Goto Definition fails for symbols ending in a digit
#566699 – Default "Available API tags" for 
	Symbol Database preference tab.
#566691 – Goto declaration nor goto definition work with macros
#565981 – Don't use g_file_test()
#511589 - Remove unnecessary hack for GNOME-VFS which
  	is not needed for GIO/GVFS
#511589 – Remove dependency on gnome-vfs from Makefiles
#511589 – Anjuta uses GNOME-VFS
#566715 – invalid free in run-program/parameters.c
#511589 – Anjuta uses GNOME-VFS 

Anjuta 2.25.4 (5 January 2009) -- Johannes Schmid

Translations updates:
====================
es, fr, sv, fi, he, ru, pt_BR, pl

New:
- Symbol-db plugin now default and working, old ctags code and symbol-browser
removed
- Starter plugin for fast access to common actions
- Remote debugging support using gdbserver
- New bookmark interface
- gnome-build merge into anjuta

Updates:
- Single toolbar without bonobo
- Devhelp plugin uses webkit now
- Lots of HIG fixes
- Improved searching
- Scintilla updated to 1.77

Special thanks to (in no particular order, before the huge list of bugs appears...)
- Sébastien Granjoux (for general bug fixing, merging gnome-build and being totally awesome)
- Massimo Cora' (for doing the great work on the symbol-db plugin)
- Naba Kumar (for giving lots of input on design decisions)
- James Liggett (for the work on the version control plugins)
- Adam Dingle (for many patches and lots of QA in bugzilla)
- Jens Georg (for the GNOME-VFS porting)
- Carl-Anton Ingmarsson (for various great patches)
- Ignacio Casal Quinteiro (for updating devhelp to webkit and the new starter plugin)
- All translators and people I possibly missed here

Bugs fixed:
#565885 – Search is broken for a single file with output to find pane 
#565714 – use F11 shortcut for Full Screen
#511589 – Anjuta uses GNOME-VFS (partly)
#305515 – Bookmarks are not remembered across sessions
#566284 – search-view should match more
#566225 – activating selected row in search view does nothing
#564302 – "Loaded Project..." is confusing
#566129 – crash when project opening and file not found
#565773 – symbol scanning is very slow
#529181 – refresh dialog pops over all windows
#563988 - Zoom factor is not updated correctly in scintilla
#565769 – symbol-db blocks anjuta when files are removed
#565890 – cleanup thread handling by using a GThreadPool
#565823 – symbol-db hardcodes /usr/include for header files
#545127 – When searching down can't see below search result
#565278 – remove Next Occurrence and Previous Occurrence commands
#565014 – sort Find in Files output by filename
#564891 – Crash when closing editor window
#565691 – no Goto Definition command in symbol-db
#565701 – Anjuta hangs if ctags not installed
#565578 – Next Document command does not cycle back to first document
#565650 – Port anjuta-session from gnome-config to GKeyfile
#565706 – trailing period in symbol-db labels
#565700 – Enter key inserts garbage into Symbols / Search box
#565492 – remove usage of std i/o
#560857 – Remove deprecated GLib symbols in project wizard
#565381 – Anjuta manual needs copy editing
#564987 – Save All, Close All should appear in Documents menu
#565002 – Redo shortcut should be Ctrl+Shift+Z
#565016 – Previous History and Next History should have shortcuts
#563585 – Find in Files is extremely slow
#565189 – anjuta fails to build due to IAnjutaBookmark not being
	removed from documentation
#564673 – I cannot activate sourceview plugin over scintilla
#563889 – GNOME Goal: Clean up GLib and GTK+ includes
#563980 - displayed some more info on search tab
#309664 - Some file types impossible to open In Anjuta
#563490 – Select Code Block command selects nothing in GtkSourceView editor
#559806 – Anjuta crashes when closing unsaved file
#563988 – don't display zoom factor when using GtkSourceView editor
#564295 - minor English fix
#563500 – inconsistent case sensitivity defaults
#564377: Avoid opening an empty buffer when file does not exist
#562808 – symbol-db crashes with latest libgda
#560857: Remove use of g_mem_chunk in tools plugin
#513156: Get rid of libgnome(ui) (partial)
#563692: added a toolbar with build and execute buttons
#563696 – garbage pixels appear in build output
#563685 crash when trying to create a GObject
#563753 default project directory is "/" until I set it explicitly
#563586 Crash if project TODO.tasks is not readable
#559951: Class Generator cannot add new class
#563530: "Do not show binary files" should add ".pyc" and ".pyo"
#552081: Dependent plugins are not added in the preference dialog
#560284: Crash when deleting a folder outside Anjuta
#562623: Project creation fails if path uses a tilde
#562754: Create corresponding header file does not work
#548873: File->Close project menu remains active after closing
	a project
#562750 – The view should be showed when you search something.
#558910: libanjuta has several warnings
#560311 – Update devhelp plugin to use webkit version
#557767 – Open file in file tree view on press Enter
#312660 – Too many click to set "terminus" font
#561369: Debug->add source path menu item doesn't work
#558788 – Improving debugging
#559800 - Missing debugger menu
#558315 – Ambiguous message
#544583 Add support for gnome applet projects
#556147 Provide valid default directory for project
#552996 - New file dialog misses BSD licence
#545668 - new file are not added correctly to the project
#545668 – file's icon not correctly updated on tabs-right-click
#556053 – closing file tabs disable 'save button'
#556053 – closing file tabs disable 'save button'
#523609 – PATCH: Using a deprecated func in about.c
#554337 Allow to change build directory to project directory
#554337 Set uri instead of current_folder_uri
#554684 – Cursor column number is not updated when typing text
#554337 could not find glade file while executing a program

Anjuta 2.24.0 (22 September 2008) -- Johannes Schmid

Translations updates:
====================
he, da, de, nb, ar, hu, mr, pt_BR, cs, da, sr, gl, th, ja, hi, nl, fi, ca, es, pt, en_GB, it, sv, fr, zh_CN, sq, gl, th, gu, tr

Updates and fixes:
- New version of symbol-db plugin beta
- Fix warnings, some documents could have no associated file
- Fix #529468: Use weak pointers to avoid acting on widgets that have
  been destroyed.
- Fix #551574 Project names and descriptions are not translatable
- Fix #551684: Wrong AC substitutions in anjuta-version.h.
- Fixed a problem with async file loading.
- Fix libanjuta API documentation
- Imported new symbol icons from MonoDevelop.
- Fix #550322 - Newlines should be placed at the end of error messages
  lines
- Fix #550470 - Crash: Executing file through popup menu
- Use the View->Editor->* menu items for view spaces, view eol and
  line wrap (new) option instead of the preferences.
- Fix #549950 - crash while saving a file


Anjuta 2.23.91 (1 September 2008) -- Naba Kumar
-------------------------------------------------

Translations updates:
=====================
mr, sq, es, gl, sr@Latin, ar, fi, gu, sv, de

New:
====
* GSoC Git plugin completed: Beta 1 completes the agreed-upon feature set in
  the proposal.
* Symbol-DB plugin maturing.

Updates and fixes:
==================
* Fixed a crasher in symbol-db due to use of uninitialised memory
* Fixed bug #548622 – sun cc can not compile build-options.c
* Do not free mutex in symbol-db because that crashes 50% of the time.
* Fixed critical on plugin deactivation of message-view plugin
* Fixed bug #546109 - Spurious libanjuta-2.0.pc file
* Install anjuta-version.h
* Keep const gchar* instead of GFile in debugger interface
* Updated debugger documentation
* Updated build documentation
* when terminal window is active (remove shortcut)
* Fixed bug #548646 Delete key press is routed to editor window
* Fixed bug #549105 Patch plugin icon not loaded
* Fixed bug #549405 – There are warnings when I create a new file
* Fixed bug #548606 now engine exits cleanly even if it's in scanning mode.
  It still remains the libgda bug anyway, bug #545979.
* Fixed bug #522032 also for symbol-db.
* Added two checkboxes: one is for parallel scan control, the other is for
  the buffer updating control.
* GSoC Git plugin: Beta 1 completes the agreed-upon feature set in
  the proposal.
* Fixed bug #548984 – Use AC_HELP_STRING macro
* Use gnome-terminal if terminal plugin is missing


Anjuta 2.5.90 (18 August 2008) -- Johannes Schmid
-------------------------------------------------

Translations updates:
=====================
ar, be@latin, de, es, fi, gl, he, mk, oc, pt, ru, th, vi

Updates and bugfixes:
=====================
* Fix #536372: Write __MAX_BAUX instead of __MAX_BAUD
* Fix a crash when GNOME Terminal is not installed
* now search for symbols can be done also in global tags. Added a new parameter
	to search function and adjusted dependencies on different plugins.
* Put tables.sql into distribution
* Fix #536889 anjuta doesn't pass "make check"
* Fixed #537398 – crash in Anjuta IDE: Closed project
* Fix #537134: critical warnings tools->plugin_deactivate
* Fix #534523: anjuta parses filenames from make wrong
  GMatchInfo need to be freed even when regex fail in build_get_summary
* Fixed a possible bug where the project-manager plugin is deactivated twice.
* Fix #536375: libsocket not included cause build fail on Solaris
* Add new scratchbox 1 plugin implementing IAnjutaEnvironment
* Enabled tooltips for recent files to identify full paths.
* Ported file-manager to gio
* Fix #530215 – Have a message area like gedit
* Using glib/gi18n.h instead of libgnome/gnome-i18n.h
* Fixed a crash on file selection. Gave enough buffer for the formated
  time print.
* Restore text focus on switching editor with ALT+X and
  navigating from local-symbols view.
* Fixed #528699 – Auto-indent ignores spaces-per-indent settings
* Fix #538798: UI selected tab document differs from real one
* Fix again #538798: UI selected tab document differs from real one
* Fix #538921 – Duplicated folders
* Fix #539726 – Completing port to GIO
* Fix #513156 – Get rid of libgnome(ui)
* Fix #538443 – Missing files in POTFILES.in
* Fix #538906 – Enable state "Max actions" when "No limit" toggled
* Fix #449620 – Implement autocompletion for gtksourceview editor
* Fix #540731 - Port editor to gio
* Fixed loading of files from the command line
* Fixed crash when double-clicking on a breakpoint.
* Change (nearly) all interfaces to use GFile* instead of uris
  Document all shell variables
* Fixed #541313 – Crash on saving file
* Fix #515954 – create_global_tags.sh: wrong anjuta-tags path
* Fixed global tags loading
* Fix bug #538217: Run in terminal option isn't remembered
* Fix bug: Debugger sources directories isn't remembered neither
* Fixed "Hide binary files"
* Fix #539551 – AutoComplete doesn't work
* Fix #539551 – AutoComplete doesn't work
* Fix #357697 – readonly file can be edited
* Fix #511762 – Multiple selection don't work well when hitting enter
* Fix #535173 – UI isn't updated on closing all documents
* Fix #500962 – Further icons
* Fix #475244 – AC_SUBST() not needed after PKG_CHECK_MODULES()
* Fix #518594 – Get rid of .anjuta and follow fd.o specifications
* Fixed #541689 – Filter buttons added
* Fixed symbol-db plugin for threaded libgda calls
* Show all completions even when the editor makes own suggestions
* #541941 – Crash on searching with regular expression
* Fixed #542838 – create_global_tags.sh is creating tags in root directory
* Added 'continue global tags scan after abort' feature.
* Allow to build project outside source directory (fix #540782)
* Fix crash on closing project due to the previous patch
* Add more options for build command: parallel make, keep going on error
  and keep message untranslated
* Fix another crash on closing project with a file outside project
* Fix #375640: Allow user to stop a build in progress
* Fix #534566: expand shell variable in configure parameters
* Fix #543889: Crash typing in configuration field
* Fix #522825: Opening files from shell disable build->compile menu
* Fix configuration name not displayed, error when compiling target
  outside project
* Fix #543978: GPL license shown in COPYING file irrespective of
  which license selected
* Fix #544190: Crash double click on item in stack trace
* Fix #530630: Scintilla hand up after hit return
* Fix #544841 – Cursor set on a wrong line when I click
* Fix several memory leaks in build plugin
* Keep all command data in one object
* Fix #544495: Memory leak
* Avoid using the same function name in interfaces implemented
  by the same object to avoid trouble with bindings
* Fix crash on 64bits machine due to the previous change (thanks Ignacio)
* Fix #543149 Project doesn't rebuild when file is changed
* Bug #529270 - GSoc: Git Plugin, alpha release 3.
* Add header file to expose libanjuta versioning information.
* Add a preference for the new visible whitespace feature of gtksourceview
* Pull GIO into the libraries that libanjuta links against. (Bug #546394)
* Fix #542432 – Svn diff doesn't work correctly
  Convert the output of svn diff from localce to utf-8
* Fix #545673 – A bug in isymbol_get_file function
  Use g_file_new_for_uri() instead of g_file_new_for_path
* Fix #546620 – Build- and make dist fixes (with some small changes)
* Fix #420279 – INS and OVR do not immediately change in status bar
* Save files in their original encoding
* Use a fallback dialog if the document was not added to the document-manager
  yet (#545557 – Crash pressing on message view)
* Fix #493818 Close project with opened target properties dialog opened
  crash Anjuta
* 545624 – Toolbar broken
* Lots of improvements to symbol-db
* Use uf8_strlen instead of strlen to avoid selection problem with
  non-ASCII search strings (see #440637 comment 15)
* New git plugin (Anjuta GSoC project)

Anjuta 2.5.0 (02 June 2008) -- Naba Kumar
-----------------------------------------

Translations updates:
=====================
gl, zh_TW, el, ru, en_GB, es, he, de, cs, ar, fr

Updates and bugfixes:
=====================
* Fix #514620: Port anjuta to GRegex
* Fix #536254: gtk_marshal_VOID__INT_INT shouldn't be used
* Update sexy icon entry
* Fix #536045: New run program plugin crash
* Keep comment for enum and structures
* Declare class typedef first
* Allow to document Anjuta shell variable using define
* Add a documentation sample in IAnjutaProjectManager interface
* Fix a detail in the previous patch
* Fix #534175: Deprecated code in Plugin Tutorial
* Use sh instead of bash when possible
* Order of include matter on OpenBSD
* ps syntax differ on *BSD
* Fix #527357: gdb plugin doesn't work under OpenBSD (do not clear CREAD).
* Fix #528226: doesn't compiling on FreeBSD6.3
* #535048 – Anjuta doesn't build when checking underlinking and overlinking
* Forget this change to add AnjutaCommand and AnjutaAsyncCommand
  in the documentation
* Change the new IAnjutaBuilder interface to use callbacks
* Add the documentation of IAnjutaBuilder
* Fixed bug #532537 - Crash on closing Anjuta Preferences when it
  open twice.
* Set line to mouse location when popup-menu is displayed (#530689)
* Document AnjutaCommand and AnjutaAsyncCommand
* Fix a crash when changing a watch while debugger is stopped
* Allow loading application/octet-stream mime type
* Fix #378903: Use IAnjutaBuilder to always debug an up to date program
* Use IAnjutaBuilder to always run an up to date program
* New IAnjutaBuilder interface allowing to check if a target is up to
  data and having a notification when the target is built
* Fix #533758: django project creation fails
* #532625 – Wrong consecution of functions calls when opening a glade file
* Fix #533346: Create project in path with spaces fails
* Fix #531940: Can't change the default project directory
* Remove useless _DEPENDENCIES
* Fix #532243: Execute program with whitespace in the project path fails
* Fix #531623: Crash on updating non-existing watch
* Fixed a bunch of compiler warnings
* Fixed global tags loading from project configuration and added a
  configuration option
* Fix translation issues (#530860 and #531411)
* #531405 – AM_CONFIG_HEADER macro is obsolete
* add limit/offset keywords to search query. Adjusted APIs.
* Fixed a minor bug with caches in the engine.
* The terminal configuration default option doesn't work (#530031)
* Combobox for terminal choose not working (#530032)
* Do not reverse list of file in save-session (#531445)
* Set line to mouse location when popup-menu is displayed (#530689)
* Add a context menu with copy/paste in terminal plugin
* Add an interface method to access the pkg-config data from gnome-build.
* Automatically load symbol from project configuration (proof-of-concept)
* Adapt to changes in recent libgda for symbols-db
* Fix run plugin again, previous patch was causing a crash when
  the program exist
* Fixed bug broken titles for new files
* Added some utility methods (derived from gedit)
* set message 'Generating inheritances...' when doing sdb_engine_second_pass_do ()
* fixed a population bug introduced with using of caches. It broke the kind
  of symbol in some cases (e.g. returning of table_id = -1). 
* Avoid lazy initialization and inlined the lookup functions to speed up the
  thing.
* Performances improvement in sdb_engine_second_pass_update_heritage () using
  a prepared query (libgda parser now rulez!). Some fixes to the lock ()/unlock ()
  logic in this part should avoid gui freezing, at least here it does not freeze.
* greyed out trees while population is in place.
* Put the new run program plugin in the default plugin list
* Fix a crash when the program doesn't exist
* Put the menu items of the message-manager in the correct Goto menu
* Allow markup in dialog description
* #523186 – Open With dialog should mention filename
* #530033 – Have window title like gedit
* Also add the dirty char (*) at the beginning of the filename to match HIG
* Moved Goto menu into View to avoid cluttering the menubar and created
  new Documents menu
* Show open documents in the "Documents" menu and add actions for next/prev
  document like in gedit. Don't center menu items of notebook popup menu.
  (Fixes bugs #453702 and #529528)
* 530566 – Fix translation and POTFILES.in
* Use current project folder as default and added a file filter for
  the patch file chooser.
* fixed search symbols to match "foo_symbol_%"
* New run program plugin, includes a new dialog box to set
  program arguments
* Update debugger plugin to use run program parameter dialog
* Remove run program menu item
* Use a gchar * null terminated array instead of a GList for
  passing environment variables
* Add a child-exited signal in the IAnjutaTerminal interface
  Remove environment variables merging, it is already done
  in vte
* fixed partial pattern match in symbols accordingly with api.
* Hide progress bar when things are done in symbols db.
* new dynamic prepared queries architecture. Now every query used in the
  engine has its own compiled query in libgda-sqlite provider. This for speed
  improvements, code cleaning and auto-escaping of string parameters. 
* Lookup of dynamic queries takes care of sym_info parameters and of 
  parameters passed to functions. The compiled GdaStatements are stored in an 
  array of GTree (of GTree(s)). Some parameters, as the filter_kinds, 
  are bounded at n = 5, to avoid a third level of indirection on the store-trees.
* Fix #529798: Mark additional strings for translation
* Add additional restriction on project name fix #529226
* Fix #529506: Uncorrect unloading tools plugin
* Don't spit out two many warnings when the message view is destroyed
* Only use first 500 characters for validation
* Use GRegex instead of pcre and convert files to utf-8 if necessary.
  Rest of #440637
* #528693 – Ctrl-F (Find) followed by Ctrl-V (Paste) pastes into main window
  (there was an else missing...)
* Fixed bug #528264 - New: Uses incorrect spelling "assistent"
* Fixed a condition where we kill our own process
* Added new sessions states to avoid loading the local symbols before
  the session is loaded (speeds up start-up).
* Fixed #528705 – There is no Redo
* Add an env parameter in the IAnjutaTerminal interface allowing
  to specify additional environment variables
* Show 5 project and 15 file items in recent-chooser
* Make searching utf-8 aware. We still need to fix encodings for
  search/replace in files as it is currently assumed they are utf-8 like
  the editors.
* Fix recent files in the toolbar
* Do not enable brace autocompletion by defualt because it annoying for
  fast typist (i.e. it's easier to type ending brace than move carat)
  and it's currently broken for scintilla.
* Removed dead files.
* Added anjuta_utils_get_user_config_dir. This func is used
  to get the user config directory.
* Switched from GnomeApp to GtkWindow.
* Move the encoding conversion infrastrcute to libanjuta and update all
  users. Test all available encodings by default in scintilla editor
  like sourceview is doing and removed encoding preferences
* Fixed crasher
* Various small improvements to the dialog
* Add separator to recent menu (#526932)
* Merged the UI changes from bug #511688 and simplified the search dialog
* Check for ctags binary (#516123)
* GdaSet *plist is now used globally for every prepared statement.
  It won't be created/unreffed at every query.
* Fixed crasher when deactivating symbol-db plugin
* Don't use transactions - uses only half of the time now!
* fixed global tab icons. Libgda could not understood the right fields, now it
  does.
* Only show () for functions/methods and macros with arguments. Does not work
  with symbol-db yet but fixes things for symbol-browser
* Fixed some issues with symbol caching
* Give the symbol-db it's own progress bar because there are too many
  interactions with the global status bar.
* Sort symbol trees
* Block insert-text signal on cut/copy/paste
* Only update buffer when a newline is inserted
* Precompute file_defined_id to speed up symbol population
* Fixed some problems with binary streams needed by symbol-db
* Use some caching to speed up symbol population
* Exit properly when symbol scanning is over
* Fix bug #525999: Remove space in file and target names generated
  by project wizard
* Fix sample anjuta plugin: ianjuta_document_manager_get_current_editor
  has been renamed ianjuta_document_manager_get_current_document
* Added a check for vital programs and packages needed to create a
  new project. A warning dialog is shown to user in project
  wizard when he proceeds after selecting a project type.
  Updated all project templates to cover vital programs and
  packages to generate and build correctly.
* Fixed bug #523068 link in about window doesn't work.
* Removed unused color management code
* Added style chooser for sourceview editor (#522555)
* Moved "New" action from document-manager to file-loader using 
  IAnjutaDocumentManager interface. Reenabled pop-down menu for "New"-ToolItem.
* Killed libegg (#349279)
* Removed dead code and libegg from Makefiles
* Removed symbol-browser toolbar which used libegg and was
  buggy (#451588)
* Port FileLoader to GtkRecent (#398984)
* Merged changes from symbol-db branch
* Use gnome_vfs_get_slow_mime_type()
* Use gnome_vfs_get_slow_mime_type() to determine the mime-type and try
  supertype instead no plugin for mime-type was found (#525706)
* Fixed padding in preferences
* #515854 – Move configuration into preferences
* #470483 – Make toolbar type (icon/text/both) independet from GNOME settings
* Improve start program dialog, allowing to specify working
  directory and environment variables
* Get rid of gnome_help_display_with_doc_id()
* Fixed type 'assistent' to 'assistant'.
* Ports anjuta-ui to gtk_cell_renderer_accel
* Ported the GnomeDruid stuff to GtkAssistant an removed the glade
  file because libglade doesn't have GtkAssistant support.
* Avoid a crash when debugger stop on an error
  Display an error message when debugger target is not found
* Fixes 520076 – [PATCH] Add support for setting custom CFLAGS from the UI
* Add API to set environment variables for the forked process
* #520761 – Weirz behavior with popup
* 520415 – [PATCH] Problems in auto indentatation code,
* 520766 – Brace autocompletion (Patch from Ignacio Casal Quinteiro <nacho@gnome.org>)
* 521691 – Crash when click "Resolve Conflicts" without opened project
* 520324 – Execute command is not overridable
* #521847 – anjuta freez when edit file
* Removed all GNOME_CALL* calls in plugins.
* Moved data/properties to plugins/editor/ and removed dead code from
  Makefile.am files.

Anjuta 2.4.2 (27 May 2008) -- Naba Kumar
-----------------------------------------

Updates:
========
Translation updates: he, pt_BR, es, ca

Bugfixes:
=========
* Fixed bug #440637: Make searching utf-8 aware
* Fixed bug #528705: There is no Redo (from trunk)
* Fixed bug #528693: Ctrl-F (Find) followed by Ctrl-V (Paste) pastes into main window
* Fixed bug #531623: Crash on updating non-existing watch
* Fixed bug #532243: Execute Program with whitespace in the project path fails
* Fixed bug #531940: Can't change the default project directory
* Fixed bug #533346: Create project in path with spaces fails
* Fixed bug #532625: Wrong consecution of functions calls when opening a glade file
* Fixed bug #533758: django project creation fails
* Fixed bug: crash when changing a watch while debugger is stopped
* Fixed bug #532537: Crash on closing Anjuta Preferences when it open twice.

Anjuta 2.4.1 (07 Apr 2008) -- Naba Kumar
-----------------------------------------

Updates:
========
Translation updates: el, zh_TW, zh_HK, ml, ru, en_GB and it

Bugfixes:
=========
* Fixed #520761 - Weirz behavior with popup
* Fixed #520415 - [PATCH] Problems in auto indentatation code
* Fixed #521691 - Crash when click "Resolve Conflicts" without opened project
* Fixed #520324 - Execute command is not overridable
* Fixed #521847 - anjuta freezes when editing file
* Fixed #525706 - Use gnome_vfs_get_slow_mime_type() to determine the
   mime-type and try supertype instead no plugin for mime-type was found
* Fixed #525999 - Remove space in file and target names generated
   by project wizard
* Fixed sample anjuta plugin
* Block insert-text signal on cut/copy/paste

Anjuta 2.4.0 (10 Mar 2008) -- Naba Kumar
-----------------------------------------

Updates:
========
Translation updates: ca, it, es, pt_BR, gl, fi, lt, fr, en_GB, hi, hu,
nl, ja, zh_TW, zh_HK, ar, ru, sv, nb, da and ml.

Bugfixes:
=========
* Hide tooltip when Up, Down, Page_Up or Page_Down is pressed
* Fixed memory leaks and implemented ianjuta_editor_get_offset() which
  was missing.
* Updated prepare-Changelog.pl to latest script version in gnome svn
* Escape tooltip text to avoid broken markup
* Removed some debug code
* Fixed #519275 - Subversion should allow offline diffs
* Fixes #518469 - Save message buffer not working good
* Added a configure requirement for scintilla editor plugin
* Fixed tags generation that broke in last release.

Anjuta 2.3.5 (25 Feb 2008) -- Naba Kumar
-----------------------------------------

Updates:
========
Translation updates: si, es, oc, ne, kn, de, en_GB, fi, be and pt_BR

Bugfixes:
=========
* Fixed #515867 - Anjuta dies on startup
* Fixed #515868 - File browser only shows icons when activated
* Fix anjuta_launcher_set_encoding() and cleaned-up. Mostly backported
  from symbol-db branch
* Fixed #515954 - create_global_tags.sh: wrong anjuta-tags path
* Move anjuta-shell to noinst_PROGRAMS as it is just a test
* Indent lines after comments correctly
* Set indentation size correctly in sourceview plugin, when tab size is
  set by language support plugin
* Indent /* */ comments correctly for multilines.
* Fixed #504905 - Ctrl-I (Auto Indent) doesn't indent properly after
  C++ public: and private:
* Fixed #516014 - Output in UTF-8 format to avoid hangs with the editor.
* Fixed #516377 - Status bar does not change its status of 'Search for
  .. continued at top'
* Fixed some memory leaks 
* Fixed #516128 - crash in Anjuta IDE: selected profiler as the...
* Fixed #516737: Import project doesn't load project with space in name
* Fixed #516743: Import project keeps an old date on project file
* Fixed #515207: Add a new project window screenshoot
* Fixed #515993: "Add package" button is "Add Package" in code
* Fixed #516727: "Build All" is "Build Project" in code
* Fixed #516728: "Clean All" is "Clean Project" in code
* Fixed #516728: "Autogenerate" is "Run Autogenerate..." in code
* Fixed #516730: Fix note title 
* Fixed #516630 - Selection custom binary in profiler is not user-friendly.
* Fixed #516641 - Valgrind: Load Log does not clear list
* Fixed implementation of get_character and return value of iiter_first()
  and iiter_last();
* Cleaned implementation of char-added signal by using "insert-text" signal
  instead of filtering "key-press-event"
* Some bugfixes and clean-ups in comment indentation code
* Load executable in gdb with space in path name 
* Fixed "char-added" signal to pass the correct iterator
* Set breakpoint in file with uncommon characters in path name
* Avoid a glib warning if no project is loaded
* Fixed #518329: Crash when adding breakpoint and other similar bugs

Anjuta 2.3.4 (11 Feb 2008) -- Naba Kumar
-----------------------------------------

Bugfixes:
=========
* Documentation fixes for IAnjutaDebugger* interfaces
* ianjuta_document_manager_find_document_with_path expect an uri not a path.
* Fix #513130, #513131 #513135: Wrong menu item names and errors in the
  documentation
* Remove a possible memory leak
* Fix #512901: Crash when adding a breakpoint
* Fixed Editor->View popup menu for those entries that are appropriate for
  sourceview	
* Fix #507831 - Wrong Profiler values for some locales
* Fixed button ui problem...
* Fix #511586: Project path with "+" not working in debugger
* Emit all state changes notification
* Avoid crash when getting relative path from debugger (same fix
  than for #510028)
* Fix #513485: wrong strings maked as translatable
* Fixed crash when closing anjuta after all document tabs have been closed
* Fixed "jumping" tooltips, fixed indentation of brances
* Fixed #512751 - libgnomeprint unnecessary without scintilla
* Use two decimal places for float values in profiler views (bug #507831)
* Another UI issue with the patch plugin and silenced a compiler
  warning
* Updated manual figures to be in clearlooks theme, removed old figures
* Updated manual
* Fixed tabsize preference
* Adapted to API changes in GtkSourceView
* Fixed wrong status message output when resolving svn conflicts.
* Pass an uri to ianjuta_document_manager_goto_file_line_mark() to fix
  clicking on search result messages
* Fixed #512535 - Open files tabs' position is correctly remembered 
  but not applied at startup
* Adjust preferences default values
* Fixed #513730 - Option not present in the GUI po file
* Fixed #509908 - [UI] Problems with the General settings tab
* Fixed #511010 - [UI] Execute program utility window
* Fixed #511981 - Error parsing make output
* Fixed #495511 - Header_h macro correction
* Fixed #513888 – Trailing '\' in anjuta-manual/Makefile.am 
  causes make install to fail
* Partial fix of #507921: translation issues in debug-manager, tools,
  project-wizard, gdb and anjuta-plugin-manager.
* Update debugger documentation
* Fix bug #514118: Rename Clear All Breakpoints to Remove
  All Breakpoints
* Fix search plugin to use an URI instead of a file path
* Fix anjuta_docman_get_uri to always return an URI
* Fix bug #514124 and bug #514138: Wrong menu item name
* Fixed translation bugs from #507921.
* Removed unused files in scintilla plugin
* Fix translation bug #514494 and bug #514440
* Fixed #514732 – 64 bit compliation error
* Fixed bug #514733 – Use of uninitialized variables
* Fix crashes when trying to stop the debugger while it is busy
* Fixes bug #515500 - Make sure that all paths are "canonical" by
  libsvn rules so anjuta doesn't die if the user gives a path that
  libsvn doesn't like. 
* Removed (almost) empty files, fixes #515383 and #515388
* Fix interrupt command, not working due to previous change
* Fix #512531 - Parallel build fails
* Fix translation bug #515459 and #515460
* Fix bug #515463: Deattaching process kill it
* Fixed stream comment
* Fix spelling errors, including bug #515204, #515172, #515117 and #513892
* Fixes bug #510183 - Tooltips claim to be broken.

Anjuta 2.3.3 (27 Jan 2008) -- Naba Kumar
-----------------------------------------

Changes:
========
New menu item to add extra source directories for debugger
Select the first window in the glade project when it is first opened. 

Bugfixes:
=========
* Fix #507304 – crash in Anjuta IDE while removing done tasks
* Do not reopen file having escaped character (+,...) in path name
* Add forgotten Swedish entry to DOC_LINGUAS.
* Adds export-dynamic option to LDFLAGS to project template for libglade
  to work for autoconnect signals.
* Install anjuta-tags binary into FHS policy compliant directory and
  update references. (Fixes bug: 509346.)
* Do not use opacity in assist window in sourceview editor.
* Fix memory leaks
* Added printing support to GtkSourceView editor
* Fixed API docs
* Many string fixes
* Refresh the symbols for new file saved.
* Fixed bug #502322 - Highlight doesn't work on new file saved
* Removed unused gconf_notifications in task manager plugin.
* Fixed bug #509864 - No initial section selected when opening the Preferences dialog
* Fixed bug #509865 - Incorrect padding in the Documents settings tabs
* Fixed bug #509867 - Create button contents is mis-aligned
* Fixed bug #509869 - "Add Directory" button is not HIG complient
* Fixed bug #509875 - The "Update globale tags" button wording is incorrect
* Fixed bug #509873 - Build Autotools Preferences has excessive padding
* Fixed bug #509872 - General Information labels are incorrectly aligned
* Fixed bug #509871 - General preferences has incorrect use of colons
* Fixes bug #508805 - Add support for both file and folder preferences.
* Fixed bug #508399 - When you enable a plugin, preferences don't show up
* Fixed bug #507627 memory tab stay active on debugger stop Remove two unused
  variables due to the previous patch
* Fixes Bug #509510 - Check input of some dialogs to avoid termination
  if user gives bad or no input
* Resupport cut/copy/paste/clear on GtkEditables when those have focus.
* Fixed symlinks (#510238) and file permission (#405321) handling
  for scintilla editor.
* Remove reference to IAnjutaCpuDebugger (useless)
* Use gulong instead of guint for addresses
* Split IAnjutaCpuDebugger interface in IAnjutaDebuggerRegister,
  IAnjutaDebuggerMemory and IAnjutaDebuggerInstruction
* Use editor native funtions to avoid round trips.
* Enable logging of gdb communication with an environment variable
* Fix bug #488519, remove critical warning (completion_cache == NULL is valid)
* Fix #498734, typing error in c++ project template
* Fix a crash when scrolling in the diassembly window
* Start the terminal shell on plugin activation
* Fix #502508, use anjuta_launcher to keep program output
* Fix parsing with quotes in the command line. 
* Fixed #465084 - wizard instead of assistant (only string changes...).
* Update IAnjutaEditor and IAnjutaIndicable interfaces to take iterators
* Fix #511757 - Close icon in tabs cut off.
* Fix #511049: Change UI of add source directories dialog
* Fixed some of gtk+ critical warnings.
* Rename filename argument to uri when an uri is expected
  anjuta_docman_get_document_for_uri will remove symlinks 
* Probably fix #510028: crash debugger when having a relative filename
  in stack trace
* use gnome_vfs_get_uri_from_local_path to get local path from uri
  This takes care of escaping some characters
* Fix #512224: Use a string in english
* Fixes Bug #427108 - Scintilla plugin configuration folding-style
  setting not working
* Fixed Bug #365490 - problems displaying Scintilla Colors & Fonts dialog
* Added scrollwindow shadow in save dialog.
* Removed unmaintained rpm spec file.

Anjuta 2.3.2 (11 Jan 2008) -- Naba Kumar
-----------------------------------------

Changes:
========
* Document manager cleanups.
* Use GtkSourceView 2.1.x for sourceview plugin.
* Debugger improvements and cleanups.
* Use hover interface to display variable inspect values.
* Added (basic) support for vim modelines (#504331)
* Added basic Vala support
* Add a menu item to repeat the quick search

Bugfixes:
=========
* Fixed bug #501469: Crash if mime_type is unknown
* Fixed a bug remove all breakpoints was not working due to latest changes
* Setting breakpoints is disabled when program is running
* Fixed bug #481366: Do not stop at the beginning of the program
* Fixed removing condition on breakpoint 
* Fixed bug #488732: Breakpoint on delete lines
* Breakpoints are now linked to their position in editor
* Fixed a crash when a stack command is cancelled
* Do not save temporary breakpoints
* Fixed bug #502533: Implement assembler step
* Present correct widget with anjuta_shell_present_widget(). This got wrong
  when the new search bar was introduced.
* Save glade files correctly in session
* Use new tooltip API if available in glade plugin.
* Sort notebook pages when session is restored (needs work)
* Gtk 2.12 Tooltip API is used if available in document manager.
* Fixed some issues with session handling and several memory leaks in docman.
* Remove address, condition and pass breakpoint column if not supported
* Fixed clear all remove_all to avoid an endless loop if a breakpoint
  cannot be removed
* Fixed bugs #497878 crash when double clicking on gtk-foobar.glade in PM.
* Fixed #503719 Opening and closing .glade files plays badly with docman.
* Fixed next/previous message
* Fixed bug #491301: Inspecting a variable opens a bad focus dialog
* Fixed bug #504818 Some signals/timeouts should be disconnected when dialogs are closed
* Fixed bug #505237 Sort list of modified files
* Shorten down the title bar if the current path is inside the opened project
* Fixed #505315 anjuta hangs when going from editing a glade file to
  editing a c source file
* Fixed #498986 Anjuta-2.3.0 fails to build
* Fixed #506266 – Attempting to build the scintilla plugin, even when
  explicitly disabled
* Fixed GtkFileChooserButton preferences to also work when only the combo
  changes without a dialog being open.
* Only install glade catalog files if glade-3 is available
  (Fixes #506269 and #500296)
* Fixed #506740 – ianjuta_editor_get_text crash if request text
  past the buffer length
* Unregister preferences for custom preferences when the widget is
  destroyed.
* Fixed #486724 and #488615
* Removed stock icon open/save from
  menus to avoid conflict with file open/save. Fixes bug #507455
* Fixed #507441: Disable all breakpoints doesn't work
* Fixed #507444: Enable Breakpoint menu item doesn't change name
* Fixed #348854 invisible cursor in certain themes
* Added disable_password_check for stream where it does not make sense 
  (e.g symbol-db) and lots of DEBUG_PRINTS to better scope launcher errors
  that sometimes occur in symbol-db plugin
* Made all of the columns resizable and reorderable.
* API in AnjutaDescription for translatable properties. Fixes bug #496833
  comment #18.
* Fix bug #505205
* Fixed a crash when creating a new file
* Fixed editor popup menu (Cut, Copy, Paste)
* Fixed a memory corruption reported in bug #507491.
* Fixed #460390 Changing categories while edinting something
* Fixed translation issues (#496833)
* Fixed #508424 Auto complete: previous char was removed when
  pre TAB to auto complete.
* Fixed #508497 and added a new chooser to select whether to use
  libglade or not.

Anjuta 2.3.1 (02 Dec 2007) -- Naba Kumar
-----------------------------------------

Changes:
========
New improved subversion plugin (bug #457477)
New improved icons (bug #480093)
Major improvements to debugger
Internationalization improvements

Bugfixes:
=========
* Bug #493062 – gcj template needs AC_PROG_CC
* Bug #493212 – Use GTK_STOCK_ABOUT i.s.o. deprecated GNOME_STOCK_ABOUT
* Bug #422329 – Creating a new directory in program options doesn't work
* Bug #493583 – crash in Anjuta IDE: trying to open a file
* Replace anjuta_children_register by g_child_watch_add
* Fixed translations (Bug #496833, Bug #488211 and Bug #497758)
* Removed unused code in document manager.
* Bug #495536 – Plugins localization improvement
* Bug #495245 – Strings bug
* Add a pulsing progress bar to all dialogs receiving status
* Whole Project checkbox enabled by default in diff and update dialogs.
* Changes the editor names for diff editors to something much more descriptive. 
* The diff dialog should have a checkbox, enabled by default, that
  allows the user to make sure that all open files are saved before diffing.
* Do not insensitize New action when there is no document. Indentation fixes.
* Removed redundant icon.
* Fixed dockitem positions for subversion and symbol-db widgets.
* Use Ctrl+Shift+s as shortcut for Save As
* Partial Fix translation Bug #496833 comment 4,7,8,9,10,11 
* Debugger: Display error message returned by debugger command Add new error codes
* Debugger: program-unload signal does not exist used debugger-stopped
* Debugger: Do not display address when not needed
* Debugger: Breakpoints directly connect to debugger signals
* Debugger: Remove gnome terminal check function
* Debugger: Use anjuta terminal plugin instead of gnome terminal
* Debugger: Partial fix of bug #481366
* Debugger: Fix a stupid crash when changing a register value
* Debugger: Rename IAnjutaBreakpointDebugger into IAnjutaDebuggerBreakpoint
* Debugger: Fix parsing of breakpoint data
* Debugger: Add a breakpoint list command
* Debugger: Implement condition, hit count, ignore and temporary attribute
* Debugger: Remove editor watch when plugin is deactivated
* Debugger: Connect debugger signal only when program is loaded
* Debugger: Rename get_feature in is_supported
* Debugger: Fix bug #500376
* Debugger: Use different signals in IAnjutaDebugManager and IAnjutaDebugger

Translation updates:
====================
nb.po, it.po, es.po, gl.po, sv.po, sl.po, ru.po, ko.po, de.po,
ja.po, oc.po, ko.po

Anjuta 2.3.0 (31 Oct 2007) -- Naba Kumar
-----------------------------------------

Changes:
========
* Support for GError in interfaces.
* Big improvements in debugger.
* On demand preferences dialog (faster startup) and moved to Edit submenu.
* Moved plugins and shortcuts settings inside General preferences page.
* Move preferences menu from Settings to Edit submenu.
* Got rid of Settings submenu.
* Updates for glade-3 recent releases.
* Sort preferences pages on title.
* Introduced document-interface and reorganized documents handling such
  that documents tab can now hold any 'document' and not just editors.
* Glade files are now opened as documents, so they behave just like editors.
* Do not display registers list if not available
* Big fixes in glade plugin.
* Fixed lots of memory leaks (thansk valgrind)
* Change the address of FSF in various files
* Cleaned up message view (#458041)
* Cleaned up message view
* Removed some deprecated widgets.
* New and better (uses gnome-vfs) file-manager plugin
* Big improvements in autocompletion, both in scintilla and sourceview editors.
* Whole lot of new icons for toolbars and plugins.
* Added preference option to set the gdl switcher style
* Function tooltips are finally supported in sourceview.
* Added nicer icons for document manager and debugger.
* New incremental "Quick Search" bar in the document manager
* Improvements in plugin framework.
* Added API for commands override in build interface

Bugfixes:
=========

* Fixed anjuta-plugin project wizard
* Fixed selection management in sourceview
* Fixed incremental search
* Fixed #427390 – Show path of item in currently focused editor window
* Fixed #458034 – Method of indicating unsaved changes breaks convention
* Fixed #343522 – Unable to execute commands that use options.
* Fixed #466031 – Update of pieces of menus for Localization
* Show an error dialog instead of crashing when plugin loading fails
* Clean up debugger queue
* Many small code, warnings and leak fixes
* Fixed #440637 – Search, don't work very well
* Fixed #478238 – set env for execute programe in the terminal
* Fixed #479020 – Use of old open file dialog instead of GtkFileChooser
* Fixed #427104 – No "highlight" of lines matching find-result
* Improved (programming) language management.
* Fixed #480851, disconnect save_session signal when plugin is unloaded
* Moved indent code to it's own plugin.
* Fixed #478987 – Unusable 'Indent setting window' on preferences
* Fixed #477976 – Keybinding in run dialog
* Fixed #482067, escape project wizard user defined strings
* Fix several crashing bugs (including bug#482985) with the debugger
  when closing project, stopping the debugger, restarting the program
* Scroll to selected executable and remember it across sessions
  (followup of #477976)
* Fixed #357544 – incremental search should work consistently (or not at all) 
  when main toolbar is hidden
* Bug 440637 – Search, don't work very well (partly for incremental search)
* Use the same marker for 'important' in sourceview editor as
  gedit (yellow background)
* Correction to various search-related issues
* Move glade properties widget into center because it is way to big for
  the sidebar
* Added preferences to file-manager.
* Fixed crash when closing a project and unloading another while
  the debugger is enabled
* Fixed #487854 – Anjuta crashes when i try to add a SVN url
* Remove maximum gdb command length, should fix bug#474811
* Fix #488061: Mutiple crash dialogs
* Fixed the language supprt loading unloading stuff.
* Added some separators to the toolbar
* Fixed #487683 – undefined operations in libegg/eggtreemodelfilter.c
* Bug 489798 – Do not rely on svn-config

.. and others

Anjuta 2.2.2 (23 Oct 2007) -- Naba Kumar
-----------------------------------------

Changes:
========
* Fixed #477976 - Keybinding in run dialog
* Fixed #427104 - No "highlight" of lines matching find-result
* Fixed #479020 - Use of old open file dialog instead of GtkFileChooser
* Fixed #478238 - set env for execute programe in the terminal
* Update EggRecent (#456465)
* Fixed #466031 - Update of pieces of menus for Localization
* Fixed #343522 - anjuta: Unable to execute commands that use options.
* Improved incremental search (still sucks) and selection management in
GtkSourceView editor
* Fix bug#487112, crash while removing a breakpoint in a new file
* Fix bug#486597, crash when gdb is not installed
* Fix bug#482067, escape project wizard user defined strings
* Fixed #477976 - Keybinding in run dialog
* Fixed #427104 - No "highlight" of lines matching find-result
* Fixed get_current_word (useful for API help)
* Fixed #487854 - Anjuta crashes when i try to add a SVN url
* Fixed #474811 - Anjuta crash while debugging into variable
* Fixed #488061 - Mutiple crash dialogs
* Show error dialog instead of crashing when plugin loading fails.
* Fixed glade-3 3.3.2 build compatibility.
* Fixed #488928 - Do not register glade plugin if it wasn't built.
 
Anjuta 2.2.1 (06 Sep 2007) -- Naba Kumar
-----------------------------------------

Changes:
========
* Fixed lots of memory leaks (thanks valgrind)
* Fixed crasher on shutdown
* Avoid an endless loop if clearing all breakpoints while the programm
  is running
* Fixed help activation (bug #451557).
* Fixed compiler warnings.
* Fixed #423467 (View->Tasks menu items are not checked on startup)
* Fixed anjuta-plugin template plugin by moving the "\" out of the [IF] block
* Fixes bug #433552: crash in Anjuta IDE: add file test.h in project on
  generic Makefile.
* Disables 'Add to project' in wizards for projects that can not add sources.
* Fixed bug #450217: Refreshing tree brings to random crashes
* Fixed bug 453931 - crash in Anjuta IDE: Trying some c++ exampled
* Fixed bug 457093 - crash in Anjuta IDE: just typed in some text

Anjuta 2.2.0 (25 June 2007) -- Naba Kumar
-----------------------------------------

Changes:
========
* Autocompletion in gtksourceview editor.
* Allow/remember target specific options in profiler plugin.
* Allow selecting independent executable target for profiler.
* Fixed class generation templates.
* Updated users manual.
* Updated faqs.
* Simple support for building and executing inside scratchbox.
* Use progressbar instead of messages for system tags creation.
* SDL project template for project wizard.
* Be able to forget previously selected plugins from query dialog.
* Fixes in loading project
* Build fixes for some platforms.
* Fixed lots of bugs, both stability and usability bugs (see below).

Translation updates:
====================
es.po, gl.po, ja.po

Bug fixed
=========
#306968 After a time of write (may be the program make a auto-save), if you try to save the program detect a more recent version in the file vs. the buffer.
#310577 Chosen plugins aren't kept after application is closed
#314277 Option for Anjuta 1.x style project files
#315635 There's no SDL wizard...
#315983 Mac OS 10.3/Darwin support
#320192 Shared library targets compiled as executables
#346207 task manager doesn't repaint- anjuta 2.0.2
#350003 crash when doing file->new
#355151 drag/drop into editor window should open file
#355166 in Find dialog, Search Expression combo list is always empty
#358560 segfault while trying use scinilla editor
#362372 Problems with Help->About and a warning when creating a new file.
#371406 Anjuta 2.0.2-8 hangs on startup
#377461 don't create new message window for each build/find
#390990 Anjuta errors out when attempting to create generic C project
#393680 huge icon on the files pane for .anjuta files
#395362 Tagmanager crashes on update - Probably because of project reload
#397881 The credits are empty
#400572 Anjuta crashes on file pane refresh
#403502 User should also be allowed to select an independent executable target
#403503 Incorrect use of AnjutaPreferences. Use AnjutaSession instead
#412186 crash in Anjuta IDE: Crash on initial app. st...
#417372 Scintilla Editor Crash
#418448 crash in Anjuta IDE: I just installed Anjunta...
#424121 anjuta Cygwin fixes
#424845 crash in Anjuta IDE: I was closing a project ...
#427101 Compiler reports various warnings about sloppy code
#427395 Typo in configuration GUI
#427399 Typo in configuration GUI
#427406 Subversion plugin won't stay unloaded in new session
#427410 Enable changiing of editor for a project
#427702 Creating a static ou dynamic library
#428032 Crashes when removing "other files" sub-tree
#437466 Implement IAnjutaEditorAssist interface
#437688 crash in Anjuta IDE: closing project
#437689 when i generate a new c++ class it ask me to reload the file cpp
#437960 crash in Anjuta IDE: trying to start anjuta
#438878 Using gtksourceview editor for the first time has black background
#439710 Use G_DEFINE_TYPE parent_class global variable
#440196 crash in Anjuta IDE: removing a target (other...
#440370 Symbol browser doesn't jump to definition
#440585 Crash on opening source file
#440801 config.h should not be included in libanjuta public header
#440866 Anjuta aborts with numerous assertion failures when adding a new message view tab
#442038 Makefile-Project Wizard always fails
#442314 Autogeneration fails when there is no autogen.sh
#442315 After calling configure, the build menus are still insensitive
#445171 Build Failure on Slackware-11.0/Garnome: missing #include <sys/types.h>
#445707 undefined symbol: glade_project_get_changed
#447304 Souceview system default font should used fixed font (one used for terminal)
#447655 C keyword must NOT be localised
#448034 Anjuta crashes on starting
#448053 Crash on deactivating
#448408 crash in Anjuta IDE: Trying to change the edi...
#448491 Empty Lines Problem

Anjuta 2.1.3 (11 May 2007) -- Naba Kumar
----------------------------------------

Changes:
========
* Fixed glade plugin build against glade3 svn trunk
* Fixes for sun cc compiler
* Fixes for cygwin
* Debugger fixes
* Icons for build messages.
* Enabled makefile based projects (not fully working)
* Resolved namespace conflicts
* Better templates for GObject class generator.
* Fixes to editor life-cycle
* Support for shared library in new project templates.
* Fixes subversion build.
* New django project template
* New minimal and flat project template

Translation updates
===================
dz, hu, ja, de, gl, ar, en_GB

Bugs fixed
==========
#346355 search in project files don't work the first time
#355145 makefile-based projects are broken
#359399 Anjuta crash, I don't know (remember) why
#378193 Find in Files for empty string hangs Anjuta
#397505 code errors reported by compiler
#397509 Close project menu-item is disabled when no project file is open
#406963 File > New > Glade File does nothing
#409412 crash in Anjuta IDE: Changing font preference...
#417875 Use G_DEFINE_TYPE in plugins:class-gen
#417918 Use G_*_DECLS macro in Header_c maco
#419008 Does not use prefence set e-mail
#419036 Only one hyphen is replaced by underscore in macros
#422143 Crash when loading multiple files or several files quickly
#423680 sun cc can not compile anonymous union
#423682 sun cc can not compile with zero subscript
#423727 sun cc can not compile with inline function can not use static function
#423730 build fail on different return value of function anjuta_launcher_get_child_pid
#423733 build fail on solaris: missing header files in anjuta-utils.c
#423737 build fail on solaris: can not find lib util
#423768 compile fail on plugins/class-gen/window.c: void function cannot return value
#423772 compile fail on plugins/class-inheritance/class-inherit.c: invalid cast expression
#424121 anjuta Cygwin fixes
#424845 crash in Anjuta IDE: I was closing a project ...
#425850 anjuta crashes on import project from existing sources
#426701 can not find subversion --with-svn-include
#427395 Typo in configuration GUI
#427399 Typo in configuration GUI
#430401 Anjuta crash when closing file when debugger active
#433070 [Patch] Run gtk-update-icon-cache in uninstall-hook

Anjuta 2.1.2 (28 March 2007) -- Naba Kumar
------------------------------------------

New: Plugin profiles. Each project and user session would remember their plugins.
New: Improvements and clean up of icons.
New: API docs improvements.
New: Translatable strings cleanups.
New: Display program counter and breakpoints in disassembly view
New: Add markers in the disassembly view
New: Display function name in disassembly view
New: Segmentated toolbars for added configurability. Store and restore toolbar states.
New: Several stability improvements in debugger and others.
New: Improved local tags navigation
New: Fixed/improved global/project tags navigation (highlighting, autocompletion, calltips work now)
New: Improved gtksourceview editor component.
New: Improved autoindentation
New: Add a window displaying all threads in debugger
New: Several improvements in debugger navigation.
New: Improved prepare changelog tool script
New: Improved docking strategy. No more docking anomalies when enabling new plugins

Translation updates
===================
gl, en_GB, dz. hu, ca

Bugs fixed
==========
#306971 The auto-ident in swich/case doesn't work in an intelligent way (the best is for version 1.2.x series)
#355155 Goto / Matching Brace does nothing
#357541 can't launch Anjuta project file from Nautilus
#360462 Avoid markup in translatable messages
#374709 Anjuta Crash activating devhelp plugin
#377483 don't display "D" beside each directory in Files view
#378927 allow switching threads in debugger
#387208 [Patch] Add custom file-manager ignore pattern support
#392904 Disassembly view navigation is uncomfortable
#394709 symbol browser preference window is does re-size correctly
#397981 Automatic indentation does not work in some cases
#398035 Project manager templates are not localized
#398985 File symbol list as a combo box is useless. It should just be a button with popdown
#402774 No button at Empty Log message
#403514 Double clicking on the function names does not do anything
#407115 debugger crash on right-click on a frame in stack trace pane
#407314 build breakage in class-gen plugin
#407473 refresh dialog appears after saving a file
#408218 cass-gen is setting gtk.entries with null 'name' and 'email' values
#409176 Create Tags produces "The anjuta-tags utility is not installed. Please install it."
#409216 crash periodically
#409410 crash in Anjuta IDE: Right click in the sourc...
#409592 crash in Anjuta IDE: I closed the application...
#411377 Build breakage in profiler plugin
#411623 GLIB_REQUIRED should be 2.12
#412186 crash in Anjuta IDE: Crash on initial app. st...
#417612 GNOME Goal #3: Remove "Application" category from .desktop files
#418174 toolbar size
#418448 crash in Anjuta IDE: I just installed Anjunta...
#421525 Locals view does not update when stack frame is changed
#421529 Disassembly view is not updated when strack frame is changed
#423111 Wall can not build with sun cc
#423270 crash in Anjuta IDE: Crash on adding a new tool item

Anjuta 2.1.1 (11 Feb 2007) -- Naba Kumar
----------------------------------------

New: gprof based program profiler plugin.
New: Several improvements in debugger plugin.
New: Several improvements in editor plugins.
New: Enabled integrated devhelp now that it works.
New: Use pixmaps for editor markers.
New: Several minor improvements.

Translation updates
===================
* en_GB, sv, ja, Swedish translation of manual.

Bugs fixed
==========
#335235 python programs are not executeable/ do not start when pr...
#335981 Migration from popt to GOption
#340618 Application wizards should use gtkmm-2.4 API
#355160 show debug toolbar without debugger plugin => crash
#357997 add a new project variable => crash
#374709 Anjuta Crash activating devhelp plugin
#394216 No indication of subversion commands running
#395875 upon startup i get this big fat warning -- crash when add...
#398067 plugin.in files are not localized
#398930 Set alignment in the tab page header widget
#398991 Anjuta manuals does not use the gnome-doc-utils format
#400833 Changes in libgladeui ABI
#404561 xml and xsl editing is not possible
#397406 Class files are not created in the right directory
#394184 [Bounty] Test and fix all project wizards templates
#359478 Bounty: Gprof performance profiler plugin
#403501 Proper handling of parsing error
#403515 When a target is selected, the profiler widget should be ...
#391728 Program crashes when accepting save directory.
#378600 indicate debugger state
#392537 Starting debugger is very confusing: UI suggestions
#395808 breakpoints don't seem to work
#404755 Multiple instances of debugger views
#406113 debugger crash on 'Run/continue'
#376404 show current line arrow only when debugger running

Anjuta 2.1.0 (14 Jan 2007) -- Naba Kumar

New: Debug manager and gdb plugins.
New: Disassembly window in debugger.
New: C++ and gobject class wizard.
New: Mime icons in editor tabs.
New: Improvements in project templates.
New: C++ and java indentation plugin.
New: Save prompt implemented for unsaved data.
New: Documentation updates, both API and users manual.
New: Improvements in glade-3 integration.
New: Many other improvements.

Translation updates:
====================
ar, en_GB, hu, en_CA, nb, es, gl, ca, fi, ru, ne, de, ja

Bugs fixed:
===========
#396571 Anjuta crashes as soon as editing starts in normal text files.
#395362 Tagmanager crashes on update - Probably because of project reload
#377477 when debugging, scintilla editor grays out all lines before current line.
#342717 Build errors redisplayed AFTER a successful build.
#167534 Multiple errors in strings
#168274 anjuta creates an empty system.tags file
#168301 the new project druid should be center on the anjuta window
#169068 Unclear new strings, with misspellings
#169137 Missing spaces from changed strings
#169138 Spelling error in modified string
#169139 Missing spaces from changed string
#170406 problem when creating a new projects
#170467 crash when changing fonts and color in the preferences dialog
#172666 cvs diff does not always obtain full diff
#173048 library selection plugin
#300228 Ctrl + S intermittent behaviour
#300229 Replace button fault
#300231 Find pane non-functional
#301054 Help window not docked - Anjuta closes when Help window is closed.
#304495 Project saved as fullscreen
#304515 can not edit project properties
#304523 Crashes while importing a project
#304641 Can't type the "-character
#304650 make -j CPUS doesn't always work for anjuta2
#304651 Restoring the project doesn't restore the cursor location of the files
#304652 Possibility to set breakpoints in libraries that will be dlopen()'ed
#304829 questions on use anjuta 2.0
#305076 anjuta 2.0.0: edge column editor preference not functionnal
#305299 Error in anjuta.desktop file
#305301 In menu tree "Settings"->"Customize shortcuts" there are two lines "Task In menu tree "Settings"->"Customize shortcuts" there are two similar lines "Task manager"
#305303 Error while installing anjuta-devel rpm package
#306085 Keybindings are not saved.
#306187 bad definition of PACKAGE_LOCALE_DIR
#306474 The ordering of the buttons in the file open dialog is reversed.
#306582 Anjuta crashes when typing "std::"
#306790 doble click in a message, doesn't find the file.
#306966 Search tool on the tool bar don't work correctly
#306970 The order of the command buttons "Close" - "Search" - "Stop" in the Search Dialog, is useless; the sugestion is: "Search" - "Stop" - "Close"
#307800 Crashes when project directory removed from command line.
#307810 Can't configure a project after creating with new project wizard
#307872 Remember Configure and autogen options for the next time
#307886 Activated plugins not remembered
#308007 Bad interpreter in global-tags/create_global_tags.sh
#308870 Glade Plugin Won't open Glade file.
#309153 code cleanup use glib/gi18n.h
#309154 gnome_color_picker is deprecated
#309348 Anjuta 2.0.1, Anjuta application crash upon build (F9)
#309688 When committing a file that is loaded, I get a file-modification warning
#311420 Crash on terminal deactivation
#311948 some strings untranslatedable Preference dialog
#312227 Crash when selecting debug command
#312566 Patch that will fix another make -j 10 problem
#312666 Return "F3" to execute project
#314069 Window gets hidden when using glade3 plugin
#315188 Project Wizard Problems
#315218 anjuta 2.0 freeze on opening my project
#315521 Failed to compile HEAD-hourly-2005-09-05-18
#316731 Can not add new encodings
#317454 Anjuta crash when array lenght is incorrect
#320191 It's a chore adding/removing files and setting up targets
#320338 Colors of tab menu labels
#320341 Critical error in debugger "locals" window.
#321090 Wrong array/struct/union var type display in locals windows
#321455 Ask for root password when installing
#322634 anjuta_ui_add_action_group_entries : Anjuta Developers Reference Manual incorrect
#322744 New anjuta plugin project configured incorrectly
#323591 Data lost, two tab of the same file
#324572 anjuta crashes on open
#328209 Crash when opening a file while an unsaved new file is open
#332084 Anjuta crashes, when Ctrl+c is pressed.
#332161 Test editor not opening
#332954 No read permission for: file:///usr/share/anjuta/profiles/default.anjuta
#333601 GPL headers are first to c-header template.
#333606 Macro contain hyphen
#334546 No more lookup widget
#334663 Allow to set a parent class to new GObject class
#335142 crash when opeing a second file
#335981 Migration from popt to GOption
#336389 Should check for libwnck
#339296 Wizard can't cope with insufficient permissions in project target directory
#341359 Search function doesnt doing their job.
#341997 The 'Tree' tab in the symbol-browser is not type-to-search able
#342352 Can't close file which in not the current editor
#342375 configure doesn't check for g++
#342401 Compile fix when NLS is enabled
#342447 Crash when using the live-search-entry
#342937 crash after accepting Reload Warning Dialog
#343023 make gives strange error
#344015 on_build_mesg_format prepends an absolute path with the current dir
#344099 valgrind plugin is not built
#346295 Crash when removing breakpoint
#346450 Crash when removing all breakpoints
#346575 data loss when disk is full
#346775 No highlight styles to edit are shown in the preferences dialog in anjuta
#347412 crash when opening file with sourceview plugin
#347414 Stack trace window
#349374 Compilation on FreeBSD 6.1
#351387 don't use Alt+key combinations for shortcut keys
#355148 title bar should show name of active project
#355149 Anjuta should warn if I try to exit with unsaved edits
#355156 plugins window should sort plugins alphabetically
#355168 color selection is broken in messages preferences
#355407 The create_global_tags script doesn't find the anjuta-tags bin
#357151 a + character in a directory name confuses anjuta
#357534 syntax coloring fails and breaks selection display
#357537 allow double click in plugin selection dialog
#357542 Anjuta Plugins window is too narrow
#357546 add keyboard shortcut for toggling breakpoint
#358009 activating stack frame in debugger should also jump to source
#358068 indicate when Find in Files is complete
#358134 Goto Address command should prompt more clearly
#358163 debug Inspect/Evaluate dialog leads to crash
#358583 close any project => crash
#359118 Anjuta crashes when trying to open "src folder" after finishing creating/loading a project
#359259 highlight modes listed in reverse alphabetical order
#359317 can't load debug manager
#359663 make line highlighting optional in GtkSourceView editor
#359730 Anjuta can't launch help files
#359750 fix find/replace shortcut keys
#359862 Bounty: Improve class wizard
#361830 AboutDialog does not close
#363884 CVS head of 21/10 doesn't compile
#363953 create_global_tags.sh contains bash-ism
#364133 There are some GTK+ warning caused by document-manager plugins
#364135 Incorrect widget removed from notebook if call to anjuta_preferences_dialog_remove_page are not in LIFO
#364137 The valgrind plugin can cause anjuta to crash
#364142 Valgrind plugin crash when unloaded
#364144 There is a warning when closing and reloading a plugin using the symbol-browser plugin
#364179 Usage of srcdir and argv fields of vg_action object is incorrect
#364754 Subversion plugin doesn't compile with apr 1.2.X
#364755 Glade plugin crashes on anjuta exit
#364801 Unable to edit glade windows in fullscreen mode
#364900 Warning during compilation of valgrind plugin
#364903 Memory leak in valgrind plugin
#369030 create_global_tags.sh has some errors
#374665 Bounty: Use class macros for type casting in all plugin classes
#376031 [PATCH] CVS command file entry dialog show only directories
#376335 menu items should be capitalized
#377027 crash after unloading Terminal plugin
#377043 Intltool-update -m complains about missing files from POTFILES.in
#377061 close project while debugging => Anjuta hangs
#377767 resize crashes window manager in gnome
#377903 improve message color defaults
#378850 double clicking breakpoint should jump to its source
#378871 Debug / Info command problems
#378879 several command names need ellipses
#383319 GLADE_PROJECT_VIEW_TREE error with glade 3.1.2
#385597 Closed one project and attempted to open another
#388727 Block-tab does not work
#388731 Odd editor behaviour after performing block-text operations
#389764 Tags search do not retrieve all matching symbols
#392290 Missed install as root option in project manager
#392699 Some patches are necessary to build anjuta on NetBSD 3.0
#393680 huge icon on the files pane for .anjuta files
#394218 Signals list view in gobject class creation tab does not scroll horiz.
#395767 when selecting a GTK+ project the sample files generated do not compile

Anjuta 2.0.2 (15 May 2006) -- Naba Kumar

New: GtkSourceView based editor
New: Project configuration
New: Valgrind plugin
New: Tab drag&drop in Editor
Updated: Manual and FAQ

Improved: global tags can now be updated after installation
Improved: Remember toolbars on restart
Improved: Tag manager now knows about classes/namespaces which
should make C++ programming much more easy (IComplete)
Improved: Devhelp plugin improved but we still have linking problems
Improved: Scintilla is now up-to-date 1.68

Known issues:
- Glade plugin crashes because of namespace conflict with libglade (#341073)
- Devhelp plugin cannot be loaded without setting the correct LD_PATH (#341170)

Bug fixes:
#171314		Anjuta crash when trying to do "stream comment"
#311420 	Crash on terminal deactivation
#317454 	Anjuta crash when array lenght is incorrect
#332084 	Anjuta crashes, when Ctrl+c is pressed.
#170467 	crash when changing fonts and color in the preferences di...
#172442 	inserting empty box comment
#172666 	cvs diff does not always obtain full diff
#300231 	Find pane non-functional
#304495 	Project saved as fullscreen
#304641 	Can't type the "-character
#305082 	anjuta 2.0.0: crash in debugger / watch / inspect memory
#305301 	In menu tree "Settings"->"Customize shortcuts" there are ...
#305587 	gtkmm project compile crash
#306790 	doble click in a message, doesn't find the file.
#306966 	Search tool on the tool bar don't work correctly
#306970 	The order of the command buttons "Close" - "Search" - "St...
#307800 	Crashes when project directory removed from command line.
#307810 	Can't configure a project after creating with new project...
#307872 	Remember Configure and autogen options for the next time
#307879 	Crashed when exiting
#308870 	Glade Plugin Won't open Glade file.
#309153 	code cleanup use glib/gi18n.h
#309348 	Anjuta 2.0.1, Anjuta application crash upon build (F9)
#309526 	Help->ReportBugs points to removed bug tracking system
#309688 	When committing a file that is loaded, I get a file-modif...
#311710 	freeze in __lll_mutex_lock_wait () after crash?
#312566 	Patch that will fix another make -j 10 problem
#312666 	Return "F3" to execute project
#314069 	Window gets hidden when using glade3 plugin
#315188 	Project Wizard Problems
#315218 	anjuta 2.0 freeze on opening my project
#315521 	Failed to compile HEAD-hourly-2005-09-05-18
#316731 	Can not add new encodings
#320338 	Colors of tab menu labels
#320341 	Critical error in debugger "locals" window.
#321090 	Wrong array/struct/union var type display in locals windows
#321455 	Ask for root password when installing
#322634 	anjuta_ui_add_action_group_entries : Anjuta Developers Re...
#322744 	New anjuta plugin project configured incorrectly
#324572 	anjuta crashes on open
#328209 	Crash when opening a file while an unsaved new file is open
#332161 	Test editor not opening
#333601 	GPL headers are first to c-header template.
#333606 	Macro contain hyphen
#334663 	Allow to set a parent class to new GObject class
#335142 	crash when opeing a second file
#336389 	Should check for libwnck
#107510 	Excessive messages marked for translation in anjuta
#304650 	make -j CPUS doesn't always work for anjuta2
#334546		No more lookup widget
#312319 	Opening files when Anjuta is already open
#339296		Wizard can't cope with insufficient permissions in project target directory

Anjuta 2.0.1 (26 Jun 2005) -- Naba Kumar

New: Group and target properties (for automake based projects)
New: Improvements in class heirarchy. Added members view.
New: Tools plugin improvements and scripts as tools.
New: Prepare-ChangeLog tool.
New: Find-Fixmes tool.
New: Project translation status tool.
New: Save and restore editor current line positions.
New: Added configure flags to enable/disable optional plugins.
New: Message saving from menu.
New: Message manager context menu.
New: Remember plugins profile for project sessions.
Mew: Progress bar implementation.
New: Better progress bar in splash.
New: General preferences page.
New: "Add to project" in file wizard and class wizard implemented.
New: glade plugin improvements.
Updated: RPM spec file
Bug fix: Fixed lots of project import bugs.
Bug fix: Group and target removal.
Bug fix: Fixed Message tab position preferece.
Bug fix: Scroll messages on next/previous.
Bug fix: Fixed crash on project Import
Bug fix: Fixed crash on terminal dockings.
Bug fix: Fixed crash on exit (after using save-as dialog once).
Bug fix: Fixed crash on exit.
Bug fix: Fixed mime installation screw-up
Bug fix: Fixed installation paths.
Bug fix: Fixed 64bit arch build problems
Bug fix: Fixed Autoformat/indent problems.
Bug fix: Fixed Keyboard shortcuts for message navigation.
Bug fix: Fixed graphviz build problems.
Bug fix: Start gdb even if the program does	not exists. Fixes bug #305074
Bug fix: Fixed default font names and sizes.
Bug fix: Fixed errors in opening zero sized files.
Bug fix: Fixed buttons order in open dialog.

Anjuta 2.0.0 (15 May 2005) -- Naba Kumar

Architecture and code base:
New: New plugin architecture and all IDE components ported to this framework.
New: Complex docking shell that allows arbitrary docking of IDE widgets.
New: Dynamic plugin activation and deactivation.
New: Extensible architecture.
New: Plugins can interact with other plugins through interface.
New: Plugins can install dynamic UIs (menus/toolbars), including installing
	 context menus in other plugins.
New: Shell and Plugin API documentation.

Integration:
New: Integrated help system with Devhelp.
New: Integrated glade UI designer (incomplete).

Editor plugin:
New: Scope memeber autocompletion (e.g ., -> and :: autocompletion).
New: Editor split views.
New: Automatic indentation with tabbing.
New: More syntax highlighting lexers
New: Split multiple views of document
New: Remote editing (full gnome-vfs support)
New: Real-time file modification monitor.

Project management and build plugin:
New: Multiple parallel builds and independent debugging and execution.
New: Synchronous project management (simultaneous manual and automatic management)
New: Mime based filemanager and desktop integration.

Other plugins:
New: Task Manager.
New: Macro plugin allows inserting predefined and user defined texts (macros).
New: Easily extensible template based project wizards (based on autogen).
New: Symbol search plugin.
New: C++ and GObject based class wizard.
New: Class inheritance diagram plugin.
New: Subversion plugin (incomplete)
New: Session management framework.
Updated: Debuger uses GDB machine-interface.
Updated: CVS plugin
Updated: Pretty much everyting.

Anjuta 1.2.2 (13 Apr 2004) -- Naba Kumar

New: Anjuta advanced tutorial
New: Goes to first error automatically (Default is off. need to enable in anjuta.properties).
Bug fix: Use build.silent option from preferences (bug #895726)
Bug fix: Use font style defined for message indicators (bug #885032)
Bug fix: Set bold color as foreground color in terminal (bug #864924)
Bug fix: Removed 'cmp' dependency and used internal function to compare files.
Bug fix: Fixed return value when dest file could not be created.
Bug fix: Fixed a typo in Hello World indentation style.
Bug fix: Fixed misuse of translated strings when looking for style (bug #876037)
Bug fix: Save-all action now asks for filenames for new files (bug #898111)
Bug fix: Fixed a compiler warnings.
Bug fix: Disabled printing of long debug lines.
Bug fix: Close buttons on all dialogs (HIG) and ESC closes them (bug #671596).
Bug fix: Fixed a program execution crash bug.
Bug fix: Fixed Crash on Find & Replace (#887833)
Bug fix: Use defined file name when saving new files (fixes bug #898105).
Bug fix: Don't change filename when clicking on a directory.
Bug fix: Implemented keypress ctrl-c and ctrl-d for terminal (bug #878357).
Bug fix: Do not reload new files (bug #900897).
Bug fix: Disconnects menuitem signal properly (bug #901723).
Bug fix: Fixed bugs #890609 and #890609, #900903.
Bug fix: Fixed a typo in tutorial (bug #866143).
Bug fix: Reduced size of Search and Replace dialog (bug #902636).
Bug fix: Fixed a runtime warning (bug #900087).
Bug fix: Changed build shortcut to F11 (bug #877683).
Bug fix: Do not defualt to -k make option (bug #875486).
Bug fix: CFLAGS passed correctly (bug #816130, #801056, #782798, #773459)
Bug fix: Improved Search and Replace. Fixed crash bug.
Bug fix: Fixed bug #910097 (Insert comment).
Bug fix: Find-Usage rework (bug #890609).
Bug fix: Generated projects read m4 directory. Project generation works. (bug #917781).
Bug fix: Fixed Find-Usage crash when no project open
Bug fix: Fixed bug #893400 ("Remove file" in project tree).
Bug fix: Aligned buttons in the New file dialog and HIG compliance.
Bug fix: Fixed to get correct child exit status	using mask (bug #905738).
Bug fix: Goto the first error if it exists (bug #874380).
Bug fix: Save-all for 1 file opened (bug #912618).
Bug fix: Fixed conditional breakpoints.
Bug fix: Fixed debugger calltips displayed for wrong file.
Bug fix: Fixed delete breakpoints.
Bug fix: Fixed Breakpoint setting bugs (bug #895536).
Bug fix: Fixed a crash bug with debugger attach process dialog
Bug fix: Fixed freeze-ups during build terminations (bug #905738).
Bug fix: Fixed a memory corruption (bug #921893).
Bug fix: Open file starts in right directory (bug #908941).
Bug fix: Fixed another crash bug in Find-Usage.
Bug fix: Correctly prompts and reponds passwords (bug #894533).
Bug fix: Fixed 'remove' and 'clear' of Defines list in compiler options (bug #883837).
Bug fix: Installs .glade file of libgllade projects (bug #861038).
Bug fix: Glade based projects can now find installed pixmaps (bug #919903).
Bug fix: Fixed ADA syntax highlighting (bug #923474).
Bug fix: Fixed HANGUP bug for long lines (bugs #700968 and #911376)
Bug fix: Fixed core file loading in debugger.
Bug fix: Partially fixed to show long calltips properly (bug #917982).
Bug fix: Fixed a crash bug in search replace. (bug #921893).
Bug fix: Fixed a crash when launcher child could not be executed (bug #926606).
Bug fix: Fixed a crash bug when opening and closing a large project repeatedly.
Bug fix: Sets filename when saving new files.
Bug fix: Most font and print related bugs fixed (bug #885023, #925956, #890473).

Anjuta 1.2.1 (29 Jan 2004) -- Naba Kumar, Johannes Schmid

New: "New File" with some options for newly created files
Bug fix: #849914, #840159, #864922, #849928, #846386, #845782
Bug fix: #860906, #859329, #858993, #857605, #878404
Bug fix: 169058@bugs.debian.org
Bug fix: compile file works with shell expression like `command` now
Bug fix: Buildiing on SMP systems
Bug fix: debugger improvements & cleanups
Bug fix: Sample file confirms to C++-Standard now
Bug fix: Use gtk stock icon for editor tabs
Bug fix: Should builf sucessfully on Slackware 9.1 now (libiconv)

Thanks to Pavol Bosik, Andreas Volz, grzegol@pld-linux.org, Dan Elphick,
Franco Catrin L and Stefano Vallarino for their patches.

From this release on anjuta has two new development responsibilities
alongside with Naba Kumar <naba@gnome.org>:
Jean-Noel Guiheneuf <Jnoel@cvs.gnome.org>
Johannes Schmid <jhs@cvs.gnome.org>

If you want to support anjuta development please contact the
list <anjuta-devel@list.sourceforge.net>, more manpower is much-needed.
You can also make a donation through the SF.net donation system now.

Anjuta 1.2.0 (8 Dec 2003) -- Naba Kumar

Updated: Prompts users for unsaved files during project closing.
Updated: Added checkbox in wizard to enable/disable glade source generation.
Updated: Scintilla to version 1.57
Bug fix: Crash on preferences with other locales.
Bug fix: Freeze ups during build/debugging with other locales.
Bug fix: Crash with readonly project files (during saves).
Bug fix: Breakpoints bug.
Bug fix: Syntax hiliting bug.
Bug fix: Avoids error conditions for glade/glademm not found
Bug fix: Crash on anjuta exit
Bug fix: Crash on project close with unsaved files.
Bug fix: Compilation errors with old gcc.
Bug fix: Fixed debugger malfunctioning with non-english locales.
Bug fix: Crash bug during import.
Bug fix: Dnd file drop.
Bug fix: Setting breakpoints for c++ files works.
Bug fix: Crash bug to multiple open of same file fixed.
Bug fix: Enables debug and optimization flags for new projects.
Bug fix: Fixed pascal highlighting
Bug fix: Fixed build failure with no 'intl' directory.
Bug fix: Added filters to find in files.
Bug fix: Fixed tutorial
Bug fix: Added horizontal scrollbar to description text in wizard.
Bug fix: Installs properly even when system.tags file could not be generated.
Bug fix: Compiler error with old gcc.

Anjuta 1.1.98 rc2 for 1.2.0   (07 Nov 2003) -- Naba Kumar

New: Double click on margin toggles bookmark.
New: Double click on margin (debugger mode) adds/removes breakpoints.
New: Single click on margin (debugger mode) enables/disables breakpoints
New: Find previous added.
New: Emacs style file modeline in files.
Updated: Removed 'page setup' item from the file menu.
Updated: Scintilla (cvs 2003-09-29 -- ver 1.55+)
Updated: No libzvt dependency (means faster operation).
Updated: Performance improvements in Editor.
Updated: Documentations revived in docbook xml format.
Bug fix: Symbol browser now loads properly for new projects.
Bug fix: Fixed many compiler warnings.
Bug fix: Fixed crash bug in Application wizard.
Bug fix: Fixed crash bug in Project Import.
Bug fix: Printing in proper UTF8
Bug fix: Fixed crash bug during project creation.
Bug fix: Fixed clean-before-build bug.
Bug fix: Fixed find in files bugs.
Bug fix: Fixed gettext bug with projects.
Bug fix: Fixed Autoformat
Bug fix: Fixed crash bug with 'Add watch expression'
Bug fix: Fixed debugger freeze ups due to uninitialized strings in target programs.

Anjuta 1.1.97 rc1 for 1.2.0   (26 June 2003) -- Naba Kumar

New: Support for all text file encodings (can be customized in preferences).
New: Line and word selection menu entries (setting shortcuts possible).
New: Added *.css files highlighting.
Updated: Project window and message window no longer always float above the main window.
Updated: Reorganized messages tabs in more sensible order.
Updated: Better 'Customize menu' message.
Updated: Prompts for 'clean' for modified compiler options.
Updated: Deprecated GNOME 1.x project wizards. It can still open older projects.
Updated: Speedier startup (but needs more optimization todo).
Updated: New splash.
Updated: Some re-organization and cleanups.
Updated: Better debugger operations.
Updated: Better HIG complient dialogs.
Updated: Many many translation updates.
Bug fix: Separated -dP and -A flags of CVS update into different options.
Bug fix: No more file corruption for non-utf-8 encodings.
Bug fix: Removed references to older automake/autoconf in generated projects.
Bug fix: Fixed automake errors with old automake in generated projects.
Bug fix: Tcl/tk properties fix (all keywords will be recognized).
Bug fix: Red color editor tab for modified files now consistent in inactive state also.
Bug fix: Backward search works correctly.
Bug fix: Fixed shell script to properly detect installed *-config files.
Bug fix: Corrected many project generation codes.
Bug fix: Fixed compiler errors associated with older gcc.
Bug fix: Stack trace output can be activated with double-click.
Bug fix: Properly closes automatic debugger-tip (was very annoying before).
Bug fix: Properly jumps to correct file/line from build messages.
Bug fix: CVS dialogs bug fixes.
Bug fix: Fixed gnome-print, zvt and pcre dependencies in configure and rpm spec file.
Bug fix: Fixed glade/glade-2 confusion in generated projects.
Bug fix: Multiple file selection works now.
Bug fix: Fixed failure in poping up search combo puldown (in main menu).
Bug fix: And many more critical/non-critical bug fixes.
Bug fix: Fixed non-working shortcuts (changed to working ones).

Anjuta 1.1.1-beta   (05 May 2003)     -- Naba Kumar

New: Ported to GNOME2:
New: New Preferences management.
New: Tools management.
New: Watch and Backtrace moved to messages pane.
New: GNOMEVFS based file browser.
New: Pango fonts in editor (Anti-Aliased fonts).
New: Project configuration for GUI editor and version.
New: Advance search and replace (ported from 1.0.x branch).
Updated: Scintilla 1.51+ (cvs)
Updated: Session management. It now saves tree states.
Bug fix: Many

Anjuta 1.0.1:		(xth June 2002)			-- Naba Kumar

New: Auto-complete takes graphics now.
NEW: Auto-complete automatic.
New: Per project editor properties
New: Sub windows now float above main window.
New: Project version and excluded modules configuration.
NEW: Errors and warnings indications in editor.
New: Tools support and tools editor.
New: Incremental search (like emacs I-Search)
Bug fix: Printing now takes editor default fonts
Bug fix: Rpm package fix
Bug fix: ChangeLog insert uses spaces (instead of tabs)
Bug fix: Fixed compiler warnings.
Bug fix: Fixed debug terminal bug
Bug fix: Disabled gladen to remove the libssl dep.
Bug fix: brace indentation works properly.
Bug fix: Wrap-around search
Updated: Upgraded scintilla to 1.49+
Updated: Upgraded editor properties and added new properties.
Updated: Organized plugins

Anjuta 1.0-beta1:	(1st August 2002)			-- Andy Piper

   => Release of Anjuta-1.0-beta1 (beta)

This precedes the final release of Anjuta for the 
GNOME 1.x platform...

New: CVS support for Projects and individual files,
     file revisions are displayed in Files pane
New: Gnome Print support (including syntax colouring)
New: Patch plugin to apply diffs
New: Application Wizard support for wxWindows, Xlib, 
     GNOME2, Gtk2 and libglade2 Projects, plus option for 
	 dynamic or static libraries as targets in generic Projects
New: user identity preferences enabling new editor functions
New: better GNOME integration, now uses configured GNOME URL 
     handlers
New: MIME handling
New: Anjuta kickstart tutorial
New: automatic expression tips during debugging (hover-and-show)
New: compilation warning/error navigation from terminal
New: better find functionality
New: enhanced file selection widget
New: enhanced Evolution-style about dialog
New: Automatic Variable display when mouse hovered on the
     variable name (in dubugger mode).
New: Raw memory veiw for debugger (somewhat resembling ghex).

Updated: synced to Scintilla 1.46
Updated: many usability improvements to the GUI and menus

--------------------------------------------------------------------

Anjuta 0.1.9:   (14th February 2002)		-- Andy Piper

   => Release of Anjuta-0.1.9 (stable)
   
New: messages manager rewritten to use notebook tabs
New: symbol and tag browser fully based on TagManager
New: embedded terminal window (using zvt)
New: Project Import Wizard makes it easier to migrate
     existing projects to Anjuta (experimental)
New: libglade project type added to the Application
     Wizard
New: simple class creator plugin now included
New: files autosaved before a build
New: more translations - 21 languages now fully or 
     partially supported

Updated: new look for the Application Wizard
Updated: UI enhancements
Updated: Solaris support improved
Updated: many, many bug fixes.....

--------------------------------------------------------------------

Anjuta 0.1.8:   (30th November 2001)		-- Andy Piper

   => Release of Anjuta-0.1.8 (stable)
   
New: integration of new TagManager library - much improved
     autocompletion and calltips functionality
New: multiple file drag-and-drop
New: ability to save build message output
New: DOS file (CR/LF) handling
New: basic plugin hooks added
New: many new translations - 17 languages now fully or 
     partially supported

Updated: notebook tabs notify when file has been changed, can be
         scrolled for browsing
Updated: improvements to interactive debugger and communication
         with gdb
Updated: improved find functionality, better dialogs
Updated: synced up to version 1.41 of Scintilla, new lexers added
Updated: new icons

... plus the usual bug fixes and minor feature additions.

--------------------------------------------------------------------

Anjuta 0.1.7:   (21st August 2001)              -- Stephane Demurget

   => Release of Anjuta-0.1.7 (stable) - bug fixes release

Fixed: Two nasty bugs preventing to use the wizards (macros dir copy and
       src/source.c).
Fixed: Interface clean up.
Updated: HACKING, doc, and others
Updated: french, spanish, turk and japan translations fully up-to-date.

--------------------------------------------------------------------

Anjuta 0.1.6:	(31st July 2001)		-- Nabakumar. 

   => Release of Anjuta-0.1.6 (stable).

New: Class browser and file browser added in the project manager.
New: GDP standardized docbook documentations.
New: Anjuta faqs documentation.
New: New gnomish icon set and splashscreen.
New: Context sensitive help and gnome api browser
     (need Devhelp and the dev books to be installed).

Added: Preferences for setting caret and selection colors.
Fix for gdb version 5.
Closes all files when project is closed.
And many big fixes and minor feature additions.
Translations updated.

Note : the major part of the new project manager has been written but
it needs time to be integrated and tested. That's why it's not present in
this release. 

--------------------------------------------------------------------

Anjuta 0.1.4:	(25nd Mar 2001)		-- Nabakumar. 

   => Release of Anjuta-0.1.4 (stable).

Calltips provided for Gnome function prototypes (and standard libraries functions).   
Fixed project dir creation bug.
Fixed double accelerators bug.
Fixed source generation bug.
Fixed pixmap creation with NULL window.
i18n bug fix.
Debugger now takes program args.
Japanese translation.
Other minor  bug fixes.

--------------------------------------------------------------------

Anjuta 0.1.3:	(4th Mar 2001)		-- Nabakumar. 

   => Release of Third  version (Alpha)  with lots of bugs.
   
New Features in Anjuta 0.1.3:
-----------------------------

   	=> Anjuta now integrates Scintilla editing component:
	----------------------------------------------------
		* Automatic syntax hilighting (using lexers).
		* Code folding/hiding .
		* Linenumbers/markers display.
		* Text zooming.
		* Text autocompletion
		* Automatic indentation and indentation guides
		* ... and much more.

	=> Dynamic Project Management:
	-----------------------------
		* Anjuta no longer uses the template based project management.
		* Provides project configuration.
		* Added two more modules in project management:
			(Help module and Translation module).
		* Added BONOBO support and BONOBO application wizard.
		
	=> Java style Properties management:
	-----------------------------------
		Now uses Java style properties management. Which makes
		it highly configurable, both from distributor's and user's side.
	
	=> Supports for Other languages added:
	-------------------------------------
		* Java, Perl, Python, LaTeX, 
		... and others can be user configurable.
		
	=> On-Board command editor:
	--------------------------
		Facilitates customization of commands used
		for compiling, building and execution.
	
	=> Provides Hilite style editor:
	-------------------------------
		Used for customizing Syntax hiliting style.
	
	=> More intelligent messaging system:
	-----------------------------------
		* Now error messages (or messages in general)
		can be browsed using go to Prev/Next message,
		goto start/end of block and goto matching braces.
	
	=> Bookmarks management:
	-----------------------
		Anjuta has now supported Bookmarks
		management.
	
	=> Debugger:
	-----------
		* Now breakpoints can be toggled Onboard.
		* Added Run to cursor.
		* Fixed some earlier bugs.
	
	=> Added Two more toolbars:
	--------------------------
		* Browser toolbar for browsing messages,
		bookmarks and code blocks.
		* Format toolbar for easy formatting
		of code statements.
		
	=> Application GUI:
	------------------
		* Smarter and more informative status bar.
		* Improved memory to remember Application
		GUI configuration between sessions.

Thing that I forgot to change:
------------------------------
	=> Anjuta Online manual. It's still the old one.
	so, new users may find it a bit annoying to learn
	the controls, especially those who are young
	in programming.

--------------------------------------------------------------------
Anjuta 0.1.2-beta_2:	(24th Feb 2001)		-- Nabakumar. 

   => Release of 0.1.2 beta2  version  with lesser bugs.

--------------------------------------------------------------------
Anjuta 0.1.2:	(03rd Nov 2000)		-- Nabakumar. 

   => Release of second version (Beta) with lesser bugs.

   => Minor fixes in Doc files.
   => Fixed to ignore non-existent dir for blank prj.
   => More checking in project creation, especially to confirm
	that the prj file already does not exist.
   => Now Menu item "Format/Detach current document" is inactive
        when there is no document opened.
   => Improved Library settings GUI.
   => Can now enable/disable added libraries.
   => Stock libs provided for ease of entry.

--------------------------------------------------------------------
Anjuta 0.1.1: (01rd Nov 2000)	-- Nabakumar. 

  => Release of first version (Beta) with lots of bugs.
	
--------------------------------------------------------------------