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

ChangeLog « MonoDevelop.IPhone « MonoDevelop.IPhone « extras - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca09cda45cf9a3f3f548bf6e4f300e894eb58e4b (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
2010-06-10  Michael Hutchinson  <mhutchinson@novell.com>

	* IPhoneBuildExtension.cs: Better build output.

2010-06-08  Michael Hutchinson  <mhutchinson@novell.com>

	* templates/IPadViewXib.xft.xml:
	* templates/IPhoneViewXib.xft.xml:
	* templates/IPadViewController.xft.xml:
	* templates/IPadApplicationXib.xft.xml:
	* templates/IPhoneViewController.xft.xml:
	* templates/IPhoneApplicationXib.xft.xml: Unify categories.

2010-06-08  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.IPhone.csproj: Remove Mono.Addins targets as
	  they seem to be broken.

2010-06-08  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.IPhone.csproj:
	* MonoDevelop.IPhone.addin.xml:
	* templates/IPhonePlist.xft.xml: Re-specialized the plist
	  template so categorization remains sane.

2010-06-07  Michael Hutchinson  <mhutchinson@novell.com>

	* templates/IPhoneViewController.xft.xml: Fix template.

2010-06-07  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.IPhone.csproj: Renamed a file.

	* IPhoneCodeBehind.cs:
	* CodeBehindGenerator.cs: Renamed generator. Track base class
	  API.

	* gtk-gui/gui.stetic: Flush refs.

	* IPhoneProject.cs:
	* IPhoneBuildExtension.cs: Cosmetic.

2010-06-07  Michael Hutchinson  <mhutchinson@novell.com>

	* CodeBehind.cs:
	* IPhoneProject.cs:
	* CodeBehindGenerator.cs:
	* IPhoneBuildExtension.cs:
	* MonoDevelop.IPhone.csproj: Move more sharable code from
	  MonoDevelop.IPhone to MonoDevelop.MacDev.

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

	* IPhoneBuildExtension.cs: Moved lots of re-usable code from
	  iphone build extension to new
	  MonoDevelop.MacDev.MacBuildUtilities class.

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

	* IPhoneProjectConfiguration.cs: Fix possible exception.

	* MonoDevelop.IPhone.csproj: Remove duplicate/nonexistent
	  folders.

2010-06-04  Michael Hutchinson  <mhutchinson@novell.com>

	* icons:
	* Icons:
	* templates:
	* Templates:
	* Icons/16x16:
	* icons/22x22:
	* icons/32x32:
	* Icons/22x22:
	* Icons/48x48:
	* Icons/32x32:
	* icons/48x48:
	* Icons/24x24:
	* icons/24x24:
	* icons/16x16:
	* PropertyList:
	* Icons/256x256:
	* icons/256x256:
	* CodeBehind.cs:
	* Orientation.cs:
	* IPhoneProject.cs:
	* InterfaceBuilder:
	* MobileProvision.cs:
	* Icons/mono-develop.svg:
	* icons/mono-develop.svg:
	* CodeBehindGenerator.cs:
	* IPhoneBuildExtension.cs:
	* PropertyList/PlistData.cs:
	* MonoDevelop.IPhone.csproj:
	* PropertyList/PlistReal.cs:
	* Gui/IPhoneOptionsPanel.cs:
	* PropertyList/PlistDate.cs:
	* PropertyList/PlistArray.cs:
	* PropertyList/PlistString.cs:
	* PropertyList/PlistObject.cs:
	* MonoDevelop.IPhone.addin.xml:
	* Icons/phone-apple-iphone.svg:
	* InterfaceBuilder/IBObject.cs:
	* PropertyList/PlistInteger.cs:
	* PropertyList/PlistBoolean.cs:
	* templates/IPhonePList.xft.xml:
	* templates/IPadViewXib.xft.xml:
	* PropertyList/PlistDocument.cs:
	* Templates/IPadViewXib.xft.xml:
	* Templates/IPhonePList.xft.xml:
	* InterfaceBuilder/IBDocument.cs:
	* icons/phone-apple-iphone-32.png:
	* PropertyList/PlistDictionary.cs:
	* PropertyList/PlistObjectBase.cs:
	* icons/phone-apple-iphone-22.png:
	* InterfaceBuilder/IBReference.cs:
	* InterfaceBuilder/Collections.cs:
	* templates/IPhoneViewXib.xft.xml:
	* icons/phone-apple-iphone-24.png:
	* icons/phone-apple-iphone-48.png:
	* Templates/IPhoneViewXib.xft.xml:
	* icons/phone-apple-iphone-16.png:
	* icons/iphone-project-overlay.png:
	* icons/phone-apple-iphone-256.png:
	* templates/IPhoneEmptyXib.xft.xml:
	* Templates/IPhoneEmptyXib.xft.xml:
	* Icons/32x32/xib-template-view.png:
	* icons/32x32/xib-template-view.png:
	* Icons/24x24/phone-apple-iphone.png:
	* icons/16x16/phone-apple-iphone.png:
	* icons/24x24/phone-apple-iphone.png:
	* Icons/32x32/phone-apple-iphone.png:
	* InterfaceBuilder/IBObjectRecord.cs:
	* icons/32x32/phone-apple-iphone.png:
	* icons/32x32/xib-template-empty.png:
	* icons/22x22/phone-apple-iphone.png:
	* Icons/16x16/phone-apple-iphone.png:
	* Icons/48x48/phone-apple-iphone.png:
	* Icons/22x22/phone-apple-iphone.png:
	* Icons/32x32/xib-template-empty.png:
	* icons/48x48/phone-apple-iphone.png:
	* InterfaceBuilder/UnknownIBObject.cs:
	* Icons/32x32/xib-template-window.png:
	* icons/32x32/xib-template-window.png:
	* Templates/IPhoneProjectEmpty.xpt.xml:
	* Templates/IPadApplicationXib.xft.xml:
	* icons/256x256/phone-apple-iphone.png:
	* Icons/256x256/phone-apple-iphone.png:
	* Templates/IPadViewController.xft.xml:
	* templates/IPadViewController.xft.xml:
	* templates/IPadApplicationXib.xft.xml:
	* Templates/IPhoneOpenGLProject.xpt.xml:
	* Templates/IPhoneViewController.xft.xml:
	* Templates/IPhoneLibraryProject.xpt.xml:
	* Templates/IPhoneUtilityProject.xpt.xml:
	* Templates/IPhoneApplicationXib.xft.xml:
	* templates/IPhoneViewController.xft.xml:
	* templates/IPhoneApplicationXib.xft.xml:
	* InterfaceBuilder/IBConnectionRecord.cs:
	* Templates/IPhoneNavBasedProject.xpt.xml:
	* icons/application-x-mono-develop-xib.svg:
	* icons/32x32/xib-template-application.png:
	* Templates/IPadWindowBasedProject.xpt.xml:
	* Icons/application-x-mono-develop-xib.svg:
	* Icons/32x32/xib-template-application.png:
	* icons/iphone-project-options-panel-16.png:
	* icons/iphone-project-options-panel-24.png:
	* Templates/IPhoneWindowBasedProject.xpt.xml:
	* Templates/IPhoneApplicationManifest.xft.xml:
	* icons/application-x-mono-develop-xib-16.png:
	* icons/24x24/iphone-project-options-panel.png:
	* Icons/24x24/iphone-project-options-panel.png:
	* icons/16x16/iphone-project-options-panel.png:
	* Icons/16x16/iphone-project-options-panel.png:
	* Templates/UniversalWindowBasedProject.xpt.xml:
	* icons/48x48/application-x-mono-develop-xib.png:
	* Icons/24x24/application-x-mono-develop-xib.png:
	* Icons/16x16/application-x-mono-develop-xib.png:
	* icons/16x16/application-x-mono-develop-xib.png:
	* icons/22x22/application-x-mono-develop-xib.png:
	* icons/32x32/application-x-mono-develop-xib.png:
	* icons/24x24/application-x-mono-develop-xib.png:
	* Icons/32x32/application-x-mono-develop-xib.png:
	* Icons/48x48/application-x-mono-develop-xib.png:
	* Icons/22x22/application-x-mono-develop-xib.png:
	* Icons/256x256/application-x-mono-develop-xib.png:
	* icons/256x256/application-x-mono-develop-xib.png:
	* Icons/32x32/phone-apple-iphone-project-overlay.png:
	* icons/32x32/phone-apple-iphone-project-overlay.png: Moved
	  sharable code, icons, templates and mimetype definitions out
	  of the iPhone addin into a new MacDev addin.

2010-06-04  Michael Hutchinson  <mhutchinson@novell.com>

	* Gui/IPhoneSigningKeyPanel.cs:
	* Gui/IPhoneBuildOptionsPanel.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneBuildOptionsWidget.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneBuildOptionsPanelWidget.cs:
	  Change widget name so it doesn't include the word "Panel",
	  because idiot theme authors assume the "Panel" word is
	  exclusive to gnome-panel widget names, and make dark/light
	  themes that make the text unreadable.

	* MonoDevelop.IPhone.csproj: Updated filename.

	* gtk-gui/gui.stetic: Fix typo.

	* IPhoneProject.cs: Fix default output dir of new
	  configurations.

2010-06-02  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.IPhone.csproj:
	* MonoDevelop.IPhone.addin.xml:
	* Templates/IPhoneApplicationManifest.xft.xml: Added
	  application manifest template.

	* Templates/IPhoneOpenGLProject.xpt.xml:
	* Templates/IPhoneUtilityProject.xpt.xml:
	* Templates/IPhoneNavBasedProject.xpt.xml:
	* Templates/IPadWindowBasedProject.xpt.xml:
	* Templates/IPhoneWindowBasedProject.xpt.xml:
	* Templates/UniversalWindowBasedProject.xpt.xml: Added
	  Info.plist to all new projects.

2010-06-02  Michael Hutchinson  <mhutchinson@novell.com>

	* Orientation.cs:
	* Gui/IPhoneOptionsPanel.cs: Moved orientation code from
	  options panel to separate file.

	* IPhoneBuildExtension.cs: Warn about missing orientation keys
	  in the plist with SDK 3.2 and higher.

	* MonoDevelop.IPhone.csproj: Added file, make references not
	  require specific version.

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

	* Gui/IPhoneOptionsPanel.cs: Options panel now loads and saves
	  orientation to Info.plist.

	* IPhoneProject.cs: Fix NRE creating Info.plist.

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

	* IPhoneProject.cs:
	* gtk-gui/gui.stetic:
	* IPhoneBuildExtension.cs:
	* Gui/IPhoneOptionsPanel.cs:
	* PropertyList/PlistDocument.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneOptionsWidget.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneSigningKeyPanelWidget.cs:
	  Some work on orientation support.

2010-05-28  Michael Hutchinson  <mhutchinson@novell.com>

	* IPhoneBuildExtension.cs: Fix adding values to dictionary.

2010-05-28  Michael Hutchinson  <mhutchinson@novell.com>

	* IPhoneBuildExtension.cs: Provisioning profile entitlement
	  values should overwrite template values.

2010-05-25  Michael Hutchinson  <mhutchinson@novell.com>

	* IPhoneDeviceConsole.cs: Dialog placement.

2010-05-25  Michael Hutchinson  <mhutchinson@novell.com>

	* CodeBehindGenerator.cs: Build a map of obj-c types to
	  MonoTouch types by reflection, instead of hardcoding certain
	  namespaces.

2010-05-25  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.IPhone.csproj:
	* MonoDevelop.IPhone.addin.xml:
	* Templates/IPhoneEntitlements.xft.xml: Remove the
	  entitlements plist template now we have a generic plist
	  template.

	* Templates/IPhonePList.xft.xml: Fix template name.

2010-05-25  Michael Hutchinson  <mhutchinson@novell.com>

	* MonoDevelop.IPhone.csproj:
	* MonoDevelop.IPhone.addin.xml:
	* Templates/IPhonePList.xft.xml:
	* Templates/IPhoneApplicationPList.xft.xml: Change application
	  plist template into a generic plist template.

2010-05-25  Michael Hutchinson  <mhutchinson@novell.com>

	* IPhoneBuildExtension.cs: Bug 608161 - [REGRESSION]
	  MonoDevelop no long allows nibless projects to build.

	* gtk-gui/gui.stetic: Flush.

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

	* Templates/IPhoneUtilityProject.xpt.xml:
	* Templates/IPhoneNavBasedProject.xpt.xml:
	* Templates/IPhoneWindowBasedProject.xpt.xml: Fix MainNibFile
	  xib/nib value in the templates.

2010-05-22  Geoff Norton  <gnorton@novell.com>

	* IPhoneSettings.cs: Simulator should still use Loopback

2010-05-17  Michael Hutchinson  <mhutchinson@novell.com>

	* IPhoneProject.cs: Fix enum flags issue.

2010-05-14  Michael Hutchinson  <mhutchinson@novell.com>

	* IPhoneExecutionHandler.cs: Added the ability not to show the
	  'start app on device' message again.

	* Keychain.cs:
	* IPhoneSettings.cs:
	* IPhoneBuildExtension.cs:
	* MonoDevelop.IPhone.csproj: Moved settings to a static class.

2010-05-14  Michael Hutchinson  <mhutchinson@novell.com>

	* IPhoneBuildExtension.cs:
	* Gui/IPhoneOptionsPanel.cs: Finished icon support.

2010-05-13  Michael Hutchinson  <mhutchinson@novell.com>

	* IPhoneProject.cs:
	* gtk-gui/gui.stetic:
	* Gui/IPhoneOptionsPanel.cs:
	* MonoDevelop.IPhone.csproj:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneOptionsWidget.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneOptionsPanelWidget.cs:
	  Add settings for more icons (currently unused).

2010-05-13  Michael Hutchinson  <mhutchinson@novell.com>

	* IPhoneProject.cs: Overwrite the C# platform target in case
	  it's been mistakenly set to x86 by older MD versions.

2010-05-13  Lluis Sanchez Gual  <lluis@novell.com>

	* ChangeLog:
	* Templates/IPhoneProjectEmpty.xpt.xml:
	* Templates/IPhoneOpenGLProject.xpt.xml:
	* Templates/IPhoneUtilityProject.xpt.xml:
	* Templates/IPhoneLibraryProject.xpt.xml:
	* Templates/IPhoneNavBasedProject.xpt.xml:
	* Templates/IPadWindowBasedProject.xpt.xml:
	* Templates/IPhoneWindowBasedProject.xpt.xml:
	* Templates/UniversalWindowBasedProject.xpt.xml: Reverted
	  target platform change.

2010-05-12  Michael Hutchinson  <mhutchinson@novell.com>

	* IPhoneProject.cs: Track API.

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

	* Gui/IPhoneOptionsPanel.cs: Fix typo.

2010-05-07  Michael Hutchinson  <mhutchinson@novell.com>

	* IPhoneDeviceConsole.cs: Use existing LogView class.

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

	* IPhoneDeviceConsole.cs: Fix idle handler.

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

	* IPhoneDeviceConsole.cs: Use a queue and idle handler instead
	  of application.invoke.

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

	* InterfaceBuilder/IBConnectionRecord.cs: Added missing
	  property.

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

	* IPhoneBuildExtension.cs: Only check for PkgInfo in device
	  builds.

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

	* IPhoneBuildExtension.cs: Fix NeedsBuilding check.

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

	* IPhoneFramework.cs: Fix NRE.

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

	* IPhoneFramework.cs:
	* Gui/IPhoneBuildOptionsPanel.cs: Add values for known OS
	  versions.

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

	* IPhoneCommands.cs:
	* IPhoneDeviceConsole.cs:
	* MonoDevelop.IPhone.csproj:
	* MonoDevelop.IPhone.addin.xml: Added a console for viewing
	  device output.

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

	* IPhoneProject.cs: Change key, as it confused the
	  propertybag.

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

	* IPhoneCommands.cs: Use min OS for the list of allowed
	  simulators.

	* IPhoneProject.cs: Attempt to fix storing target sim.

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

	* IPhoneProject.cs:
	* IPhoneExecutionCommand.cs:
	* IPhoneExecutionHandler.cs: Pass min OS to the execution
	  command instead of min SDK. Default sim target still uses
	  SDK version.

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

	* IPhoneProject.cs:
	* gtk-gui/gui.stetic:
	* IPhoneBuildExtension.cs:
	* IPhoneProjectConfiguration.cs:
	* Gui/IPhoneBuildOptionsPanel.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneBuildOptionsPanelWidget.cs:
	  Add support for setting and handling minimum OS version.

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

	* IPhoneBuildExtension.cs: Ignore template values in Apple
	  entitlement templates, but merge other values.

2010-04-27  Geoff Norton  <gnorton@novell.com>

	* MonoDevelop.IPhone.addin.xml:
	* Templates/IPhoneApplicationPList.xft.xml:
	* Templates/IPhoneNavBasedProject.xpt.xml:
	* Templates/IPhoneOpenGLProject.xpt.xml:
	* Templates/UniversalWindowBasedProject.xpt.xml:
	* Templates/IPhoneProjectEmpty.xpt.xml:
	* Templates/IPhoneEmptyXib.xft.xml:
	* Templates/IPadApplicationXib.xft.xml:
	* Templates/IPadWindowBasedProject.xpt.xml:
	* Templates/IPhoneUtilityProject.xpt.xml:
	* Templates/IPhoneLibraryProject.xpt.xml:
	* Templates/IPhoneApplicationXib.xft.xml:
	* Templates/IPhoneWindowBasedProject.xpt.xml:
	* Templates/IPadViewXib.xft.xml:
	* Templates/IPadViewController.xft.xml:
	* Templates/IPhoneEntitlements.xft.xml:
	* MonoDevelop.IPhone.csproj:
	Updated templates for Universal applications

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

	* IPhoneBuildExtension.cs: Don't allow files as content that
	  would interfere with packaging.

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

	* IPhoneProject.cs:
	* IPhoneCommands.cs: Track Console API.

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

	* IPhoneCommands.cs: Fix command ID / enum mismatch.

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

	* MonoDevelop.IPhone.csproj:
	* MonoDevelop.IPhone.addin.xml:
	* Templates/IPadInfoPlist.xft.xml: Remove the ipad plist
	  template as MD can merge the right settings now.

	* Templates/IPadWindowBasedProject.xpt.xml: Set target device
	  as IPad.

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

	* IPhoneProject.cs: Add SupportedDevices and MainNibFileIPad
	  options for templates to set.

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

	* IPhoneBuildExtension.cs:
	* Gui/IPhoneOptionsPanel.cs: Better handling of the ipad nib.

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

	* IPhoneCommands.cs: Allow the default to be checked and fix
	  NRE.

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

	* IPhoneExecutionHandler.cs: Fix log error.

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

	* IPhoneProject.cs:
	* IPhoneCommands.cs:
	* IPhoneFramework.cs:
	* IPhoneSdkVersion.cs:
	* IPhoneSimulatorTarget.cs:
	* IPhoneExecutionCommand.cs:
	* IPhoneFrameworkBackend.cs:
	* MonoDevelop.IPhone.csproj:
	* IPhoneExecutionHandler.cs:
	* MonoDevelop.IPhone.addin.xml: Only show sim targets that are
	  valid for the current project. Move some types to own files.

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

	* MonoDevelop.IPhone.addin.xml: Fix ordering.

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

	* MonoDevelop.IPhone.addin.xml: Move sim target menu to run
	  menu.

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

	* MonoDevelop.IPhone.addin.xml: Tweak command ordering.

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

	* IPhoneCommands.cs:
	* MonoDevelop.IPhone.addin.xml: Add a command for picking
	  simulator version and device.

	* IPhoneProject.cs:
	* IPhoneFrameworkBackend.cs:
	* IPhoneExecutionCommand.cs:
	* IPhoneExecutionModeSet.cs:
	* IPhoneExecutionHandler.cs: Rework how the simulator target
	  is stored and passed around.

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

	* MonoDevelop.IPhone.csproj:
	* IPhoneExecutionModeSet.cs:
	* MonoDevelop.IPhone.addin.xml: Add execution modes for every
	  installed SDK.

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

	* IPhoneFrameworkBackend.cs:
	* Gui/IPhoneBuildOptionsPanel.cs: Reworked SDK version
	  detection code.

	* IPhoneExecutionHandler.cs: Allow handlers be created with a
	  forced SDK version and device.

	* IPhoneExecutionCommand.cs: Allow execution commands to
	  contain default target device.

	* IPhoneProject.cs: Creates execution commands with a target
	  device and sdk from user project settings.

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

	* IPhoneBuildExtension.cs: Added iPad keys.

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

	* IPhoneProject.cs:
	* gtk-gui/gui.stetic:
	* Gui/IPhoneOptionsPanel.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneOptionsPanelWidget.cs:
	  Add options for supported devices and iPad main nib.

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

	* MonoDevelop.IPhone.csproj: Remove unwanted/unknown
	  AddinReference items.

2010-03-22  Lluis Sanchez Gual  <lluis@novell.com>

	* AssemblyInfo.cs:
	* MonoDevelop.IPhone.addin.xml: Bumped MD version.

2010-03-17  Lluis Sanchez Gual  <lluis@novell.com>

	* IPhoneProject.cs:
	* IPhoneCommands.cs:
	* gtk-gui/gui.stetic:
	* IPhoneBuildExtension.cs:
	* IPhoneFrameworkBackend.cs:
	* MonoDevelop.IPhone.csproj:
	* Gui/IPhoneOptionsPanel.cs:
	* IPhoneExecutionHandler.cs:
	* Gui/IPhoneSigningKeyPanel.cs:
	* MonoDevelop.IPhone.addin.xml:
	* Gui/IPhoneBuildOptionsPanel.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneSigningKeyPanelWidget.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneBuildOptionsPanelWidget.cs:
	  Merged MD.Projects into MD.Core, and MD.Projects.Gui,
	  MD.Core.Gui and MD.Components into MD.Ide.

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

	* InterfaceBuilder/IBObject.cs: Handle new property.

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

	* Gui/IPhoneBuildOptionsPanel.cs: Fix typo that broke storing
	  i18n options.

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

	* IPhoneCommands.cs:
	* IPhoneBuildExtension.cs: Track ProjectFile Link API.

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

	* IPhoneExecutionHandler.cs: Better message.

	* IPhoneProject.cs: Don't try to run the app if the app bundle
	  does not exist.

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

	* IPhoneExecutionHandler.cs: Enable "run" command in device
	  mode. It uploads then shows a dialog.

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

	* IPhoneBuildExtension.cs: Don't copy icon unless changed.

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

	* PropertyList/PlistDocument.cs: Forgot to commit second part
	  of DTD fix.

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

	* PropertyList/PlistDocument.cs: Null the XmlResolver from the
	  XmlReaderSettings so it doesn't try to read the Apple DTD
	  from the web.

2010-02-24  Michael Hutchinson  <mhutchinson@novell.com>

	* IPhoneCommands.cs:
	* IPhoneBuildExtension.cs: Eliminate duplicate refs, just in
	  case.

2010-02-22  Michael Hutchinson  <mhutchinson@novell.com>

	* IPhoneProject.cs: Fix the NeedsUploading check.

2010-02-17 Geoff Norton  <gnorton@novell.com>

	* CodeBehindGenerator.cs:
	* Templates/IPadApplicationXib.xft.xml:
	* Templates/IPhoneOpenGLProject.xpt.xml:
	* Templates/IPhoneApplicationXib.xft.xml:
	* Templates/IPhoneViewController.xft.xml:
	* Templates/IPhoneUtilityProject.xpt.xml:
	* Templates/IPhoneNavBasedProject.xpt.xml: Revert part
	  of the previous commit.

2010-02-16  Michael Hutchinson  <mhutchinson@novell.com>

	* CodeBehindGenerator.cs:
	* Templates/IPadApplicationXib.xft.xml:
	* Templates/IPhoneOpenGLProject.xpt.xml:
	* Templates/IPhoneApplicationXib.xft.xml:
	* Templates/IPhoneViewController.xft.xml:
	* Templates/IPhoneUtilityProject.xpt.xml:
	* Templates/IPhoneNavBasedProject.xpt.xml: Track new MD
	  codebehind APIs.

2010-02-16  Michael Hutchinson  <mhutchinson@novell.com>

	* CodeBehind.cs:
	* IPhoneBuildExtension.cs: Force-regen designer files after
	  cleaning.

2010-02-16  Michael Hutchinson  <mhutchinson@novell.com>

	* IPhoneBuildExtension.cs: Fix NeedsBuilding check.

2010-02-16  Michael Hutchinson  <mhutchinson@novell.com>

	* CodeBehindGenerator.cs: Remove the
	  CompilerGeneratedAttribute, it's probably wrong. However,
	  there are lots of other debugger-type attributes we should
	  probably be adding.

2010-02-16  Michael Hutchinson  <mhutchinson@novell.com>

	* CodeBehind.cs: Update designer files when project changes.

2010-02-16  Michael Hutchinson  <mhutchinson@novell.com>

	* CodeBehindGenerator.cs: In generated code, keep track of
	  native wrappers in fields.

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

	* gtk-gui/generated.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneSigningKeyPanelWidget.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneBuildOptionsPanelWidget.cs:
	  Flush.

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

	* CodeBehindGenerator.cs: Hack to avoid generating duplicate
	  codebehind classes.

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

	* IPhoneFrameworkBackend.cs: Tidied up version checking.

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

	* IPhoneFrameworkBackend.cs: Sort and cache SDK versions.

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

	* IPhoneBuildExtension.cs: Fix string format args.

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

	* IPhoneFrameworkBackend.cs: Limit listed SDKs to 3.*.

	* IPhoneBuildExtension.cs: When using a default bundle ID,
	  construct one that's compatible with a provisioning profile.

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

	* IPhoneBuildExtension.cs: Check target SDK is installed and
	  resolve signing identity before building. Improve errors a
	  bit. If no app ID set and doing device build, warn user but
	  use a default, and pass the default around so it's used
	  consistently.

	* IPhoneFrameworkBackend.cs: Add methods for listing SDKs and
	  checking if SDK version is installed.

	* Gui/IPhoneBuildOptionsPanel.cs: List installed SDKs.

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

	* IPhoneProject.cs:
	* Templates/IPadWindowBasedProject.xpt.xml: Fix project option
	  attributes.

2010-01-27  Geoff Norton  <gnorton@novell.com>

	* Templates/IPadApplicationXib.xft.xml: Fix template
	to properly hook up the app delegate

2010-01-27  Geoff Norton  <gnorton@novell.com>

	* MonoDevelop.IPhone.addin.xml: 
	* MonoDevelop.IPhone.csproj:
	* Templates/IPadApplicationXib.xft.xml: 
	* Templates/IPadInfoPlist.xft.xml:
	* Templates/IPadWindowBasedProject.xpt.xml: Added
	  iPad templates to the build.  Subject to change
	* Gui/IPhoneBuildOptionsPanel.cs: Added 3.2 to the
	  available SDK versions.

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

	* IPhoneExecutionHandler.cs: Move some code into
	  CreateStartInfo method so it can be re-used by the debug
	  handler.

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

	* IPhoneProject.cs: Allow setting SdkVersion from project
	  template. Pass SdkVersion to IPhoneExecutionCommand.

	* IPhoneExecutionCommand.cs: Add SdkVersion property on
	  IPhoneExecutionCommand, and some utility properties for the
	  log paths.

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

	* IPhoneProjectConfiguration.cs: Copy MtouchI18n and
	  MtouchSdkVersion when cloning configs. Fixes persisting
	  these values after editing them.

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

	* Templates/IPhoneOpenGLProject.xpt.xml:
	* Templates/IPhoneUtilityProject.xpt.xml:
	* Templates/IPhoneNavBasedProject.xpt.xml:
	* Templates/IPhoneWindowBasedProject.xpt.xml: Fix xib file
	  format, standard headers, and auto-opening.

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

	* MonoDevelop.IPhone.csproj:
	* MonoDevelop.IPhone.addin.xml:
	* Templates/IPhoneProject.xpt.xml:
	* Templates/IPhoneOpenGLProject.xpt.xml:
	* Templates/IPhoneUtilityProject.xpt.xml:
	* Templates/IPhoneNavBasedProject.xpt.xml: Added 3 new project
	  templates.

	* Templates/IPhoneViewXib.xft.xml:
	* Templates/IPhoneApplicationXib.xft.xml:
	* Templates/IPhoneViewController.xft.xml: Small tweaks.

	* Templates/IPhoneWindowBasedProject.xpt.xml: Renamed the
	  default project template to match Xcode.

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

	* MonoDevelop.IPhone.addin.xml: Add a MonoDoc source for the
	  MonoTouch docs, so that MD can load them even after the Mono
	  framework directory is upgraded.

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

	* Gui/IPhoneOptionsPanel.cs: Make the main nib picker entry
	  editable so that it can be cleared.

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

	* Gui/IPhoneBuildOptionsPanel.cs: Fix displaying i18n options.

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

	* IPhoneBuildExtension.cs: Treat empty identity as "developer
	  automatic".

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

	* Keychain.cs: Fix extracting the CN from X509 certs.

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

	* MobileProvision.cs: Only return the first profile with each
	  UUID. iTunes and Xcode install the same cert with different
	  names, but the file is exactly the same. Prevents displaying
	  same cert twice if it was installed both ways.

	* IPhoneBuildExtension.cs: Work around bug in Apple's XML
	  entitlements parser that broke entitlements when booleans
	  were present in the plist. Also fix embedding provisioning
	  profiles that were installed using iTunes rather than Xcode.
	  Fix casing of some entries in info.plist.

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

	* Gui/IPhoneSigningKeyPanel.cs: Enable provisioning profiles
	  for dev keys too. Add an "automatic" entry.

	* DataConverter.cs:
	* MobileProvision.cs:
	* MonoDevelop.IPhone.csproj: Added DataConverter.

	* IPhoneBuildExtension.cs: Embed entitlements and provisioning
	  profile into developer-signed builds. Autodetect valid
	  profiles and keys for the app bundle. Merge provisioning
	  profile entitlements into the app entitlements. Generate the
	  xcent directly instead of calling mtouchpack. Add much more
	  detailed error outputs. Refactor the packaging code into a
	  number of separate methods so it's easier to follow.

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

	* Keychain.cs: More error logging for certificate/identity/key
	  enumeration.

	* gtk-gui/gui.stetic: Flush.

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

	* MonoDevelop.IPhone.csproj: Updated.

	* IPhoneCommands.cs: Add method for bringing iPhone simulator
	  to front.

	* IPhoneExecutionHandler.cs: Watch the mtouch output to detect
	  when the app is successfully launched, and bring the
	  simulator to the front. Write mtouch error output to the
	  console log.

2009-12-03  Michael Hutchinson  <mhutchinson@novell.com>

	* IPhoneCommands.cs: Don't dispose the uploader app too soon.

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

	* IPhoneExecutionHandler.cs: Name threads to aid debugging.

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

	* IPhoneProject.cs: Fix the NeedsUploading check.

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

	* IPhoneProject.cs: When executing a device configuration,
	  upload the app.

	* IPhoneCommands.cs: Dispose the uploader process.

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

	* IPhoneProject.cs:
	* IPhoneCommands.cs:
	* IPhoneBuildExtension.cs: Track api changes.

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

	* Gui/IPhoneOptionsPanel.cs: Make project file entries
	  editable. Fixes "Bug 559191 - Cannot have blank startup
	  xib".

	* gtk-gui/gui.stetic: Flush.

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

	* IPhoneProject.cs: Track API. Set UserAssemblyPaths.

	* IPhoneExecutionCommand.cs: New property for
	  UserAssemblyPaths.

2009-11-05  Carlo Kok  <ck@remobjects.com>

	* CodeBehindGenerator.cs: fixed support for Partial Methods in 
	  Delphi Prism codegen.

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

	* IPhoneCommands.cs: Expose the upload command on a utility
	  class for the debugger addin to use.

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

	* Device.cs:
	* MonoDevelop.IPhone.csproj: Added Geoff's code for accessing
	  the connected device ID.

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

	* MonoDevelop.IPhone.addin.xml: Fix bad category ref.

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

	* IPhoneCommands.cs:
	* MonoDevelop.IPhone.addin.xml: Rename commands and move them
	  around so they make more sense.

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

	* MonoDevelop.IPhone.addin.xml: Move and rename the xcode
	  export command.

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

	* CodeBehindGenerator.cs: Hide the pragmas when there are no
	  members. Works around C# CodeDOM generator bug.

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

	* AssemblyInfo.cs:
	* MonoDevelop.IPhone.addin.xml: Bump MD version.

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

	* IPhoneProject.cs: Use the mtouch debug flag to determine
	  whether we're in debug mode when creating the execution
	  command.

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

	* IPhoneBuildExtension.cs: Enable overwrite in File.Copy
	  calls.

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

	* IPhoneBuildExtension.cs:
	* IPhoneProjectConfiguration.cs:
	* Gui/IPhoneBuildOptionsPanel.cs: Implement support for mtouch
	  i18n arg.

	* gtk-gui/generated.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneSigningKeyPanelWidget.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneBuildOptionsPanelWidget.cs:
	  Flush.

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

	* gtk-gui/gui.stetic:
	* Gui/IPhoneBuildOptionsPanel.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneBuildOptionsPanelWidget.cs:
	  Stub i18n UI.

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

	* IPhoneBuildExtension.cs: Track debug settings key name
	  changes. Make port and IP configurable with property
	  service.

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

	* IPhoneBuildExtension.cs: Fix build.

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

	* IPhoneBuildExtension.cs: Set debugger IP properly.

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

	* IPhoneBuildExtension.cs: Generate debug settings plist.

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

	* framework_IPhone.xml: Track Mono.Data.Sqlite assembly
	  version.

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

	* MonoDevelop.IPhone.addin.xml: Wrap long lines.

	* gtk-gui/gui.stetic: Flush.

	* IPhoneCommands.cs: Don't preserve relative path for Pages
	  (i.e. xibs/nibs) when outputting to Xcode projects.

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

	* framework_IPhone.xml: Add assemblies.

2009-10-06  marc hoffman  <mh@remobjects.com>

	* Added support for Partial Methods in Delphi Prism codegen.

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

	* IPhoneCommands.cs: Fall back to trying startup project when
	  selected project is iphone project but not executable.

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

	* IPhoneProjectConfiguration.cs: Fix serialization of the
	  MtouchDebug migration trigger.

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

	* gtk-gui/gui.stetic:
	* Gui/IPhoneBuildOptionsPanel.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneBuildOptionsPanelWidget.cs:
	  Make linker GUI text more explicit.

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

	* IPhoneProjectConfiguration.cs: Better migration strategy.
	  Fix enum order to match GUI's combo indices.

	* IPhoneProject.cs: Set nolink for all new sim configs.

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

	* IPhoneBuildExtension.cs: Use SDK version for mtouchpack
	  default entitlements.

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

	* IPhoneBuildExtension.cs: Use the SDK version string in the
	  plist and use default ResourceRules.plist from the correct
	  SDK.

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

	* gtk-gui/gui.stetic:
	* Gui/IPhoneBuildOptionsPanel.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneBuildOptionsPanelWidget.cs:
	  Add GUI for the new options.

	* IPhoneProject.cs:
	* IPhoneBuildExtension.cs:
	* IPhoneProjectConfiguration.cs: Add support for mtouch
	  options for debug mode, linker mode, and SDK version, with
	  sensible defaults and an automagic migration.

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

	* CodeBehindGenerator.cs: Disable the CS0169 unused member
	  warning in generated C# code.

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

	* AssemblyInfo.cs:
	* MonoDevelop.IPhone.addin.xml: Bump MD version.

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

	* IPhoneBuildExtension.cs: Use the correct path for the icon
	  in Info.plist.

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

	* framework_IPhone.xml: Add System.Web.Services.

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

	* PropertyList/PlistDictionary.cs: Add a TryGetValue method.

	* MobileProvision.cs: Don't crash on loading if there are no
	  provisioned devices. Don't add files to the list that didn't
	  load correctly.

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

	* Gui/IPhoneOptionsPanel.cs:
	* Gui/IPhoneSigningKeyPanel.cs:
	* Gui/IPhoneBuildOptionsPanel.cs: Hide the panels for library
	  projects.

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

	* MonoDevelop.IPhone.csproj:
	* MonoDevelop.IPhone.addin.xml:
	* Templates/IPhoneLibraryProject.xpt.xml: Add MonoTouch
	  library project template.

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

	* Templates/IPhoneViewController.xft.xml: Call the xib-loading
	  base ctor.

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

	* framework_IPhone.xml: Add System.Json.

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

	* Gui/IPhoneSigningKeyPanel.cs: Fix combo used when listing
	  provisioning profiles.

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

	* Gui/IPhoneSigningKeyPanel.cs: More careful handling of
	  active provisioning profiles. Add a warning for null uuid.

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

	* CodeBehindGenerator.cs: Properly type outlets connected to
	  IBUICustomObjects.

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

	* IPhoneCommands.cs: Hide the commands for library compile
	  targets.

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

	* CodeBehindGenerator.cs: Use Xcode's partial class list to
	  filter the classes we generate. Remove unused code.

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

	* IPhoneFrameworkBackend.cs: Fix spelling and grammar in
	  messages.

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

	* IPhoneFrameworkBackend.cs: Tweak dialog a little more.

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

	* IPhoneFrameworkBackend.cs: Improve sim-only dialog.

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

	* IPhoneFrameworkBackend.cs: Improve sim-only dialog.

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

	* IPhoneCommands.cs:
	* IPhoneBuildExtension.cs:
	* IPhoneFrameworkBackend.cs: Improve the sim-only warning
	  dialog.

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

	* IPhoneFrameworkBackend.cs: Add methods for warning about
	  sim-only build.

	* Keychain.cs:
	* Gui/IPhoneSigningKeyPanel.cs: Simplify code for finding
	  named certs.

	* IPhoneBuildExtension.cs: Warn when using features that don't
	  exist in eval version. Fix some possible NREs in enumerating
	  certs.

	* IPhoneCommands.cs: Warn when using features that don't exist
	  in eval version.

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

	* Gui/IPhoneSigningKeyPanel.cs: Fix NRE with certs that don't
	  have a CN.

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

	* IPhoneFrameworkBackend.cs:
	* MonoDevelop.IPhone.csproj:
	* MonoDevelop.IPhone.addin.xml: Disable all the iPhone addin's
	  extensions when the SDK is not installed.

	* Templates/IPhoneEntitlements.xft.xml: Add a template for
	  entitlements.plist.

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

	* IPhoneCommands.cs: Pre-create resource directories for xcode
	  projects to work around mtouch 1.0 bug.

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

	* IPhoneBuildExtension.cs: Fall back to default key when no
	  key specified.

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

	* IPhoneBuildExtension.cs: Copy resource rules from SDK
	instead of hardcoding them. Copy resource rules when building
	with dev cert.

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

	* IPhoneBuildExtension.cs: Use full path to xcent. Fix typo in
	  codesign args. Refuse to build if bundle ID isn't set.

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

	* IPhoneBuildExtension.cs: Mkae build as failed if there's an
	  exception in package build. Fix a string format index.

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

	* IPhoneExecutionHandler.cs: Show errors from the mtouch
	  process after launching apps.

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

	* IPhoneBuildExtension.cs: Fix a couple of minor bugs in dist
	  build.

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

	* IPhoneBuildExtension.cs: Fix app ID validity checking. Make
	  sure remains marked as needs building if signing fails.

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

	* IPhoneBuildExtension.cs: Warn when codesigning is disabled.

	* gtk-gui/gui.stetic:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneSigningKeyPanelWidget.cs:
	  Disable signing GUI for sim.

	* Gui/IPhoneSigningKeyPanel.cs: Disable signing GUI for sim.
	  Only show device configs.

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

	* IPhoneProject.cs: Enable signing on new iphone configs.

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

	* IPhoneBuildExtension.cs: Write codesign args to log.

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

	* Gui/IPhoneSigningKeyPanel.cs: Escape markup for text
	  renderer.

	* IPhoneBuildExtension.cs: If using the automatic dist cert,
	  try to resolve the correct key for the selected provisioning
	  profile.

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

	* Gui/IPhoneSigningKeyPanel.cs: Trim names. Auto-select
	  profile when identity changed. Only show dist provisioning
	  profiles for the auto identity.

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

	* Gui/IPhoneSigningKeyPanel.cs: Handle the Distribution
	  (Automatic) identity when listing provisioning profiles. Fix
	  NRE properly.

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

	* Gui/IPhoneSigningKeyPanel.cs: Fix possible NRE. Update
	  profiles when loading.

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

	* Gui/IPhoneSigningKeyPanel.cs: Sort the certs.

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

	* gtk-gui/gui.stetic:
	* MonoDevelop.IPhone.addin.xml:
	* Gui/IPhoneSigningKeyPanel.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneSigningKeyPanelWidget.cs:
	  Improved signing GUI.

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

	* MonoDevelop.IPhone.addin.xml: Remove duplicate attribute.

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

	* MonoDevelop.IPhone.addin.xml: Rearrange panels.

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

	* Gui/IPhoneSigningKeyPanel.cs: Add missing ShowAll call.

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

	* Gui/IPhoneBuildOptionsPanel.cs: Expose the options set so
	  the signing panel can use it.

	* gtk-gui/gui.stetic:
	* Gui/IPhoneSigningKeyPanel.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneSigningKeyPanelWidget.cs:
	  Partially reworked the signing options panel.

	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneOptionsPanelWidget.cs:
	  Flush.

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

	* MonoDevelop.IPhone.addin.xml: Fix ordering of commands
	  inserted in menu.

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

	* IPhoneBuildExtension.cs: Don't try to pass default
	  entitlements to mtouchpack. It can do that itself.

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

	* IPhoneBuildExtension.cs: Check that the provisioning profile
	  permitted app ID matches the app ID.

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

	* IPhoneBuildExtension.cs: Handle xcent generation and
	  embedding the .mobileprovision.

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

	* PropertyList/PlistDocument.cs: Fix reading of self-closing
	  elements in dictionary values.

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

	* PropertyList/PlistReal.cs:
	* PropertyList/PlistData.cs:
	* PropertyList/PlistDate.cs:
	* PropertyList/PlistArray.cs:
	* PropertyList/PlistString.cs:
	* PropertyList/PlistInteger.cs:
	* PropertyList/PlistBoolean.cs:
	* PropertyList/PlistDocument.cs:
	* PropertyList/PlistDictionary.cs:
	* PropertyList/PlistObjectBase.cs: Write to an XmlWriter not
	  an XmlTextWriter.

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

	* MobileProvision.cs: Expose the profile directory as a
	  property.

	* Keychain.cs: Remove now-unused method.

	* IPhoneBuildExtension.cs: Implement all the remaining
	  packaging steps - compressing resources, embedding the
	  mobile provision, and code signing with entitlements,
	  resources rules and additional args.

	* IPhoneProjectConfiguration.cs: Add serializable properties
	  for all the code signing options.

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

	* IPhoneBuildExtension.cs: In the clean step, remove the
	  XcodeProject directory if it exists.

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

	* Templates/IPhoneApplicationXib.xft.xml: Update accessibility
	  of properties in generated code.

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

	* Templates/IPhoneViewController.xft.xml: Update accessibility
	  of generated member.

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

	* IPhoneCommands.cs: Run mtouch in verbose mode when exporting
	  Xcode project.

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

	* IPhoneCommands.cs: Actually fix build.

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

	* IPhoneCommands.cs: Fix build.

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

	* IPhoneCommands.cs: Use an output pad for generating Xcode
	  project.

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

	* IPhoneCommands.cs: Make launch in Xcode async.

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

	* IPhoneBuildExtension.cs: Extract a method for the mtouch
	  extra args substitution.

	* IPhoneCommands.cs: Subst vars in the mtouch extra args
	  value.

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

	* IPhoneCommands.cs: Only enable deploy/debug commands while
	  not building.

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

	* Gui/IPhoneBuildOptionsPanel.cs: Display a better selection
	  of options.

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

	* gtk-gui/gui.stetic:
	* gtk-gui/generated.cs:
	* Gui/IPhoneBuildOptionsPanel.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneBuildOptionsPanelWidget.cs:
	  Add a helper menu for subst variables.

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

	* CodeBehindGenerator.cs: Extensive refactoring to work around
	  CodeDom limitations and fix "Bug 534228 - Minor formatting
	  issue in autogenerated code from Interface Builder".

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

	* IPhoneCommands.cs: Build before uploading, if build before
	  run pref is enabled.

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

	* IPhoneCommands.cs: Enable the "debug in xcode" command for
	  the sim. Disable commands if there isn't a mappable
	  configuration for the active sln configuration.

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

	* IPhoneBuildExtension.cs: Substitute variables into the extra
	  mtouch args. Fixes "Bug 535455 - Add ability to specify
	  $ProjectLocation in additional mtouch arguments".

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

	* IPhoneBuildExtension.cs: Tidy up file enumeration code. Copy
	  nibs into root even if they're in subdirs, but special-case
	  for lproj directories. Should fix Bug 536151 -
	  XIB/Controllers in Subdirs.

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

	* Keychain.cs: Refactor buffer copying into a method on the
	  CssmData struct.

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

	* Keychain.cs: Use Marshal.Copy instead of a for loop.

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

	* Keychain.cs:
	* MobileProvision.cs: Use X509Certificate2.

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

	* Keychain.cs: API cleanup. Add a method for getting x509
	  signing certs from the Apple keychain.

	* Gui/IPhoneSigningKeyPanel.cs: API cleanup.

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

	* MobileProvision.cs: Fix search path.

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

	* MobileProvision.cs: Extract X509 certs from the binary blob.

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

	* PropertyList/PlistDate.cs:
	* PropertyList/PlistDocument.cs: Add support for date
	  elements.

	* MonoDevelop.IPhone.csproj: Updated.

	* MobileProvision.cs: Class for reading .mobileprovision
	  files.

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

	* CodeBehindGenerator.cs: Don't generate partial classes for
	  classes that are referenced from other nibs.

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

	* Templates/IPhoneViewController.xft.xml: Add an
	  initWithCoder/NSCoder ctor. Put ctors in a region.

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

	* IPhoneCommands.cs: Output xcodeproj generation args in a log
	  message. Make all res IDs explicit.

	* gtk-gui/generated.cs: Flush generated code.

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

	* IPhoneCommands.cs: Fix build.

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

	* IPhoneCommands.cs: Pass refs and extra mtouch args to
	  xcodeproj generator. Also include xibs as resources, and
	  include relative path info for all resources.

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

	* MonoDevelop.IPhone.csproj:
	* Icons/32x32/xib-template-window.png:
	* Icons/32x32/xib-template-application.png: Window/application
	  were the wrong way round. Fix.

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

	* MonoDevelop.IPhone.addin.xml: Use correct size for icon.

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

	* CodeBehindGenerator.cs: Change access of generated members
	  to private.

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

	* Icons/32x32:
	* Icons/22x22:
	* Icons/48x48:
	* Icons/16x16:
	* Icons/24x24:
	* Icons/256x256:
	* Icons/iPhone.svgz:
	* Icons/iphone-22.png:
	* Icons/iphone-16.png:
	* Icons/iphone-32.png:
	* Icons/iPhone-22.svgz:
	* Icons/mono-develop.svg:
	* MonoDevelop.IPhone.csproj:
	* Icons/phone-apple-iphone.svg:
	* MonoDevelop.IPhone.addin.xml:
	* Templates/IPhoneViewXib.xft.xml:
	* Templates/IPhoneEmptyXib.xft.xml:
	* Icons/iphone-project-overlay.png:
	* Icons/32x32/xib-template-view.png:
	* Icons/48x48/phone-apple-iphone.png:
	* Icons/16x16/phone-apple-iphone.png:
	* Icons/32x32/phone-apple-iphone.png:
	* Icons/32x32/xib-template-empty.png:
	* Icons/22x22/phone-apple-iphone.png:
	* Icons/24x24/phone-apple-iphone.png:
	* Icons/32x32/xib-template-window.png:
	* Icons/256x256/phone-apple-iphone.png:
	* Templates/IPhoneApplicationXib.xft.xml:
	* Templates/IPhoneViewController.xft.xml:
	* Icons/32x32/xib-template-application.png:
	* Icons/application-x-mono-develop-xib.svg:
	* Icons/24x24/iphone-project-options-panel.png:
	* Icons/16x16/iphone-project-options-panel.png:
	* Icons/24x24/application-x-mono-develop-xib.png:
	* Icons/32x32/application-x-mono-develop-xib.png:
	* Icons/16x16/application-x-mono-develop-xib.png:
	* Icons/22x22/application-x-mono-develop-xib.png:
	* Icons/48x48/application-x-mono-develop-xib.png:
	* Icons/256x256/application-x-mono-develop-xib.png:
	* Icons/32x32/phone-apple-iphone-project-overlay.png: Add
	  awesome new icons from Jakub Steiner <jimmac@gmail.com>.

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

	* Keychain.cs:
	* IPhoneBuildExtension.cs: Fix broken error message.

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

	* IPhoneProject.cs:
	* gtk-gui/gui.stetic:
	* IPhoneBuildExtension.cs:
	* Gui/IPhoneOptionsPanel.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneOptionsPanelWidget.cs:
	  Add support for setting the bundle version.

	* Keychain.cs: Remove unused code.

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

	* Keychain.cs:
	* IPhoneBuildExtension.cs: Check whether saved cert name is
	  installed before trying to use it. If it's not present, fall
	  back to automatic.

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

	* IPhoneExecutionHandler.cs: Fix a race that caused tailing
	  threads not to read final output when finishing.

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

	* IPhoneExecutionHandler.cs: Get outLog/errLog the right way
	  round.

	* IPhoneProject.cs: Add a fixme regarding file grouping.

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

	* Templates/IPhoneViewController.xft.xml: Remove the explicit
	  controller and instead make the File's Owner the controller.
	  Add another ctor.

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

	* IPhoneExecutionHandler.cs: When completing, fix the waiting
	  for tails to complete.

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

	* IPhoneExecutionHandler.cs: Use thread abort to interrupt
	  tailing threads blocked on I/O.

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

	* IPhoneExecutionHandler.cs: Fix typo.

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

	* IPhoneExecutionHandler.cs: Rework the file tailing and the
	  cleanup and disposal of the threads and file handles.
	  Hopefully fixes fix "Bug 531110 - MonoTouch: Application
	  Output window stops working".

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

	* IPhoneBuildExtension.cs:
	* InterfaceBuilder/IBObject.cs: Fix warnings.

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

	* IPhoneCommands.cs: Create the directory for the Xcode
	  project.

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

	* IPhoneCommands.cs: Include the output file.

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

	* IPhoneCommands.cs:
	* MonoDevelop.IPhone.addin.xml: Add a Debug in Xcode command.

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

	* Templates/IPhoneViewController.xft.xml: Add a view and
	  connect it to the view controller.

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

	* Templates/IPhoneViewController.xft.xml: Add an intptr ctor.

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

	* InterfaceBuilder/IBObject.cs: Change deserialization order
	  so the stack doesn't get so deep.

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

	* CodeBehindGenerator.cs:
	* InterfaceBuilder/IBDocument.cs:
	* InterfaceBuilder/IBConnectionRecord.cs: Generalised
	  connection record handling so we don't choke on desktop
	  xibs.

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

	* CodeBehindGenerator.cs:
	* InterfaceBuilder/IBReference.cs:
	* InterfaceBuilder/IBConnectionRecord.cs: Lazily resolve the
	  ClassDescriptionSource on a class description instead of
	  assuming it's resolved.

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

	* InterfaceBuilder/IBObject.cs: Better parsing of
	  "base64-UTF8" strings. Add support for any primitive to have
	  an id.

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

	* IPhoneFrameworkBackend.cs: Fix fx package name.

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

	* CodeBehindGenerator.cs: Use TrimEnd instead of Substring for
	  action names, in the C# code generation path. Also switch
	  from Trim to TrimEnd in the CodeDOM path.

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

	* CodeBehindGenerator.cs: Map MK interface type prefix to
	  MapKit namespace.

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

	* IPhoneProject.cs: Better handling of output paths when
	  creating configurations.

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

	* IPhoneProjectConfiguration.cs: Override and implement
	  CopyFrom. Should allow the config editing panel to store
	  values.

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

	* IPhoneBuildExtension.cs: Quote filenames passed to ibtool.

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

	* Gui/IPhoneOptionsPanel.cs: Fix the assignment of values
	  between GUI and project properties.

	* IPhoneProject.cs: Fix typo in serialized property name.

	* gtk-gui/gui.stetic:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneOptionsPanelWidget.cs:
	  Updated.

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

	* IPhoneCommands.cs: If no project is selected, deploy to the
	  startup project.

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

	* Keychain.cs: Fix NRE when not using custom keys.

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

	* Gui/IPhoneSigningKeyPanel.cs: Only remove value if it exists
	  in userprefs.

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

	* Icons:
	* Icons/iPhone.svgz:
	* Icons/iphone-22.png:
	* Icons/iphone-16.png:
	* Icons/iphone-32.png:
	* Icons/iPhone-22.svgz:
	* MonoDevelop.IPhone.csproj:
	* MonoDevelop.IPhone.addin.xml:
	* Templates/IPhoneProject.xpt.xml:
	* Icons/iphone-project-overlay.png:
	* Templates/IPhoneProjectEmpty.xpt.xml: Add icons.

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

	* IPhoneBuildExtension.cs: Don't overwrite keys that are
	  already in the plist template.

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

	* IPhoneProject.cs:
	* gtk-gui/gui.stetic:
	* IPhoneBuildExtension.cs:
	* Gui/IPhoneOptionsPanel.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneOptionsPanelWidget.cs:
	  Add options for display name and bundle identifier.

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

	* Gui/IPhoneOptionsPanel.cs: Make icon picker choose pngs.

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

	* CodeBehind.cs:
	* CodeBehindGenerator.cs:
	* MonoDevelop.IPhone.csproj: Move the codebehind generator
	  into a class without dependencies on other parts of MD, so
	  it can be re-used by a standalone tool.

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

	* IPhoneFrameworkBackend.cs: Track core API.

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

	* IPhoneBuildExtension.cs: Don't change content files' 
	  extension to .nib.

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

	* Templates/IPhoneApplicationXib.xft.xml: Fix casing in C# code.

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

	* gtk-gui/gui.stetic:
	* IPhoneBuildExtension.cs:
	* MonoDevelop.IPhone.csproj:
	* MonoDevelop.IPhone.addin.xml:
	* IPhoneProjectConfiguration.cs:
	* Gui/IPhoneBuildOptionsPanel.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneBuildOptionsPanelWidget.cs:
	  Add support for specifying arbitrary extra mtouch arguments.

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

	* IPhoneBuildExtension.cs: Stop mtouch from signing the app,
	  since MD does it now. Quote paths in mtouch args. Pass
	  referenced assemblies for mtouch's reference resolver using
	  -r instead of adding them to the assemblies list.

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

	* IPhoneBuildExtension.cs: Fix code signing, bundle icon,
	  better output.

	* IPhoneProjectConfiguration.cs: Add convenience NativeExe
	  property.

	* IPhoneCommands.cs: Disable deploy command if the app has not
	  been built yet.

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

	* IPhoneCommands.cs:
	* IPhoneExecutionHandler.cs:
	* MonoDevelop.IPhone.csproj:
	* MonoDevelop.IPhone.addin.xml: Add a command to upload to the
	  device.

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

	* IPhoneExecutionHandler.cs: If in device mode, make the run
	  command install the app.

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

	* Keychain.cs:
	* gtk-gui/gui.stetic:
	* MonoDevelop.IPhone.csproj:
	* Gui/IPhoneOptionsPanel.cs:
	* Gui/IPhoneSigningKeyPanel.cs:
	* MonoDevelop.IPhone.addin.xml:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneOptionsPanelWidget.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneSigningKeyPanelWidget.cs:
	  Add a real per-user signing options panel.

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

	* gtk-gui/gui.stetic:
	* Gui/IPhoneOptionsPanel.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneOptionsPanelWidget.cs:
	  Improved GUI.

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

	* Keychain.cs:
	* IPhoneBuildExtension.cs: Implement app signing using default
	  certificate.

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

	* gtk-gui/gui.stetic:
	* Gui/IPhoneOptionsPanel.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneOptionsPanelWidget.cs:
	  Use new project file picker widget.

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

	* MonoDevelop.IPhone.csproj: Don't require specific GTK#
	  version.

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

	* Keychain.cs: Fix length allocation error in FetchString.

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

	* Keychain.cs: Tidy up.

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

	* Keychain.cs:
	* MonoDevelop.IPhone.csproj: Enumerate certs that can be used
	  for signing.

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

	* Keychain.cs:
	* MonoDevelop.IPhone.csproj: Commit in-progress
	  keychain-reading implemenattion.

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

	* IPhoneBuildExtension.cs: Improve error handling.

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

	* CodeBehind.cs: Don't dotnetify names.

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

	* Templates/IPhoneProject.xpt.xml:
	* Templates/IPhoneViewXib.xft.xml:
	* Templates/IPhoneEmptyXib.xft.xml:
	* Templates/IPhoneApplicationXib.xft.xml:
	* Templates/IPhoneViewController.xft.xml: Tweak/fix templates.

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

	* MonoDevelop.IPhone.addin.xml: Fix template name.

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

	* IPhoneProject.cs:
	* IPhoneBuildExtension.cs: Fix xib/nib typo for the main nib.

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

	* MonoDevelop.IPhone.csproj:
	* MonoDevelop.IPhone.addin.xml:
	* Templates/IPhoneViewController.xft.xml: Add another
	  template.

	* Templates/IPhoneViewXib.xft.xml:
	* Templates/IPhoneEmptyXib.xft.xml:
	* Templates/IPhoneApplicationXib.xft.xml: Tweak names and
	  descriptions.

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

	* Templates/IPhoneProject.xpt.xml:
	* Templates/IPhoneViewXib.xft.xml:
	* Templates/IPhoneEmptyXib.xft.xml:
	* Templates/IPhoneApplicationXib.xft.xml: Improve the
	  templates.

	* MonoDevelop.IPhone.csproj:
	* MonoDevelop.IPhone.addin.xml: Added new template.

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

	* CodeBehind.cs: Suppress code generation for UIApplication
	  and UIResponder. Add a comment to each class with a guess at
	  the required superclass.

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

	* CodeBehind.cs: Finish implementing elimination of duplicated
	  action names, and simplistic resolution of common sender
	  type. Re-enable the new generator.

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

	* CodeBehind.cs: Commit in-progress work on elimating
	  duplicate actions, strongly typing action sender arg,
	  resolving types, and dotnetifying names. Revert to old
	  generator until new one is done.

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

	* CodeBehind.cs: New implementation of
	  IBDocument->CodeTypeDeclaration generation stage.

	* InterfaceBuilder/IBObject.cs:
	* InterfaceBuilder/IBDocument.cs:
	* InterfaceBuilder/IBReference.cs:
	* InterfaceBuilder/Collections.cs: Add support for
	  IMutableOrderedSet, boolean primitive with referenceable id,
	  real.

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

	* CodeBehind.cs: Track namespace changes in MonoTouch.

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

	* framework_IPhone.xml: Add OpenTK to framework assemblies.

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

	* IPhoneProject.cs: Remove dead xib watcher code. Try to set
	  target framework better. Override supported CLR version.

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

	* CodeBehind.cs: Don't forget to write the open files when
	  updating codebehind.

	* IPhoneProject.cs: Do codebehind update in a threadpool work
	  item.

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

	* CodeBehind.cs:
	* IPhoneProject.cs: First pass at on-the-fly updating of
	  codebehind designer classes.

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

	* IPhoneBuildExtension.cs: More verbose logging for compile
	  steps.

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

	* IPhoneBuildExtension.cs: After codebehind generation, write
	  to open files if necessary.

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

	* IPhoneBuildExtension.cs: Fix appinfo needs building
	  detection.

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

	* CodeBehind.cs: Yield multiple types from xibs.

	* IPhoneBuildExtension.cs: Tighten compile deps. Fix config
	  mapping.

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

	* IPhoneProject.cs: If a file called MainWindow.nib is added
	  and there is no main nib file, make it the main nib file.

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

	* IPhoneBuildExtension.cs: Use full output filename when
	  checking build deps. Don't write CFBundleIcon when there's
	  no value.

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

	* Templates/IPhoneProject.xpt.xml:
	* Templates/IPhoneProjectEmpty.xpt.xml: Track assembly
	  versions.

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

	* gtk-gui/gui.stetic:
	* Gui/IPhoneOptionsPanel.cs:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneOptionsPanelWidget.cs:
	  Add simple GUI for setting bundle icon & main nib.

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

	* IPhoneBuildExtension.cs: Prevent mtouch from overwriting our
	  manifests. Write PkgInfo file. Fix main build dep by
	  tracking lowercasing of main mtouch output file. Fix
	  trailing '.' on NSMainNibFile value.

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

	* CodeBehind.cs: Fix build.

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

	* CodeBehind.cs: Don't swallow parsing exceptions before they
	  can get reported to user. This was causing a less obvious
	  explosion in the writing code when it recieved a null type.

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

	* InterfaceBuilder/IBDocument.cs: In unresolved references
	  exception, list the ref ids.

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

	* framework_IPhone.xml:
	* IPhoneFrameworkBackend.cs: Track the change to CLR 2.1
	  assemblies.

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

	* MonoDevelop.IPhone.csproj: Revert bad ToolsVersion change.

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

	* Templates/IPhoneViewXib.xft.xml: Don't auto-open xib. Fix
	  xib template.

	* Templates/IPhoneApplicationXib.xft.xml: Don't auto-open xib
	  or designer class.

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

	* Templates/IPhoneApplicationXib.xft.xml: Improved
	  templatisation.

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

	* CodeBehind.cs: Don't explode when there's no classes
	  collection in the xib.

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

	* gtk-gui/gui.stetic:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneOptionsPanelWidget.cs:
	  Updated GUI.

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

	* InterfaceBuilder/IBObject.cs: Add support for floats.

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

	* IPhoneFrameworkBackend.cs: Track MonoTouch location.

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

	* gtk-gui:
	* gtk-gui/gui.stetic:
	* gtk-gui/generated.cs:
	* MonoDevelop.IPhone.csproj:
	* gtk-gui/MonoDevelop.IPhone.Gui.IPhoneOptionsPanelWidget.cs:
	  Recreated lost options panel.

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

	* IPhoneProject.cs: Install XIB watcher.

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

	* CodeBehind.cs:
	* IPhoneBuildExtension.cs: Update designer classes when
	  building projects.

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

	* CodeBehind.cs: Implement code generation.

	* InterfaceBuilder/Collections.cs: Add accessor for
	  dictionary.

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

	* CodeBehind.cs: Attempt at reading outlets and events.

	* InterfaceBuilder/Collections.cs: Handle NSMutableDictionary,
	  NSArray.

	* InterfaceBuilder/IBObjectRecord.cs: Loosen typing. Turns out
	  we can have a mixture of references and records.

	* InterfaceBuilder/IBObject.cs: Handle bytes, integer, double,
	  nil, null references.

	* InterfaceBuilder/IBConnectionRecord.cs: Handle
	  IBPartialClassDescription.

	* InterfaceBuilder/IBDocument.cs: Type the return value. Add
	  more deserializable type handlers.

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

	* CodeBehind.cs:
	* InterfaceBuilder:
	* MonoDevelop.IPhone.csproj:
	* InterfaceBuilder/IBObject.cs:
	* InterfaceBuilder/IBDocument.cs:
	* InterfaceBuilder/IBReference.cs:
	* InterfaceBuilder/Collections.cs:
	* InterfaceBuilder/IBObjectRecord.cs:
	* InterfaceBuilder/UnknownIBObject.cs:
	* InterfaceBuilder/IBConnectionRecord.cs: Refactored and
	  extended the XIB DOM classes and moved them into their own
	  namespace.

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

	* CodeBehind.cs:
	* MonoDevelop.IPhone.csproj: Add simple XIB parser.

	* IPhoneExecutionHandler.cs: Remove excess whitespace.

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

	* PropertyList/PlistDocument.cs: Handle reading empty
	  collections.

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

	* IPhoneProject.cs:
	* IPhoneExecutionCommand.cs:
	* IPhoneExecutionHandler.cs: Add support for reading
	  stdout/stderr of process in the sim, and stopping the
	  process.

	* IPhoneFrameworkBackend.cs: Track new tools location.

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

	* Templates/IPhoneApplicationXib.xft.xml: More templatisation
	  of xib.

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

	* IPhoneProject.cs:
	* IPhoneExecutionHandler.cs:
	* IPhoneExecutionCommand.cs:
	* MonoDevelop.IPhone.csproj:
	* MonoDevelop.IPhone.addin.xml: Added execution command and
	  handler instead of overriding execution methods. Use mtouch
	  instead of simcontroller.

	* IPhoneBuildExtension.cs: Factor out mtouch detection. Fix an
	  NRE.

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

	* IPhoneBuildExtension.cs: Generate ResourceRules.

	* IPhoneProject.cs: Add execution support via simcontroller.

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

	* IPhoneBuildExtension.cs: Use project properties for dev
	  region, main nib file, and icon.

	* Gui:
	* Gui/IPhoneOptionsPanel.cs:
	* MonoDevelop.IPhone.addin.xml: Add an options panel.

	* IPhoneProjectConfiguration.cs: Track API.

	* MonoDevelop.IPhone.csproj: Updated.

	* IPhoneProject.cs: Add properties for dev region, main nib
	  file, and icon. Auto-group added xib files with codebehind.

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

	* IPhoneBuildExtension.cs: Fix type of a plist property.

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

	* MonoDevelop.IPhone.csproj:
	* PropertyList/PlistDocument.cs: Use XmlTextReader instead of
	  XLinq.

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

	* MonoDevelop.IPhone.addin.xml: Don't mark plists as xml/text.
	  This makes MD use the Mac property list editor to edit them.

	* IPhoneBuildExtension.cs: Add some todo comments.

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

	* IPhoneBuildExtension.cs: Write iphoneos properties to plist.

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

	* IPhoneBuildExtension.cs: Write additional sim keys into the
	  plist.

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

	* IPhoneProject.cs: Create per-platform output directories for
	  new projects.

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

	* MonoDevelop.IPhone.csproj:
	* PropertyList/PlistDocument.cs: Use XLinq.

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

	* IPhoneBuildExtension.cs: Generate plist, merging info into
	  template if it exists.

	* MonoDevelop.IPhone.csproj: Add files.

	* Templates/IPhoneApplicationPList.xft.xml: Turn the plist
	  into a template.

	* Templates/IPhoneProject.xpt.xml: Don't add a plist, since MD
	  will generate the default one.

	* PropertyList:
	* PropertyList/PlistData.cs:
	* PropertyList/PlistReal.cs:
	* PropertyList/PlistArray.cs:
	* PropertyList/PlistObject.cs:
	* PropertyList/PlistString.cs:
	* PropertyList/PlistInteger.cs:
	* PropertyList/PlistBoolean.cs:
	* PropertyList/PlistDocument.cs:
	* PropertyList/PlistDictionary.cs:
	* PropertyList/PlistObjectBase.cs: Import PodSleuth
	  plist-loading code. Add support for saving.

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

	* Templates/IPhoneApplicationPList.xft.xml: Set project name
	  in appropiate places.

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

	* IPhoneBuildExtension.cs: Use Page build action instead of
	  file extension for finding xibs to be compiled. Also treat
	  files with Content build action as files to be copied to the
	  .app. Ensure that directories exist when copying files.

	* IPhoneProject.cs: Set build action of xibs to Page by
	  default.

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

	* IPhoneBuildExtension.cs: Fix mtouch invocation. Copy the
	  Info.plist. Implement cleaning and checking whether needs
	  building.

	* IPhoneProjectConfiguration.cs: Add a property for getting
	  the app directory.

	* MonoDevelop.IPhone.csproj: Don't require specific version of
	  referenced MD assemblies.

	* Templates/IPhoneApplicationPList.xft.xml: Rename
	  Application-Info.plist to Info.plist.

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

	* IPhoneBuildExtension.cs: Compile xibs to nibs.

	* Templates/IPhoneApplicationXib.xft.xml: Fix xml in xib.

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

	* IPhoneBuildExtension.cs: Invoke mtouch.

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

	* IPhoneBuildExtension.cs: Stub out and add TODOs.

	* IPhoneProject.cs: Make consts internal.

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

	* IPhoneProject.cs: Create configurations for iPhone and
	  iPhoneSimulator platforms.

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

	* IPhoneProject.cs: Set target framework more reliably.

	* Templates/IPhoneViewXib.xft.xml: Fix identifier.

	* Templates/IPhoneProjectEmpty.xpt.xml: Fix monotouch ref.

	* Templates/IPhoneProject.xpt.xml: Add a Main method. Fix
	  monotouch ref.

	* Templates/IPhoneApplicationXib.xft.xml: Fix partial methods.

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

	* IPhoneFrameworkBackend.cs: Fix tools path.

	* framework_IPhone.xml: Add mscorlib.

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

	* IPhoneProject.cs:
	* framework_IPhone.xml:
	* IPhoneBuildExtension.cs:
	* IPhoneFrameworkBackend.cs:
	* MonoDevelop.IPhone.csproj:
	* MonoDevelop.IPhone.addin.xml: Add a framework profile and a
	  build extension.

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

	* MonoDevelop.IPhone.addin.xml: Add mimetype definitions for
	  plist and xib files.

	* IPhoneProjectBinding.cs:
	* MonoDevelop.IPhone.csproj: Add the ProjectBinding.

	* Templates/IPhoneViewXib.xft.xml:
	* Templates/IPhoneApplicationXib.xft.xml: Some minor fixes.

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

	* Templates/IPhoneViewXib.xft.xml:
	* Templates/IPhoneProjectEmpty.xpt.xml:
	* Templates/IPhoneApplicationXib.xft.xml:
	* Templates/IPhoneApplicationPList.xft.xml: Improved the
	  templates.