Welcome to mirror list, hosted at ThFree Co, Russian Federation.

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

	* MonoDevelop.Projects.Gui.Dialogs/MimeTypePolicyOptionsPanel.cs:
	* MonoDevelop.Projects.Gui.Dialogs/MimeTypePolicyOptionsSection.cs:
	  Fixed issue with themes that match on widget names.

2010-03-05  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs: only
	  subtract empty category when in category mode.

2010-03-05  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs: Fixed
	  'Bug 585673 - Completion list shows blank row in categorized
	  mode'.

2010-03-03  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui/ProjectFileEntry.cs: Handle Link
	  files.

2010-03-03  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionWindowManager.cs:
	  Added show/hide events for the code completion window.

2010-03-03  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs: Fixed
	  'Bug 584881 - Completion list layout issue'.

2010-03-02  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionWindowManager.cs:
	  Toggle code completion category is now toggled by the
	  ShowCompletionWindow command, when the window is visible.

2010-03-02  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Changed mode toggeling to ctrl+space.

2010-02-26  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: added
	  safety check for exact matches to override history
	  selection.

2010-02-26  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Fixed
	  'Bug 583396 - Exact completion matches should always
	  override history/fuzzy'.


2010-02-25  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: added
	  null check.

2010-02-24  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.addin.xml: Show the .NET naming
	  policies options panel only for .NET projects.

2010-02-23  Mike Krüger  <mkrueger@novell.com>

	* Makefile.am:
	* MonoDevelop.Projects.Gui.csproj:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionWindowManager.cs:
	* MonoDevelop.Projects.Gui.Completion/CodeCompletionContextEventArgs.cs:
	  Implemented 'Bug 429265 - #region reindentation does not
	  work with autocompletion'.

2010-02-22  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs:
	  Implemented 'Bug 580660 - Feature request: Make popup-lists
	  "continuous"'.

2010-02-18  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CodeFormattingPanel.cs:
	  Added missing getstring call.

2010-02-18  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionData.cs:
	* MonoDevelop.Projects.Gui.Completion/ICompletionData.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionDataList.cs:
	  Use the new IconId type.

	* MonoDevelop.Projects.Gui.Dialogs/ProjectFileSelectorDialog.cs:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/NamespaceSynchronisationPanel.cs:
	  Track api changes.

2010-02-17  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs:
	  completion window now remembers the operation mode.

2010-02-17  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionData.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Categories are now sorted.

2010-02-16  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Projects.Gui.csproj: ActiveLanguageCondition has
	  been moved to MD.Projects.

2010-02-16  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/ItemOptionsDialog.cs:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/ActiveLanguageCondition.cs:
	  ActiveLanguageCondition has been replaced by
	  ProjectLanguageCondition in MD.Projects.

2010-02-15  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs: Fixed
	  'Bug 576322 - Click in code completion list selects wrong
	  item when categories enabled'.

2010-02-09  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/ProjectFileSelectorDialog.cs:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/NamespaceSynchronisationPanel.cs:
	  Track API changes for lazy loading images.

2010-02-05  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs:
	  Completion categories are now easier to read.

2010-02-04  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  fixed a bug where left/right didn't go through the overloads
	  in the cc list.

2010-02-03  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Shift+up/down now selects next/prev category or enables
	  category mode.

2010-02-02  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ParameterInformationWindowManager.cs:
	  parameter info window no longer takes the up/down keys when
	  there are no overloads.

2010-02-02  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  changed categorized window toggle key to shift+space since
	  F3 may be bound to commands.

2010-02-02  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Changed the category mode hotkey for code completion to F3.

2010-01-28  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Tweaked the categorized completion feature a bit.

2010-01-27  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs: When
	  calculating window size, don't include categories in the row
	  count if categories are disabled. Fixes displaying blank
	  rows.

2010-01-27  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionData.cs:
	* MonoDevelop.Projects.Gui.Completion/ICompletionData.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Worked on 'completion categories'.

2010-01-26  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Implemented histroy based completion.

2010-01-21  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ICompletionWidget.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionDataList.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Added support for custom key actions in completion list.

2010-01-20  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/generated.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.AddMimeTypeDialog.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.RenameConfigDialog.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.DeleteConfigDialog.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.NewConfigurationDialog.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.ProjectFileSelectorDialog.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.RunOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.OutputOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineInformationWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.BaseDirectoryPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.RuntimeOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineBuildOptionsWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.StartupOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CodeFormattingPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.GeneralProjectOptionsWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineConfigurationPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CommonAssemblySigningPreferences.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.NamespaceSynchronisationPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineEntryConfigurationsPanelWidget.cs:
	  Flush.

2009-12-11  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.addin.xml: Use new icons.

2009-12-01  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/StartupOptionsPanel.cs:
	  Introduced the ConfigurationSelector class to all methods
	  that previously took a configuration name as string. This
	  eliminates the ambiguity between solution configuration
	  names and project configuration names.

2009-10-30  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* MonoDevelop.Projects.Gui.addin.xml: Bump MD version.

2009-10-29  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/generated.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.AddMimeTypeDialog.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.RenameConfigDialog.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.DeleteConfigDialog.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.NewConfigurationDialog.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.ProjectFileSelectorDialog.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.RunOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.OutputOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineInformationWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.BaseDirectoryPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.RuntimeOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineBuildOptionsWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.StartupOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CodeFormattingPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.GeneralProjectOptionsWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineConfigurationPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CommonAssemblySigningPreferences.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.NamespaceSynchronisationPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineEntryConfigurationsPanelWidget.cs:
	  Flush.

2009-10-22  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionWindowManager.cs:
	* MonoDevelop.Projects.Gui.Completion/ParameterInformationWindowManager.cs:
	  Worked on 'Bug 533564 - Intellisense DropDown and Tooltips
	  overlap'.

2009-10-19  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.addin.xml: Moved Startup Options
	  panel to Run section.

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/StartupOptionsPanel.cs:
	  Properly check if a project can be executed or not. Fixes
	  bug #547939 - Solution option "Startup Project" always not
	  selectable.

2009-10-19  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Fixed 'Bug 547819 - Ctrl-space with single entry does not
	  commit it'.

2009-10-18  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Don't
	  complete on letters when control/meta/super/alt are active.

2009-10-07  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* MonoDevelop.Projects.Gui.addin.xml: Bump MD version.

2009-10-06  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ParameterInformationWindow.cs:
	  addded wrapping to parameter info window.

2009-10-06  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/ProjectFileSelectorDialog.cs:
	  Make more keyboard-friendly.

	* gtk-gui/gui.stetic: Flush.

2009-10-05  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs: fixed
	  'Bug 543984 – Completion window should only accept
	  punctuation when it's an exact match'.

2009-10-04  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Added some refactorings required for some more deep unit
	  tests.

2009-10-04  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionDataList.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Fixed 'Bug 543938 - Completion list up/down broken with
	  single entry' / checked in some missing updates.

2009-10-03  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs: Fixed
	  'Bug 543923 - Completion window should deselect when word is
	  deleted'.

2009-10-02  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Respect
	  footer size in list window size request.

2009-10-02  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Completion window now respects default selection.

2009-10-01  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/gui.stetic:
	* MonoDevelop.Projects.Gui.csproj: Updated.

	* MonoDevelop.Projects.Gui.Dialogs/MultiConfigItemOptionsPanel.cs:
	  Added ConfigurationsAreEqual. When it returns true, the
	  options panel will select All Configurations by default in
	  the combo.

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CommonAssemblySigningPreferences.cs:
	  Implement ConfigurationsAreEqual.

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/OutputOptionsPanel.cs:
	  Allow mixed configurations.

2009-10-01  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Optimized drawing of code completion list window.

2009-09-29  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CommonAssemblySigningPreferences.cs:
	  Track api changes.

2009-09-21  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/IMemberCompletionData.cs:
	  Renamed IDomVisitable -> INode

2009-09-18  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Fixed "Bug 540375 - [REGRESSION] Completion list window
	  sometimes extends offscreen".

2009-09-18  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ParameterInformationWindowManager.cs:
	  Move the parameter info tooltip a bit further away from the
	  text, so it's not so overbearing.

2009-09-17  Michael Hutchinson  <mhutchinson@novell.com>

	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.RunOptionsPanelWidget.cs:
	  Fix broken GUI file.

2009-09-15  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Remove
	  debug code.

2009-09-15  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: If there
	  are too few selections for up/down close window & process
	  key. Should be more in line with our left/right behavior.

2009-09-14  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Accept
	  punctuation for matching if it matches an item in the list.
	  Fixes regression with XML and related languages' completion.

2009-09-12  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ParameterInformationWindow.cs:
	  Added some insanity checks.

2009-09-12  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionDataList.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Added new option for special handling where only hint code
	  completion can be given. 

2009-09-12  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Resolved a fixme, since we're now using gtk+ 2.12.

2009-09-12  Mike Krüger  <mkrueger@novell.com>

	* Makefile.am:
	* MonoDevelop.Projects.Gui.csproj:
	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs:
	* MonoDevelop.Projects.Gui.Completion/ICompletionData.cs:
	* MonoDevelop.Projects.Gui.Completion/ICompletionWidget.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CodeCompletionContext.cs:
	* MonoDevelop.Projects.Gui.Completion/IParameterDataProvider.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionWindowManager.cs:
	* MonoDevelop.Projects.Gui.Completion/ParameterInformationWindowManager.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.RunOptionsPanelWidget.cs:
	  Removed ICodeCompletionContext interface. Didn't make any
	  sense - use CodeCompletionContext instead.

2009-09-12  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Corrected failing unit test.

2009-09-12  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionData.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Some changes to allow code completion window unit tests.

2009-09-12  Mike Krüger  <mkrueger@novell.com>

	* Makefile.am:
	* MonoDevelop.Projects.Gui.csproj:
	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionData.cs:
	* MonoDevelop.Projects.Gui.Completion/ICompletionData.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionDataList.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/DeclarationViewWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/IMemberCompletionData.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionWindowManager.cs:
	* MonoDevelop.Projects.Gui.Completion/BaseMemberCompletionData.cs:
	* MonoDevelop.Projects.Gui.Completion/MethodParameterDataProvider.cs:
	  Refactored completion window.

2009-09-12  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: another
	  try for x bs x fix.

2009-09-12  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: fixed
	  bug.

2009-09-12  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Removed
	  unnecessary if.

2009-09-12  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: fixed the
	  x backspace x bug.

2009-09-11  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Added ResetSizes call when completion data has changed.

2009-09-11  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Fixed code completion bug.

2009-09-11  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Fixed
	  "Bug 538175 - Commit completion list with space or
	  punctuation is broken.".

2009-09-11  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/MultiConfigItemOptionsPanel.cs:
	  Allow subclasses to filter the configurations that they
	  show.

2009-09-10  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui/ProjectFileEntry.cs: Reduce
	  spacing.

2009-09-10  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionDataList.cs:
	  Make autoselect default behaviour consistent between the two
	  ctors. Hopefully fixes "Bug 538175 - Commit completion list
	  with space or punctuation is broken.". Also remove
	  unnecessary assignment of a default value.

2009-09-10  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs: Fixed
	  click position.

2009-09-09  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Fix the
	  page size on the completion list scrollbar. Use a single
	  SetBounds call which reduces unnecessary change events.

2009-09-09  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs: Added
	  some bounds checking code.

2009-09-09  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs: Only
	  update page / redraw when selection has really changed.

2009-09-09  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Worked on
	  'Bug 537267 - Code completion window scrolling is wrong'.

2009-09-08  Christian Hergert  <chris@dronelabs.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandWidget.cs: 
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CodeFormattingPanel.cs: 
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/SolutionItemConfigurationsPanel.cs:
	  Fix dialogs to be transient.

2009-09-08  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  removed debug message.

2009-09-08  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs: Display
	  no suggestions message in preview completion string mode,
	  when no item has a match.

2009-09-08  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionDataList.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Fixed "Bug 537195 - Can't select a 'Surround With' template
	  by typing the name".

2009-09-08  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Fixed
	  "Bug 537267 - Code completion window scrolling is wrong".

2009-09-02  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/gui.stetic:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/GeneralProjectOptions.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.GeneralProjectOptionsWidget.cs:
	  Allow setting the release version of a project. Fixes bug
	  #480771 - Tarball deploy uses DotNetProject.Version in the
	  pc file but this is not configurable.

2009-09-01  Christian Hergert  <chris@dronelabs.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CodeFormattingPanel.cs:
	  Fix NRE.

2009-08-27  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  fixed warning.

2009-08-26  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/gui.stetic: Update gtk# dependency.

2009-08-26  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.csproj: Updated dependencies. We
	  now depend on gtk# 2.12.8, Mono 2.4, and Mono.Addins 0.4.

2009-08-26  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/AddMimeTypeDialog.cs: If
	  description of mime type is empty, use the mime type name.

	* gtk-gui/objects.xml: Flush.

2009-08-25  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* gtk-gui/gui.stetic:
	* gtk-gui/objects.xml:
	* MonoDevelop.Projects.Gui.csproj:
	* MonoDevelop.Projects.Gui.Dialogs/AddMimeTypeDialog.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.AddMimeTypeDialog.cs:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CodeFormattingPanel.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CodeFormattingPanelWidget.cs:
	  The code formatting panel now allows adding new mime types.
	  Also, the panel will automatically include mime types which
	  are known to have custom properties.

2009-08-25  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Fixed "Bug 533674 - Documentation tooltip shown over
	  completion list".

2009-08-25  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ParameterInformationWindowManager.cs:
	  Fixed "Bug 533668 - Completion window shown over the
	  parameter information tooltip".

2009-08-25  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Fixed "Bug 479457 - Intellisense blocking left and right
	  arrow keys even when not used".

2009-08-24  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs: Removed
	  debug message.

2009-08-24  Mike Krüger  <mkrueger@novell.com>

	* Makefile.am:
	* MonoDevelop.Projects.Gui.csproj:
	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ListWidget.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionWindowManager.cs:
	  Fixed "Bug 533672 - Code completion window does not show the
	  selected row in some cases".

2009-08-05  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui/ProjectFileEntry.cs: Tweak spacing.

2009-08-04  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/ProjectFileSelectorDialog.cs:
	  Don't dispose pixbufs from the icon service, as Dispose
	  calls g_free, but these pixpuf are used in other places.
	  Instead let the finalizer queue a g_unref.

2009-08-04  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/ProjectFileSelectorDialog.cs:
	  Better pixbuf disposal.

2009-08-04  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/ProjectFileSelectorDialog.cs:
	  Fix directory listing that regressed during FilePath
	  changes.

2009-07-31  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui/ProjectFileEntry.cs: Actually empty
	  the relative path if no file is selected.

2009-07-31  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionWindowManager.cs:
	  Fixed possible null reference exception/removed some
	  duplicate code.

	* MonoDevelop.Projects.Gui.Completion/ParameterInformationWindow.cs:
	  In parameter info window the count message is now always on
	  top.

2009-07-29  Michael Hutchinson  <mhutchinson@novell.com>

	* gtk-gui/objects.xml:
	* MonoDevelop.Projects.Gui/ProjectFileEntry.cs: Added property
	  to make entry non-editable. Better handling of empty
	  filenames.

2009-07-29  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/IParameterDataProvider.cs:
	* MonoDevelop.Projects.Gui.Completion/ParameterInformationWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/MethodParameterDataProvider.cs:
	  Handled parameter documentation.

2009-07-28  Michael Hutchinson  <mhutchinson@novell.com>

	* Makefile.am:
	* gtk-gui/objects.xml:
	* MonoDevelop.Projects.Gui.csproj:
	* MonoDevelop.Projects.Gui/ProjectFileEntry.cs: Add a simple
	  widget for picking a file from a project.

2009-07-28  Michael Hutchinson  <mhutchinson@novell.com>

	* Makefile.am:
	* gtk-gui/gui.stetic:
	* MonoDevelop.Projects.Gui.csproj:
	* MonoDevelop.Projects.Gui.Dialogs/ProjectFileSelectorDialog.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.ProjectFileSelectorDialog.cs:
	  Move AspNetFileSelector to
	  MonoDevelop.Project.Gui.Dialogs.ProjectFileSelectorDialog.

2009-07-24  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/ProjectOptionsDialog.cs:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/GeneralProjectOptions.cs:
	  When changing the name of a project, rename the project
	  file.

	* gtk-gui/objects.xml: Flush.

2009-07-23  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/StartupOptionsPanel.cs:
	  Add missing collection length check. Fixes bug #513867 -
	  ArgumentOutOfRangeException when closing solution properties
	  dialog.

2009-07-22  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ParameterInformationWindowManager.cs:
	  Fixed sizing bug.

2009-07-22  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionWindowManager.cs:
	  Worked on code completion.

2009-07-22  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionWindowManager.cs:
	  Completion window now hides instead of displaying a message,
	  when no match is found.

2009-07-22  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Fixed cc bug.

2009-07-22  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  added null check.

2009-07-21  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Fixed bug
	  that caused the size of the code completion window to be
	  wrong.

2009-07-21  Mike Krüger  <mkrueger@novell.com>

	* Makefile.am:
	* MonoDevelop.Projects.Gui.csproj:
	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionWindowManager.cs:
	  The items in the completion window are now selected more
	  carefully.

2009-07-19  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Optimized/improved the abbreviation algorithm. Changed the
	  process key, the keyChar is now given as parameter.

2009-07-17  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Fixed scrolling bug.

2009-07-17  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Overworked the code completion window. It now features
	  'CamelHumps' ex. myLongName can be completed with mLN.
	  Highlighting will help to learn this feature. And it has now
	  a code completion history.

2009-07-09  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Fixed auto select issue.

2009-07-08  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionDataList.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Fixed "Bug 518548 - Completion is very annoying on lambda
	  parameters".

2009-06-25  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/PolicyOptionsPanel.cs:
	* MonoDevelop.Projects.Gui.Dialogs/MimeTypePolicyOptionsPanel.cs:
	* MonoDevelop.Projects.Gui.Dialogs/MimeTypePolicyOptionsSection.cs:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CodeFormattingPanel.cs:
	  Track api changes.

2009-06-23  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/MimeTypePolicyOptionsPanel.cs:
	* MonoDevelop.Projects.Gui.Dialogs/MimeTypePolicyOptionsSection.cs:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CodeFormattingPanel.cs:
	  Use the new DesktopService instead of PlatformService.

2009-06-17  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs\MimeTypePolicyOptionsSection.cs:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels\CodeFormattingPanel.cs:
	  If there is no description for a mime type, use the mime
	  type name.

2009-06-11  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/RuntimeOptionsPanel.cs:
	  Track api changes.

2009-06-09  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.addin.xml: Added some sections to
	  the default policies dialog.

2009-06-09  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* gtk-gui/gui.stetic:
	* MonoDevelop.Projects.Gui.csproj:
	* MonoDevelop.Projects.Gui.addin.xml:
	* MonoDevelop.Projects.Gui.Extensions:
	* MonoDevelop.Projects.Gui.Dialogs/PolicyOptionsPanel.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.DeleteConfigDialog.cs:
	* MonoDevelop.Projects.Gui.Dialogs/MimeTypePolicyOptionsPanel.cs:
	* MonoDevelop.Projects.Gui.Extensions/MimeTypeOptionsPanelNode.cs:
	* MonoDevelop.Projects.Gui.Dialogs/MimeTypePolicyOptionsSection.cs:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CodeFormattingPanel.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CodeFormattingPanelWidget.cs:
	  Added support for per mime-type policies. Implemented new
	  code formatting panel.

2009-05-25  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Disable
	  selection of most-recently-used match until #385043 is
	  fixed.

2009-05-20  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels\StartupOptionsPanel.cs:
	  Don't use Gtk.TreeIter.Equals, since it's broken. Compare
	  TreePaths instead.

2009-05-14  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Fixed "Bug 385043 - Intellisense should default to
	  most-recently-used match (instead of first match
	  alphabetically)".

2009-05-06  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Fix for GTK# 2.8.

2009-05-04  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ParameterInformationWindowManager.cs:
	  Moved the workaround for "Bug 492264 - Intellisense menu
	  locks on top of the screen" to WindowTransparencyDecorator,
	  so no need to do it here too.

2009-05-04  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Changed
	  default for completewithpunctuation

2009-05-04  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ParameterInformationWindowManager.cs:
	  Fixed "Bug 492264 - Intellisense menu locks on top of the
	  screen".

2009-05-01  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Better set of modifiers for closing completion window on
	  arrow+modifier.

2009-04-29  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/StartupOptionsPanel.cs:
	  Fixed possible cast exception.

2009-04-27  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Restore
	  behaviour of not closing the list on punctuation when it
	  matches an item in the list.

2009-04-27  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/DeclarationViewWindow.cs:
	  Added missing translation string.

2009-04-27  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui/ProjectsGuiServices.cs:
	  Reimplemented language binding service.

2009-04-24  Mike Krüger  <mkrueger@novell.com>

	* AssemblyInfo.cs:
	* MonoDevelop.Projects.Gui.addin.xml: Changed copyright tag.

2009-04-20  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/NamespaceSynchronisationPanel.cs:
	  Renamed PixbufService to ImageService.

2009-04-20  Mike Krüger  <mkrueger@novell.com>

	* Makefile.am:
	* MonoDevelop.Projects.Gui.csproj:
	* MonoDevelop.Projects.Gui.Completion/TextUtilities.cs:
	* MonoDevelop.Projects.Gui.Completion/DeclarationViewWindow.cs:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/OutputOptionsPanel.cs:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineBuildOptions.cs:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/GeneralProjectOptions.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.StartupOptionsPanelWidget.cs:
	  Relicensed some old stuff. Removed text utilities. These
	  functions can't be done on that level. The backend bindings
	  have to handle this stuff.

2009-04-20  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui/ProjectsGuiServices.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/NamespaceSynchronisationPanel.cs:
	  Track API changes.

2009-04-17  Mike Kestner  <mkestner@novell.com>

	* MonoDevelop.Projects.Gui.csproj: don't require specific
	gtk-sharp version.

2009-04-17  Mike Krüger  <mkrueger@novell.com>

	* Makefile.am:
	* MonoDevelop.Projects.Gui.csproj:
	* MonoDevelop.Projects.Gui/IconCodon.cs:
	* MonoDevelop.Projects.Gui/IconService.cs: Removed icon codon
	  & icon service.

2009-04-17  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.addin.xml:
	* MonoDevelop.Projects.Gui/IconCodon.cs:
	* MonoDevelop.Projects.Gui/IconService.cs:
	* MonoDevelop.Projects.Gui/ProjectsGuiServices.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.StartupOptionsPanelWidget.cs:
	  Removed icon service.

2009-04-16  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/RuntimeOptionsPanel.cs:
	  Moved SystemAssemblyService and related classes to the
	  namespace MonoDevelop.Core.Assemblies.

2009-04-15  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* MonoDevelop.Projects.Gui.addin.xml: Bump MD version.

2009-04-14  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Fixed
	  "Bug 494566 - Problem with generics completion.".

2009-04-14  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: changed
	  default value for "CompleteWithSpaceOrPunctuation".

2009-04-14  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: fixed
	  "Bug 494565 - New auto-complete behavior is improperly
	  labeled.".

2009-04-10  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Made the 'undo' of code completion operations more
	  intelligent.

2009-04-10  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	  shift+space now overrides automatic completion.

2009-03-22  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/BaseMemberCompletionData.cs:
	  Fixed Header.

2009-03-22  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/BaseMemberCompletionData.cs:
	  Added icons to the template completion list.

2009-03-21  Mike Krüger  <mkrueger@novell.com>

	* Makefile.am:
	* MonoDevelop.Projects.Gui.csproj: 

	* MonoDevelop.Projects.Gui.Completion/BaseMemberCompletionData.cs:
	  Worked on template callbacks.

2009-03-16  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionDataList.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Added IsSorted property.

2009-02-27  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/StartupOptionsPanel.cs:
	  Don't display solutions multiple times. Add translatable
	  string.

2009-02-26  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/NamespaceSynchronisationPanel.cs:
	  Translation fixes. Patch from Kriván Bálint.

2009-02-26  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/ProjectOptionsDialog.cs:
	  The dialog now works for any solutionEntityItem.

2009-02-25  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  destroy declaration view window.

2009-02-25  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Completion/MutableCompletionDataList.cs:
	  Fix Changed event subscription.

2009-02-24  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/NamespaceSynchronisationPanel.cs:
	  Fix warning.

2009-02-23  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Projects.Gui.csproj:
	* MonoDevelop.Projects.Gui.addin.xml:
	* MonoDevelop.Projects.Gui.Dialogs/ItemOptionsDialog.cs:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/ItemTypeCondition.cs:
	  Moved ItemTypeCondition to MD.Projects.

2009-02-19  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/RenameConfigDialog.cs:
	* MonoDevelop.Projects.Gui.Dialogs/NewConfigurationDialog.cs:
	* MonoDevelop.Projects.Gui.Dialogs/MultiConfigItemOptionsPanel.cs:
	* MonoDevelop.Projects.Gui.Dialogs/MultiConfigItemOptionsDialog.cs:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineConfigurationPanel.cs:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/SolutionItemConfigurationsPanel.cs:
	  Fixed several issues related to configuration management.
	  Fixes bug #446851.

	* gtk-gui/gui.stetic:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.RenameConfigDialog.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.NewConfigurationDialog.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.RunOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.StartupOptionsPanelWidget.cs:
	  Updated.

2009-02-11  Mike Krüger  <mkrueger@novell.com>

	* gtk-gui/objects.xml: 

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  fixed "Bug 474458 - NRE on code completion".

2009-02-10  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Reposition the GUI window if the allocated size changes
	  after initial placement. Fixes "Bug 441631 - Completion
	  window positioning is sometimes wrong".

2009-02-10  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Align window's text with the trigger text.

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: If icon's
	  null, actually look up the size for the space. Add property
	  for getting offset of list's text relative to the window
	  border.

2009-02-10  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/NamespaceSynchronisationPanel.cs:
	  If resource name policy is unset, don't automatically set it
	  to MD1 format. Only change it when the user makes a change.

2009-02-06  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.mdp:
	* MonoDevelop.Projects.Gui.csproj: Migrated to MSBuild file
	  format.

2009-02-04  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Track IOverloadedCompletionData API. Overloads can now be
	  sorted.

	* MonoDevelop.Projects.Gui.Completion/ICompletionData.cs:
	  Rename IOverloadedCompletionData.GetOverloads to
	  GetOverloadedData. It now returns the "root" datum as well
	  as the overload, so that it can sort them.

2009-02-04  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Fix escaping of overload descriptions.

2009-02-03  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* MonoDevelop.Projects.Gui.addin.xml: Bump MD version.

2009-02-03  Lluis Sanchez Gual  <lluis@novell.com>

	*
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/NamespaceSynchronisationPanel.cs:
	  Show resource policy checkbox as inconsistent if a policy
	  has not been yet chosen.

2009-02-03  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/gui.stetic: Flush.

	*
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/NamespaceSynchronisationPanel.cs:
	  Fix crash when editing the default policy.

2009-02-02  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/PolicyOptionsPanel.cs:
	  Workaround for GTK#/mcs delegate issue. Hopefully fixes Bug
	  471482 - Unhandled exception with Standard Header policy.

2009-02-02  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/objects.xml: Flush.

2009-02-02  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/PolicyOptionsPanel.cs: Fix
	  warning.

	*
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/NamespaceSynchronisationPanel.cs:
	  Added support for resource naming policy.

2009-02-02  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.addin.xml: Moved namig panel to a
	  new Source Code section.

2009-01-30  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/PolicyOptionsPanel.cs: Display named
	policies list when editing policy sets.

2009-01-30  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.addin.xml: Add extension point for defaul
	policies panels. Add the .NET naming panel to this extension point.

	* Makefile.am:
	* MonoDevelop.Projects.Gui.mdp: Updated.

	* MonoDevelop.Projects.Gui.Dialogs/DefaultPolicyOptionsDialog.cs: Add a
	dialog for editing default policies.

	* MonoDevelop.Projects.Gui.Dialogs/PolicyOptionsPanel.cs: Add support
	for editing policy sets.

2009-01-30  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/NamespaceSynchronisationPanel.cs:
	Disable GUI for resource style names as it's not implemented yet.
	Comment out cosmetic properties not available in GTK 2.8.

2009-01-29  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/PolicyOptionsPanel.cs: Workaround for
	JIT bug.

2009-01-28  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/PolicyOptionsPanel.cs: Don't use
	SingleOrDefault as this was crashing the 2.4 JIT.

2009-01-26  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/PolicyOptionsPanel.cs: Work around
	bug 469427 - broken themes match on *Panel* widget names.

2009-01-26  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/MultiConfigItemOptionsPanel.cs:
	Add a hack to work around broken themes that attach themes to *Panel* 
	widget names.

2009-01-23  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/PolicyOptionsPanel.cs: Add named
	policies to the list store correctly.

2009-01-21  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.addin.xml:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/NamespaceSynchronisationPanel.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.NamespaceSynchronisationPanelWidget.cs:
	Implement a panel for editing DotNetNamingPolicy policies.

	* Makefile.am:
	* gtk-gui/gui.stetic:
	* MonoDevelop.Projects.Gui.mdp: Updated.

	* MonoDevelop.Projects.Gui.Dialogs/PolicyOptionsPanel.cs: Add an
	abstract ItemOptionsPanel for editing policies which handles
	selecting named policies, parent policy, etc.

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/GeneralProjectOptions.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.GeneralProjectOptionsWidget.cs:
	Remove unused setting.

	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.RunOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.StartupOptionsPanelWidget.cs:
	Flush.

2009-01-20  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.OutputOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.BaseDirectoryPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.StartupOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.GeneralProjectOptionsWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineConfigurationPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineEntryConfigurationsPanelWidget.cs:
	Updated.

2009-01-14  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/MultiConfigItemOptionsPanel.cs:
	* MonoDevelop.Projects.Gui.Dialogs/MultiConfigItemOptionsDialog.cs:
	Store configuration rename operations, and update the parent solution
	when required. Fixes bug #465150 - Configuration names & mappings not
	updating when changed.

2009-01-09  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: Use an
	IComparer object instead of a Comparison delegate, since delegate
	invocations are an order of magnitude slower than virtual method
	calls. Speeds up sort substantially.

	* MonoDevelop.Projects.Gui.Completion/CompletionDataList.cs: Add
	IComparer sort overload.

2009-01-09  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Process the enter
	key normally when there list has disabled selection. If the list has
	a selection, continue to interpret it only as a commit command.
	Matches VS behaviour.

2009-01-09  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: Use
	ordinal string compare for sorting the list, as it's an order of
	magnitude faster. Makes code completion more responsive.

2009-01-05  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionDataList.cs: fixed Find
	in completiondatalist for unit tests.

2008-12-25  Eric Butler  <eric@extremeboredom.net>
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/OutputOptionsPanel.cs:
	Fix output path validation.

2008-12-19  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am:
	* MonoDevelop.Projects.Gui.mdp:
	* MonoDevelop.Projects.Gui.Completion/TooltipWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/DeclarationViewWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/ParameterInformationWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/WindowTransparencyDecorator.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.RunOptionsPanelWidget.cs:
	Moved TooltipWindow to MD.Components.

2008-12-12  Lluis Sanchez Gual  <lluis@novell.com>

	* gtk-gui/generated.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.RenameConfigDialog.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.DeleteConfigDialog.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.NewConfigurationDialog.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.OutputOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineInformationWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.BaseDirectoryPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineBuildOptionsWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.RuntimeOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.StartupOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.GeneralProjectOptionsWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineConfigurationPanelWidget.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CommonAssemblySigningPreferences.cs:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineEntryConfigurationsPanelWidget.cs:
	Flush.

2008-12-12  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.mdp: Set correct target framework.

2008-12-11  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/RuntimeOptionsPanel.cs:
	Implemented support for the new TargetFramework model.

2008-12-09  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.mdp: Don't require a specific version of
	Mono.Addins.

2008-12-08  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/MutableCompletionDataList.cs:
	Implement lazy hooking up of ProjectDomService events, and marshal
	then to the GUI thread. Should fix Bug 443908 - Random crash
	(gdk-critical).

2008-12-03  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am: Make it work for parallel builds.

2008-12-02  Michael Hutchinson  <mhutchinson@novell.com>

	* Makefile.am:
	* AssemblyInfo.cs:
	* AssemblyInfo.cs.in:
	* MonoDevelop.Projects.Gui.mdp: Add AssemblyInfo.cs files that are
	autogenerated from the addin manifests.

2008-11-18  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Don't crash on
	setting selection or resetting when the window isn't realised. Handle
	these cases properly.

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: Don't
	show completion window if it's an auto-accepting unique match. Fixes
	Bug 445390 - Ctrl-space with auto-accept still briefly shows
	completion window.

2008-11-13  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.mdp: Flush.

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Dismiss window on
	ctrl-backspace. Fixes Bug 444535 - Autocomplete selection gets
	confused by ctrl-backspace.

2008-11-11  Mike Krüger  <mike@icsharpcode.net>

	* MonoDevelop.Projects.Gui.Completion/ICompletionWidget.cs: added
	tostring method.

2008-11-06  Mike Krüger  <mike@icsharpcode.net>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: fixed
	'Bug 442160 - Double-click on scrollbar down arrow of code completion
	menu results in selection'.

2008-11-05  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Make "Tab" key
	always complete item even if selection is disabled.

2008-11-05  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionDataList.cs: Moved
	interface to another file.

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: Remove
	dead code, and hide update footer when hiding list.

	* Makefile.am:
	* MonoDevelop.Projects.Gui.mdp: Updated.

	* MonoDevelop.Projects.Gui.Completion/MutableCompletionDataList.cs:
	Implement a mutable completion list that flags itself based on the
	ProjectDomService.

2008-11-05  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.addin.xml: Bump MD version.

2008-11-03  Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/ItemOptionsPanel.cs: Added property
	for getting the list of configuration objects being edited in the
	dialog (they are a copy of the original configurations).

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/RuntimeOptionsPanel.cs:
	Assign the selected clr version to all configurations (The ClrVersion
	setter of DotNetProject does it, but configurations are replaced by
	the copies being edited in the dialog).

2008-10-29  Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ParameterInformationWindowManager.cs:
	fixed 'Bug 436669 - function hints (tooltip) hides typing when typing
	a multi-line function'.

2008-10-16  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/RuntimeOptionsPanel.cs:
	Rename Moonlight 1.1 to Moonlight 2.0.

2008-10-16 Mike Krüger  <mkrueger@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: fixed 'Bug 432435 -
	Code completion shows 'List', not List<T>'.

2008-10-16  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionDataList.cs: Add
	AddRange overloads.

2008-10-15  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: When the
	list is first shown, don't autoselect the top item unless it matches
	the DefaultCompletionString.

2008-10-14  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/DeclarationViewWindow.cs: Empty
	the windows when the assigned description is empty as well as when
	it's null. Prevents showing empty tooltip.

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: Cleanup.

2008-10-14  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionDataList.cs: Add methods
	for removing completion data.

2008-10-13  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: When the selection
	is disabled, first up/down keystroke enables the selection and does
	not move it. Makes it easier to select current deselected item, and
	mimics VS behaviour.

2008-10-13  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Disable the
	selection when the completion string is empty.

2008-10-10  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Reset after using
	markup, or the same attributes will be applied to later SetText
	calls.

2008-10-09  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: Fix NRE
	on commiting selection. The code was relying on keeping the
	completion list; recent changes disposed it when the window was
	hidden.

2008-10-09  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionData.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionDataList.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: New
	CompletionDataList API to replace CompletionDataProvider.

	* Makefile.am:
	* MonoDevelop.Projects.Gui.mdp: Updated.

	* MonoDevelop.Projects.Gui.Completion/ICompletionDataProvider.cs:
	* MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs:
	Removed.

2008-10-09  Michael Hutchinson  <mhutchinson@novell.com>

	* Makefile.am:
	* MonoDevelop.Projects.Gui.mdp:
	* MonoDevelop.Projects.Gui.Completion/ICompletionData.cs:
	* MonoDevelop.Projects.Gui.Completion/IOverloadedCompletionData.cs:
	Rename file.

2008-10-09  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionData.cs:
	* MonoDevelop.Projects.Gui.Completion/ICompletionData.cs:
	* MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/IOverloadedCompletionData.cs:
	* MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs:
	Tidy up ICompletionData API.

	* Makefile.am:
	* MonoDevelop.Projects.Gui.mdp: Updated.

2008-10-09  Michael Hutchinson  <mhutchinson@novell.com>

	* Makefile.am:
	* MonoDevelop.Projects.Gui.mdp: Add a reference to System.Core.

2008-10-08  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CompletionData.cs: Add some very
	simple default completion data objects.

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs: Fix
	compilation.

	* Makefile.am:
	* MonoDevelop.Projects.Gui.mdp: Updated.

2008-10-08  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/IOverloadedCompletionData.cs: Move
	overloading functionality into an IOverloadedCompletionData interface
	so that ICompletionData implementors that want overloads do not have
	to subclass CodeCompletionData, and can customise overloading
	behaviour.

	* Makefile.am:
	* MonoDevelop.Projects.Gui.mdp: Updated.

2008-10-07  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs: Track API.

2008-10-07  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.Projects.Gui.Completion/ICompletionData.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Re-implement sinking obsolete members to the bottom, but in a
	  non-broken way this time.

2008-10-07  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: now '<' is a
	  autocomplete char too.

2008-10-02  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Projects.Gui/ProjectsGuiServices.cs,
	  MonoDevelop.Projects.Gui/IconService.cs: Track removal of service
	  APIs.

2008-09-29  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/ICompletionData.cs,
	  MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs,
	  MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs:
	  Completion data now implements IComparable.

2008-09-26  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml: Custom commands are not supported
	  at solution level.
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: Hide the
	  completion list if there is nothing to show.
	* MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs: Minor
	  allocation optimization.
	* MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs:
	  Cosmetic fix.

2008-09-22  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: List view items
	  now can contain pango markup.

2008-09-18  Lluis Sanchez Gual <lluis@novell.com> 

	* gtk-gui/generated.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.DeleteConfigDialog.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.NewConfigurationDialog.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.BaseDirectoryPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineBuildOptionsWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineConfigurationPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineEntryConfigurationsPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineInformationWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CommonAssemblySigningPreferences.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.GeneralProjectOptionsWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.OutputOptionsPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.RunOptionsPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.RuntimeOptionsPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.StartupOptionsPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.RenameConfigDialog.cs:
	  Flush.

2008-09-18  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/ICompletionDataProvider.cs: No
	  setter is required. That's up to the implementation.

2008-09-18  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/ICompletionDataProvider.cs,
	  MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs,
	  MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs:
	  fixed "Bug 427286 - Code Completion: completion done without
	  showing the completion list".

2008-09-17  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs:
	  Added some functions used by unit testing.

2008-09-16  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.mdp: Update.
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: Escape
	  list item description since it may contain markup.
	* MonoDevelop.Projects.Gui.Completion/DeclarationViewWindow.cs: Show
	  documentation header in bold. Set a minimum width for the
	  documentation window.

2008-09-12  Lluis Sanchez Gual <lluis@novell.com> 

	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.RuntimeOptionsPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.BaseDirectoryPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.GeneralProjectOptionsWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineInformationWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.NewConfigurationDialog.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineConfigurationPanelWidget.cs,
	  gtk-gui/objects.xml,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CommonAssemblySigningPreferences.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineEntryConfigurationsPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.DeleteConfigDialog.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.OutputOptionsPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.StartupOptionsPanelWidget.cs,
	  gtk-gui/generated.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.RenameConfigDialog.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.RunOptionsPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineBuildOptionsWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandWidget.cs,
	  gtk-gui/gui.stetic: Updated.

2008-09-12  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs:
	  Track api changes.
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/RunOptionsPanel.cs: Run
	  options panel will now work for non-dot net projects.
	* MonoDevelop.Projects.Gui.Dialogs/MultiConfigItemOptionsDialog.cs:
	  Added Configurations property to be used by subclasses.

2008-08-18  Lluis Sanchez Gual <lluis@novell.com> 

	* gtk-gui/objects.xml,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.StartupOptionsPanelWidget.cs,
	  gtk-gui/gui.stetic,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandWidget.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/BaseDirectoryPanelWidget.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/EnvVarList.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandPanelWidget.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/StartupOptionsPanel.cs:
	  Use attributes to describe custom widgets.

2008-07-29  Mike Krüger <mkrueger@novell.com> 

	* gtk-gui/objects.xml: Removed some parts of the documentation service.

2008-07-29  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui/ProjectsGuiServices.cs,
	  MonoDevelop.Projects.Gui/IconService.cs,
	  MonoDevelop.Projects.Gui.Completion/MethodParameterDataProvider.cs,
	  MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs,
	  MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs:
	  Translated old code to new dom.

2008-07-27  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs: Worked on
	  new dom/completion/database.

2008-07-24  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: Use the
	  ResourceService to render the icons.

2008-07-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml, MonoDevelop.Projects.Gui.mdp,
	  gtk-gui/objects.xml,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.OutputOptionsPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.RunOptionsPanelWidget.cs,
	  gtk-gui/gui.stetic, Makefile.am,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/OutputOptionsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/EnvVarList.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/RunOptionsPanel.cs:
	  Added new Run options panel which includes some options from the
	  output panel and a new list for setting env vars to be set when
	  running the project.

2008-07-12  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Completion list now returns true, if it is shown.

2008-07-09  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/DeclarationViewWindow.cs: Avoid
	  unnecessary string creations, concatenations and comparisons. Also
	  fixes logic that was supposed to prevent empty tooltips from being
	  shown.

2008-07-07  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Added null check.

2008-07-03  Mike Krüger <mkrueger@novell.com> 

	

2008-06-24  Michael Hutchinson <mhutchinson@novell.com> 

	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.GeneralProjectOptionsWidget.cs,
	  gtk-gui/gui.stetic,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/GeneralProjectOptions.cs:
	  Don't show namespace settings GUI unless project is a
	  DotNetProject.

2008-06-17  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs,
	  MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Maintain more
	  completion window state after a parser DB update. Fixes "Bug 400228
	  - C# parsing frequently interrupts code completion".

2008-06-04  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Dialogs/MultiConfigItemOptionsPanel.cs:
	  Disable option panels which require a configuration when no
	  configurations are available.

2008-06-04  Lluis Sanchez Gual <lluis@novell.com> 

	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.StartupOptionsPanelWidget.cs:
	  Updated.
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandWidget.cs:
	  Support new variables in custom command options.

2008-06-04  Lluis Sanchez Gual <lluis@novell.com> 

	* gtk-gui/gui.stetic: Cosmetic fix.

2008-06-04  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.mdp: Minor project file fixes.

2008-06-04  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml: Bump MD version.

2008-06-03  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml, MonoDevelop.Projects.Gui.mdp,
	  gtk-gui/gui.stetic, Makefile.am,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/StartupOptionsPanel.cs:
	  Implemented new options panel for setting the solution startup
	  options.
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.GeneralProjectOptionsWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineInformationWidget.cs,
	  gtk-gui/objects.xml,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.StartupOptionsPanelWidget.cs:
	  Updated.

2008-05-22  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml: Reorganize the main settings
	  section.
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/BaseDirectoryPanel.cs:
	  Cosmetic fix.

2008-05-22  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/ItemTypeCondition.cs:
	  Added comment.

2008-05-22  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/ItemTypeCondition.cs:
	  Remove debug code.

2008-05-22  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml, MonoDevelop.Projects.Gui.mdp,
	  MonoDevelop.Projects.Gui.Dialogs/MultiConfigItemOptionsDialog.cs,
	  MonoDevelop.Projects.Gui.Dialogs/MultiConfigItemOptionsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs/ProjectOptionsDialog.cs,
	  MonoDevelop.Projects.Gui.Dialogs/CombineOptionsDialog.cs,
	  MonoDevelop.Projects.Gui.Dialogs/ItemOptionsDialog.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.BaseDirectoryPanelWidget.cs,
	  gtk-gui/objects.xml, gtk-gui/gui.stetic, Makefile.am,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/BaseDirectoryPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/BaseDirectoryPanelWidget.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/ActiveLanguageCondition.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/ItemTypeCondition.cs:
	  Merged the extension points for project and solution option panels
	  into a single extension point. A single extension point will now be
	  used for all kinds of items. Extension conditions can be used to
	  make panels visible only for some specific item types.

2008-05-21  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/RuntimeOptionsPanel.cs:
	  Show only runtime versions allowed by the project, rather than the
	  language binding.

2008-05-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml, MonoDevelop.Projects.Gui.mdp,
	  MonoDevelop.Projects.Gui/ProjectsGuiServices.cs,
	  MonoDevelop.Projects.Gui.Dialogs/MultiConfigItemOptionsDialog.cs,
	  MonoDevelop.Projects.Gui.Dialogs/MultiConfigItemOptionsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs/ProjectOptionsDialog.cs,
	  MonoDevelop.Projects.Gui.Dialogs/CombineOptionsDialog.cs,
	  MonoDevelop.Projects.Gui.Dialogs/ItemOptionsPanel.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineInformationWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.NewConfigurationDialog.cs,
	  gtk-gui/gui.stetic, Makefile.am,
	  MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/OutputOptionsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandPanelWidget.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandWidget.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/RuntimeOptionsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/GeneralProjectOptions.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineInformationPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineConfigurationPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/SolutionItemConfigurationsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineBuildOptions.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CommonAssemblySigningPreferences.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandPanel.cs:
	  New project model changes.

2008-05-19  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Only return a
	  valid completion word if there is a selection. Makes code
	  completion much less intrusive.

2008-05-16  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/TooltipWindow.cs: Tooltip window
	  hint only works on GTK+ >= 2.10, so reflect it.

2008-04-28  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Allow completion
	  box to accept punctuation, if it matches an entry.

2008-04-25  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs,
	  MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Allow the
	  overload list to be scrolled when Num lock is enabled, by handling
	  modifier keys more carefully. May still have problems with unusual
	  X settings.

2008-04-24  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Projects.Gui.mdp, Makefile.am: Updated.
	* MonoDevelop.Projects.Gui.Completion/ParameterInformationWindow.cs:
	  Use TooltipWindow.
	* MonoDevelop.Projects.Gui.Completion/TooltipWindow.cs: Share some
	  behaviours commons to tooltip-like windows.
	* MonoDevelop.Projects.Gui.Completion/DeclarationViewWindow.cs: Use
	  TooltipWindow and FixedWidthWrapLabel. Wrapping is now somewhat
	  improved.

2008-04-11  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/DeclarationViewWindow.cs,
	  MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: Track
	  API.
	* MonoDevelop.Projects.Gui.Completion/ParameterInformationWindow.cs:
	  Add transparency behaviour to parameter tooltip.
	* MonoDevelop.Projects.Gui.Completion/WindowTransparencyDecorator.cs:
	  De-uglify API.

2008-04-10  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/WindowTransparencyDecorator.cs:
	  Work around GTK# crasher bug and enable transparency by default.

2008-04-10  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Projects.Gui.mdp, Makefile.am: Updated.
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs,
	  MonoDevelop.Projects.Gui.Completion/DeclarationViewWindow.cs: Make
	  completion window semi-transparent when Ctrl key is held down.
	* MonoDevelop.Projects.Gui.Completion/WindowTransparencyDecorator.cs:
	  Decorator class that makes the attached GTK window semi-transparent
	  when the Control key is held down. Set
	  MONODEVELOP_ENABLE_UNSTABLE_TRANSPARENCY to enable it. Requires
	  GTK+ 2.12 and a compositing window manager, but degrades
	  transparently (ha!) if these aren't available.

2008-04-11  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml: Use the new mime type extension
	  to register new file types.
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineStartupPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineInformationWidget.cs:
	  Updated.

2008-04-01  Aaron Bockover <abockover@novell.com>

	* gtk-gui/gui.stetic:
	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.GeneralProjectOptionsWidget.cs:
	Added a 'use parent directory as namespace' check box under the default
	namespace entry

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/GeneralProjectOptions.cs:
	Connect the UseParentDirectoryAsNamespace project property to the new
	check box; make the default namespace entry insensitive if use parent
	directory is enabled

2008-03-10  Marcos David Marín Amador <MarcosMarin@gmail.com> 

	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.GeneralProjectOptionsWidget.cs:
	  Workaround for bug in Mono 1.2.4 where usings are ignored in anonymous
	  methods.

2008-03-04  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui/ProjectsGuiServices.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineStartupPanelWidget.cs,
	  gtk-gui/gui.stetic,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CompileFileProjectOptions.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/OutputOptionsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineStartupPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineEntryConfigurationsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CommonAssemblySigningPreferences.cs:
	  Worked on gnome hig compliant alerts.

2008-02-18  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.mdp, Makefile.am: Removed gnome reference, added
	  glib.

2008-01-28  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/TextUtilities.cs: Added
	  SearchBracketForward method.

2008-01-25  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml: Update MD version.

2008-01-24  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: Don't reset
	  the code completion list to top when data gathering is completed. Fixes
	  bug #350890.

2008-01-10  Zach Lute <zach.lute@gmail.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Scrollbar adjustment is
	  updated even if scrollbar is invisible. (Bug #350973)

2007-12-14  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: Don't process
	  keys if the completion window is hidden. Fixes bug #348696.

2007-12-14  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.mdp: Updated project files. The order of extended
	  properties won't change anymore.

2007-12-13  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Dialogs/DeleteConfigDialog.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.NewConfigurationDialog.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CommonAssemblySigningPreferences.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.DeleteConfigDialog.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.RenameConfigDialog.cs,
	  gtk-gui/gui.stetic,
	  MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs,
	  MonoDevelop.Projects.Gui.Completion/ListWindow.cs,
	  MonoDevelop.Projects.Gui.Completion/DeclarationViewWindow.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CompileFileProjectOptions.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/OutputOptionsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineStartupPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/RuntimeOptionsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/GeneralProjectOptions.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineInformationPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineConfigurationPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineBuildOptions.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineEntryConfigurationsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CommonAssemblySigningPreferences.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandPanel.cs: API
	  cleanup.

2007-12-12  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml: Bump add-in versions.

2007-12-12  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui/IconService.cs: API cleanup.
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: Remove unused
	  event.

2007-12-04  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.mdp, Makefile.am: Directory reorganization.

2007-11-22  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/RuntimeOptionsPanel.cs: Add
	  support for 2.1 runtime, and explicitly name the runtime versions.

2007-11-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.mdp, Makefile.am,
	  MonoDevelop.Projects.Gui.Completion/CommentCompletionDataProvider.cs:
	  Removed unused file.
	* MonoDevelop.Projects.Gui/ProjectsGuiServices.cs,
	  MonoDevelop.Projects.Gui.Dialogs/NewConfigurationDialog.cs,
	  MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs,
	  MonoDevelop.Projects.Gui.Completion/IParameterDataProvider.cs,
	  MonoDevelop.Projects.Gui.Completion/ParameterInformationWindow.cs,
	  MonoDevelop.Projects.Gui.Completion/ListWindow.cs,
	  MonoDevelop.Projects.Gui.Completion/ICompletionWidget.cs,
	  MonoDevelop.Projects.Gui.Completion/MethodParameterDataProvider.cs,
	  MonoDevelop.Projects.Gui.Completion/ParameterInformationWindowManager.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandWidget.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandPanelWidget.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineConfigurationPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandPanel.cs:
	  Added missing license headers.

2007-11-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.mdp, Base.glade,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.GeneralProjectOptionsWidget.cs,
	  gtk-gui/objects.xml, gtk-gui/gui.stetic, Makefile.am,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/GeneralProjectOptions.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineEntryConfigurationsPanel.cs:
	  Ported the last dialog to Stetic. Removed all remaining glade
	  references.

2007-11-20  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineStartupPanel.cs: Fix
	  build.

2007-11-20  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.mdp,
	  MonoDevelop.Projects.Gui.Dialogs/RenameConfigDialog.cs,
	  MonoDevelop.Projects.Gui.Dialogs/NewConfigurationDialog.cs,
	  MonoDevelop.Projects.Gui.Dialogs/DeleteConfigDialog.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineStartupPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.RuntimeOptionsPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineInformationWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.NewConfigurationDialog.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineConfigurationPanelWidget.cs,
	  gtk-gui/objects.xml,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineEntryConfigurationsPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.DeleteConfigDialog.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.OutputOptionsPanelWidget.cs,
	  gtk-gui/generated.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.RenameConfigDialog.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CompileFileOptionsWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CombineBuildOptionsWidget.cs,
	  gtk-gui/gui.stetic, Makefile.am,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CompileFileProjectOptions.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/OutputOptionsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineStartupPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/RuntimeOptionsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineInformationPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineConfigurationPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineBuildOptions.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineEntryConfigurationsPanel.cs:
	  Migrated dialogs to Stetic.
	* MonoDevelop.Projects.Gui.Dialogs/ConfigurationManager.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/DeployFileOptions.cs:
	  Removed old files.

2007-11-09  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs,
	  MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs: Track
	  LoggingService API changes.

2007-10-29  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml: Bump MD version.

2007-10-29  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml: Register some basic file type icons.
	* MonoDevelop.Projects.Gui/IconCodon.cs: Renamed resource attribute to icon,
	  since that's how the icon service handles it.

2007-10-24  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui/IconService.cs: Use new icon names.

2007-10-23  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.mdp: Project file names updated by change in MD
	  path functions.

2007-10-18  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/MethodParameterDataProvider.cs: fixed
	  "Bug 325509 - Inaccessible methods displayed in autocomplete".

2007-10-16  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs: Fixed
	  "Bug 325528 - Intellisense contains multiple entries of same namespace".

2007-10-16  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs: Track
	  api changes.

2007-10-15  Ankit Jain  <jankit@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandWidget.cs
	(OnComboTypeChanged):
	(OnWorkingdirEntryChanged): Set focus on the correct widget.

2007-10-12  Mike Krüger <mkrueger@novell.com> 

	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CommonAssemblySigningPreferences.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandWidget.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CompileFileProjectOptions.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/OutputOptionsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandWidget.cs:
	  Applied changes that were neccassary for to the new FileService.

2007-10-11  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineStartupPanel.cs:
	  Changed calls for the new StringParser.

2007-09-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml: Bump MD version.

2007-09-19  Michael Hutchinson <mhutchinson@novell.com> 

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandWidget.cs: Only
	  display relevant substitution tags for solutions and projects.

2007-09-18  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs,
	  MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Added some changes
	  for bug 325438.

2007-09-16  Eric Butler <eric@extremeboredom.net>

	* Base.glade,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/GeneralProjectOptions.cs:
	  Add Default Namespace option
	  Fix some formatting issues in GeneralProjectOptions.cs

2007-09-14  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.mdp: Fix warning level.
	* MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs,
	  MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs: Add
	  support for ITypeNameResolver.
	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Use the Text not the
	  CompletionText to find entries in the completion window. For example,
	  the completion window may show "ArrayList", while the completion string
	  may be "System.Collections.ArrayList". If the user types 'a', the window
	  should select the ArrayLsit entry.

2007-09-13  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs: Added
	  method for finding a ICompletionData instance.

2007-09-13  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/ParameterInformationWindow.cs,
	  MonoDevelop.Projects.Gui.Completion/ParameterInformationWindowManager.cs:
	  Fixed 82205: Can't read autocomplete.

2007-09-13  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs: Properly format
	  delegate names.

2007-09-13  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: Close the
	  completion window when pressing the cursor keys with shift or control.
	  Fixes bug #82475.

2007-09-13  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs,
	  MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs: Added
	  a flag in CodeCompletionData to allow or disallow use of intrinsic type
	  names.

2007-09-04  Michael Hutchinson <MHutchinson@novell.com> 

	* MonoDevelop.Projects.Gui/ProjectsGuiServices.cs,
	  MonoDevelop.Projects.Gui.Dialogs/ConfigurationManager.cs,
	  MonoDevelop.Projects.Gui.Dialogs/ProjectOptionsDialog.cs,
	  MonoDevelop.Projects.Gui.Dialogs/CombineOptionsDialog.cs,
	  MonoDevelop.Projects.Gui.Completion/CommentCompletionDataProvider.cs,
	  MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CompileFileProjectOptions.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/OutputOptionsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineStartupPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/RuntimeOptionsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/GeneralProjectOptions.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineInformationPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineConfigurationPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineBuildOptions.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineEntryConfigurationsPanel.cs:
	  Fix some compile warnings.

2007-08-31  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui/IconCodon.cs,
	  MonoDevelop.Projects.Gui.Dialogs/ConfigurationManager.cs,
	  MonoDevelop.Projects.Gui.Dialogs/ProjectOptionsDialog.cs,
	  MonoDevelop.Projects.Gui.Dialogs/CombineOptionsDialog.cs,
	  MonoDevelop.Projects.Gui.Completion/CommentCompletionDataProvider.cs,
	  MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CompileFileProjectOptions.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/OutputOptionsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineStartupPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/RuntimeOptionsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/GeneralProjectOptions.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineInformationPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineConfigurationPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineBuildOptions.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineEntryConfigurationsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CommonAssemblySigningPreferences.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandPanel.cs:
	  Changes due to new property infrastructure.

2007-08-28  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs,
	  MonoDevelop.Projects.Gui.Completion/ICompletionWidget.cs: Fixed 82207:
	  Incorrect autocomplete insertion.

2007-08-16  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Fixed 80813:Code
	  completion should show the best match in the middle of the combo
	  box.
	
	  (applied patch from Levi Bard)

2007-08-14  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs: Added a
	  new constructor for the code completion data (used for
	  XmlDocComments).

2007-08-09  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml, MonoDevelop.Projects.Gui.mdp,
	  MonoDevelop.Projects.Gui/IconCodon.cs,
	  MonoDevelop.Projects.Gui/IconService.cs, Makefile.am: Reorganized the
	  extension point hierarchy. Embedded all add-in manifests as resources.

2007-08-03  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui/ProjectsGuiServices.cs, gtk-gui/objects.xml: API
	  cleanup. Converted core services into regular classes.

2007-08-02  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs:
	  Converted DispatchService to a static class.

2007-08-01  Marcos David Marín Amador <MarcosMarin@gmail.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandWidget.cs:
	  Added support to enter the working directory.

2007-07-18  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs,
	  MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs,
	  MonoDevelop.Projects.Gui.Completion/TextUtilities.cs: Use the log
	  service for logging errors.

2007-07-17  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui/IconService.cs: New overload for getting an
	  icon of a member.

2007-07-13  Marcos David Marín Amador <MarcosMarin@gmail.com>

	* MonoDevelop.Projects.Gui/MonoDevelop.Projects.Gui.addin.xml:
	  The assembly signing panel is now only shown for .Net projects.

2007-07-13  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.mdp: Updated.
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs,
	  MonoDevelop.Projects.Gui.Completion/ICompletionWidget.cs: Store
	  more code completion information in the code completion context.
	  Needed to fix bug #82033.

2007-07-03  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CommonAssemblySigningPreferences.cs:
	  Made the assembly signing panel a bit nicer.

2007-07-03  Mike Krüger <mkrueger@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml, MonoDevelop.Projects.Gui.mdp,
	  gtk-gui/objects.xml,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CommonAssemblySigningPreferences.cs,
	  Makefile.am,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CommonAssemblySigningPreferences.cs,
	  gtk-gui/gui.stetic: Added assembly signing panel.

2007-06-30  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Dialogs/CombineOptionsDialog.cs: When a
	  solution contains a reference to an unknown project type (perhaps
	  the addin is not available on the machine) an exception occurs when
	  viewing the configuration properties for the solution. Patch by
	  Jerome Haltom.

2007-06-23 Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* MonoDevelop.Projects.Gui.addin.xml: Fixed capitalization.

2007-06-23  Marcos David Marin Amador <MarcosMarin@gmail.com>

	* MonoDevelop.Projects.Gui.CompletionCompletionList/Window.cs: Check whether 
	  ICompletionData is a CodeCompletionData instead of just casting it.

2007-06-13  Ankit Jain  <jankit@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/ProjectOptionsDialog.cs
	(ProjectOptionsCommands): Remove, unused.
	(SetSelectedConfigurationAsStartup): Remove. Active configuration cannot
	be set for a project by the user.

2007-06-07  Ankit Jain  <jankit@novell.com>

	Fixes bug#81820.
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CompileFileProjectOptions.cs
	(.ctor): Use FileService.NormalizeRelativePath for project files.

2007-06-06  Lluis Sanchez Gual <lluis@novell.com> 

	* gtk-gui/objects.xml: Updated.

2007-05-30  Lluis Sanchez Gual <lluis@novell.com> 

	* gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandWidget.cs,
	  gtk-gui/gui.stetic,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandWidget.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandPanelWidget.cs:
	  Option panel widgets don't need to be public.

2007-05-30  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Dialogs/ProjectOptionsDialog.cs,
	  MonoDevelop.Projects.Gui.Dialogs/CombineOptionsDialog.cs: Make sure
	  root nodes in option dialogs are expanded by default.

2007-05-30  Ankit Jain  <jankit@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineStartupPanel.cs
	(.ctor): If CombineExecuteDefinition is invalid then load an empty
	default set.
	(AddEmptyExecuteDefinitions): New.

2007-05-21  Ankit Jain  <jankit@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandWidget.cs:
	Ensure FileSelector dialog is Destroy()'ed.

2007-05-09  Lluis Sanchez Gual <lluis@novell.com> 

	* Makefile.am: Reference shared assemblies from the correct location.

2007-05-07  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui/IconService.cs: Removed reference to deleted
	  property.

2007-05-04  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml, MonoDevelop.Projects.Gui.mdp,
	  MonoDevelop.Projects.Gui/IconService.cs,
	  MonoDevelop.Projects.Gui.Dialogs/ProjectOptionsDialog.cs,
	  MonoDevelop.Projects.Gui.Dialogs/CombineOptionsDialog.cs,
	  Makefile.am: Migration to Mono.Addins.

2007-04-19  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml, MonoDevelop.Projects.Gui.mdp,
	  MonoDevelop.Projects.Gui.Deployment,
	  MonoDevelop.Projects.Gui.Deployment/DialogFileReplacePolicy.cs,
	  MonoDevelop.Projects.Gui.Deployment/IFileCopyConfigurationEditor.cs,
	  MonoDevelop.Projects.Gui.Deployment/IDeployTargetEditor.cs,
	  MonoDevelop.Projects.Gui.Deployment/LocalFileCopyConfigurationEditor.cs,
	  MonoDevelop.Projects.Gui.Deployment/DirectoryDeployEditor.cs,
	  MonoDevelop.Projects.Gui.Deployment/LocalFileCopyConfigurationEditorWidget.cs,
	  MonoDevelop.Projects.Gui.Deployment/InstallDeployEditor.cs,
	  MonoDevelop.Projects.Gui.Deployment/DirectoryDeployEditorWidget.cs,
	  MonoDevelop.Projects.Gui.Deployment/InstallDeployEditorWidget.cs,
	  MonoDevelop.Projects.Gui.Deployment/CommandDeployEditor.cs,
	  MonoDevelop.Projects.Gui.Deployment/FileCopyConfigurationSelector.cs,
	  MonoDevelop.Projects.Gui.Deployment/CombinedDeployEditor.cs,
	  MonoDevelop.Projects.Gui.Deployment/CommandDeployEditorWidget.cs,
	  MonoDevelop.Projects.Gui.Deployment/CombinedDeployEditorWidget.cs,
	  MonoDevelop.Projects.Gui.Deployment/DeployTargetEditor.cs,
	  MonoDevelop.Projects.Gui.Dialogs/AddDeployTargetDialog.cs,
	  MonoDevelop.Projects.Gui.Dialogs/EditDeployTargetDialog.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.DirectoryDeployEditorWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.InstallDeployEditorWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.FileCopyConfigurationSelector.cs,
	  gtk-gui/objects.xml,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.CommandDeployEditorWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.LocalFileCopyConfigurationEditorWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.CombinedDeployEditorWidget.cs,
	  gtk-gui/gui.stetic, Makefile.am,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/DeploymentOptionsPanel.cs:
	  Moved all deployment code to the new MonoDevelop.Deployment add-in.

2007-03-29  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.mdp: Updated.
	* MonoDevelop.Projects.Gui.Deployment/CombinedDeployEditorWidget.cs,
	  MonoDevelop.Projects.Gui.Dialogs/AddDeployTargetDialog.cs,
	  MonoDevelop.Projects.Gui.Dialogs/EditDeployTargetDialog.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/DeploymentOptionsPanel.cs:
	  Track api changes.
	* gtk-gui/MonoDevelop.Projects.Gui.Deployment.DirectoryDeployEditorWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.InstallDeployEditorWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.FileCopyConfigurationSelector.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.CommandDeployEditorWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.LocalFileCopyConfigurationEditorWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.CombinedDeployEditorWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandWidget.cs:
	  Flush.

2007-03-08  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.mdp: Don't local-copy references.
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CompileFileProjectOptions.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/OutputOptionsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineStartupPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/DeployFileOptions.cs:
	  Show errors in a modal dialog. Fixes bug #81085.

2007-02-16  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml: Change add-in versions to 0.13.

2007-02-15  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.mdp: Disabled building through makefile.
	  Added missing file.

2007-02-15  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.mdp: Flush.
	* Base.glade: Cosmetic fix.

2007-02-12  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: In CalcVisibleRows
	  get the window size using GetSizeRequest, since the size is later
	  being set with SetSizeRequest.

2007-02-09  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Deployment/DialogFileReplacePolicy.cs: Fixe
	  format string.
	* Makefile.am: Flush.

2007-02-08  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.mdp, Makefile.am: Updated.

2007-02-08  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.mdp, Makefile.am: Synchronized the MD
	  project and the Makefile
	* MonoDevelop.Projects.Gui.Dialogs/CombineOptionsDialog.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineConfigurationPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineEntryConfigurationsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandPanel.cs:
	  Save changes in configurations only once at dialog level. 
	* gtk-gui/MonoDevelop.Projects.Gui.Deployment.InstallDeployEditorWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.FileCopyConfigurationSelector.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.CommandDeployEditorWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.LocalFileCopyConfigurationEditorWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.CombinedDeployEditorWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandWidget.cs,
	  gtk-gui/gui.stetic: Flush.

2007-02-07  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml, MonoDevelop.Projects.Gui.mdp,
	  MonoDevelop.Projects.Gui.Dialogs/ProjectOptionsDialog.cs,
	  MonoDevelop.Projects.Gui.Dialogs/CombineOptionsDialog.cs,
	  Base.glade, gtk-gui/objects.xml,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandPanelWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Dialogs.OptionPanels.CustomCommandWidget.cs,
	  gtk-gui/gui.stetic, Makefile.am,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/OutputOptionsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandWidget.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandPanelWidget.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CustomCommandPanel.cs:
	  Implemented options panels for configuring custom commands for
	  projects.

2007-02-06  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.mdp, Makefile.am,
	  MonoDevelop.Projects.Gui.Completion/IParameterDataProvider.cs,
	  MonoDevelop.Projects.Gui.Completion/ParameterInformationWindow.cs,
	  MonoDevelop.Projects.Gui.Completion/MethodParameterDataProvider.cs,
	  MonoDevelop.Projects.Gui.Completion/ParameterInformationWindowManager.cs:
	  Infrastructure for supporting parameter information windows.

2007-02-05  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.mdp,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.DirectoryDeployEditorWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.InstallDeployEditorWidget.cs,
	  gtk-gui/generated.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.FileCopyConfigurationSelector.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.CommandDeployEditorWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.CombinedDeployEditorWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.LocalFileCopyConfigurationEditorWidget.cs,
	  gtk-gui/gui.stetic, Makefile.am: i18n fixes.

2007-02-02  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs: Always use
	  the ambience object to convert class names (needed since it may be
	  an instantiated generic type).

2007-02-02  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs:
	  Make the parser context optional in the constructor.

2007-02-02  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/OutputOptionsPanel.cs:
	  Set the project directory as default path for the file entries.
	  Fixes bug #80386 and #79223.

2007-02-01  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/ICompletionData.cs,
	  MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs,
	  MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Added new
	  interface IActionCompletionData, which can be used to implement
	  custom completion actions.
	* MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs: Made this
	  class public. Factorized some methods to make them more usable.

2007-01-29  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: Track
	  changes in the API. Now the cursor positions are taken from a
	  CodeCompletionContext object.
	* MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs: Lazily get
	  documentation from classes, to avoid loading too much data into
	  memory.
	* MonoDevelop.Projects.Gui.Completion/CommentCompletionDataProvider.cs:
	  Removed since it's not being used right now.
	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Allow specifying a
	  completion text which is different from the text shown in the list.
	  Added method for selecting an entry in the list.
	* MonoDevelop.Projects.Gui.Completion/ICompletionWidget.cs: Created
	  class CodeCompletionContext, which holds the coordinates of a code
	  completion operation.
	* MonoDevelop.Projects.Gui.Completion/ICompletionDataProvider.cs: A
	  completion provider can now specify the entry that has to be
	  selected by default in the completion list.
	* MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs:
	  Moved al C# specific code to the C# add-in. Now this class is just
	  a collection of CodeCompletionData. Every language add-in should
	  implement the code completion logic in a text editor extension.

2007-01-22  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml,
	  MonoDevelop.Projects.Gui.Deployment/LocalFileCopyConfigurationEditor.cs,
	  MonoDevelop.Projects.Gui.Deployment/DirectoryDeployEditor.cs,
	  MonoDevelop.Projects.Gui.Deployment/LocalFileCopyConfigurationEditorWidget.cs,
	  MonoDevelop.Projects.Gui.Deployment/InstallDeployEditor.cs,
	  MonoDevelop.Projects.Gui.Deployment/DirectoryDeployEditorWidget.cs,
	  MonoDevelop.Projects.Gui.Deployment/InstallDeployEditorWidget.cs,
	  MonoDevelop.Projects.Gui.Deployment/CommandDeployEditor.cs,
	  MonoDevelop.Projects.Gui.Deployment/CombinedDeployEditor.cs,
	  MonoDevelop.Projects.Gui.Deployment/CommandDeployEditorWidget.cs,
	  MonoDevelop.Projects.Gui.Deployment/CombinedDeployEditorWidget.cs,
	  MonoDevelop.Projects.Gui.Deployment/DeployTargetEditor.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.DirectoryDeployEditorWidget.cs,
	  gtk-gui/generated.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.InstallDeployEditorWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.FileCopyConfigurationSelector.cs,
	  gtk-gui/objects.xml,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.CommandDeployEditorWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.LocalFileCopyConfigurationEditorWidget.cs,
	  gtk-gui/MonoDevelop.Projects.Gui.Deployment.CombinedDeployEditorWidget.cs,
	  gtk-gui/gui.stetic: Implemented editors for all new deployment
	  targets.
	* MonoDevelop.Projects.Gui.mdp, Makefile.am: Updated.
	* MonoDevelop.Projects.Gui.Deployment/DialogFileReplacePolicy.cs:
	  IFileReplacePolicy implementation. Patch by Michael Hutchinson.
	* MonoDevelop.Projects.Gui.Deployment/IFileCopyConfigurationEditor.cs,
	  MonoDevelop.Projects.Gui.Deployment/FileCopyConfigurationSelector.cs:
	  Basic infrastructure for file copy configuration editors.
	* MonoDevelop.Projects.Gui.Deployment/FileDeployTargetEditor.cs:
	  Removed.
	* MonoDevelop.Projects.Gui.Dialogs/AddDeployTargetDialog.cs,
	  MonoDevelop.Projects.Gui.Dialogs/EditDeployTargetDialog.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/DeploymentOptionsPanel.cs:
	  Some minor gui improvements.
	* Base.glade: Set new default sizes for the deploy dialogs.

2007-01-19  Marek Sieradzki  <marek.sieradzki@gmail.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CompileFileProjectOptions.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineEntryConfigurationPanel.cs:
	  Removed redundant String.Format ().

2006-12-17  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CompileFileProjectOptions.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/OutputOptionsPanel.cs,
	  MonoDevelop.Projects.Gui.Dialogs.OptionPanels/DeployFileOptions.cs:
	  Track changes in FileService API.

2006-11-21  Lluis Sanchez Gual <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: Fix bug
	  that makes the code completion window appear randomly when an
	  assembly is reparsed.

2006-09-21 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Added some null checks.

2006-09-19 Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* .: Added svn:ignore for MonoDevelop.Projects.Gui.pidb

2006-09-01 Lluis Sanchez Gual  <lluis@novell.com>

 	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs: changed
 	  the icon shown in the tooltip when the parser db is being generated.
	* MonoDevelop.Projects.Gui.mdp: Updated.

2006-08-10 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs:
	* MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs:
	  Provide the ambience to use for code completion as a parameter.

2006-08-07 Philip Turnbull <philip.turnbull@gmail.com>

	* MonoDevelop.Projects.Gui/IconService.cs:
	Added GetIcon method for indexers.

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs:
	Track API changes in Ambience.

2006-08-08 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/DeploymentOptionsPanel.cs:
	* Base.glade: Allow setting the default deploy target in
	  the deployment options panel.

2006-08-04 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  Properly handle the case when the completion list is empty
	  (this may happen if the parser database is being generated).

2006-07-29 Matej Urbas <matej.urbas@gmail.com>

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs: Base types of
	  classes were not displayed. Fixed that.

2006-07-28 Matej Urbas <matej.urbas@gmail.com>

	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs: Fixed the completion
	  popup so that it doesn't use Pango markup for displaying type names.
	* MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs: Changed the
	  way names are generated for types in code completion.

2006-07-25 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Deployment/FileDeployTargetEditor.cs:
	  Fix incorrect type check.
	
	* MonoDevelop.Projects.Gui.Completion/ICompletionDataProvider.cs:
	* MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs:
	* MonoDevelop.Projects.Gui.Completion/ListWindow.cs:
	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  When the code completion window is shown and the parser database
	  is still being generated, the completion window will now show a message
	  saying that class information is being gathered.

2006-07-17 Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am: Removed unused file.

2006-07-12 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/CombineOptionsDialog.cs:
	* MonoDevelop.Projects.Gui.Dialogs/ProjectOptionsDialog.cs: Show the
	  project/solution name in the window title.
	  
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/DeploymentOptionsPanel.cs:
	  Set the correct button state when initially showing the panel.

2006-07-03 Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml: Registered a deploy target editor.
	  Updated add-in and references versions.
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/DeploymentOptionsPanel.cs:
	  Make it work for unknown deploy targets.
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineStartupPanel.cs:
	  Minor fix.
	* MonoDevelop.Projects.Gui.addin.xml: Updated versions.
	
	* Makefile.am:
	* MonoDevelop.Projects.Gui.mdp: Added FileDeployTargetEditor.cs.
	
2006-06-19 Scott Ellington  <scott.ellington@gmail.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineInformationPanel.cs:
	* Base.glade:
	* MonoDevelop.Projects.Gui.addin.xml: 
	Added option panel for setting solution information	
	* MonoDevelop.Projects.Gui.mdp:
	* Makefile.am:
	Added file

2006-05-15 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.addin.xml: Added new deployment panel
	  and extension point.
	* MonoDevelop.Projects.Gui.mdp: Added new files and updated references.
	* Base.glade: Added new deploymnet panel and support dialogs.
	* Makefile.am: Added new files.
	* MonoDevelop.Ide.Commands/ProjectCommands.cs: Implement deploy command.
	* MonoDevelop.Ide.addin.xml: Added new command which shows a list of
	  available deploy targets.
	* MonoDevelop.Projects.Gui.Deployment/DeployTargetEditor.cs:
	* MonoDevelop.Projects.Gui.Deployment/IDeployTargetEditor.cs:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/DeploymentOptionsPanel.cs:
	* MonoDevelop.Projects.Gui.Dialogs/AddDeployTargetDialog.cs:
	* MonoDevelop.Projects.Gui.Dialogs/EditDeployTargetDialog.cs: New files.

2006-05-24  Grzegorz Sobański  <silk@boktor.net>

	* MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs:
	  alter code completion - do not auto-insert first match - it too often
	  destroys what user has written.

2006-05-04 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.addin.xml: Updated versions.
	* MonoDevelop.Projects.Gui.mdp: Updated.

2006-04-21 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.addin.xml: Removed unused stuff.
	* Base.glade: Added RuntimeOptionsPanel design.
	
	* Makefile.am:
	* MonoDevelop.Projects.Gui.mdp: Added RuntimeOptionsPanel.cs.

2006-04-07 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.addin.xml: Add documentation.

2006-03-29 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineConfigurationPanel.cs:
	  Make the "configuraiton" column editable.
   
2006-03-24 Lluis Sanchez Gual  <lluis@novell.com>   

	* MonoDevelop.Projects.Gui.mdp: Updated.
	* Makefile.am: Use an unified format. Patch by Matze Braun.
	* MonoDevelop.Projects.Gui.addin.xml: Updated add-in versions.

2006-03-23 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Dialogs/CombineOptionsDialog.cs:
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineConfigurationPanel.cs:
	  Save changes done in the entry configuration panel. Fixes bug #77716.

2006-03-12  David Makovský (Yakeen) <yakeen@sannyas-on.net>

        * Base.glade: Marking some strings not to be translated. Not include balast in pot file.

2006-02-19 Andrés G. Aragoneses  <knocte@gmail.com>

	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/DeployFileOptions.cs:
	fixed a typo in a string.

2006-01-30 Lluis Sanchez Gual  <lluis@novell.com>

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs:
	Use LanguageItemCollection instead of ArrayList.

2006-01-25  Jacob Ilsø Christensen  <jacobilsoe@gmail.com>

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionData.cs:
	Removed duplication.

2006-01-14 Andrés G. Aragoneses  <knocte@gmail.com>

	* MonoDevelop.Projects.Gui.Dialogs/CombineOptionsDialog.cs: Replaced
	'Combine' by 'Solution'.
	* MonoDevelop.Projects.Gui.Dialogs.OptionPanels/CombineStartupPanel.cs:
	Replaced 'Combine' by 'Solution'.

2006-01-10 Lluis Sanchez Gual  <lluis@novell.com>   

	* MonoDevelop.Projects.Gui.Completion/CodeCompletionDataProvider.cs:
	Track api changes.

2005-10-11  Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml: Fixed addin header information.
	Use "id" attribuet instead of "name" to identify addins.
	* MonoDevelop.Ide.Gui.Dialogs/SplashScreen.cs: Implemented BeginStepTask.

2005-10-04  Lluis Sanchez Gual  <lluis@novell.com> 

	* MonoDevelop.Projects.Gui.addin.xml: Added addin dependencies.
	* MonoDevelop.Projects.Gui/IconService.cs: Use the new addin API.

2005-10-04  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am: Install the assembly in the AddIns directory.

2005-09-28  Lluis Sanchez Gual  <lluis@novell.com>

	Created new assembly. Old ChangeLog entries can be found in the
	MonoDevelop.Ide ChangeLog.