aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
blob: a8dfd4d03d4c1bbef12bf90a64c8a2b9d9433728 (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
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
2022-01-27 Mike Gabriel

        * release 0.8.91 (HEAD -> main, tag: 0.8.91)

2022-01-27 Robert Tari

        * Merge branch
          'sunweaver-pr/use-pkg-config-indicatordir-for-library-path'
          (edbee76)

2022-01-26 Mike Gabriel

        * data/CMakeLists.txt: Update detection of SYSTEMD_USER_DIR, use
          systemd's pkg-config variable if possible. (3c432ed)
        * CMakeLists.txt: Fix project name (ayatana-indicator-application,
          not ayatana-appindicator-application). (a986a42)

2022-01-27 Robert Tari

        * Merge branch 'sunweaver-pr/fix-systemd-unit-file-location'
          (8b83c01)

2022-01-26 Mike Gabriel

        * src/CMakeLists.txt: Use pkg-config's indicatordir as library
          installation path. (c8de140)
        * data/CMakeLists.txt: Update detection of SYSTEMD_USER_DIR, use
          systemd's pkg-config variable if possible. (b70b185)
        * CMakeLists.txt: Fix project name (ayatana-indicator-application,
          not ayatana-appindicator-application). (d49af68)

2021-11-18 Mike Gabriel

        * release 0.8.90 (91143cb) (tag: 0.8.90)

2021-10-25 Robert Tari

        * Merge branch 'sunweaver-pr/travis-cleanup' (03225f2)

2021-10-20 Robert Tari

        * .travis.yml: Temporarily disable ppc64le builds (a80c027)

2021-09-02 Robert Tari

        * Fix Travis status image (3ea315f)

2021-10-25 Mike Gabriel

        * .build.yml: Comment out running unit tests (no tests in project).
          (6eec5b5)
        * .build.yml: Remove source code of locally built dependencies after
          they have been installed. (fd4b492)
        * .build.yml: Run unit tests in build_scripts: target. (d20a158)
        * .build.yml: Drop autogen.sh support. (441c558)

2021-10-20 Robert Tari

        * .travis.yml: Temporarily disable ppc64le builds (6a05699)

2021-09-02 Robert Tari

        * Fix Travis status image (b6d0146)

2021-08-29 Mike Gabriel

        * debian/rules: Enable unit tests (if there were any). (bff6bb8)

2021-08-28 Mike Gabriel

        * .travis.yml: Fix branch name what is now the default branch in
          ayatana-dev-scripts. (f33deb5)

2021-08-10 Mike Gabriel

        * Merge branch 'tari01-pr/add-enable-werror-option' (82ddfcc)

2021-08-09 Robert Tari

        * Add ENABLE_WERROR option (f4c60ba)

2021-06-27 Mike Gabriel

        * README.md: Add missing parenthesis close. (b83b458)

2021-06-15 Robert Tari

        * Merge branch 'sunweaver-pr/travis-build-our-libs-from-source'
          (2ce2a0e)

2021-05-25 Mike Gabriel

        * .build.yml: During CI builds, build latest ayatana-ido,
          libayatana-indicator and libayatana-indicator and use
          those for CI builds of ayatana-indicator-application.
          (4546805)

2021-06-11 Mike Gabriel

        * Merge branch 'tari01-pr/fix-runtime-install' (ba1630b)

2021-06-11 Robert Tari

        * Fix .desktop file install location (c1bd489)
        * Fix service file installation (4a70621)

2021-06-11 Mike Gabriel

        * Merge branch 'tari01-pr/fix-xdg-location' (e9c253b)

2021-06-11 Robert Tari

        * Fix .desktop file install location (111b61a)

2021-06-10 Mike Gabriel

        * Merge branch 'tari01-pr/cmake-install-full' (95a9f27)

2021-06-10 Robert Tari

        * Use CMAKE_INSTALL_FULL_*DIR locations (d4cf711)

2021-06-07 Mike Gabriel

        * README.md: Rephrase where this indicator is used, currently not
          used in Lomiri. (71205ee)
        * Merge branch 'tari01-pr/add-documentation' (6704d8a)

2021-06-04 Robert Tari

        * README: Drop old file (7887ac6)
        * Add documentation and install instructions (9abc758)

2021-05-25 Robert Tari

        * Merge branch 'sunweaver-pr/debian-pkging-adjusted-to-cmake'
          (6bac351)

2021-05-25 Mike Gabriel

        * debian/{control,rules}: Adjust to the CMake build system switch.
          (96821b5)
        * Merge branch 'tari01-pr/move-to-cmake' (fe5ae6b)

2021-03-04 Robert Tari

        * Remove unused files (b9a91db)
        * Remove Automake files (10b786c)
        * Add CMakeLists.txt files (5f5d6d7)
        * data: Fix ayatana-indicator-application.service.in (65be49d)
        * data: Fix ayatana-indicator-application.desktop.in (51c9025)

2021-05-04 Robert Tari

        * Merge branch 'sunweaver-pr/travis-ci' (dd675b4)

2021-05-04 Mike Gabriel

        * .travis.yml: Don't run autotools builds twice (once via script,
          once directly). (0d7148e)
        * src/Makefile.am: Drop -Werror compiler flag for now. Not helpful
          when setting up CI builds for dirty code. (b7faf4f)
        * Travis CI: Initial draft for CI builds. (cfea3be)

2020-08-17 Mike Gabriel

        * release 0.8.0 (eee97a7) (tag: 0.8.0)

2020-08-10 Mike Gabriel

        * configure.ac: Drop data/upstart/Makefile from AC_OUTPUT. Regresion
          fix for 172e6823. (a95fa57)

2020-08-10 Robert Tari

        * Merge branch 'sunweaver-pr/drop-upstart-support' Attributes GH PR
          #4:
          https://github.com/AyatanaIndicators/ayatana-indicator-application/pull/4
          (c6909fa)
        * Merge branch 'pr/drop-upstart-support' of
          https://github.com/sunweaver/ayatana-indicator-application
          into sunweaver-pr/drop-upstart-support Attributes GH PR
          #4:
          https://github.com/AyatanaIndicators/ayatana-indicator-application/pull/4
          (c7c7c61)
        * Merge branch 'sunweaver-pr/fix-systemd' Attributes GH PR #3:
          https://github.com/AyatanaIndicators/ayatana-indicator-application/pull/3
          (9e09aaa)

2020-08-10 Mike Gabriel

        * Drop all references to upstart. (172e682)
        * debian/*: Install systemd user service file correctly into DEB
          package. (ac816c0)
        * Start indicator in systemd when ayatana-indicators.target is
          started. (bcd0095)
        * debian/control: Improve dh-autoreconf build-dependency. (05e0a70)

2019-11-27 Mike Gabriel

        * Drop release/build cruft file src/ChangeLog. (1aa5f07)
        * release 0.5.3 (e86b005) (tag: 0.5.3)
        *  Avoid deprecated g_type_class_add_private. (8b967ee)

2017-12-04 Mike Gabriel

        * debian/changelog: Bump upstream to a development version. (75ffda9)
        * post-release fix debian/changelog for 0.5.1 and 0.5.2 (517180e)

2017-10-26 Mike Gabriel

        * autogen.sh: Adapt PKG_NAME autogen.sh to ayatana- namespace.
          (3589a31)
        * configure.ac: White-space fix and beginning of file. (7cf4fcf)
        * {configure.ac,Makefile.am}: Drop distcheck features. (3207212)

2017-10-06 Mike Gabriel

        * debian/control: Modify B-D on systemd: only required on linux-any
          hosts. (1b6f7b2)
        * Make systemd optional. If systemd is not available at build-time,
          the creation of the .service file is omitted. (2c6c3ad)
        * release 0.5.2 (c21840e) (tag: 0.5.2)

2017-09-26 Mike Gabriel

        * data/ayatana-indicator-application.desktop.in: Add Budgie as
          candidate for launching ayatana-indicator-application.
          (1fb04e5)
        * data/ayatana-indicator-application.desktop.in: Add XFCE as
          candidate for launching ayatana-indicator-application.
          (6f0baea)

2017-06-07 Mike Gabriel

        * debian/{rules/watch}: Add get-orig-source rule and watch file to
          make upstream packaging as close to official Debian
          packaging. (9ea282b)
        * debian/upstream: Add GnuPG pubkey for upstream devs. (7a0de9b)
        * debian/patches: Add README for patches/ subfolder. (5810507)

2017-05-31 Mike Gabriel

        * data/ayatana-indicator-application.desktop.in (7ce7832)

2017-05-30 Mike Gabriel

        * XDG-autostart this indicator in MATE, too. (630f47c)

2017-05-29 Mike Gabriel

        * release 0.5.1 (21a3517) (tag: 0.5.1)

2017-05-26 Mike Gabriel

        * src/application-service-watcher.c: Comment out upstart specific
          code for now. We can reintroduce it once we know if our
          session is upstart-managed (or systemd-managed). (af351b0)

2017-05-15 Mike Gabriel

        * data/Makefile.am: Indentation/white-space fix. (0858a56)
        * upstart service files: Fix namespace overlapping with the project
          we forked from. (fe747e1)

2017-05-15 Michael Terry

        * Work inside a snap by prefixing hard coded paths with . (LP:
          #1629009) (3661214)

2017-05-15 Jeremy Bicha

        * Hide 'Indicator Application' from Startup Applications (LP:
          #1637379) (LP: #1637379) (f20bc23)

2017-05-15 Ted Gould

        * Adding a systemd user unit. (a099394)

2017-05-15 Mike Gabriel

        * build system: Switch to mate-common. (9afe090)

2015-11-11 Mike Gabriel

        * Add forgotten file...
          (src/ayatana-application-service-marshal.list). (dcb6427)
        * dbus-shared.h: Use org.ayatana namespace for the DBus service
          object. (2349431)
        * Fork from Ubuntu's indicator-application code project. (13e1544)

2015-01-28 CI Train Bot

        * Releasing 12.10.1+15.04.20150128-0ubuntu1 (6935795)

2015-01-28 Ted Gould

        * Remove XFCE from the OnlyShowIn list
          Fixes: #1411959 Approved by:
          Antti Kaijanmäki, PS Jenkins bot (61f83a5)

2015-01-27 Ted Gould

        * Update gcov.m4 (57a37ce)

2015-01-20 Ted Gould

        * Remove XFCE from the OnlyShowIn list (d941082)

2014-04-07 CI bot

        * Releasing 12.10.1+14.04.20140407-0ubuntu1 (f08a10d)

2014-04-07 Ted Gould

        * Fix the upstart job and desktop config for GNOME2
          Fixes: 1302123
          (72e1242)
        * Switching to single equals (6f1a0f7)

2014-04-02 CI bot

        * Releasing 12.10.1+14.04.20140402-0ubuntu1 (b3b0fc8)

2014-04-02 Sebastien Bacher

        * Don't output warnings about properties re-requests, debug is enough

          Fixes: 1297437 (343963f)

2014-03-25 Ted Gould

        * Switch session checking to be in pre-start (d0042b5)

2014-03-25 Sebastien Bacher

        * Don't output warnings about properties re-requests, debug is enough
          (04a7c41)

2014-03-24 CI bot

        * Releasing 12.10.1+14.04.20140324-0ubuntu1 (4b29e70)

2014-03-24 Sebastien Bacher

        * Don't mention "library", that's a separate source nowadays
          (2906f8d)

2014-03-21 Sebastien Bacher

        * Don't mention "library", that's a separate source nowadays
          (38f5543)

2014-02-26 Ted Gould

        * Update for gnome-fallback (02d2362)
        * Switch to not being ubuntu-touch for other desktops (d0e78b3)

2014-02-25 Ted Gould

        * Synchronize process management across indicators. (e51f4d9)

2014-02-20 Ted Gould

        * Switch to a name watch (7ae14a3)
        * Own the name (b12215e)
        * Removes the indicator service code (e48b26b)

2014-02-19 Ted Gould

        * Switch to using pkglibexecdir (dd359a1)
        * Build the upstart desktop file in its own directory (f179a2c)
        * Adding a desktop file for the Upstart override (c6a36f4)
        * Make sure this is for Unity and XFCE (4d7566c)

2014-02-14 Ted Gould

        * Fixing the autostart file (cbe78c0)
        * Respawn limit and better rules (7d97429)

2014-01-17 Automatic PS uploader

        * Releasing 12.10.1+14.04.20140117-0ubuntu1 (revision 244 from
          lp:indicator-application). (ae7db09)
        * Releasing 12.10.1+14.04.20140117-0ubuntu1, based on r244 (bd2e50e)

2014-01-17 Sebastien Bacher

        * don't error out on deprecated declarations. (0a8bd5a)
        * include new lcov version (8fbbd6b)

2014-01-16 Sebastien Bacher

        * don't error out on deprecated declarations (c4eb40f)

2013-11-25 Automatic PS uploader

        * Releasing 12.10.1+14.04.20131125-0ubuntu1 (revision 242 from
          lp:indicator-application). (74305fa)
        * Releasing 12.10.1+14.04.20131125-0ubuntu1, based on r242 (70d3aea)

2013-10-31 Ted Gould

        * Switch indicator application over to having an upstart job for
          managing the service.  Also make it emit it's own event
          for when application indicators should be started so we
          can clean up the boot sequence.
          Fixes:
          https://bugs.launchpad.net/bugs/1185565. (f2ce0ee)

2013-10-28 Ted Gould

        * Adding an XDG Autostart file (96efd3b)
        * Merge trunk (6623650)

2013-10-24 Charles Kerr

        * When we can't get a handle to the system bus, exit gracefully
          instead of crashing.
          Fixes:
          https://bugs.launchpad.net/bugs/1197788. (da34f0c)

2013-10-23 Charles Kerr

        * don't crash if we can't get the session bus. (5e409a4)

2013-08-27 Ted Gould

        * Dropping debugging for system-wide support (bcd73f4)

2013-07-12 Ted Gould

        * Add the indicator-services-end condition (f3246fc)
        * Add the indicator-services-start condition (77943e2)
        * Make sure to have proper syntax (e5d5f1a)

2013-05-29 Ted Gould

        * Dropping service from extra dist and clean (634e24e)
        * Limiting to only the ubuntu session (7b8ff47)
        * A comment, because comments rock. (fe92d7d)
        * When we get our name, then start app indicators (3051b7a)
        * Dropping the dbus service file (a6999f4)
        * Adding an upstart job configuration (477cf6a)

2013-01-25 Automatic PS uploader

        * Releasing 12.10.1daily13.01.25-0ubuntu1 to ubuntu. (fe77f0e)
        * Releasing 12.10.1daily13.01.25-0ubuntu1, based on r239 (fb406e1)

2013-01-23 Charles Kerr

        * remove g_type_init() calls; introduce explicit glib requirements to
          configure.ac and debian/control (36d8b41)

2013-01-22 Charles Kerr

        * add a glib minimum to configure.ac, debian/control. remove
          g_type_init() calls. (f788c22)

2013-01-11 Automatic PS uploader

        * Releasing 12.10.1daily13.01.11-0ubuntu1 to ubuntu. (f8a22d3)
        * Releasing 12.10.1daily13.01.11-0ubuntu1, based on r237 (b9c040b)

2012-12-18 Marco Trevisan (Treviño)

        * Indicator-application: removing the deprecated approver support.
          (22ee6bf)
        * Indicator-application: removing the deprecated approver support
          (d5c42de)

2012-11-22 Didier Roche

        * Bootstrap message for automated daily uploda. (6f43d3e)
        * boostrap message (0f8800c)

2012-11-22 Sebastien Bacher

        * Import packaging. (3ff7ad1)

2012-11-21 Mathieu Trudel-Lapierre

        * debian/copyright: simplify into one File: stanza. (e21f29c)
        * Update Vcs-Bzr, Vcs-Browser and add a notice to uploaders.
          (60c5d50)

2012-11-20 Mathieu Trudel-Lapierre

        * Add gnome-common to Build-Depends. (e88b951)
        * Reorganize Build-Depends for consistency with other indicator
          packages. (a873cad)
        * Add and export DPKG_GENSYMBOLS_CHECK_LEVEL. (a90599b)
        *   - Add dh-autoreconf to Build-Depends.   - Override dh_autoreconf
          to call autogen.sh and not call configure. (0688e47)
        * debian/rules:   - Use dh_autoreconf with dh sequencer. (a5c187b)
        * debian/control:   - Update style to match other indicator
          packages. (a22957c)
        * Tell bzr-builddeb to build this package using split mode (6a6c91d)
        * Import debian/ from lp:~ubuntu-desktop/indicator-application/ubuntu
          (e174cb0)

2012-08-22 Sebastien Bacher

        * releasing version 12.10.0-0ubuntu2 (6603fe4)
        * debian/control: Build-Depends on dbus-test-runner and xvfb, dh9
          runs make check for us and the tests require those
          (e863c24)
        * releasing version 12.10.0-0ubuntu1 (bd61f1d)
        * New upstream release:   - Require GTK3 in Indicators (lp:
          #996607);  Dropped GTK2 build;  Updated packaging to the
          current standards (a89e5cc)
        * Import upstream version 12.10.0 (9df80bf)

2012-08-21 Charles Kerr

        * 12.10.0 (90e5ec8)

2012-06-22 Charles Kerr

        * remove gtk2 support.
          Fixes: https://bugs.launchpad.net/bugs/996607.
          Approved by Lars Uebernickel. (f2ace01)

2012-05-07 Charles Kerr

        * require gtk3 (a6590cc)

2012-04-11 Ken VanDine

        * releasing version 0.5.0-0ubuntu1 (ed31788)
        * New upstream release.   * Improved gcov rules in our Automake
          files.   * Fix parent pointer object for
          unity-panel-service. (486e1b3)

2012-04-11 Charles Kerr

        * releasing version 0.5.0-0ubuntu1~ppa1 (7201938)
        * New upstream release.   * Improved gcov rules in our Automake
          files.   * Fix parent pointer object for
          unity-panel-service. (a88bd1a)
        * Import upstream version 0.5.0 (cb8844b)
        * Sync from Ubuntu Desktop (f0e4fc0)
        * 0.5.0 (ab3fc0e) (tag: 0.5.0)
        * merge lp:~allanlesage/indicator-application/TDD to improve our
          automake gcov rules (3a3e89e)

2012-04-10 Charles Kerr

        * merge lp:~ted/indicator-application/parent-pointer to add in the
          parent object pointer for unity-panel-service. (0404809)

2012-04-09 Ted Gould

        * Set the parent object pointer to help unity-panel-service (1833f44)

2012-03-27 Allan LeSage

        * Pedantic name change for gcovr xml coverage results. (22ff9e1)
        * Removed gcovr dependency, moved coverage targets to own makefile,
          cleaning up *.gcno. (18da8cd)

2012-03-21 Ken VanDine

        * releasing version 0.4.94-0ubuntu1 (5a7ebb9)
        * New upstream release.   * Memory leak (LP: #957992);  New
          upstream release.   * Fix a dbus memory leak. (LP:
          #953585)   * Fix potential integer overflow (LP: #944234)
          (be63d57)
        * Merging shared upstream rev into target branch. (086cedb)
        * Prepared upstream tree for merging into target branch. (9aa7545)
        * Merging shared upstream rev into target branch. (5e75991)
        * Prepared upstream tree for merging into target branch. (86bfcf3)

2012-03-21 Ted Gould

        * releasing version 0.4.94-0ubuntu1~ppa1 (3aac21d)
        * New upstream release.   * Memory leak (LP: #957992) (9871b47)
        * Import upstream version 0.4.94 (63e76db)
        * Sync to Ubuntu Desktop (48d44ef)
        * Merging shared upstream rev into target branch. (14455a2)
        * Prepared upstream tree for merging into target branch. (2b3f1e6)
        * 0.4.94 (daf30a3) (tag: 0.4.94)

2012-03-20 Charles Kerr

        * merge lp:~charlesk/indicator-application/hashtable-mem-bugs to fix
          memory errors reported in lp bug #957992 (54d6c14)

2012-03-17 Charles Kerr

        * Fix two memory bugs with clearing out out directories from our icon
          search path. (e80b857)

2012-03-14 Sebastien Bacher

        * releasing version 0.4.93-0ubuntu1 (b907100)
        * New upstream release:   - Coverity INTEGER_OVERFLOW - CID 10716
          (lp: #944234)   - small memory leak caused by inline use
          of dbus_g_method_get_sender()     (lp: #953585) (cc14b53)
        * Import upstream version 0.4.93 (de6e9e4)

2012-03-13 Charles Kerr

        * releasing version 0.4.93-0ubuntu1~ppa (244eff8)
        * releasing version 0.4.93-0ubuntu1~ppa (71265fd)
        * New upstream release.   * Fix a dbus memory leak. (LP: #953585)
          * Fix potential integer overflow (LP: #944234) (c102fa5)
        * Import upstream version 0.4.93 (fed02bf)
        * Sync from Ubuntu Desktop (2c9a58b)
        * 0.4.93 (8e26e84) (tag: 0.4.93)

2012-03-12 Charles Kerr

        * in generate_id(), we have a handful of local guint8's that get
          left-shifted to the point of potential overflow -- so
          change them to guint32 instead. Bug reported by coverity
          in lp ticket #944234 (e6d8a51)
        * change local guint8 fields that get left-shifted to guint32 to
          prevent overflow, as reported by coverity in lp bug
          #944234 (256988d)
        * merge lp:~htorque/indicator-application/fix-small-memleak to fix a
          small memory leak described in lp bug #953585 (ec7981d)

2012-03-12 Hernando Torque

        * Fix small memory leak by freeing string returned by
          dbus_g_method_get_sender. (67847ad)

2012-03-12 Ken VanDine

        * releasing version 0.4.92-0ubuntu1 (80459a4)
        * New upstream release.   * Explicitly specifying GVariant Builder
          types   * Cleaning up a switch statement (LP: #944236)
          (bc0fd0f)

2012-03-09 Ted Gould

        * releasing version 0.4.92-0ubuntu1~ppa1 (7045c3e)
        * New upstream release.   * Explicitly specifying GVariant Builder
          types   * Cleaning up a switch statement (LP: #944236)
          (889f6d9)
        * Import upstream version 0.4.92 (d518799)
        * Merge from U. Desktop (9b0c61b)
        * 0.4.92 (29bf37b) (tag: 0.4.92)

2012-03-05 Charles Kerr

        * merge lp:~ted/indicator-application/lp944236 to fix the warning
          that Coverity reported in bug #944236 (d6769d5)

2012-03-05 Sebastien Bacher

        * releasing version 0.4.91-0ubuntu2 (1c5dbfe)
        * Backport an upstream fix for a gvariant misuse, thanks desrt for
          it! (e3d1d6d)

2012-03-02 Ted Gould

        * Cleaning up switch statement to be more readable (5960d8f)
        * Add full type to GVariantBuilder (e2bbff7)

2012-03-02 Ryan Lortie

        * make proper use of g_variant_builder_init() (a140461)

2012-02-15 Sebastien Bacher

        * releasing version 0.4.91-0ubuntu1 (68e3c2d)

2012-02-15 Ted Gould

        * releasing version 0.4.91-0ubuntu1~ppa1 (3ed68eb)
        * New upstream release.   * Unref approval data after use (568df37)
        * Import upstream version 0.4.91 (1401a3d)
        * Sync to Ubuntu Desktop (c87f1ae)
        * 0.4.91 (9ea46ae) (tag: 0.4.91)

2012-02-12 Ted Gould

        * Unreffing the result of the approval message (e985113)

2012-02-11 Sven Baars

        * Free the result of g_dbus_proxy_call_finish after use (6d9ffd0)

2012-02-08 Ken VanDine

        * releasing version 0.4.90-0ubuntu1 (4b35057)
        * New upstream release.   * Adding in a code coverage based build
          target   * Fixing useless variable setting   * Fixing
          variant usage   * Adding support for the Title property
          * Fixing to work with Dbusmenu 0.5.90;  debian/control:
          Dbusmenu bump to 0.5.90 (9b28d1b)

2012-02-08 Ted Gould

        * releasing version 0.4.90-0ubuntu1~ppa1 (6350c37)
        * debian/control: Dbusmenu bump to 0.5.90 (0bf3d06)
        * New upstream release.   * Adding in a code coverage based build
          target   * Fixing useless variable setting   * Fixing
          variant usage   * Adding support for the Title property
          * Fixing to work with Dbusmenu 0.5.90 (44cc6e7)
        * Import upstream version 0.4.90 (2296595)
        * Sync to U. Desktop (e548f85)
        * 0.4.90 (8c0ecc8) (tag: 0.4.90)
        * Adding in a code coverage based build target (1652735)
        * Fixing useless variable setting (4e1deeb)
        * Fixing variant usage (8a1e30e)
        * Adding support for the Title property (0492224)
        * Fixing to work with Dbusmenu 0.5.90 (8aa53e2)

2012-02-03 Ted Gould

        * Oops, forgot one (a85b08a)
        * Making sure to initial string pointers (4145c58)
        * Make sure to initialize values before free'ing them (ee1ac0d)
        * Ensuring that the values are initialized to NULL before using that
          later. (18b2217)
        * Attaching bug (7614d41)
        * Fixing variant usage (79e3bfe)
        * Ignoring generated files (11f93eb)
        * Fixing some of the variant usage to free strings appropriately
          (3bfb6d6)
        * Changing the signatures on the indicator side, we don't care much
          about title though. (432817d)
        * Don't need the ID as that's already the hint (bc7f44a)
        * Changing the output signatures (cef6f0f)
        * Adding in service versions to detect the dbus API change (3ceb032)
        * Adding to more strings to the standard structure, ID and title
          (1b2a457)
        * Changing the service description to match (2a7a9f3)
        * If we have a mega-change of things, let's signal a title change
          (c1f07f7)
        * Handling the 'NewTitle' signal coming from the application
          indicator (c91e6fc)
        * Add the title to the structure for the application indicator
          (716e613)
        * Fixing includes to match dbusmenu v0.5.90 (37d7bd7)
        * Requiring dbusmenu 0.5.90 (996e46e)

2012-01-25 Ken VanDine

        * releasing version 0.4.0-0ubuntu2 (0e850cc)

2012-01-24 Charles Kerr

        * fix dead store found by clang static analyzer (3cfb188)

2012-01-24 Ken VanDine

        * no change rebuild for libindicator7 (2e6ca53)

2011-12-06 Allan LeSage

        * Added coverage reporting via gcov config and targets. (dd6a60c)

2011-09-28 Ken VanDine

        * releasing version 0.4.0-0ubuntu1 (dfb47bb)
        * New upstream release.   * Fix memory leak (LP: #829961) (f4999fe)

2011-09-28 Ted Gould

        * Merge U. Desktop (749e1fc)
        * releasing version 0.4.0-0ubuntu1~ppa1 (77b5c42)
        * New upstream release.   * Fix memory leak (LP: #829961) (60db507)
        * Import upstream version 0.4.0 (61ce124)
        * 0.4.0 (ec05da4) (tag: 0.4.0)

2011-09-16 Ted Gould

        * Memory leaks on double calls for properties (ac5c445)
        * Pulling in mterry's additional fixes (bed6607)
        * Ensure we set a default value for aicon (21a6e47)

2011-09-16 Michael Terry

        * free application fields before resetting them to new values
          (a11c876)

2011-09-14 Ted Gould

        * Freeing properties on second run of building the app indicator
          (2f9133d)

2011-08-11 Sebastien Bacher

        * releasing version 0.3.92-0ubuntu1 (256899d)
        * debian/rules:   - update the translations template (c538da3)
        * New upstream release.   * Support middle click actions and send
          as Ayatana Activates   * Fix signature for null sets
          (8735cde)

2011-08-11 Ted Gould

        * releasing version 0.3.92-0ubuntu1~ppa1 (09cbd15)
        * New upstream release.   * Support middle click actions and send
          as Ayatana Activates   * Fix signature for null sets
          (e66b698)
        * Import upstream version 0.3.92 (e7d1dd3)
        * Merge from U. Desktop (6773f89)
        * 0.3.92 (3bb503c) (tag: 0.3.92)

2011-07-22 Ted Gould

        * Enabling Secondary Activate support (bc8e1d9)
        * Fixing the signal prototype (6e7a1fe)

2011-07-21 Marco Trevisan (Treviño)

        *  (11bf1f5)
        * Up (2426537)
        * Use g_variant_new_uint32 as we just have one parameter (f1a3038)
        * Don't use "SecondaryActivate" method (7cd7056)

2011-07-10 Marco Trevisan (Treviño)

        * Add support to the "SecondaryActivate" method (1a569c2)

2011-07-09 Marco Trevisan (Treviño)

        * Merge with upstream (81714fd)

2011-07-08 Sebastien Bacher

        * releasing version 0.3.91-0ubuntu2 (432dd0a)

2011-07-08 Ted Gould

        * Fixing the signature on the startup functions. (f255dfc)
        * Forgot an 's' in the case of no app indicators (3770d74)

2011-07-08 Sebastien Bacher

        * releasing version 0.3.91-0ubuntu1 (39322c2)

2011-07-07 Ted Gould

        * Merging Ken's branch as well. (b7c636a)
        * releasing version 0.3.91-0ubuntu1~ppa1 (3eca9a2)
        * New upstream release.   * Build with libindicator 0.4 (1e42fac)
        * Import upstream version 0.3.91 (457dd74)
        * U. Desktop Sync (f374f8e)
        * 0.3.91 (75eadfd) (tag: 0.3.91)
        * Putting in name hints for the indicators (3d3beb6)
        * Oops, should be a free (510e1e1)
        * Making sure to unref() the result if we get one. (3640e44)
        * Setting the name hints through the stack. (2902ab6)
        * Migrated to libindicator 0.4 (1af03e8)

2011-07-02 Marco Trevisan (Treviño)

        * Use the "entry-scrolled" signal instead of the old ones (62c7490)
        * Fix compilation with GTK+-2.0 (0ab53a4)

2011-06-28 Ken VanDine

        * releasing version 0.3.90-0ubuntu2 (f099efd)
        * Make sure gtk2 builds get pkgconfig info for appindicator-0.1
          instead of appindicator3-0.1 (2799ed4)

2011-06-22 Ken VanDine

        * releasing version 0.3.90-0ubuntu1 (f2c00ec)
        * New upstream release.   * GTK3 Port (3315ba5)

2011-06-22 Ted Gould

        * releasing version 0.3.90-0ubuntu1~ppa1 (e27d98a)
        * New upstream release.   * GTK3 Port (c15ad5e)
        * Import upstream version 0.3.90 (3eea1be)
        * Merging Ubuntu Desktop (1152e6d)
        * 0.3.90 (58779f7) (tag: 0.3.90)
        * Changing where to find the header (1a9efdf)
        * Making tests use proper version of libappindicator and cleaning up
          libappindicator usage to use the same enum headers.
          (58f4756)

2011-06-10 Ted Gould

        * Add path for GTK3 indicator and make GTK3 default (b5aec1c)

2011-05-26 Michael Terry

        * change to gtk3 by default (fc4bf64)
        * use indicator3 path if using gtk3 (484079b)

2011-04-14 Ken VanDine

        * releasing version 0.3.2-0ubuntu1 (361d963)

2011-04-14 Ted Gould

        * releasing version 0.3.2-0ubuntu1~ppa1 (28549d9)
        * New upstream release. ∘ Free app using application_free() instead
          of just freeing the memory (LP: #743564) ∘ Protect against
          cancellation ∘ Make it so that we can cancel GetAll() (LP:
          #725665) ∘ Make it so that we can cancel Approver requests
          (d8f7ec7)
        * Import upstream version 0.3.2 (b8ece12)
        * 0.3.2 (ba6c0b1) (tag: 0.3.2)

2011-04-12 Ted Gould

        * releasing version 0.3.1-0ubuntu3~ppa1 (36e1489)
        * Make it so that we can cancel Approver requests (9ee516c)
        * Make approver signals cancelable (4803742)
        *   * Protect against cancelation   * Make it so that we can cancel
          GetAll() (LP: #725665) (8589bf9)
        * Ensure we can cancel GetAll() (0edabc6)
        * Protect from canceling (dd97a3c)
        * Drop debian/patches/lp_743564.patch as merged upstream. (a595799)
        * Upstream Merge   * Free app using application_free() instead of
          just freeing the     memory (LP: #743564) (f428921)
        * Merge to U. Desktop (0536a41)
        * Makes sure to free the application using the application_free()
          function (d24fd27)

2011-04-12 Michael Terry

        * cancel approver requests too (e029f89)

2011-04-11 Michael Terry

        * make sure we can cancel GetAll call (ce5dcdd)
        * catch one more cancel-before-accessing freed memory instance --
          this one resulting in a double free (bee98f7)

2011-04-08 Ken VanDine

        * releasing version 0.3.1-0ubuntu2 (e25a3f6)

2011-04-08 Michael Terry

        * don't merely free an app, it has to be properly removed from list
          and such (2e0265d)

2011-04-07 Ken VanDine

        * releasing version 0.3.1-0ubuntu1 (c361700)

2011-04-07 Ted Gould

        * releasing version 0.3.1-0ubuntu1~ppa1 (72fbb08)
        * New upstream release. ∘ Fix the name of "nm-applet" in the
          overrides file ∘ Handle async tasks being canceled (LP:
          #752998) (d468238)
        * Import upstream version 0.3.1 (b0a027c)
        * Sync to U. Desktop (b07cb5f)
        * 0.3.1 (f17f35f) (tag: 0.3.1)
        * Handle async cancels (e4e135f)

2011-04-07 Michael Terry

        * cancel-guard several callback functions (f57f2e7)

2011-04-06 Ted Gould

        * Fixing the name of the network manager applet (108f239)

2011-03-23 Ken VanDine

        * releasing version 0.3.0-0ubuntu1 (06c66da)

2011-03-23 Ted Gould

        * releasing version 0.3.0-0ubuntu1~ppa1 (01b1054)
        * New upstream release.   * Version number bump (8a87e5c)
        * Import upstream version 0.3.0 (fe82495)
        * Merge from U. Desktop (a919e35)
        * 0.3.0 (2e52cac) (tag: 0.3.0)

2011-03-16 Ken VanDine

        * releasing version 0.2.95-0ubuntu1 (e8ef564)

2011-03-16 Ted Gould

        * releasing version 0.2.95-0ubuntu1~ppa1 (1058de2)
        * Drop debian/patches/fix-null-string-to-variant-crash.patch
          (c98c03e)
        * New upstream release. ∘ Fix ordering of indicators ∘ No more
          duplication of indicators on the panel (LP: #708243) ∘
          Using proper object on async call (LP: #734584) ∘ Protect
          from the accessible description being NULL. (LP: #724767)
          (7c64f15)
        * Import upstream version 0.2.95 (57bf196)
        * 0.2.95 (4492990) (tag: 0.2.95)
        * Fix ordering of indicators (eb6a863)
        * Moving iBus and keyboard under advice of mpt (9e0c4a2)

2011-03-15 Ted Gould

        * Handle the case of getting application signals while still waiting
          on the full list. (a601eb2)
        * Using the proper object to finish the call (a76d0eb)

2011-03-14 Ted Gould

        * Use the passed in proxy to get the result to ensure it's valid.
          (1aeeeb0)
        * Inserting network manager applet at the front (b0e008b)
        * Debug message on missing override file. (b29c6f2)
        * Debug message on missing override file. (31299f3)
        * Do a sort after deciding the ordering ID (e5d2b6b)
        * Noticing a missing unref (e2adde1)

2011-03-11 Ted Gould

        * Adding bug (a0387eb)
        * If we're requeuing we don't really want to continue to process the
          signal (00a8865)
        * Removing applications before adding new ones. (a11d8f1)
        * A couple memory leaks (d3c5e25)
        * Only clear the cancel if we're not being cancelled (c892f84)
        * Unrefing the object, it might not happen right away, so let's clear
          it ourselves. (bc6a7d9)
        * If we're in the middle of a GetApplications and we get another
          signal, let's try again. (a4e9c0b)
        * Add a cancellable object for the GetApplications call (c6313ac)

2011-03-03 Ted Gould

        * Merge from U. Desktop (c8b3e36)

2011-03-02 Ted Gould

        * Protect from the accessible description being NULL (7b31678)

2011-02-25 Michael Terry

        * debian/control, debian/rules:   - Add quilt as a patch syste.
          debian/patches/fix-null-string-to-variant-crash.patch:   -
          Don't pass a null string to GVariant, it hates it.  LP:
          #724767 (c638472)
        * fix crash on null string passed to GVariant (6a1c35a)

2011-02-24 Ken VanDine

        * releasing version 0.2.94-0ubuntu1 (8ea37c5)

2011-02-24 Ted Gould

        * releasing version 0.2.94-0ubuntu1~ppa1 (a45a01a)
        * New upstream release.   * Make the accessible description NULL so
          that indicator-applet doesn't     crash (LP: #721533)   *
          emit LabelChanged signal along with the IconChanged signal
          (LP: #712581) (4b3ebd6)
        * Import upstream version 0.2.94 (87fb997)
        * 0.2.94 (63807a0) (tag: 0.2.94)
        * releasing version 0.2.93-0ubuntu5~ppa2 (7357145)
        * Fix, let's not talk about it. (fcdd637)
        * Making sure we have a description for the variant world (419c9a4)
        * releasing version 0.2.93-0ubuntu5~ppa1 (b61f621)
        * Upstream Merge   * Adding in support for Accssible Descriptions
          (14fc5ff)
        * Sync with U.Desktop (2c1ee7d)
        * Adding support for accessible descriptions (22dee03)
        * Switching things around so the icon switches with the description
          all the way up the stack (1cfc978)

2011-02-23 Ted Gould

        * Adding a missing brace (ab57d41)

2011-02-21 Ted Gould

        * Make sure to NULL out the structure (c507ab1)

2011-02-19 Ken VanDine

        * releasing version 0.2.93-0ubuntu4 (c893dfd)

2011-02-18 Ted Gould

        * Ensures the accessible description is NULL (f614bf0)

2011-02-17 Ken VanDine

        * releasing version 0.2.93-0ubuntu3 (1fa5506)

2011-02-16 Ted Gould

        * Remove g_error's to stop abortion. (0c56561)
        * On status change update the label as well (14df3d3)

2011-02-11 Ken VanDine

        * releasing version 0.2.93-0ubuntu2 (e3db442)

2011-02-11 Michael Terry

        * don't abort on various unexpected situations; just spit out
          critical warning (fb64a7a)
        * update label too in update_status (d2a8021)

2011-02-11 Luke Yelavich

        * Use the ACCESSIBLE_DESC_UPDATE signal to refresh the accessible
          description. (70d0a4d)

2011-02-08 Luke Yelavich

        * accessible_name -> accessible_desc (a958e07)
        * Merge from trunk (8c46407)

2011-02-07 Ted Gould

        * Build fix to get libindicator header (3cca546)

2011-02-07 Luke Yelavich

        * Add accessible name support (e6a59a7)
        * Include indicator-object.h to reference INDICATOR_OBJECT_SCROLL_UP
          (5568288)

2011-02-03 Ken VanDine

        * releasing version 0.2.93-0ubuntu1 (24664ec)

2011-02-03 Ted Gould

        * releasing version 0.2.93-0ubuntu1~ppa1 (56bc4ef)
        * Dropping old entry (dc643bf)
        * Merge from U. Desktop (2c42caf)
        * New upstream release.   * Support the scroll wheel event and send
          it to applications. (18e5be1)
        * Import upstream version 0.2.93 (cd55d42)
        * 0.2.93 (f780ca4) (tag: 0.2.93)
        * Adding in the indicator-object header (2a36982)
        * Support scroll events from libindicator on down to sending them to
          the applications. (dc47b4e)

2011-01-29 Marco Trevisan (Treviño)

        * Use INDICATOR_OBJECT_SCROLL instead of GDK_SCROLL enum value
          (70bc5ad)
        * Using the SNI method "Scroll" instead of "XAyatanaScrollAction"
          (df3e144)
        * indicator-application: rename the method ApplicationScrollSignal to
          ApplicationScrollEvent (016feb9)

2011-01-27 Ken VanDine

        * releasing version 0.2.92-0ubuntu1 (c3f02be)

2011-01-27 Ted Gould

        * releasing version 0.2.92-0ubuntu1~ppa1 (e08f548)
        * New upstream release.   * Fix naming of the approver interface
          * Fix a bug in the builders (6379235)
        * Import upstream version 0.2.92 (2c6ef4e)
        * Sync to Ubuntu Desktop (94b8617)
        * 0.2.92 (82c80cd) (tag: 0.2.92)

2011-01-26 Ted Gould

        * Fix the use of variant builder (40d7a61)

2011-01-27 Marco Trevisan (Treviño)

        * application-appstore: support for ApplicationScrollSignal method
          (6adb897)
        * indicator-application: catch "scroll-entry" signal and send
          ApplicationScrollSignal to appstore (e6f4e51)

2011-01-26 Ted Gould

        * Protecting against empty application lists, fixing the builder to
          be on the stack and using it correctly. (0bd9ddc)

2011-01-18 Ted Gould

        * Switch to canonical.com (85761bc)

2011-01-17 Ted Gould

        * Changing the name of the approver interface (2e57848)

2011-01-14 Ken VanDine

        * releasing version 0.2.91-0ubuntu2 (7ac8601)
        * Updated for the gir abi transition;  debian/control   - build
          depend on dbusmenu >= 0.3.90   - Fixes FTBFS (LP: #684949)
          (fe9f030)
        * releasing version 0.2.91-0ubuntu1 (81a4a72)
        * Import upstream version 0.2.91 (9dee1e2)
        * Reverted changelog for merge (93ada25)
        * distcheck fixes, use notdir to wrap basename (ada08ac) (tag:
          0.2.91)
        * Version bump, 0.2.91 (d0fa7ae)

2011-01-14 Ted Gould

        * Porting to GDBus and fixing some other misc. issus. (1edb21b)

2011-01-13 Michael Terry

        * merge ken's com.canonical branch (fe8048c)
        * make sure to free pre-validated applications; add applications to
          the app list as soon as we create them, to avoid apps that
          spam us (like gnome-power-manager) from creating multiple
          apps in our list (a3311f4)

2011-01-13 Ken VanDine

        * com.canonical rename for the indicator (7f2ea1f)

2011-01-13 Michael Terry

        * reduce debug spew (3992c95)
        * don't use cached properties for new icons or new aicons either.
          Instead, just ask for all properties again (520b3c3)
        * actually request properties from applications; using cached
          properties doesn't seem to work (6f02e42)
        * don't second guess service's new application, which caused our
          positions to get out of sync with the service if it was a
          bit confused (06e5e14)
        * watch for name change, instead of name owner change for approver
          connections (dcde0f7)

2011-01-12 Michael Terry

        * fix issue where icons never went away (16734d8)
        * fix bug with gvariant string; port test (4b0e072)

2011-01-11 Ken VanDine

        * check for dbusmenu 0.3.90 (1434c5b)

2011-01-11 Michael Terry

        * port to gdbus (af582ad)

2010-12-16 Ken VanDine

        * releasing version 0.2.90-0ubuntu4 (54c9e64)

2010-12-10 Ken VanDine

        * releasing version 0.2.90+r170-0ubuntu1 (bc0f5cc)

2010-12-09 Ken VanDine

        * releasing version 0.2.90-0ubuntu3 (6e9fee7)

2010-12-08 Ted Gould

        * releasing version 0.2.90-0ubuntu4~ppa1 (1f80de2)
        * Upstream Merge   * Removing libappindicator from the tarbal.
          Autogen;  debian/control: Removing all libappindicator
          packages (4b13b78)
        * Sync to trunk (951f22d)
        * Remove the library from the build (6c905a6)
        * releasing version 0.2.90-0ubuntu4~ppa1~nolib1 (961ba26)
        * debian/control: Removing all libappindicator packages (39febd0)
        * Autogen (7df1ae5)
        * Dbusmenu API update (940a2eb)
        * Updating to new dbusmenu, no API changes here (97fcd26)
        * Upstream Merge   * Removing libappindicator from the tarball
          (6e142fb)
        * Updating to trunk with mostly libappindicator changes. (01a3193)
        * Merge from Ubuntu Desktop for dual builds (3acbfb5)

2010-12-08 Ken VanDine

        * debian/control   - build depend on dbusmenu >= 0.3.90 (b917f6f)
        * releasing version 0.2.90-0ubuntu2 (a227646)
        * releasing version 0.2.90-0ubuntu1 (1860f39)
        * New upstream release.   * A race fix on the dbus name (LP:
          #526499)   * Fixing the Watcher Interface   * Fixes to
          build with GTK 2/3   * Fixes to build with valac-0.1.
          debian/control   - Changed the valac build depends to
          valac-0.12;  debian/python-appindicator.install   - Make
          sure python2.6 and python2.7 files get include.
          debian/rules   - Fix builds for multiple python versions
          - disable parallel builds, it breaks the mono binding
          generation (be69a42)

2010-12-07 Ted Gould

        * releasing version 0.2.90-0ubuntu1~ppa1 (c05b64a)
        * New upstream release.   * Fixes to build with GTK 2/3   * Fixes
          to build with valac-0.12 (4478b59)
        * Import upstream version 0.2.90 (a413eba)
        * 0.2.90 (12d94d3) (tag: 0.2.90)
        * Update to newest g-ir-scanner and vapigen (eef3316)

2010-12-03 Ted Gould

        * Merging with trunk to get the GTK 3 build.  Though, we don't really
          use it yet. (fe4253d)
        * Merging in support for GTK3/2 dual build (5ffa185)

2010-12-03 Ken VanDine

        * Build fixes with the latest g-ir-scanner and vapigen (0a09bca)
        * Explicitly call ShowAll on the menu, otherwise it isn't show.
          Specify a panel icon that exists for the example (e7e4604)

2010-12-02 Ted Gould

        * Fixing up the test so it builds and runs (6456a3f)
        * Removing some unneeded files (1a1a2e3)
        * Linking to the install directory of libappindicator for the header
          files (6e2c639)
        * Adding the libappindicator dep for the tests (7c3589d)
        * Dropping the library tests (68fd1cc)
        * Removing the example (caf5eeb)
        * Removing the C files and build (8b85dae)
        * Removing doc and introspection build options (683065b)
        * Remove m4 files and including them in dist (a5eb518)
        * Removing LGPL (14aebb7)
        * Removing bindings (aae875c)
        * Removing docs (3fee20a)
        * Removing library deps, bindings and documentation that are included
          with the lib (938d4e2)
        * Splitting the deps (69ee3a2)

2010-11-01 Ted Gould

        * releasing version 0.2.9-0ubuntu2~ppa2 (15d58f5)
        * Upstream Merge   * A race fix on the dbus name (LP: #526499)
          (ea40161)
        * Sync to trunk (7ab5839)
        * Race fixup (9c008cd)

2010-10-20 Ted Gould

        * releasing version 0.2.9-0ubuntu2~ppa2~race2 (52c2b07)
        * Upstream Merge   * Making a printout (77d4ced)
        * Uhg, we need a message to know if we've fixed the bug. (b176944)

2010-10-19 Ted Gould

        * releasing version 0.2.9-0ubuntu2~ppa2~race1 (7fa4cd4)
        * Upstream Merge   * A race fix on the dbus name (ed10f8d)
        * releasing version 0.2.9-0ubuntu2~ppa1 (5bfdd2a)
        * Upstream Merge   * Fixing the Watcher Interface (f5573ca)
        * Merge with Ubuntu Desktop (597ba2a)
        * Add a nice little warning in (ccea5af)
        * Adding a check for the name to ensure we didn't miss it (3758df5)

2010-10-13 Michael Terry

        * ship both pc files in EXTRA_DIST (e8289f9)

2010-10-08 Ted Gould

        * Fixing the Watcher interface (50440e6)

2010-10-08 Aurelien Gateau

        * NotificationHost => StatusNotifierHost, Service =>
          StatusNotifierItem (ea206ef)
        * Fix implementation of org.kde.StatusNotifierWatcher interface
          (6f032f5)

2010-10-06 Michael Terry

        * instead of always building gtk2 and gtk3, add a --with-gtk= flag to
          configure to specify which to build with (3551eb1)

2010-09-22 Didier Roche

        * releasing version 0.2.9-0ubuntu1 (853fe81)
        * debian/libappindicator0.1-cil.installcligac: Add the 0.1   policy
          file.;  debian/control:   - build with latest
          libindicator-dev for ABI breakage (LP: #637692) (2b4effa)

2010-09-22 Ted Gould

        * releasing version 0.2.9-0ubuntu1~ppa2 (fbedfce)
        * debian/libappindicator0.1-cil.installcligac: Add the 0.1 policy
          file. (d1f389d)
        * Adding a new library line for configure so that we don't end up
          with extra libs in the library. (eab2ebe)
        * releasing version 0.2.9-0ubuntu1~ppa1 (a182b72)
        * New upstream release.   * Fix submenus with Glade applications
          (LP: #608219)   * Add new functions to Mono and Python
          bindings (a374c74)
        * Import upstream version 0.2.9 (f5e7b8e)
        * 0.2.9 (fe08c86) (tag: 0.2.9)

2010-09-21 Ted Gould

        * Fixes for the bindings (7a891ca)

2010-09-21 Sense Egbert Hofstede

        * Resolving conflict when merging with trunk (f8bbae1)
        * Undoing a previous commit that had nothing to do with what I want
          to achive in my merge request. That's what you get for
          misusing old branches\! (e9ed8cb)
        * Created a second policy file to make sure that applications
          depending on 'appindicator-sharp' will not have to be
          recompiled. Changes to the packaging is required to make
          sure the policy file gets installed. (df5dbe2)

2010-09-21 Ted Gould

        * releasing version 0.2.8-0ubuntu2~ppa1 (76442cd)
        * Autogen.sh (dca441b)
        * Upstream Merge   * Fix Mono binding versioning and build (LP:
          #636132) (2491cd3)
        * Merge ubuntu-desktop (50aa305)
        * Fixing Mono bindings to build versions correctly. (1be18c5)

2010-09-20 Sense Egbert Hofstede

        * Remove the redudant set and get functions for the ordering_index
          property from the Mono bindings as we want programmers to
          work witht the property directly. (12d7f82)
        *  * Adding Python bindings for the new API additons  * Updating the
          Mono assembly version to reflect the changes to the API  *
          Remove two redundant elements from the Mono bindings'
          metadata file (3f3c6a0)
        * Merging Jo Shields' fixes to the build infrastructure to shut GAPI
          up. (482276f)

2010-09-19 Jo Shields

        * Bump SONAME in Mono binding to libappindicator.so.1 (316dbc5)
        * The purpose of a dllmap is to turn a DllImport for "foo" into a
          dlopen of "bar". This is most commonly used to make apps
          more cross-platform, by specifying the Windows library
          name (foo.dll) into a Linux/OSX/etc filename
          (libfoo.so.0). (4247b7e)
        * gapi2-parser cannot cope with multiple signals connected to the
          same method - it will bail out, complaining it cannot find
          a method to match the second signal. (b598108)

2010-09-18 Sense Egbert Hofstede

        * Updating to trunk (6c8da9e)
        * Commit latest changes before merging with trunk (e050bfc)

2010-09-15 Ted Gould

        * Adding a disthook for AUTHORS (c2aee8a)

2010-09-15 Ken VanDine

        * releasing version 0.2.8-0ubuntu1 (fee0915)

2010-09-15 Ted Gould

        * releasing version 0.2.8-0ubuntu1~ppa1 (b8eb440)
        *   * Update the icon if the item is visible (LP: #639643);  New
          upstream release.   * Handle double registration of
          indicators (LP: #621838) (db852e8)
        * Import upstream version 0.2.8 (c876d26)
        * 0.2.8 (a4dc11a) (tag: 0.2.8)
        * Merging of Ubuntu Desktop (859281b)
        * releasing version 0.2.7-0ubuntu1~ppa2 (9ee069f)
        * Update the icon if the item is visible (LP: #639643) (fecd2e9)
        * Upstream Merge   * Update the icon if the item is visible
          (7d4feea)
        * Merging trunk (f30ec96)
        * Making it when we see changes we always update the icon. (9485bb3)
        * releasing version 0.2.7-0ubuntu1~ppa2~attention1 (0e5b5b6)
        * Upstream Merge   * Update the icon if the item is visible
          (7ccd345)
        * Allowing updates if the item is visible. (8e221f4)

2010-09-09 Ken VanDine

        * releasing version 0.2.7-0ubuntu1 (d7a7c77)

2010-09-09 Ted Gould

        * releasing version 0.2.7-0ubuntu1~ppa1 (4054bd4)
        * Merge from Ubuntu Desktop (4057700)
        * New upstream release.   * Handle double registration of
          indicators (LP: #621838) (250c2b0)
        * Import upstream version 0.2.7 (b6d9801)
        * 0.2.7 (b39568d) (tag: 0.2.7)
        * Handle double registration of indicators. (1f5808c)

2010-09-07 Ted Gould

        * Check for duplicate additions of applications and just rerequest
          properties. (c560340)
        * Extra debugging info (01ca0dc)
        * Logging status change (d18fdf6)

2010-09-02 Ken VanDine

        * releasing version 0.2.6-0ubuntu1 (5e8e9f5)

2010-08-26 Ted Gould

        * releasing version 0.2.6-0ubuntu1~ppa1 (d3dcecf)
        * Merging from Ubuntu Desktop (6e060fd)
        * New upstream release. (84b7100)
        * Import upstream version 0.2.6 (17e7865)
        * 0.2.6 (7b3e58b) (tag: 0.2.6)

2010-08-25 Ted Gould

        * releasing version 0.2.5-0ubuntu1~ppa2 (166096e)
        * Upstream Merge   * Fixing the position of new indicators (LP:
          #623205)   * Position the ibus and keyboard layout
          indicators correctly. (87c04ea)
        * Ordering i18n and keyboard indicators (c74bade)
        * Putting new icons in the right place (ee3fb93)

2010-08-24 Sense Egbert Hofstede

        * Merging with trunk (c553ba5)

2010-08-20 Ted Gould

        * Get the proper position for an application when it becomes visible.
          (81de048)
        * Handling the typo (35924b4)
        * Adding keyboard and ibus to overrides (d74f776)

2010-08-19 Ken VanDine

        * releasing version 0.2.5-0ubuntu1 (6e18a72)

2010-08-19 Ted Gould

        * releasing version 0.2.5-0ubuntu1~ppa1 (618737a)
        * New upstream release.   * Allowing approvers to change thier mind
          (f71709a)
        * Import upstream version 0.2.5 (101c8ff)
        * 0.2.5 (b51c1de) (tag: 0.2.5)
        * Fix approver for function change (ced1792)
        * releasing version 0.2.4-0ubuntu2~ppa3 (80345b2)
        * Upstream Merge   * Allowing approvers to change thier mind
          (1c12616)
        * releasing version 0.2.4-0ubuntu2~ppa2 (1051775)
        * Adding a signal for approvers to be able to change their mind
          (0ed6b99)
        * Merging Ubuntu Desktop (18cbc6a)
        * Upstream Merge   * Making it so the approver actually approves
          indicators   * Fixing a small memory leak (6881133)
        * Sync to trunk (425894a)
        * Changing the state machine to have approvers actually aprove
          things. (e930a47)
        * Fixing a memory leak Cody noticed. (fbb9323)

2010-08-18 Ted Gould

        * Flesh out the revise judgement handler to update the list of
          approvers. (9fc60ae)
        * Refactor so that there is a function to look for applications.
          (1865cf3)
        * Connecting into the signal coming from the approver (ca21363)
        * Adding a signal to the approver interface (12c8cd4)
        * Changing function name as well. (a1e4f99)
        * XAyatana the register interface (1d51365)
        * Start some approvin' (e71beec)

2010-08-16 Ted Gould

        * releasing version 0.2.4-0ubuntu2~ppa1~approver3 (82c8332)
        * Upstream Merge   * Fixing approvers retiring off the bus
          (f1a43bb)
        * Commenting out debug message (72c93f2)
        * Making it so that we don't set the proxy to null right away.
          (fb1811e)
        * Making the list so that if there are errors we handle them well.
          (93f92e8)

2010-08-13 Ted Gould

        * releasing version 0.2.4-0ubuntu2~ppa1~approver2 (c712bf0)
        *   * Making it so the approver actually approves indicators;  New
          upstream release.   * Add in ordering IDs   * Adding label
          support into the library   * Adding label support into the
          indicator   * Breaking the ABI in order to get more space
          in the class     structure.   * Allow the icon theme path
          to be changed dynamically (LP: #607831);  debian/control:
          Moving libappindicator0 to libappindicator.
          debian/rules: Moving libappindicator0 to libappindicator1
          * Rebuild with the new gobject introspection (61fbb6f)
        * Upstream Merge   * Updating to trunk   * Fixing application list
          (45fc7d9)
        * Making sure to remove our applications from the list as well.
          (ba5b85a)
        * Responding to approver errors like they're approval. (a0023d1)
        * Uhg, broken merge. (c04a7cf)
        * Updating to trunk (564b2af)
        * Freeing the allocated keys. (eadc69d)

2010-08-12 Ken VanDine

        * releasing version 0.2.4-0ubuntu1 (2840a6f)

2010-08-12 Ted Gould

        * releasing version 0.2.4-0ubuntu1~ppa1 (2368f53)
        * New upstream release.   * Adding label support into the library
          * Adding label support into the indicator   * Allow the
          icon theme path to be changed dynamically (LP: #607831.
          Rebuild with the new gobject introspection (468ac3c)
        * Import upstream version 0.2.4 (0d7fd31)
        * 0.2.4 (d81670c) (tag: 0.2.4)
        * Merging in Ubuntu Desktop branch (47aa858)
        * releasing version 0.2.3-0ubuntu2~ppa6 (92aca3c)
        * Upstream Merge   * Add in ordering IDs (374ce0d)
        * Sync to trunk (6769e30)
        * Switching to using ordering IDs instead of the LRU file. (f6b5ccd)

2010-08-11 Ted Gould

        * releasing version 0.2.3-0ubuntu2~ppa6~approver1 (91c8163)
        * Upstream Merge   * Making it so the approver actually approves
          indicators (081c349)
        * Changing it so that the list of applications has all the
          applications in it, independent of visible state.
          (7a4bfc9)
        * Making sure to only list the visible applications. (98252b2)
        * Switching the get_position() function to look at the visibility of
          the applications. (fa45eaa)
        * Handle the proxy being destroyed, and cleaning up the approver.
          (d722653)
        * Simplifying the visual state to just be shown/hidden while letting
          the status show which icon is shown. (360e8a4)
        * Switching a few status checks to look at the visible state
          (0db4eb5)
        * Make it so that an approver that gets free'd gets removed from the
          applications list of approval. (4398a69)
        * Moving some TODOs (ba69049)
        * Changing the apply_status function to be less about applying the
          status and more about trying to apply a visual state that
          can be determined by things like approvers.  This means
          that it doesn't get passed the status. (b7419c3)
        * Making sure to clean up the approved by list (ddd8746)
        * Adding a visible state entry to the application structure (a635d68)
        * Managing the list with the approver returns. (fbdf4bf)
        * Changing to a list, we're going to need to track who so when they
          disconnect we can know the state change. (e8b76a6)
        * Adding a count for the number of approvers that have approved the
          application. (efd7be1)
        * Merging in the XLabel branch to handle conflicts. (b7d28a1)
        * releasing version 0.2.3-0ubuntu2~ppa5~order5 (c1b795e)
        * Upstream Merge   * Various fixes to the ordering index
          calculation   * Putting ordering indexes in the X
          namespace (1486db2)
        * Fighting wrap around (f34b5e5)
        * Better debug printing. (d678c35)
        * Using unsigned chars for calculating, we want no sign extension.
          (cfe735b)
        * We were using the wrong function, we want categories not statuses!
          (a0c8fb0)
        * Making a wrapper property for the 'X' domain (9346cf3)
        * Adding the wrapper properties to the get. (7330f01)
        * Adding in a wrapper signal (1fbc480)
        * Adding a set of wrapper properties that can be used by the dbus
          interface. (ea682be)
        * Changing the app store (2a0f0b9)
        * Changing the Dbus interface. (16cdfbc)
        * Putting the ordering index into the 'x' domain. (818f7c4)
        * Making it so that applications will pass '0' over dbus if they
          don't have a set ordering index. (7301841)
        * releasing version 0.2.3-0ubuntu2~ppa5~order4 (bd56ec8)
        * Upstream Merge   * Cleaning up the ID creation and ordering to
          put low numbers to     the right. (68b7423)
        * Ignoring the generate id library object file. (0dd2e79)
        * Instead of using a struct just using multiply, which in all
          reality, is more clear and the compiler will optimize it
          for us. (8bfbd55)
        * Making the categories a case statement. (38c7a01)
        * Switching to be more opaque, but also more sane. (26d50df)
        * Flipping the order (fd956d9)
        * releasing version 0.2.3-0ubuntu2~ppa5 (15f7dee)
        * Autogen (5d6feac)
        * releasing version 0.2.3-0ubuntu2~ppa5~order3 (5dcb1d4)
        * Upstream Merge   * Checking to make sure we get a list of keys
          before using     them.   * Fixing typo for group name in
          overrides file. (3e415d5)
        * Typo (77343b7)
        * releasing version 0.2.3-0ubuntu2~ppa5~order2 (bceb5ac)
        * debian/indicator-application.install: Adding in the
          ordering-override file to this package. (d47d1f1)
        * Ensuring that we got a list of keys so we don't crash (bdd9c85)

2010-08-11 Sebastien Bacher

        * releasing version 0.2.3-0ubuntu2 (77beaba)

2010-08-10 Ted Gould

        * Autogen (3d26f16)
        * Upstream Merge   * Adding in override files for the ordering IDs
          (21fcf7a)
        * Checking for an override and applying it. (51de4ce)
        * Fleshing out the loading overrides function. (de6c40d)
        * Putting together the pieces to look for override files (f4b22a7)
        * Adding an override hash table (dad491a)
        * Installing the override file in the package specific data
          directory. (73fb38c)
        * Adding in an override keyfile (6c0afe2)
        * releasing version 0.2.3-0ubuntu2~ppa5~order1 (1c31b31)
        * Doc fixes (3a5a1f6)
        * Autogen (e85c5b2)
        * Fixing documentation with new API. (79436bd)
        * Upstream Merge   * Add in ordering IDs (3b61df4)
        * Updating to trunk (a34479e)
        * Removing the LRU file object. (d2c36a2)
        * Removing the LRU file (bf3f4c6)
        * Pulling in the generate ID function as well (961575a)
        * Setting the ordering ID. (c27a7a9)
        * Adding in an ordering index for application structures (09e6c21)
        * I like 'index' better than 'id' -- now everything is consistent.
          (06c0194)
        * Adding 'OrderingIndex' and realigning. (1cac2ea)
        * Providing accessors for the ordering_id property (f04dd09)
        * Storing the value and allowing the get to use a generated value.
          (220d6a3)
        * Uhg, wrong library (4a52e90)
        * Brining generate-id into the fold (5bffdaf)
        * Writing a small little function to generate the ID. (bd2b24f)
        * Adding the ordering id property. (fe604c4)
        * releasing version 0.2.3-0ubuntu2~ppa4 (e4484ff)
        * debian/rules: Moving libappindicator0 to libappindicator1 (352c666)
        * debian/control: Moving libappindicator0 to libappindicator1
          (294f162)
        * Upstream Merge   * Breaking the ABI in order to get more space in
          the class     structure. (e2305c3)
        * releasing version 0.2.3-0ubuntu2~ppa3 (2fd1a6b)
        * Breaking the ABI so we have more space in the class structure
          (d7c7a2a)
        * Upstream Merge   * Adding label support into the library   *
          Adding label support into the indicator;  Autogen *
          Upstream Merge   * Fixing the check of the function
          signature (29311fb)
        * Sync to trunk (0e21b91)
        * Adding label support into the indicator (87bd896)
        * Adding label support into the library. (398dce8)

2010-08-09 Ted Gould

        * Adding the Ordering Index property (c43dd8f)
        * Start with the ABI break. (afac3d9)

2010-08-05 Ted Gould

        * Changing the size of the class structure, the reason for the break.
          (8918685)
        * Incrementing the major version number (18628e9)
        * Adding label support (649c799)
        * releasing version 0.2.3-0ubuntu2~ppa1~label7 (4e4e053)
        * Updating to trunk (79896b0)
        * Bringing in indicator stuff (1ba6811)
        * Syncing with trunk and resolving conflicts (c4045e9)
        * Fixing merge (d377c94)
        * Updating to trunk and resolve conflicts (b1daa47)
        * releasing version 0.2.3-0ubuntu2~ppa1 (9e24b87)
        * Upstream Merge   * Allow the icon theme path to be changed
          dynamically (LP: #607831) (e4c14f7)
        * Support dynamically changing the icon theme path. (9291697)
        * releasing version 0.2.3-0ubuntu2~ppa1~label6 (8ceb58c)
        * Upstream Merge   * Adding a helper update of the icon when
          rebuilding (141558f)
        * Updating with helper when rebuilding. (c1aaada)
        * Tracking the long name along with the application entry. (225167d)
        * Check for suffix when updating icon as well! (593c6b8)
        * releasing version 0.2.3-0ubuntu2~ppa1~label5 (085b99e)
        * Add the ability to toggle the label (83aa68f)
        * Upstream Merge   * Handle label updating and use the guide to
          guess the size. (7f91215)
        * Adding the ability to toggle the label on and off (23e9b56)
        * Showing and hiding the entries with removal. (54c6103)
        * Reshuffling the signaling and making sure to ref the label.
          (b17e625)
        * Not really sure what this TODO meant, so I'm removing it. (38074f5)
        * Some slight refactoring and comments along with the ability to
          remove the entries and recreate them. (08a2c88)
        * Building a label in the case that we don't have one already.
          (a644617)

2010-08-05 Sense Egbert Hofstede

        * Partial, segfaulting, fix for LP: #608219, requires GTK+ change
          attached to same bug report. (1a0c666)

2010-08-05 Ted Gould

        * Adding updating the guide and label size to the label update signal
          (62a5f41)
        * Storing the guide and using it to bound the size of the label.
          (9c46c11)

2010-08-05 Sense Egbert Hofstede

        * Passing the updated icon theme path along with the DBus signal,
          saving a DBus call. (247e5a1)

2010-08-05 Ted Gould

        * releasing version 0.2.3-0ubuntu2~ppa1~label4 (3a3ea03)
        * Upstream Merge   * Fixing the prototype of the added signal
          (0450275)
        * Changing the prototype of the added function. (fff357c)

2010-08-04 Ted Gould

        * releasing version 0.2.3-0ubuntu2~ppa1~label3 (e4dd5ca)
        * Fixing the signal prototype (05be20a)
        * Upstream Merge   * Making the test program count to 100 (77b2b6f)
        * Make sure we get to 100 (1f04ea2)
        * Fixing the prototype for the label changed signal. (208fc00)
        * releasing version 0.2.3-0ubuntu2~ppa1~label2 (1e7513c)
        * Upstream Merge   * Fixing the check of the function signature
          (2ffcd74)
        * Fix the check for the updated function signature. (b83a74c)
        * releasing version 0.2.3-0ubuntu2~ppa1~label1 (1baa860)
        * Adding label support into the indicator (be5cab0)
        * Upstream Merge   * Adding label support into the library
          (6eeaa49)
        * Setting the label in the simple client (f2b8083)
        * If it changes, let's update. (c25bb3c)
        * If we get passed a label let's make a GTK one for fun. (91c8b42)
        * Connecting to the application signal for new label and handling it
          appropriately. (83f5634)
        * Cast once, be happy (04fd119)
        * Sending the label and the guide over dbus if we have them.
          (788b0db)
        * Start tracking the label and the label guide allong with the other
          application properties. (0d11bf6)
        * Whitespace fix (ff9b7b4)
        * Adding in a base signal handler for the label change (d06c102)
        * Adding signal for label changing. (4dea77d)
        * Adding the new entries to the list of the get_apps function.
          (e33d50b)
        * Updating signal emition to match new API (d58186a)
        * Changing prototypes to match DBus API change. (1f1bb2c)
        * Adding labels to the service interface (faf2859)
        * Adding defines for the new properties and signal. (4189a76)
        * Merging in the API changes (8b0b19a)

2010-08-03 Ted Gould

        * More signalling tests. (43e185e)
        * Setting up a basic signals test (6882b4c)
        * Stupid reverse logic in the string comparison. (2925384)
        * Turning null strings into NULLs (f721168)
        * Adding a test to set the label and guides a bunch. (a2e95f1)
        * Signaling when the labels change in the idle loop (52bfc9d)
        * Putting the new define into the docs (0422fcb)
        * Reusing the application service marshallers, not beautiful, but it
          works for now. (84821ec)
        * Adding in a signal to tell when the label is updated. (fc9d5d4)
        * Adding the label funcs to the documentation. (e0f472f)
        * Adding in the convience wrappers (706a72b)
        * Adding the label and guide fields to the private struct and tying
          that into the properties. (e541156)
        * Setting up the label and lable guide properties. (44e84ed)
        * Adding a property to guide the size of the label (89a5ffe)
        * These have needed to be ignored for a while. (6de3d6f)
        * This shouldn't be in Bazaar (9f0e3c6)
        * Adding the label property and a signal for it changing. (456347a)

2010-07-22 Sense Hofstede

        * Fixed two G_PARAM_SPECS and made it even more possible to remove
          the custom icon theme path. (0a8c09e)
        * Fix wrong naming that caused the signal to be missed (0dbf34a)
        * Clean-up and renaming variables and functions everywhere to use
          icon_theme_path for the sake of consistency. (0bbee36)

2010-07-22 C10uD

        * forgot some files (3fb0e11)
        * trying to implement runtime theme-path changing (4780617)

2010-07-15 Ted Gould

        * Updating to Ubuntu Desktop (3f326bd)

2010-07-15 Ken VanDine

        * releasing version 0.2.3-0ubuntu1 (38feb55)

2010-07-15 Ted Gould

        * releasing version 0.2.3-0ubuntu1~ppa1 (8faa8b6)
        * New upstream release. (a32741d)
        * Import upstream version 0.2.3 (863cd1c)
        * 0.2.3 (17dea09) (tag: 0.2.3)

2010-07-13 Ted Gould

        * releasing version 0.2.2-0ubuntu2~ppa2 (76c177b)
        * Autogen update (c95f517)
        * Merge upstream   * Fixing test for slower machines (35cad52)
        * Adjusting the tests so they can deal with slow systems better.
          (37d583e)

2010-07-12 Ted Gould

        * Ignoring the tester script (e1dc7c0)
        * Add a fail timeout so this test can't block. (930a79a)
        * Adding in setting the environment variable to adjust the timeout to
          be twice as long for slow systems. (8a0649a)
        * releasing version 0.2.2-0ubuntu2~ppa1 (0de45ad)
        * Autogen update (791daf2)
        * Merge upstream   * Adding an Approver API to remove things from
          the AppIndicators. (e273b81)
        * Putting in a basic approver API. (7ef1834)

2010-07-09 Ted Gould

        * Need the built headers too (25b69bb)
        * Oops, with a menu we're all GTK now. (1b89529)
        * Building up to a formal test (3c43fed)
        * Filling out the approve function. (12c8596)
        * Filling out the approver prototype (0bf54f5)
        * Building an application indicator too! (d7c39d7)
        * Making the registration async to clean things up, and async is
          better anyway. (ed8163b)
        * Some more error handling and better debug messages. (5b41b1e)
        * Helpful debug info (018bf0e)
        * Okay, so now we're detecing when the watcher comes up, and
          registering ourselves as the approver. (fd3e18e)
        * Adding a new sample approver (8072a97)
        * When we have new apps we can ask the approver about them. (306a78b)
        * Looking at all the applications when we get a new approver.
          (b3a0f3e)
        * Building the approver structure and putting it in the list.
          (a281700)
        * Comments (4f7e748)
        * Adding some structures for approvers and making them real.
          (93572f1)
        * For DBus to real objects, the signal shall travel. (2986445)
        * Adding a function to bring in approvers (d7c7324)
        * Sync to trunk (fb4da4a)

2010-07-08 Ted Gould

        * Sync to Ubuntu Desktop branch (4e2c23b)
        * Use a private pointer instead of a lookup. (1ddd622)

2010-07-08 Sense Hofstede

        * Removed all but one calls to the
          APPLICATION_SERVICE_APPSTORE_GET_PRIVATE() macro (925e3d8)

2010-07-08 Sebastien Bacher

        * releasing version 0.2.2-0ubuntu1 (22da24c)

2010-07-08 Ted Gould

        * releasing version 0.2.2-0ubuntu1~ppa1 (8ce01c5)
        * New upstream release. ∘ Work with updated container signal names
          (2a931ef)
        * Import upstream version 0.2.2 (44880df)
        * 0.2.2 (a627c07) (tag: 0.2.2)

2010-07-07 Ted Gould

        * Merging this branch, but I think it's fixes must have gone in with
          another. (cf31f2f)
        * Working with the better container signals (eed6cf0)

2010-07-06 Ted Gould

        * Updating to Ubuntu Desktop (033b032)

2010-07-01 Ted Gould

        * Return a boolean (a8aac3a)

2010-06-25 Ted Gould

        * Adding in a template function to register approvers. (6cf35d7)
        * Adding a function to register an approver. (4c9f434)
        * Adding an approver interface. (a46a27a)

2010-06-22 Didier Roche

        * releasing version 0.2.1-0ubuntu1 (711cb0b)

2010-06-21 Ken VanDine

        * New upstream release.   * Fix icon updating (LP: #594199)   *
          Change Mono bindings to only parse particular files (LP:
          #592706)   * Make a policy for migrating the mono bindings
            * Test fixes to make them more reliabl.
          debian/control: Fixing version numbers;  debian/control:
          Making the 0.1-cil replace and provide the 0.0-ci.
          debian/libappindicator0.1-cil.installcligac: Add the
          policy.dll   file to the install.;  Upstream release 0.0.2
            * Updates API to use GTK instead of dbusmenu to make it
             easier for upstream developers to use. (90a5410)

2010-06-21 Ted Gould

        * releasing version 0.2.1-0ubuntu1~ppa1 (61a4f68)
        * Making some files match upstream relases that don't. (1c6a483)
        * New upstream release.   * Fix icon updating (LP: #594199)   *
          Change Mono bindings to only parse particular files (LP:
          #592706)   * Make a policy for migrating the mono bindings
            * Test fixes to make them more reliable (0ac50a3)
        * Import upstream version 0.2.1 (3439224)
        * 0.2.1 (20f0c1d) (tag: 0.2.1)
        * Fixing versions of concflicts. (458ad9a)
        * Fixing policy version numbers. (a4976d3)

2010-06-21 Ken VanDine

        * Don't conflict with libappindicator0.0-cil, just replace and
          provide (db008b0)
        * Use full assembly version for the policy file (ac400f7)
        * Specify versions for Replaces/Conflicts for libappindicator0.0-cil
          (e48a4c7)

2010-06-21 Ted Gould

        * releasing version 0.2.0-0ubuntu4~ppa6 (55e7722)

2010-06-19 Michael Terry

        * use gtk3 versions of dbusmenu and indicator; use appindicator3 0.1
          rather than appindicator 3.1 (60abdc2)
        * first pass at gtk3 version of libappindicator (e1f36a8)

2010-06-18 Ted Gould

        * Conflicts as well (bec7e4e)
        * debian/control: Making the 0.1-cil replace and provide the 0.0-cil
          (591b407)
        * debian/control: Fixing version numbers (d2a540c)
        * releasing version 0.2.0-0ubuntu4~ppa5 (b741fd3)
        * debian/libappindicator0.1-cil.installcligac: Changing version
          policy applies to. (b1f6a47)
        * Autogen (fe4f2d9)
        * Upstream merge   * Changing the policy to be for 0.0 (7eac5d7)
        * Setting the policy version. (9745469)
        * releasing version 0.2.0-0ubuntu4~ppa4 (955c737)
        * debian/libappindicator0.1-cil.installcligac: Add the policy.dll
          file to the install.;  Autogen (570ea94)
        * Upstream merge   * Make a policy for migrating the mono bindings
          (6bee066)
        * Fix mono versioning. (f9a13d5)
        * Cleaning up file name definitions (787b920)
        * Adding the policy config to the installed files. (f23786e)
        * Switching to the policy name. (c5c2670)
        * Swithcing the version to be the assembly version. (64a712f)
        * Fixup the gacutil stuff.  Still doesn't ununinstall. (c012b2a)
        * Fixing policy name (f8f18e9)
        * Replacing the macros with the proper data (35915da)
        * Forgot to merge in packaging branch.  Linking now. (16680b1)
        * releasing version 0.2.0-0ubuntu4~ppa3 (b076c2b)
        * Adding bug number (910aa3a)
        * Upstream merge   * Fix icon updating (LP: #594199) (4eb17f9)
        * Make icon switching work again. (87d82b8)
        * Fixing the distcheck by cleaning up (e434b93)
        * Readjusting so that the policy file is in the same directory as the
          DLL (c0f6417)
        * Fixing directories (5ea2df7)
        * Typo (814bed1)
        * Generating a policy dll (f399d89)
        * releasing version 0.2.0-0ubuntu4~ppa2 (ceac804)
        * Upstream Merge   * Change Mono bindings to only parse particular
          files;  Autogen.  For fun and profit.;  Upstream release
          0.0.2   * Updates API to use GTK instead of dbusmenu to
          make it     easier for upstream developers to use.
          (4b33012)
        * Sync to trunk (0299891)
        * Fix mono bindings by restricting gapi2-parser (250a731)
        * Remove the assert with checking if the value is NULL. (d4f5fa7)

2010-06-17 Ted Gould

        * releasing version 0.2.0-0ubuntu4~ppa2~icons3 (782f9e5)
        * Upstream merge   * Using class_ref and unref to allocate the type
          if need be (985eb70)
        * Use class ref and unref to allocate it if need be. (ce25d4c)
        * releasing version 0.2.0-0ubuntu4~ppa2~icons2 (c204273)
        * Upstream Merge   * Fixing the enum lookup from nick (28a5a2e)
        * Reworking to make more clear and use the GEnumValue structure
          correctly. (e589eca)
        * releasing version 0.2.0-0ubuntu4~ppa2~icons1 (6ee70d2)
        * Upstream Merge   * Making it so that icons can be changed at any
          time. (81e0ff2)
        * releasing version 0.2.0-0ubuntu4~ppa1 (9119e00)
        * Upstream Merge   * Test fixes to make them more reliable
          (c4314c8)
        * Icon name shouldn't be construct only. (fc6b18b)
        * Linking Bug (a835081)
        * releasing version 0.2.0-0ubuntu4~ppa1~monofix2 (9a0770c)
        * Autogen.  For fun and profit. (b6e10ee)
        * releasing version 0.2.0-0ubuntu4~ppa1~monofix1 (b62203f)
        * Upstream Merge   * Change Mono bindings to only parse particular
          files   * Test fixes for Hudson builds (dc1a9ec)
        * Only work with specific files instead of the whole directory.
          (750406e)
        * Sync to Ubuntu desktop (53d1e55)

2010-06-14 Ken VanDine

        * renamed cil binary to libappindicator0.1 to match the assembly
          version (LP: #592706) (c6734d2)

2010-06-11 Ted Gould

        * Changing signal names and getting the ones on the base menu as
          well. (95c7907)
        * Changing the signal names (34a4af9)
        * More time for initial fallback. (cdb0efc)
        * Increase the timeouts, but make it so that the watcher shutsdown
          when seen. (6eedd6e)
        * Increasing timeout to hopefully make it work on Hudson with load.
          (259c519)

2010-06-11 Ken VanDine

        * renamed cil binary to libappindicator0.1 to match the assembly
          version (0eb105d)

2010-06-08 Sebastien Bacher

        * releasing version 0.2.0-0ubuntu2 (52ebd17)

2010-06-07 Sebastien Bacher

        * releasing version 0.2.0-0ubuntu1 (0fb6915)

2010-06-04 Ken VanDine

        * New upstream release.   * Unref the child that was created   *
          Build GIR and VAPI files (LP: #510610)   * Fixes to
          documentation and enum construction   * Fix distcheck   *
          Merging patch to add assembly information to Mono
          binding (LP: #547195);  debian/control: Add GObject
          Introspection and Vala build   dependencies.;  Added
          debian/gir1.0-libappindicator-0.1.install and modified
          debian/control and debian/libappindicator-dev.install to
          handle   the VAPI and GI files.
          debian/libappindicator0.0-cil.install: Fixing directory of
          cli files (83ea782)

2010-06-03 Ted Gould

        * releasing version 0.2.0-0ubuntu1~ppa1 (ebc5cbf)
        * Fixing control file (5ffc5c9)
        * Fixing typo (d5f07a0)
        * debian/libappindicator0-cli.install: Fixing directory of cli files
          (fa7673f)
        * Fixing so files that got lost. (ec772ab)
        * Getting some files back... where did they go. (d7f06e7)
        * Added debian/gir1.0-libappindicator-0.1.install and modified
          debian/control and debian/libappindicator-dev.install to
          handle the VAPI and GI files. (ead73d0)
        * Build GIR and VAPI files (LP: #510610) (da48072)
        * debian/control: Add GObject Introspection and Vala build
          dependencies. (f50f08a)
        * New upstream release.   * Build GIR and VAPI files   * Fixes to
          documentation and enum construction   * Fix distcheck
          (614e30a)
        * Import upstream version 0.2.0 (0f7ba97)
        * Changing revision for merge-upstream (d3216b9)
        * 0.2.0 (27fe45b) (tag: 0.2.0)

2010-06-01 Ted Gould

        * Distcheck fixes (3651994)
        * Merging in trunk (1b748b2)
        * Fixes to docuementation and making the enums build correctly with
          gtk-mkenum (e0ddc2d)

2010-05-23 Sense Hofstede

        * Documentation and introspection fixes and such (01fafa4)

2010-05-20 Ted Gould

        * Sync to trunk to ensure no conflicts. (0e3c221)
        * Merging in the 0.1 series branch (ef11b71)
        * Merging in updates from the 0.1 series branch (f7fd52b)
        * releasing version 0.0.21-0ubuntu1~ppa1 (7cb5463)
        * New upstream release.   * Adding AssemblyInfo.cs for building
          (144908d)
        * Import upstream version 0.0.21 (84e75c6)
        * releasing version 0.0.20-0ubuntu1~ppa1 (2cbdb9f)
        * 0.0.21 (6fcbfe5) (tag: 0.0.21)
        * Build fix to include the AssemblyInfo.cs file (38c5c10)
        * Forgot to drop the patch (d16ae42)
        * New upstream release.   * Unref the child when created in
          libappindicator (LP: #569273)   * Merging patch to add
          assembly information to Mono     binding (LP: #547195.
          Remove child-leakage.patch as merged upstream (086d22c)
        * Import upstream version 0.0.20 (9b028d9)
        * Desktop sync (bdec505)
        * 0.0.20 (cd4c6e0) (tag: 0.0.20)
        * Only grab the app indicator files. (20a976b)
        * Ignoring the lru file header (29a3d02)
        * Fixing which sources are marked as BUILT (6efcf99)
        * Bringing along the AssemblyInfo.cs file and fixing its path
          (9366eb0)
        * Okay, now everyone is in the right directory, I think. (a403884)
        * Need to look for things in the source directory too! (a106e8d)
        * Fix C includes fro teh VAPI/GIR files (8f8efd3)
        * Adding GIR/VAPI support and flattening directories (e09b459)
        * releasing version 0.2.0~dev-0ubuntu1~ppa2 (3c5b3e5)
        * Upstream Merge   * Unref the child that was created (6a47d48)
        * Woot, trunked (80633ae)
        * Stopping the leakage of children. (ea79d7f)
        * Fixing the ref leakage of a child object. (22423f9)

2010-05-20 Sebastien Bacher

        * releasing version 0.0.19-0ubuntu5 (3096e10)

2010-05-20 Ken VanDine

        * debian/patches/child-leakage.patch   - Fixes a memory leak (LP:
          #569273) (1e43a91)

2010-05-19 Ted Gould

        * releasing version 0.2.0~dev-0ubuntu1~ppa2~childleak1 (f777fc6)
        * Upstream Merge   * Unref the child that was created (8620702)
        * releasing version 0.2.0~dev-0ubuntu1~ppa1 (6293246)
        * Upstream Merge   * kicking off new branch (0f690c2)
        * Dummy commit (d469436)
        * Changing it so the object gets unref'd (8566afc)

2010-04-29 Ted Gould

        * Ignoring built VAPI file (0b09164)
        * Now, build us a VAPI! (fae0a61)
        * Fixing the ignore list. (f5c58a8)
        * Building the GIR file (3ef5fec)
        * Removing the libappindicator directory to make things simpler
          (ba1fd39)
        * Add introspection stuff here (0bd103a)

2010-04-28 Ted Gould

        * Adding the introspection.m4 for our new rules (27490e3)
        * Adding introspection and VAPI checks (3dc48c0)

2010-04-21 Sebastien Bacher

        * releasing version 0.0.19-0ubuntu4 (86518f0)

2010-04-16 Ted Gould

        * Patch for package names (04a9942)
        * Sync to desktop (b53899d)

2010-04-14 Sebastien Bacher

        * releasing version 0.0.19-0ubuntu3 (4f93e61)

2010-04-14 Ted Gould

        * Sync to Ubuntu Desktop (d15e362)
        * Merging patch to add assembly information to Mono binding (LP:
          #547195) (1d8e044)
        * Adding assembly info for Mono bindings (2c90c6c)

2010-04-14 Cody Russell

        * Add AssemblyInfo.cs to the Mono bindings. (6b3689e)

2010-04-14 Sebastien Bacher

        * releasing version 0.0.19-0ubuntu2 (73b7491)

2010-04-14 Ted Gould

        * debian/control:   + Set libappindicator0-cil and
          libappindicator-cil-dev to Arch: all   + Make
          libappindicator0-cil depend on libappindicator0 >=
          ${source:Version}     instead;  debian/rules:   + Fix
          ordering of dh_*cli* (LP: #560095.
          debian/libappindicator0-cil.install,
          debian/libappindicator0-cil.installcligac:   + Fix CLI
          policy breakage:     - Wrong installation paths for GAC'd
          CLI libraries     - Direct installation of GAC'd libraries
          (d38c39a)
        * Sync to desktop (abb09f2)

2010-04-13 Neil Jagdish Patel

        * Add G_LOG_DOMAIN support to the various targets for better messages
          (7210a54)

2010-04-01 Sebastien Bacher

        * releasing version 0.0.19-0ubuntu1 (40b74a1)

2010-04-01 Ted Gould

        * releasing version 0.0.19-0ubuntu1~ppa1 (734b874)
        * New upstream release.   * Don't set the fallback timer if we're
          already in a fallback     mode to avoid unfalling back
          excessively. (LP: #529052)   * Fix distcheck of
          documentation (45e7b47)
        * Import upstream version 0.0.19 (d005a22)
        * Disable merge mode (70600e1)
        * 0.0.19 (1fbc5af) (tag: 0.0.19)
        * Fixing documentation distcheck (2ee85c2)
        * Moving field documentation into a different comment block so that
          they're private (ba28468)
        * Making it so the timer doesn't get set if we're already in the
          fallback case. (ff63763)
        * Catch up to trunk (bf2c8f1)
        * Don't store the panel suffix, just add it for the fallback icons.
          (5055af8)
        * Adding in documentation for the private structure. (14aebe4)
        * Make it so that we don't store the panel-suffix icons but we do use
          them with the status icon. (5aa064c)
        * No timer if we're already in fallback. (d6bb68c)

2010-03-30 Ted Gould

        * releasing version 0.0.18-0ubuntu2~ppa1 (4ed0753)
        * Upstream Merge   * Setup the icons to use the -panel variants
          even when falling     back to status icons.  (LP: #547072)
            * Change python bindings to use _with_path so that they
          can set     the icon path.  (LP: #527061) (8ca677a)
        * Updating to Ubuntu Desktop (2d7ae83)
        * Merging fix to make it so that python apps can set an icon path.
          (d3026a2)

2010-03-30 C10uD

        * Patch 001 from bug 527061 (4bbf4c0)

2010-03-30 Sebastien Bacher

        * releasing version 0.0.18-0ubuntu1 (fd1ec3c) (tag: 0.0.18-0ubuntu1)

2010-03-29 Ken VanDine

        * Upstream Release 0.0.18   * Change when there are updates to
          Check and Radio buttons via     their actions.  (LP:
          #542221)   * Fixing icon updating with themes and naming
          fallbacks with     the status icon fallback.  (LP:
          #532858) (64eef1a)

2010-03-29 Ted Gould

        * Tracking the icon name and included the panel suffix for fallback
          usage. (9fddbf6)

2010-03-25 Krzysztof Klimonda

        * use gchar instead of for the clarity (1d03452)
        * Make app_indicator_set_property also set the suffixed icon_name.
          (5bf0d10)
        * Make GtkStatusIcon use icons with the panel suffix if available.
          (64c0273)

2010-03-25 Ted Gould

        * releasing version 0.0.18-0ubuntu1~ppa1 (dd8d40d)
        * Upstream Release 0.0.18   * Change when there are updates to
          Check and Radio buttons via     their actions.  (LP:
          #542221)   * Fixing icon updating with themes and naming
          fallbacks with     the status icon fallback.  (LP:
          #532858) (5483c83)
        * 0.0.18 (9919c5e) (tag: 0.0.18)
        * Fixing tests to use GTK for icon theme fixes. (b4e1960)
        * Fixing icon changing with fallbacks. (275909f)

2010-03-25 Krzysztof Klimonda

        * remove g_object_ref_sink call from status_icon_changes (26a1f26)

2010-03-23 Ted Gould

        * Update to track toggle changes in actions. (105b2a0)

2010-03-22 Krzysztof Klimonda

        * Use app_indicator_get_icon/app_indicator_get_attention_icon methods
          to get the right icon. (85400dc)
        * Move g_signal_connect for the theme-changed signal to
          app_indicator_init () (c80fe4d)
        * don't use indicator_image_helper () (16a9a73)

2010-03-20 Krzysztof Klimonda

        * Fix the missing icon on theme change if old icon has different name
          (b531c56)

2010-03-19 Sense Hofstede

        * Make sure the state of GtkCheckMenuItems and GtkRadioMenuItems gets
          updated even when they're changed via their actions.
          (c18de95)

2010-03-18 Sebastien Bacher

        * releasing version 0.0.17-0ubuntu1 (05da30c) (tag: 0.0.17-0ubuntu1)

2010-03-18 Ken VanDine

        * Upstream Release 0.0.17   * Support GTK's show menu items
          property (LP: #528527)   * Fix status and category nicks
          in Python bindings (LP: #539858)   * Switch domains to
          org.kde instead of org.freedesktop as spec     was never
          officially approved by that body. (5581a39)

2010-03-18 Ted Gould

        * releasing version 0.0.17-0ubuntu1~ppa1 (543f7fc)
        * Upstream Release 0.0.17   * Support GTK's show menu items
          property (LP: #528527)   * Fix status and category nicks
          in Python bindings (LP: #539858)   * Switch domains to
          org.kde instead of org.freedesktop as spec     was never
          officially approved by that body. (d5717ba)
        * Sync to Ubuntu Desktop (b839c8a)
        * 0.0.17 (42de500) (tag: 0.0.17)

2010-03-17 Ted Gould

        * Fix nicks on Python bindings. (65febbd)

2010-03-16 Sense Hofstede

        * Make the nicks of the AppIndicatorCategory and AppIndicatorStatus
          types adhere the specification in the Python bindings as
          well (Closes: #539858) (414b5f8)

2010-03-15 Ted Gould

        * Changing from freedesktop to kde as the spec was never approved
          finally by freedesktop. (9be1c6d)

2010-03-15 Aurelien Gateau

        * org.freedesktop.StatusNotifier* => org.kde.StatusNotifier*
          (42fd4ba)

2010-03-15 Sebastien Bacher

        * releasing version 0.0.16-0ubuntu2 (ddee75a) (tag: 0.0.16-0ubuntu2)

2010-03-15 Ted Gould

        * Make the icons follow the show menu icons property. (c88bf0b)

2010-03-15 Jan Arne Petersen

        * Only show images if "gtk-menu-images" settings or
          "always-show-image" property is TRUE. (4ade827)

2010-03-11 Sebastien Bacher

        * releasing version 0.0.16-0ubuntu1 (04fecf2) (tag: 0.0.16-0ubuntu1)

2010-03-11 Ted Gould

        * releasing version 0.0.16-0ubuntu1~ppa1 (0be5c8b)
        * debian/control: Increasing the libindicator-dev dependency to 0.3.5
          to match upstream. (079ae03)
        * Upstream release 0.0.16   * Use libindicator icon loading helper
           * Workaround for label changes on GtkActions   * Testing
          fix for using xvfb (837d679)
        * Update to ubuntu-desktop (9504966)
        * 0.0.16 (bf1f152) (tag: 0.0.16)
        * Adding a two second wait to make seting up Xvfb more reliable.
          This is similar to xvfb-run. (1720ce3)
        * Using the new image loader utilities in libindicator (9f09be2)
        * Switching to use the update function. (6b6a72d)
        * Upping libindicator required version to 0.3.5 (b3f9c44)

2010-03-10 Ted Gould

        * Removing design team size (c9b8c0a)
        * Also using the helper when changing icons. (e785284)
        * Switching to using the libindicator image helper (249bcd9)

2010-03-08 Ted Gould

        * Workaround to make action label updates get caught and update the
          label. (a503e71)

2010-03-08 Jan Arne Petersen

        * Listen also to label changes on actions related to menu items to
          workaround a gtk+ bug. (27a7bb9)

2010-03-04 Sebastien Bacher

        * releasing version 0.0.15-0ubuntu1 (8dcf6e3) (tag: 0.0.15-0ubuntu1)

2010-03-04 Ted Gould

        * releasing version 0.0.15-0ubuntu1~ppa1 (3174368)
        * Upstream release 0.0.15   * Icon size fix to 22 px   * Status
          icon correctly removed in fallback   * Fixed test suite to
          run better on slow machines. (03519bd)
        * 0.0.15 (fa72360) (tag: 0.0.15)

2010-03-02 Ted Gould

        * Lengthing kill timer to be a little longer for slow systems.
          (588e856)
        * Fixing application icon size. (1323afb)

2010-03-01 Ted Gould

        * Switching from hide to visible. (cda145d)

2010-02-28 Ted Gould

        * Merge with Ubuntu Desktop (d7ff915)

2010-02-27 Chris Coulson

        * Use gtk_status_icon_set_visible to hide the status icon.
          GtkStatusIcon is not derived from GtkWidget, so
          gtk_widget_hide doesn't work (70c46ca)

2010-02-26 Ted Gould

        * Switching from menu size to design team size (cc62e3c)

2010-02-25 Sebastien Bacher

        * releasing version 0.0.14-0ubuntu1 (55be444) (tag: 0.0.14-0ubuntu1)

2010-02-25 Ken VanDine

        * Upstream release 0.0.14 ∘ Fix mono bindings to include proper
          metadata (LP: #526620) ∘ Send connection changed signal
          when the proxy is created and destroyed (LP: #527082) ∘
          Hide the fallback status icon before unrefing it. (LP:
          #526041) ∘ Increase dbus-glib version check to 0.82 ∘
          Handle menu layout changes and visibility changes better.
          ∘ Improve testing stability ∘ Read menu sensitivity on
          startup. ∘ Handle null strings when evaluating whether we
          have an attention icon. ∘ Remove dbus objects when we
          fallback ∘ Disconnect client_menu_changed signal handlers
          on cleanup. ∘ Handle cases where the menu gets unset on
          updates. ∘ Fix custom labels on stock items. ∘ Adds
          support for submenus (089972e)

2010-02-25 Ted Gould

        * releasing version 0.0.14-0ubuntu1~ppa1 (23541b9)
        * Upstream release 0.0.14 ∘ Fix mono bindings to include proper
          metadata (LP: #526620) ∘ Send connection changed signal
          when the proxy is created and destroyed (LP: #527082) ∘
          Hide the fallback status icon before unrefing it. (LP:
          #526041) ∘ Increase dbus-glib version check to 0.82 ∘
          Handle menu layout changes and visibility changes better.
          ∘ Improve testing stability ∘ Read menu sensitivity on
          startup. ∘ Handle null strings when evaluating whether we
          have an attention icon. ∘ Remove dbus objects when we
          fallback ∘ Disconnect client_menu_changed signal handlers
          on cleanup. ∘ Handle cases where the menu gets unset on
          updates. ∘ Fix custom labels on stock items. ∘ Adds
          support for submenus (579c1e0)
        * 0.0.14 (bc5b940) (tag: 0.0.14)
        * Ignoring everything. (ddbb7c0)
        * Changing the metadata to have the proper signal names in it.
          (806f651)
        * Emitting the connection changed signal when the proxy is created
          and destroyed. (464e29f)
        * Hide the status icon when unref'd (bb72be9)
        * Hiding the notification icon before unreffing it. (1cfa837)

2010-02-25 Sense Hofstede

        * Do send the connection-changed signal, in check_connect() -- when
          a new connection is established --
          watcher_proxy_destroyed() and app_indicator_dispose()
          (Closes LP: #527082) (e8fe4dd)
        * Correct the Mono bindings metadata to properly bind with the
          signals (Closes LP: #526620) (2aec0b9)

2010-02-23 Ted Gould

        * Sync to Ubuntu Desktop (9d1ecc8)

2010-02-23 Sebastien Bacher

        * releasing version 0.0.13-0ubuntu8 (b42f475) (tag: 0.0.13-0ubuntu8)

2010-02-23 Ted Gould

        * releasing version 0.0.13-0ubuntu8~ppa1 (1d1afe2)
        * debian/control: Checking for dbus-glib >= 0.82 (0d3da8e)
        * Upstream Merge   * Checking for dbus-glib version 0.82 (50aff10)
        * Adding a check for dbus-glib version.  The patch to unregister
          requires v. 0.82 (1572f64)
        * Updating to ubuntu-desktop revision (8af2c8c)
        * releasing version 0.0.13-0ubuntu3~ppa4 (cbdd6a7)
        * Handling the visibility of menus better (1e5be58)
        * Upstream merge   * Fixing automatic updating of menus   *
          Handling the visibility of menus better   * Improve
          testing to be more reliable   * Handle null string
          attention icons (8c0532f)
        * Fixes to get the menus updated and visibility all handled nicely.
          (2fdd555)
        * Updated patch for the visibility field (100dd09)

2010-02-23 Jan Arne Petersen

        * Second patch on 524150 (44ff7ab)

2010-02-22 Ted Gould

        * releasing version 0.0.13-0ubuntu3~ppa3~menu3 (4589ee8)
        * Upstream Merge   * Blocking tearoffs (1b76f58)
        * NO TEARY! (78429e8)
        * releasing version 0.0.13-0ubuntu3~ppa3~menu2 (bc743fa)
        * Upstream Merge   * Using foreach instead of forall (0940357)
        * Looking at children with foreach instead of forall (1d6eba2)
        * releasing version 0.0.13-0ubuntu3~ppa3~menu1 (3676f11)
        * Upstream merge   * Menu updates connections (dd2a9a5)

2010-02-22 Jan Arne Petersen

        * Creates and event handler for the add and remove signals to
          recreate the menu (75ccac5)

2010-02-22 Ted Gould

        * Making the fallback test more robust on slow systems. (225f291)
        * Fall out of the while, sometime, if we really think it's not
          recoverable. (bf13c7a)
        * Trying to make the test a little more robust by waiting for the
          other process to register on the bus, and then waiting.
          (a067b5b)

2010-02-22 Sebastien Bacher

        * releasing version 0.0.13-0ubuntu7 (d0087bc) (tag: 0.0.13-0ubuntu7)

2010-02-22 Ted Gould

        * Patch to read sensitivity on startup. (e5612de)
        * Fixes bug 522151 (7b02e4c)

2010-02-22 Jan Arne Petersen

        * Set the sensitive state when starting out. (271d86b)

2010-02-22 Ted Gould

        * Properly look for null strings in the attention icon. (0135db5)

2010-02-19 Ted Gould

        * Improving the dbus tests so that they have a mock watcher in them.
          (96f2eb9)
        * Adding a mock server here as well (7e683f7)
        * Putting in a mock watcher so we don't fall back. (e035620)

2010-02-19 Martin Pitt

        * releasing version 0.0.13-0ubuntu6 (05db164) (tag: 0.0.13-0ubuntu6)

2010-02-19 Ken VanDine

        * set to UNRELEASED (5308b54)
        * Cherrypick fix to check for a null string as the attention ico.
          Cherrypick fix to remove the registration of dbus objects
          (LP: #497870)   - lets us drop
          debian/patches/unregister.patch (a889ee7)
        * Cherry picked fix to check for a null string as the attention icon
          (b1e72a5)

2010-02-19 Ted Gould

        * Checking for a null string as the attention icon. (780acae)

2010-02-19 Martin Pitt

        * releasing version 0.0.13-0ubuntu5 (494d1b1) (tag: 0.0.13-0ubuntu5)

2010-02-19 Ken VanDine

        * debian/patches/unregister.patch   - Fix to remove the
          registration of dbus objects (LP: #497870) (d90b4c3)

2010-02-19 Ted Gould

        * Fix to remove the registration of dbus objects (435edba)
        * Attaching bug (b0a873f)
        * Removing debug output (b79a5bb)

2010-02-19 Jan Arne Petersen

        * Fix to unregister the object (9012c49)

2010-02-17 Ted Gould

        * Disconnect signal handlers when unreffing the menu. (42e1e57)

2010-02-17 Sebastien Bacher

        * releasing version 0.0.13-0ubuntu4 (2ac7533) (tag: 0.0.13-0ubuntu4)

2010-02-17 Cody Russell

        * Disconnect 'client_menu_changed' in dispose method. (715d752)

2010-02-16 Ted Gould

        * releasing version 0.0.13-0ubuntu3~ppa2 (386128a)
        * Upstream Merge   * Fixing a crash by checking for NULL (66e7fd1)

2010-02-16 Cody Russell

        * Check priv->menu for non-NULL (de406e5)

2010-02-16 Ted Gould

        * releasing version 0.0.13-0ubuntu3~ppa1 (99f3dd5)
        * Upstream Merge   * Submenu support   * Updating menus (1b3b3fe)

2010-02-16 Sebastien Bacher

        * releasing version 0.0.13-0ubuntu3 (60b206c) (tag: 0.0.13-0ubuntu3)

2010-02-12 Ted Gould

        * Fixing visibility changes and when menuitems get added and deleted.
          (2cc377b)

2010-02-12 Cody Russell

        * Minor cleanup (84137b6)
        * Change the indentation for this case to be the same as the others.
          (e18cf83)
        * Just to be safe, let's connect these at the end. (1c7a301)
        * Use dbusmenu_menuitem_property_set_bool(), and also fix some
          indenting. (02b6144)

2010-02-12 Ted Gould

        * Fixing labels on stock items. (350a701)

2010-02-12 Cody Russell

        * Handle menuitem visibility changes, and additions/removals from
          menus. (8b257dc)

2010-02-12 Sense Hofstede

        *  * When a GtkImageMenuItem has got a stock icon set don't just
          assume it's also using the stock label, but check first.
          (Closes: #520048) (e192dea)

2010-02-12 Ted Gould

        * Updating to Ubuntu Desktop (5fef5a2)

2010-02-12 Sebastien Bacher

        * releasing version 0.0.13-0ubuntu2 (be1ce77) (tag: 0.0.13-0ubuntu2)

2010-02-11 Ted Gould

        * Adding in submenu support. (a98fd45)

2010-02-11 Cody Russell

        * Submenus (af5ac81)

2010-02-11 Ken VanDine

        * releasing version 0.0.13-0ubuntu1 (4102c4d) (tag: 0.0.13-0ubuntu1)

2010-02-11 Ted Gould

        * releasing version 0.0.13-0ubuntu1 (f7b909c)
        * Upstream release 0.0.13   * Changing the menu property to be a
          proper DBus object path   * Make object paths unique by
          including application IDs in them (bbebb7a)
        * Sync to Ubuntu Desktop (a94ef5f)
        * 0.0.13 (14abe9a) (tag: 0.0.13)
        * Fix to make the dbus paths unique by using the ID of the
          application. (0e783eb)

2010-02-10 Ted Gould

        * Making sure our new tests with gtk_init() in them have an X server
          to talk to. (ec5e7ea)
        * Building a menu so this item will show (6f79c17)
        * Moving the clean_id code to get set when we set the ID and checking
          for it when building the menu. (cc9f014)
        * Changing to ID based naming and setting a menu to get init
          (8418f3a)
        * Creating a clean ID that doesn't take any illegal dbus characters
          and using that in the path. (aafaa31)
        * Making the menu path also include the ID (907253f)
        * Making it so that you can't set an ID twice instead of just issuing
          a warning. (f5b69fe)
        * Moving the registration of the object to when we want to connect
          everything, and making the path include the item ID to
          ensure it's unique. (370c87f)
        * Switching menu property to be an object path. (07cba33)
        * Falling back on string if that's what we get.  Makes things
          compatible. (8be6fe7)

2010-02-08 Ken VanDine

        * releasing version 0.0.12-0ubuntu1 (c9d339f) (tag: 0.0.12-0ubuntu1)

2010-02-08 Ted Gould

        * releasing version 0.0.12-0ubuntu1~ppa1 (b881da9)
        * Merging in ubuntu-desktop (ef5c412)
        * Upstream release 0.0.12 (c5ba9dd)
        * 0.0.12 (fb4952b) (tag: 0.0.12)
        * releasing version 0.0.11-0ubuntu1~ppa3 (c21b71a)
        * Upstream Merge   * Handling the service restarting better by
          removing the icons     after a small delay to ensure they
          don't return.   * Fixing a crash where a proxy was created
          while the previous     one was being destroyed. (89972d2)
        * Handling the service resetting much better.  Clearing out the old,
          but after ensuring they won't come back. (e6056c5)
        * releasing version 0.0.11-0ubuntu1~ppa2 (08f04e0)
        * Cause the proxy to get built outside of the other proxy destroy
          callback. (a11cf7a)
        * Upstream Merge   * Fixing copying of the attention icon   *
          Adding status changing to the example application   *
          Adding a test for status changing getting sent over DBus.
          (585f9e3)
        * Sync to trunk (821e845)
        * Fixing status updates and adding tests to help debug status
          changing. (c273ac9)

2010-02-06 Ted Gould

        * Ready to recieve the boxed type on the other side. (28b0ba5)
        * Changing the type of the property and setting it with boxed
          (035f565)
        * Boolean again! (b3be172)
        * Adding check to look for privates gotten on invalid objects.
          (ffbe6e8)
        * Handling if we get duplicate entries added, just recycling.
          (aca3270)
        * Now we're actively killing. (85b920f)
        * Setting up the disconnected helpers and structure. (2440214)
        * Changing the proxy to only build if we need it, and not destroy
          itself on killing the process.  There's really no reason
          for that. (130e93c)
        * Making room for a disconnected function. (87a7acd)
        * Putting the proxy construction in an idle function. (5f4f1eb)
        * Reffing the connection so we ensure that we have it even when folks
          die. (53bb574)
        * releasing version 0.0.11-0ubuntu1~ppa2~aicon1 (3f35b1d)
        * Upstream Merge   * Fixing grabbing of attention icon (f6ea519)
        * Getting the wrong string for the Attention Icon when looking at the
          properties (987c4b5)
        * More logging from our app indicator on icon changes (c2e186c)
        * Adding a menu item to toggle the attention state. (5b94301)
        * Making sure the client has time to setup. (982498c)
        * Changing to 100 instead of 1000 (b9152c3)
        * Lengthening the time a little bit to make sure we don't miss
          messages. (74c6657)
        * Now setting status ALOT (d004765)
        * Loose the timeout (39bf2cc)
        * Adjusting the status test to watch for toggles (119bd7a)

2010-02-05 Ted Gould

        * Typo (d27570e)
        * Adding a test for changing the status.  Just a copy of the standard
          dbus test. (1a8b83c)

2010-02-04 Sebastien Bacher

        * releasing version 0.0.11-0ubuntu1 (b8830e1) (tag: 0.0.11-0ubuntu1)

2010-02-04 Ted Gould

        * releasing version 0.0.11-0ubuntu1~ppa1 (5bd2875)
        * debian/control: Increasing dbusmenu* deps to 0.2.2 (1e12054)
        * Upstream release 0.0.11   * Interoperability Fixes   * Adding in
          XVFB support for tests   * Adding support for icons with
          the '-panel' suffix (33edaca)
        * 0.0.11 (f8ab455) (tag: 0.0.11)
        * Interop fixes. (8808bcb)
        * Migrating to the new dbusmenu (4f81ab9)
        * Merging in signal change. (b6cda58)
        * Changing the #defines (b3f174d)
        * Upping Dbusmenu required version (5f2baa8)
        * Wrong srcdir (901d87f)
        * Wrong filename (a313884)
        * Adding in XVFB support (a8b197a)
        * Getting run-xvfb on the tests (8398c58)

2010-02-03 Aurelien Gateau

        * Merged timestamp fix (4fc1824)

2010-02-02 Aurelien Gateau

        * icon -> icon-name sensitive -> enabled toggle-checked ->
          toggle-state toggle-state type is now an int (770470f)

2010-02-02 Ted Gould

        * Changing the prototype of the activate signal (4b0a319)

2010-02-01 Conor Curran

        * Checking for the nunit dependency with a specific version.
          (3a8354f)
        * changed dependency nunit2.4 to nunit since this is the name of the
          package (aa89c97)

2010-02-01 Ted Gould

        * Fixing the name of the enum strings to match the StatusNotifier
          spec. (d6090e4)
        * Adding code to look for special panel versions of the icon with a
          '-panel' with the AppIndicators. (ae7bfd4)
        * Changing the suffix to 'panel' (8a8c965)

2010-01-27 Ted Gould

        * Changing the category in the fallback test as well. (c73f5af)
        * Changing strings in the test suite as well. (d415cb6)
        * Changing the strings in the #defines here, but really we should be
          using the enum. (53821e9)
        * Making it so there is another level of translation so that we can
          use different strings in the enum. (1b40a68)

2010-01-24 Ted Gould

        * Truth.  Bad, Bad, truth. (e68b4e3)
        * When setting or changing an icon first check to see if there is a
          panel specific icon that we should be using. (79cd82f)

2010-01-21 Ken VanDine

        * releasing version 0.0.10-0ubuntu2 (10c9c76) (tag: 0.0.10-0ubuntu2)
        * releasing version 0.0.10-0ubuntu1 (6ac376a) (tag: 0.0.10-0ubuntu1)

2010-01-21 Ted Gould

        * releasing version 0.0.10-0ubuntu1~ppa1 (f25e2f0)
        * debian/control: Adjusted back changes in 0.0.9-0ubuntu3 as this
          branch is still on Karmic.  Changes are in Lucid.
          (f5582e9)
        * Upstream release 0.0.10;  debian/control: Adding dependency for
          json-glib to build. (e38c251)
        * Updating to ubuntu-desktop branch (9c8e204)
        * releasing version 0.0.9-0ubuntu1~ppa4 (8140c6f)
        * Upstream merge   * Adding in a file to position the indicator.
          debian/control: Adding dependency for json-glib to build.
          (1650aa3)
        * Sync to trunk (1f9ee73)
        * 0.0.10 (bb106d1) (tag: 0.0.10)
        * Require libindicator 0.3.1 (2377df3)
        * Adding support for a file tracking add and touch times for
          applications for ordering them. (f2b8365)
        * releasing version 0.0.9-0ubuntu1~ppa4~order2 (678e097)
        * debian/control: Adding dependency for json-glib to build. (770afff)
        * releasing version 0.0.9-0ubuntu1~ppa4~order1 (d4f211a)
        * Upstream merge   * Adding in a file to position the indicators
          (2c3e17d)

2010-01-20 Ted Gould

        * Implements the get_location function to place the entires.
          (a9bf196)
        * Looking at the last touch date of entries as we're loading the file
          and removing ones that are very old. (da6242b)
        * License headers. (0ccf950)
        * Moving directory and filename into defines (26a0d6f)
        * Moving the JSON file values into #defines (33644ed)
        * Fleshing out loading of the LRU file and realizing we need a
          json-glib dep and the 'category' field in the output.
          (5317706)
        * Updating to trunk (surprisingly without conflict) (de65968)
        * releasing version 0.0.9-0ubuntu1~ppa3 (2062afe)
        * Upstream update   * Ref counting theme directories as they get
          added and removed   * Use the right callback function for
          fallback (LP: #507975) (78417dc)
        * Add tracking and refcounting of theme directories.  Unregister them
          when we're done. (38e8ceb)
        * Use the right function in the fallback. (93d5972)
        * releasing version 0.0.9-0ubuntu1~ppa2 (0ba7549)
        * Upstream update   * Support getting the app list from a running
          service. (f279a2d)
        * Sync to trunk (3d7c9e2)
        * Merge to get the current list of applications on startup. (b22c464)
        * Switch to building a string and writing it out instead of async
          writes as the order doesn't seem to be predictable.
          (7243272)
        * Build the directory and some debugging info (39c33f7)
        * Fleshing out the cleaning and dirtying functions.  Now we should
          write out a file. (de476ff)
        * Making a sort function that looks at two Apps and determines their
          ordering. (77f24c0)
        * Fleshing out touching. (064fd75)
        * Allocating memory and objects in the lur world (c663b23)
        * Ref'ing the image and menu so that when we remove them we don't get
          warnings. (ba6eadc)

2010-01-19 Ted Gould

        * Switching to inserting in the application array using a sort
          function.  Looking that up in the LRU file DB. (a634890)
        * Adding in the 'id' and 'category' fields to the application
          structure. (570fc94)
        * Protecting our _new a little bit. (e8d4604)
        * Adding a _new function for the appstore and using it.  It now takes
          the lru file. (08fef8d)
        * Building the LRU file. (85394de)
        * Adding some API to our LRU file (2f82ed5)
        * Sync to trunk (8b32f5e)

2010-01-19 Sebastien Bacher

        * releasing version 0.0.9-0ubuntu3 (6b648fd) (tag: 0.0.9-0ubuntu3)
        * releasing version 0.0.9-0ubuntu2 (92c127a) (tag: 0.0.9-0ubuntu2)

2010-01-19 Ted Gould

        * Attaching bug (f8da1e7)
        * Changing to use the status wrapper for handling the status signal's
          different prototype. (3344b7d)

2010-01-19 Cody Russell

        * Handling duplication applications getting added. (0b8b85b)
        * Move the check for duplicates. (e9fafdf)

2010-01-19 Ted Gould

        * Adding an object to start tracking the lru of the app indicators
          (f8d65da)

2010-01-15 Ted Gould

        * Cleaning out dead code and turning a printout into an assert.
          (9c545b7)
        * releasing version 0.0.9-0ubuntu1~ppa2~applist2 (fd7d6e6)
        * Upstream update   * Simplify and correct the structure handling.
           * Pass the correct object path over the bus.  We want the
          menu. (e709d9b)
        * Using the menu path instead of the item path. (93f32fd)
        * Using a straight value array and making sure to pass the
          application (2579e9f)
        * releasing version 0.0.9-0ubuntu1~ppa2~applist1 (36e7fd1)
        * Upstream update   * Support getting the app list from a running
          service. (a75c3de)
        * Fleshing out the get_applications function so that we do something
          with the list we now get. (b447c26)
        * Setting the proper type for the GValue of an 'o' (8045abd)
        * Better init value and adding error to prototype. (00cad2e)

2010-01-14 Ted Gould

        * Returning truth. (eddc0d0)
        * Need icon path in the list as well. (321ae86)
        * Fleshing out returning the list of apps already there. (7a001c7)

2010-01-14 Cody Russell

        * Only add the Application if it doesn't already exist in the
          appstore. (abd499a)

2010-01-14 Ted Gould

        * Removing shutdown printf (831a83c)
        * Actually unref'ing the dir and fixing the truth there. (76ef80d)
        * Merging in the warnings branch. (c302241)
        * Debug message for directories. (5a93b5e)
        * We should have kept ref's to these. (fe7f3dc)
        * Fleshing out the ref and the unref functions for the theme
          directories. (3712733)
        * Adding in our hash table of refs. (9393ffc)

2010-01-14 Ken VanDine

        * Upstream Release 0.0.9   * Add fallback support for situations
          where the NotificationWatcher     isn't available.
          (8cc2e35)

2010-01-14 Ted Gould

        * Forgot to merge in the 'fallback' packing branch.  All in sync now.
          (bd7118f)
        * Sync to trunk (4d4273f)
        * releasing version 0.0.9-0ubuntu1~ppa1 (8240163)
        * Upstream Release 0.0.9   * Add fallback support for situations
          where the NotificationWatcher     isn't available.
          (6e43740)
        * 0.0.9 (f0104e1) (tag: 0.0.9)
        * Update to desktop. (e43ee66)
        * Fallback support to XEmbed based notify item. (39b0dc9)
        * Returning the icon we've created. (09442ab)
        * Making a more descriptive error on 'unfallback' not existing.
          (2bfabeb)
        * Using better naming for 'do_it_now' parameter. (544ac3a)

2010-01-14 Ken VanDine

        * [merge] Upstream release 0.0.8 (1a2eabc)

2010-01-13 Ted Gould

        * Realized that we didn't really use the 'notify' signal... now using
          the better ones anyway. (c303c0c)
        * Making it so that the icon will update in the fallback case with
          changes to the properties of the AppIndicator. (c26cab9)
        * Showing the toggle_item as well as the others. (67493d4)
        * Popping up menu on activate. (6068e6c)
        * Showing items in sample (10521bb)
        * Adding in a get_menu function. (9489aa2)
        * releasing version 0.0.8-0ubuntu1~ppa2~fallback5 (b83df5e)
        * Upstream update   * Looking at StatusIcon fallback (15176e3)
        * Connecting to the activate signal (bf390ec)
        * releasing version 0.0.8-0ubuntu1~ppa2~fallback4 (556b0bc)
        * Upstream update   * Removing the 'destroy' signal handler
          (1583b1b)
        * Remove the 'destroy' signal handler before destroying the watcher
          proxy. (ef95891)
        * releasing version 0.0.8-0ubuntu1~ppa2~fallback3 (8baa1ed)
        * Upstream update   * More checking. (c1d9e7d)
        * Checking more for whether we have an APP_INDICATOR object (e67b856)
        * Explicitly checking for the APP_INDICATOR.  Confused. (303db3c)
        * releasing version 0.0.8-0ubuntu1~ppa2~fallback2 (df2c07b)
        * Upstream update   * Checking fallback function params (b7f9aaf)
        * releasing version 0.0.8-0ubuntu1~ppa2~fallback1 (519e03c)
        * Checking for the status of the variable getting passed in.
          (6023693)
        * Upstream update   * Fallback support (21c5cc4)
        * Fleshing out the fallback function, so it should create an icon.
          (b1b9134)
        * Really we should have gotten the final cleanup unfallback, which we
          weren't testing for either. (5d07598)
        * Getting the class the proper way (88c99ac)
        * Clear the fallback timer pointer after using it. (89aa4a7)
        * Adding a function to watch if the watcher proxy gets destroyed.
          (c959db1)
        * Removing a warning. (06a6bb7)
        * Making sure to return a value so that unfallback gets called.
          (5898ca0)
        * Calling the unfallback function if we're doing this for the second
          time. (5739297)
        * Ignoring the generated fallback test itself (3ac18fb)

2010-01-12 Ted Gould

        * Setting up a dbus proxy and starting to look at owner change events
          on it when we don't have a NotificationWatcher to look at.
          (7e0feb2)
        * Adding a menu so that the app indicator will init (f55bf25)
        * Wrong class function (bded6da)
        * Adding the fallback test to the suite (7783a49)
        * Adding state transitions that'll get us to a passed state.
          (9a21024)
        * Adding a kill function and letting the test fail over it. (a216db2)
        * Printing status in watcher (d0abe1e)
        * Adding in the item side of things. (cc31c23)
        * Woah, this is pretty sweet.  I hope it works. (348bcfb)
        * Getting the start of the fallback tests in place. (4a1b722)
        * Setup the fallback timer and flesh out it's actions. (36d47b5)
        * Fallback timer pointer lifecycle. (9518459)
        * Some comments (7e5e095)
        * Start timer fallback (40d3056)
        * Updating to trunk (b2198be)

2010-01-12 Ken VanDine

        * merged 0.0.8 (2ceb846)
        * Upstream Release 0.0.8 (0eea33a)

2010-01-12 Ted Gould

        * releasing version 0.0.8-0ubuntu1~ppa1 (5ca2ed3)
        * Upstream release 0.0.8   * Mirror icon changes over dbus
          (44efa30)
        * 0.0.8 (abd41dd) (tag: 0.0.8)

2010-01-12 Cody Russell

        * Mirror the icon changes over dbus (6fe9571)

2010-01-12 Ken VanDine

        * autoreconf (7e77e90)
        * debian/patches/mono_bindings_fix.patch   - Mono bindings fixes
          (LP: #505923) (6d6c8e4)

2010-01-12 Cody Russell

        * Remove debugging code (6ae0ede)

2010-01-12 Ted Gould

        * releasing version 0.0.7-0ubuntu1~ppa5 (06145a0)
        * Upstream update   * Distcheck fixes to tests and cleanfiles
          (c20fb45)
        * Adding the middle API file to the cleanfiles for distcheck
          (0fda6a0)
        * Fixing the path for the tests. (bd7a48f)

2010-01-11 Ted Gould

        * releasing version 0.0.7-0ubuntu1~ppa4 (f905b80)
        * Upstream update   * Better default object names. (356a1ce)
        * Updating path names to have more reasonable defaults. (d104014)
        * releasing version 0.0.7-0ubuntu1~ppa3 (807982e)
        * Upstream update   * Fixes for the mono binding properties
          (481ad31)
        * releasing version 0.0.7-0ubuntu1~ppa2 (983ceaf)
        * Upstream Merge   * Sensitivity to label changes (ed18ce8)
        * Sync to trunk (2e6c62f)
        * Fixes for the mono bindings to make the properties work with enums
          and the #define'd string names. (e04e32f)
        * releasing version 0.0.7-0ubuntu1~ppa2~mono1 (4d42c62)
        * Fixing makefiles (8bb5b38)
        * Adding back in the MIDDLE_API and sed magic (d6ae58e)
        * Upstream update   * Fixes for the mono binding properties
          (1e13ebd)
        * Removing the middle API stuff and cleaning up Makefile (f466763)
        * Cody's customs (d09369b)

2010-01-11 Cody Russell

        * Mono binding fixes. (af45b19)

2010-01-11 Ted Gould

        * Adding in customs support (9c04a32)
        * Use sed to get rid of the #defines (bebf565)
        * Switching the metadata to not use #defines (9035e52)
        * Initing and destroying the status_icon variable (f8d6a7d)
        * Having better default paths that look a little more professional.
          (73afc35)
        * Setting the fallback functions so that we can go round trip on
          setting up this API. (d8c7246)

2010-01-11 Cody Russell

        * trunk merge (b7ec550)
        * Label fu (724261a)

2010-01-11 Ted Gould

        * Adding in the class functions for handling the fallback. (2a91387)

2010-01-11 Cody Russell

        * Watching several properties and updating them as they change.
          (e979943)

2010-01-08 Ken VanDine

        * debian/control   - bump build depends version of libdbusmenu to
          0.2.0 (820eb75)
        * Upstream Release 0.0.7   * Making the Notification Watcher
          register for it's own DBus     name to keep the service
          one unique.   * Adding support for icons changing through
          the service and     in the indicator.   * Fixing the
          generated headers for DBus Properties calls   * Fixing
          libappindicator set_icon to set the right icon.   * Adding
          in icon path support.   * Switching DBus interface to
          org.freedesktop   * Adding check/radio support to menu
          parsing   * Adding ChangeLog to dist   * Adding check item
          support to menu parsing (64df46b)

2010-01-08 Cody Russell

        * Remove debugging code. (b56f250)
        * Watch for changes to label and sensitivity. (ecb11f0)

2010-01-08 Ted Gould

        * releasing version 0.0.7-0ubuntu1~ppa1 (c1010b6)
        * Upstream Release 0.0.7 (54708c2)
        * 0.0.7 (5787ec0) (tag: 0.0.7)
        * Merging with the desktop branch (a7e0e79)
        * releasing version 0.0.6-0ubuntu1~ppa6 (21f677f)
        * Upstream merge:   * Making the Notification Watcher register for
          it's own DBus     name to keep the service one unique.
          (a3bf98e)
        * Making the Notification Watcher get it's own interface name.
          (e5fbe72)
        * releasing version 0.0.6-0ubuntu1~ppa5 (7f93d0d)
        * Upstream merge:   * Adding support for icons changing through the
          service and     in the indicator.   * Fixing the generated
          headers for DBus Properties calls   * Fixing
          libappindicator set_icon to set the right icon. (7a78594)
        * Sync to trunk (c4b431a)
        * Supporting icons changing and status changing. (98237f0)
        * Reactivate kill switch (bb71fc2)
        * Making applications register to the watcher address so they work on
          KDE (8d0d0e4)
        * Make the watcher register it's own name (34bb6cb)
        * Making the service have a name different than the watcher
          interface. (087c7f0)
        * Icons branch (d8cb0ba)
        * releasing version 0.0.6-0ubuntu1~ppa4~icon2 (8e8fc16)
        * Fixing everything by putting the slots on correctly. (6c2b2fd)
        * Putting the signal on the Class instead of the Instance. (5f797d7)
        * Debug message cleanup. (f8e9a51)
        * Fixing shutdown signal, but disabling for now (7970210)
        * When destroying the application free all the proxies. (12aab96)
        * Fleshing out some of the remove function.  For some reason the
          appstore is getting disposed, but that's the next thing to
          look at. (ad42e10)
        * releasing version 0.0.6-0ubuntu1~ppa4~icon1 (ae5ff4b)
        * Syncing with all the other branches.;  Upstream update   * Adding
          in icon path support.;  Upstream update   * Switching DBus
          interface to org.freedesktop   * Adding check/radio
          support to menu parsing;  Upstream update   * Adding
          ChangeLog to dist   * Adding check item support to menu
          parsing (4e91ad3)
        * Updating to trunk (96e4332)
        * Syncing to final icon-path changes (5d97173)
        * releasing version 0.0.6-0ubuntu1~ppa4 (aaa7438)
        * Upstream update   * Adding in icon path support. (e824c0b)
        * Sync to trunk (a12df72)
        * Final icon-path merge. (2b000f7)
        * Sync to karmic packaging branch (458b67c)
        * releasing version 0.0.6-0ubuntu1~ppa3 (ab7949f)
        * Upstream update   * Switching DBus interface to org.freedesktop
          * Adding check/radio support to menu parsing (d5b5933)
        * Adding in the ability for applications to specify a directory path
          to get added to the icon theme search path. (a575382)

2010-01-08 Aurélien Gâteau

        * Changing to freedesktop.org namespace and fixing some of the
          function names and interfaces that weren't matching the
          FD.o spec. (1c834b9)

2010-01-08 Aurelien Gateau

        * Merged lp:~ted/indicator-application/fdo (5f86c72)

2010-01-08 Ted Gould

        * Adjusting so that we use the parameter if it's not an object but a
          path. (0c8cf85)
        * Using the #defines for the property names instead of strings.
          Define them once. (8226d6c)
        * Changing the property to 'IconThemePath' to make it more clear
          about what it adjusts. (83b4f68)

2010-01-08 Sebastien Bacher

        * Typo in documentation using wrong values for the enum. (d7719b9)
        * Use correct status syntax in the api description (lp: #504700)
          (69f4b95)

2010-01-07 Ted Gould

        * releasing version 0.0.6-0ubuntu1~ppa2~icon4 (8fdbf38)
        * Upstream merge:   * Fixing the generated headers for DBus
          Properties calls   * Fixing libappindicator set_icon to
          set the right icon. (a375e41)
        * Pretty major cut and paste error.  Wrong icon. (cb14ba3)
        * Changing dbus-properties header to be static and not built from the
          XML as it needs a fix. (d1fbe4a)
        * releasing version 0.0.6-0ubuntu1~ppa2~icon3 (8ddab95)
        * Upstream merge:   * Adding support for icons changing through the
          service and     in the indicator. (2fef3d4)
        * Merging in the icon_path branch to start to handle conflicts from
          there. (b1ffef3)
        * A small refactoring of the code to get the position of an
          application. (2cc15ba)
        * Fleshing out the signal functions for updates.  Some do more
          callbacks. (4abe47b)
        * Moving the list of applications management into the state change
          function.  This makes it so that we can handle it
          appearing and disappearing all in one special place.
          (45e742e)
        * Adding in a status variable (16fb78b)
        * Responding to the icon changed signal in the indicator. (655f6d1)
        * releasing version 0.0.6-0ubuntu1~ppa2 (7f27006)
        * Adding an icon_changed signal to the application store (2c767da)
        * Cleaning up signal handlers. (f7e660f)
        * Upstream update   * Adding ChangeLog to dist   * Adding check
          item support to menu parsing (99b4888)

2010-01-07 Cody Russell

        * Support for check items in the libappindicator menu parser.
          (e76d63c)

2010-01-07 Ted Gould

        * Setting up and connecting to the item signals (6d922ea)

2010-01-07 Cody Russell

        * Toggle events (a60f25e)

2010-01-07 Ted Gould

        * Allowing for the default path if one is not given. (199f3d2)

2010-01-07 Aurelien Gateau

        * Revert part of previous revision: pass the path, not the service
          name to register_status_item (17476bd)

2010-01-07 Cody Russell

        * More checkbox related updates. (6bde6a4)
        * Checkmark support (bf0be37)

2010-01-07 Aurelien Gateau

        * Use org.freedesktop namespace (0aaa6a2)

2010-01-07 Ted Gould

        * releasing version 0.0.6-0ubuntu1~ppa2~icon2ubuntu1 (13de14e)
        * Debug message (6575026)
        * Adding a path based debug message (ad8ca0d)
        * releasing version 0.0.6-0ubuntu1~ppa2~icon2 (6223c53)
        * Fixing the signals. (11984c8)
        * Forgot to adjust the parameter count. (e16d383)

2010-01-06 Ted Gould

        * Handle the case of no icon path more gracefully, by just passing
          along the null string. (eec2466)
        * Ignoring some of the generated files (150a0d7)

2009-12-23 Aurelien Gateau

        * Previous commit was not meant to be pushed to trunk Revert my mess
          (dd2ed95)
        * Make it work on KDE (95b5ea9)

2009-12-20 Ted Gould

        * releasing version 0.0.6-0ubuntu1~ppa2~icon1 (06b735f)
        * Adding in icon path support. (28d5fae)
        * Appending the new icon path to the theme search. (cd57997)
        * Adding the icon path to the app entry struct (3915de9)
        * Adding in the icon path to the list of parameters that are passed
          when we have a new application. (9185eee)
        * Adding new constructor to docs. (a9c6b6e)
        * Forgot to get these from the private struct. (b3542e0)
        * Making the icon-path property construct only and making a
          constructor to set it. (c44c00b)
        * Adding the icon_path property to the code. (2f82dde)
        * Adding of a new property, icon path, to store the path to the
          icons. (8d4ca51)

2009-12-17 Ted Gould

        * Adding ChangeLog to tarball (312dadc)

2009-12-17 Ken VanDine

        * include ChangeLog in EXTRA_DIST (929d2e8)
        * Upstream release 0.0.6   * Include Python binding   * Include
          Mono binding   * Minor bug fixes   * Fixing when menus are
          set twice.  (LP: #497812)   * Keeping a constant signature
          for the library instead of     building it each time.
          debian/control, debian/python-appindicator.install:
          Building   a binary package for the python bindings.
          debian/control: Adding python building build dep.
          debian/control, debian/libappindicator0-cil.install:
          Building   a binary package for the Mono bindings.
          debian/control: Adding Mono building build deps (60e78aa)
        * version bump (951c79d)

2009-12-17 Ted Gould

        * releasing version 0.0.6-0ubuntu1~ppa1 (75de7c2)
        * Upstream release 0.0.6   * Keeping a constant signature for the
          library instead of     building it each time. (71a9247)
        * 0.0.6 (7eb8f46) (tag: 0.0.6)
        * Using a constant snk file instead of generating it each time.
          (f789e13)

2009-12-17 Ken VanDine

        * merged (cca4d63)
        * merged (4e8176e)
        * use srcdir for the path to appindicator-sharp.snk (52c77eb)
        * Don't create the signature during build (af81423)

2009-12-17 Ted Gould

        * releasing version 0.0.5-0ubuntu1~ppa1 (e173606)
        * Upstream release 0.0.5   * Include Python binding   * Include
          Mono binding   * Minor bug fixes;  debian/control,
          debian/python-appindicator.install: Building   a binary
          package for the python bindings.;  debian/control: Adding
          python building build deps;  debian/control,
          debian/libappindicator0-cil.install: Building   a binary
          package for the Mono bindings.;  debian/control: Adding
          Mono building build deps (2c6df6b)
        * 0.0.5 (6d8c312) (tag: 0.0.5)

2009-12-17 Ken VanDine

        * Linking Mono bindings to versioned library and fixing the example
          with licensing info and a menu. (6a7f7db)
        * Added license/copyright to the example and un-commented out the
          code that adds the menu. (84d7e5e)
        * added libnunit2.4-cil build-depends (c64d79b)
        * link against the versioned library (d1fbd5d)

2009-12-17 Ted Gould

        * releasing version 0.0.4-0ubuntu3~ppa4 (3280544)
        * Upstream updates:   * Fixing when menus are set twice.  (LP:
          #497812) (bdff04c)
        * Fix issue with setting a menu twice by only allocating one dbusmenu
          server. (d11b8c9)

2009-12-17 Cody Russell

        * Only create the dbusmenu server if it doesn't exist (09c4ec2)

2009-12-17 Ted Gould

        * Initing 'menuservice' to NULL (6af83d4)
        * Only build a dbusmenu server if we don't have one. (f4c9af7)

2009-12-17 Ken VanDine

        * Moved Build-Depend-indep to Build-Depends (f87e935)

2009-12-17 Ted Gould

        * releasing version 0.0.4-0ubuntu3~ppa3 (e2f1257)
        * debian/control: Fixing the libdbusmenu-glib version dep. (24abbb1)
        * debian/control: Removing architecture independent build
          dependencies are no architecture dependent. (5918076)
        * releasing version 0.0.4-0ubuntu3~ppa2 (3995123)
        * Upstream updates:   * Mono build fixes.   * Mono metadata file
          cleanups. (1443165)
        * Mono build cleanups (4d95601)
        * debian/control: Adding a build-dep on nunit (d293bbf)
        * Updates to Mono bindings to make them more Mono-onic. (7219db0)

2009-12-17 Ken VanDine

        * merged from trunk (33beea5)

2009-12-17 Ted Gould

        * releasing version 0.0.4-0ubuntu3~ppa1 (c4f20d6)

2009-12-17 Ken VanDine

        * Upstream release   - debian/libappindicator0-cil.install   -
          debian/libappindicator0-cil-dev.install   - debian/control
          (7ebdc97)

2009-12-17 Ted Gould

        * Integrating a ton of work. (511ef69)
        * Added mono bindings;  debian/rules   - don't use gnome.mk,
          specify all the targets to build python     bindings for
          each supported python version;  Adding in Python bindings.
          * debian/control, debian/python-appindicator.install:
          Building   a binary package for the python bindings.
          debian/control: Adding python building build dep.
          debian/control   - make libappindicator0 recommend
          indicator-application;  debian/rules:   - removed the
          disable-scrollkeeper configure arg   - don't include .la
          and .a files;  debian/patches/clean_up_docs.patch   -
          removed, merged upstream;  debian/control:   - removed
          Build-Depend for scrollkeeper   - libappindicator-dev
          needs to depend on libdbusmenu-glib-dev   - bump standards
          version to 3.8.3   - libappindicator-doc doesn't need to
          depend on libappindicator0   - set libappindicator-doc
          arch all   - make libappindicator-dev depend on
          libappindicator0;  debian/copyright   - Include the proper
          licenses (LGPL-2.1 and LGPL-3) (5aed77c)

2009-12-17 Ken VanDine

        * Install the assembly in the gac (6af5c99)

2009-12-17 Ted Gould

        * Upstream work   * Python bindings   * Mono binding clean up
          (20a7ac2)
        * Mono and Pythong bindings living together. (97f6e62)

2009-12-16 Ken VanDine

        * set version back to 0.0.4 (394f015)
        * merged from trunk (cef679b)
        * Added mono bindings (2ba572c)
        * Use a versioned assemblydir (8a26b8c)
        * use more macros (ceef246)
        * Reference the correct dll (7996187)
        * fixed path to python bindings (23b19e9)
        * debian/rules   - don't use gnome.mk, specify all the targets to
          build python     bindings for each supported python
          version;  Adding in Python bindings.;  debian/control,
          debian/python-appindicator.install: Building   a binary
          package for the python bindings.;  debian/control: Adding
          python building build deps (2a5cad3)
        * merged in python bindings branch and some of my fixes needed for
          packaging (4d9d260)
        * exclude the path in subst replace in the dbus-binding-tool command
          (251da6d)

2009-12-16 Jason Smith

        * Make mono bindings less redundant and more mono friendly (7aee325)

2009-12-15 Ken VanDine

        * make libappindicator0 recommend indicator-application (53d5f10)
        * release (c4a5888)
        * debian/control   - make libappindicator0 depend on
          indicator-application (c593131)

2009-12-14 Sebastien Bacher

        * releasing version 0.0.4-0ubuntu1 (add48dd) (tag: 0.0.4-0ubuntu1)

2009-12-14 Ted Gould

        * releasing version 0.0.4-0ubuntu1~ppa2 (0d66efa)
        * debian/control: Adding in mono build depends. (1ae9e02)
        * Upstream work   * Mono bindings (0d59bd4)

2009-12-14 Ken VanDine

        * use path to find includes (c66e720)

2009-12-14 Ted Gould

        * Merging in mono bindings. (985c449)
        * Looking for the assembly files in the right location. (bb6fa61)
        * Adding the test files to dist and making sure we find them in the
          right directory. (04e218d)
        * Merging in Jason's fix of Cody's branch.  Yeah, seriously.
          (aebb91e)

2009-12-14 Jason Smith

        * Nicer fix (5e6e5ba)
        * Make build work right (3d0245f)

2009-12-12 Cody Russell

        * Try to add SetMenu() (40f3778)
        * Initial stab at setting up test/example fu (59526b6)

2009-12-11 Ted Gould

        * Fixing the build system to link everything all happy like.
          (a3a42b9)
        * Adding the Python build system into the indicator-application one.
          (a602f42)

2009-12-11 Neil J. Patel

        * Stealing a bunch of Neil's python binding code. (f7ba47b)

2009-12-11 Ken VanDine

        * fixed typo in the Vcs-Bzr line (1c008f5)
        * merged from trunk (7158acf)
        * set to UNRELEASED (e75075f)
        *   - bump standards version to 3.8.3   - libappindicator-doc doesn't
          need to depend on libappindicator0 (fd5003d)
        * libappindicator-dev needs to depend on libdbusmenu-glib-dev
          (2da3664)
        * fix the path used for deleting the .la and .a files (2f0f25f)

2009-12-11 Cody Russell

        * Fix distcheck (ed48108)

2009-12-11 Ken VanDine

        * don't include .la and .a files (54099ef)

2009-12-11 Ted Gould

        * Merging in Ken's Lucid changes. (a5dfa76)

2009-12-11 Cody Russell

        * Move appindicator-sharp.pc to appindicator-sharp-0.1.pc (7783eb6)
        * trunk merge, resolve conflicts (8de2753)

2009-12-11 Ted Gould

        * releasing version 0.0.4-0ubuntu1~ppa1 (52f97ba)
        * Upstream release 0.0.4   * Adding files to the tarball   *
          Putting version number in docs   * Removing cruft in docs
          (c5d3cf3)
        * 0.0.4 (d303893) (tag: 0.0.4)

2009-12-11 Cody Russell

        * Add missing Makefile.am (5fe114e)

2009-12-11 Ken VanDine

        * Adding extra files to the distribution tarball and making the
          documentation include the version number. (ab6e7dd)
        * removed the disable-scrollkeeper configure arg (f9d90d2)

2009-12-11 Cody Russell

        * Move to bindings/mono (88a109e)
        * Build for Mono bindings (6d3743e)

2009-12-11 Ken VanDine

        * include autogen.sh, COPYING.LGPL.2.1 and COPYING.LGPL.3 in
          EXTRA_DIST (8205193)
        * Merged changes from trunk (8063616)
        * Bump version to 0.0.4;  Include version in the generated docs
          (3e2f1b6)
        * fixed parse error in changelog (d032af1)
        * debian/control:   - removed Build-Depend for scrollkeeper
          (020d8bb)
        * Upstream release 0.0.4;  debian/rules:   - removed
          disable-scrollkeeper   - set DOC_SERVER used for doc.
          debian/patches/clean_up_docs.patch   - removed, merged
          upstream (7263623)

2009-12-10 Ted Gould

        * releasing version 0.0.3-0ubuntu2~ppa1 (c52a914)
        * debian/patches/clean_up_docs.patch: Remove as merged upstream.
          (e11024f)

2009-12-10 Ken VanDine

        * Documentation cleanups (d0ff3d2)

2009-12-10 Ted Gould

        * Merging in Ken's fixes. (9ef452b)

2009-12-10 Sebastien Bacher

        * releasing version 0.0.3-0ubuntu1 (c5ceaf1) (tag: 0.0.3-0ubuntu1)

2009-12-10 Ken VanDine

        * debian/copyright   - Include the proper licenses (LGPL-2.1 and
          LGPL-3) (4358884)
        *   - set libappindicator-doc arch all   - make libappindicator-dev
          depend on libappindicator0 (af73889)
        * set to UNRELEASED (767f3d4)
        * set release to lucid (bd32dd0)
        * set a title and remove releaseinfo, we haven't set it yet.
          (27f8252)
        * added simple-patchsys.mk (ff35c76)
        * debian/patches/clean_up_docs.patch   - Remove template values and
          set a proper title (a634b49)
        * fixed a typo in libappindicator-doc.install (7c04550)
        * debian/libappindicator-doc.install   - install the developer docs
          * debian/rules   - enable-gtk-doc (86e4f6e)
        * added bzr-builddeb/default.conf (87560be)
        * debian/control   - set Vcs-Bzr to ~ubuntu-desktop (fb2b3cf)

2009-12-10 Ted Gould

        * Merging in Ken's updates (e44eaf4)
        * releasing version 0.0.3-0ubuntu1~ppa1 (7dcc785)
        * debian/control: Increasing libdbusmenu requirements to 0.1.8
          (94cc8a7)
        * Upstream release 0.0.3   * More GtkMenu support in
          libappindicator (eab11a2)
        * 0.0.3 (6b3e25f) (tag: 0.0.3)

2009-12-10 Ken Vandine

        * Increasing libindicator requirement to 0.3.0 (dc31293)

2009-12-10 Ken VanDine

        * Bump required version for libindicator to 0.3.0 (ad85df3)
        * debian/control   - Updated Vcs-Bzr, project urls and description
          (2227fe0)
        * debian/watch:   - Updated url to point to the LP project
          (f87a074)

2009-12-09 Cody Russell

        * Adding support for separators. (9e7a9fb)
        * Add support for separator menuitems (6cb0e1a)

2009-12-09 Ted Gould

        * Switching back to the calling style with all the parameters.
          Otherwise the --enable-gtk-doc gets lost. (0e959b1)
        * Fixing up documentation and making it error if symbols are missing.
          (5ed9363)
        * Adding a directory name on the distribution of the .pc.in file
          (ecd7cd9)
        * releasing version 0.0.2-0ubuntu1~ppa2 (59f09d6)
        * debian/control: Adding a build dep on gtk-doc-tools (afd0904)
        * debian/libappindicator-dev.install: Adding pkgconfig files.
          (b478a86)
        * Getting the install files with the right names. (4e25a45)
        * Upstream update   * Adding in documentation   * Adding a
          pkg-config .pc file for libappindicator (b67737d)

2009-12-09 Cody Russell

        * Add pkgconfig support, fixes bug #494583 (bae74ef)
        * pkgconfig Libs and Requires fixes (02ab21b)
        * merge from trunk (875e290)

2009-12-09 Ted Gould

        * Fix to autogen.sh to support configure options. (cd2a4a9)

2009-12-09 Cody Russell

        * fix autogen.sh (6519597)
        * pkgconfig file (3f16792)

2009-12-08 Ted Gould

        * Improved menu item parsing from Cody. (e0bf73e)

2009-12-08 Cody Russell

        * Beefed up and stuff. (284188b)

2009-12-08 Ted Gould

        * Putting gtk-doc-check into a wrapper to it runs in srcdir (e4cdb13)
        * Adding in some section documentation. (a29bb3d)
        * Documenting the AppIndicatorClass as well. (b8e1a71)
        * Fixing function documentation. (79d9410)
        * Adding documentation for the signal string defines. (c80692f)
        * Adding in documentation for the Object/Class macros (46799c6)
        * Adding a check rule for documentation. (b63e880)
        * Adding support for building gtk-doc documentation. (4a19cb4)
        * Making it so that we have a local gtk-doc.make file that will pass
          a dist without the lib being built. (cf4dd4a)
        * Ken's gtk-doc integration branch (fbb083f)

2009-12-08 Ken VanDine

        * Removed a commented variable (86b124f)
        * Clean up some cruft I left around (0c816c3)
        * Fixes for make distcheck and default configure args (199da20)
        * Added some missing gtk-doc related files (5ebc39a)
        * don't run gtkdocize with autogen.sh (43eac26)

2009-12-07 Jason Smith

        * Add script to automate building (someone should do this without
          autofoo) (dc33785)
        * Ensure names are nice and pretty (6335098)
        * Make build work (e945be8)
        * Add mono xml api file (a7dec87)

2009-12-07 Ted Gould

        * Adding in an activate signal. (bfb9e77)

2009-12-07 Cody Russell

        * Add 'activate' signal support (95ecb48)

2009-12-05 Ken VanDine

        * remove --enable-gtk-doc from autogen.sh (fb20a31)
        * generate gtk-doc (9306d83)

2009-12-04 Ted Gould

        * releasing version 0.0.2-0ubuntu1~ppa1 (ec3c1be)
        * Upstream release 0.0.2   * Updates API to use GTK instead of
          dbusmenu to make it     easier for upstream developers to
          use. (5498681)
        * Increasing to version 0.0.2 (2906ee4) (tag: 0.0.2)
        * Test suite fixes for the GTK Menu changes. (fe16a24)

2009-12-04 Cody Russell

        * Remove the menu test (c9670e6)
        * test fix (6f39584)
        * Test fixes (670019c)

2009-12-04 Ted Gould

        * Adding GTK Menu support to libappindicator and removing dbusmenu
          support. (17478a9)

2009-12-04 Cody Russell

        * credit :) (7406617)
        * Small cleanup (17d72ed)
        * Fix up some docs (5f4c6f8)

2009-12-03 Cody Russell

        * API changes, gtk menu support (580f2be)

2009-12-02 Ted Gould

        * releasing version 0.0.1-0ubuntu3~ppa4 (25d7d99)
        * Adding in copyright headers and licenses (fb3c300)
        * Adding legal headers on files and licenses. (92a3e89)
        * releasing version 0.0.1-0ubuntu3~ppa3 (5710b62)
        * Massive name change.;  debian/* changing packaging to not be
          "custom" anymore and now   everything is "application.
          debian/control: Splitting out libappindicator;  Adding
          debian/libappindicator0.install,
          debian/libappindicator-dev.install,
          debian/indicator-application.install (5317413)
        * Sync to trunk (5c4e31a)
        * Changing the name from indicator-custom to indicator-application
          (984759e)
        * releasing version 0.0.1-0ubuntu3~ppa2 (f897644)
        * Implementing the service and having the indicator and app library
          start using it. (29ef598)
        * Sync from trunk (69448c0)
        * Create a service and start using it.  Also updating to libindicator
          0.3.0. (47741f6)

2009-12-01 Ted Gould

        * releasing version 0.0.1-0ubuntu3~ppa1~newname1 (dc560c7)
        * debian/* changing packaging to not be "custom" anymore and now
          everything is "application";  debian/control: Splitting
          out libappindicator;  Adding
          debian/libappindicator0.install,
          debian/libappindicator-dev.install,
          debian/indicator-application.install (c0b7c89)
        * Massive name change. (1566a99)
        * Updating to service-me-please branch. (113fc34)
        * Updating to trunk packaging (1933cc6)
        * releasing version 0.0.1-0ubuntu3~ppa1 (71797b3)
        * Flesh out the library to have stuff working.;  Updating test
          suite to run under dbus-test-runner. (c860f69)

2009-11-30 Ted Gould

        * Copyright notice for marshallers definition. (1895dec)
        * Header for a DBus interface description, not sure if that's right
          or not. (dfb7524)
        * Adding in GPLv3 headers. (9028f21)
        * Adding in LGPL v3/2 headers (d8e73df)
        * Adding GPLv3 headers. (8027b94)
        * GPL header (91013e4)
        * Adding in copying license files. (45f5d8c)
        * Getting the right named files. (44be8d2)
        * Changing the insides to remove the custom stuff. (f0881be)
        * De-customizing the directory stuff. (35d5c71)
        * Migrating to the new 'app' world. (7cc02cf)
        * Shortening the object names as well.  People hate typing. (a7c7079)
        * Massive custom to application find and replace throughout the code.
          (672b725)
        * Ignoring happily again. (fdd8e21)
        * Shortening the file names as well. (997bdb5)
        * Making the directory name shorter (8eff74d)
        * Changing file names, and some fallouts from that. (5b2dcab)
        * Total insane rename.  Probably broke more than a few things.
          (fc1e08a)
        * Another name change. (e0cb52e)

2009-11-24 Ted Gould

        * Changing all the dbus names. (ad2afb8)
        * Name changed (f4d0952)
        * Name changes (8fa7b92)
        * A bunch of code. (f0fcaa6)
        * releasing version 0.0.1-0ubuntu3~ppa1~service8 (2edb47b)
        * Sync to trunk and fix distcheck by delaying connecting to the
          service by checking for data. (62a7252)
        * Moving the connection code into a function that is called to check
          to see if we have enough data.  This fixes distcheck after
          the merge from main. (8c7ce8f)
        * Merging in changes on trunk.  Resolving a conflict. (acbab33)
        * releasing version 0.0.1-0ubuntu3~ppa1~service7 (7c86b00)
        * Woot, basic remove support.  Causes warnings, but it works.
          (4b23fc3)
        * Showing the icon.  Now we can put things up in the menu!  Finally.
          (ce09817)
        * Ignoring the marshallers (254386f)
        * Building a little more of a menu item for testing. (314754f)
        * Fixing Marshallers so that everything is happy-happy. (c8faaf3)

2009-11-23 Ted Gould

        * releasing version 0.0.1-0ubuntu3~ppa1~service6 (bfd3806)
        * I really shouldn't have to register marshalers.  Srsly. (6caead9)
        * Moving the registration of the marshallers until after the proxy.
          Odd that I'd have to do this, but let's try. (f0b58f5)
        * releasing version 0.0.1-0ubuntu3~ppa1~service5 (cecee4c)
        * Forgot return types. (28f794c)
        * Forgot return types. (756b6c9)
        * releasing version 0.0.1-0ubuntu3~ppa1~service4 (c27868e)
        * Registering marshallers for DBus in the indicator. (25d690a)
        * Adding a debug message on getting an application. (009e468)
        * Making a simple client (62f0373)
        * releasing version 0.0.1-0ubuntu3~ppa1~service3 (b6b57bd)
        * Adding more fun.  Now we're cookin'! (59b0398)
        * Connecting to a notification watcher. (2c04418)
        * Adding in a TODO (9a48354)
        * Commenting. (5a87d20)
        * Fixing custom indicator watcher object path. (efd63e3)
        * Cleaning up main a little bit and handling the 'disconnected' case
          that doesn't yet quite exist. (f22ff6a)
        * Adding a remove function and switching to the position in the list
          being the position. (f7cfd25)

2009-11-09 Ted Gould

        * Adding in the dbus shared header. (3d71f7f)
        * A simple little app. (5c797c3)
        * Adding a defualt file for a little appliction that'll grow into a
          full app. (23d6b5d)

2009-11-08 Ted Gould

        * releasing version 0.0.1-0ubuntu3~ppa1~service2 (9738887)
        * Building the service and getting things in better shape. (3d0184b)

2009-11-06 Ted Gould

        * Grabbing the properties and going to town.  Turning back into
          another signal. (d0abdda)
        * Adding some XML for dbus properties interface. (ffd9962)
        * Building the property proxy. (4bcfbf4)
        * Forgot to save. (1cee2f3)
        * Building a proxy. (8b92c1c)
        * Adding an application list. (e25d64f)
        * Getting the registration signal, and passing it up the stack.
          (bca77a7)
        * Adding app add/remove to appstore (78a6d0d)
        * Woot!  Now we have signals in our watcher.  Let's rock on!
          (591311a)
        * Connecting the watcher and the appstore.  And actually building
          one.  We're on DBus now. (ced0ec2)
        * Moving the watcher stuff to the new object. (fa2ac00)
        * Creating a new object to be our watcher.  Apparently we can't have
          two DBus interfaces on the same object :( (ab660ab)
        * Adding in teh source directory for distcheck (c894aa5)
        * Adding in a set of marshallers to make our signals all happy.
          (53f654e)
        * Putting some signals on here. (3ea189e)
        * Changing some API and implementing the simple stuff. (4644370)
        * Fleshing out the application added stuff (faef47f)
        * Fleshing out get_entries (463ca24)
        * Making for a list of applications that we can build and destroy at
          will. (1dc8a8a)
        * Hooking up to the proxy.  Let's do this! (349af66)
        * Fleshing out connected to start bringing up the proxy. (10d1d2e)
        * Migrating over to the libindicator 0.3.0 API. (7532947)

2009-11-04 Ted Gould

        * Put the cleanup of gtester on the wrong variable. (f23c54f)
        * A small fix to make things run under dbus-test-runner so that we
          start a dbus test session. (2d5018b)

2009-11-03 Ted Gould

        * Put the gtester test under a dbus-test-runner to ensure that we
          have a session bus to test with. (8ef7ed5)
        * Fleshing out the library so that the interface is implemented.
          Also tests for the library. (be7d032)
        * Removing the checks on private being NULL when we're already
          testing the object. (cd7ec27)

2009-11-02 Ted Gould

        * releasing version 0.0.1-0ubuntu3~ppa1~service1 (3345ad5)
        * releasing version 0.0.1-0ubuntu2 (88be27c) (tag: 0.0.1-0ubuntu2)
        * debian/control: Splitting out libcustomindicator;  Adding
          debian/libcustomindicator0.install,
          debian/libcustomindicator-dev.install,
          debian/indicator-custom.install   to make all the
          different packages. (9d043e6)
        * Merging project name change. (81d7988)
        * Changing the package name (a260225)
        * releasing version 0.0.1-0ubuntu2~ppa1~service1 (733c841)
        * Grabbing from the service development branch (8d4cdc7)
        * We've got a service manager.  Now we'll start ourselves up!
          (d496d7a)
        * Getting the name into a header. (9aff9ba)
        * Boom, make us an indicator service. (3d1c4c4)

2009-11-02 Robert Collins

        * Draft packaging. (df182c1)

2009-10-28 Ted Gould

        * Building our app store (f2c4a15)
        * Registering ourselves on dbus (714f372)
        * Boom!  Now we're implementing dbus. (8903841)
        * Adding an appstore object to hold all of our apps. (ecf44bf)
        * Adding the custom-service interface. (ec8cd68)
        * Pulling in the unreviewed lib-flesh branch (b6d06ca)

2009-10-22 Ted Gould

        * 'Merging' in trunk.  No changes.  Better history. (9c868b9)
        * Adding in testing the location of the dbusmenuserver (1b71a85)
        * Looking for the wrong property, we can only set the object.
          (d6cc939)
        * We can't get the enum values from the string param spec, we need to
          find the enum one and then use that. (20caa2f)
        * Property name changes.  Boo. (6030445)
        * Changes due to the properties changes. (6a255c6)
        * Gimme a break (0256208)
        * Adding a set of read-only properties that deal with the strings for
          dbus, and let the other properties do the real work.
          (00f4a53)
        * Branch building up the interface for the library. (20d116a)
        * Checking the category and state (b04e0de)
        * All strings work. (af10235)
        * Fleshing out the property counting. (e99a6fe)
        * Settng the right path (199365d)
        * If we fail, we need to really fail. (9db2ce5)
        * Adding a kill function, just in case. (e0d35fc)
        * Basic code calling all the properties. (a8b1009)
        * Fleshing out the server to setup a simple custom indicator.
          (83a3d84)
        * Switching to using a little autotest as well. (23b7242)
        * Adding in two little client server binaries for testing the custom
          indicator. (bca9b7e)

2009-10-21 Ted Gould

        * Change the enums to match the KDE ones to make life simpler even
          though I dislike the names. (0df50d7)
        * Turning on verbose output and showing the status of all tests.
          (5e34573)
        * Getting the prototype right. (5aeff27)
        * The signal should have a string not a enum value. (02cb525)
        * Making sure to signal if we change the status. (b08b158)
        * Adding test to test the property change signals. (5e1d1d9)
        * Checking all the set functions. (dc43af9)
        * Switching from doing the GValues as enums to the more specific
          types. (d11f7e6)
        * Silly, these are enums not ints. (fdd9a5d)
        * Adding a test that sets a bunch of properties. (795f7d9)

2009-10-21 Cody Russell

        * Ah, forgot a return.  Cody would kill me!  Oh, no. (0093c37)

2009-10-21 Ted Gould

        * Woot!  We can build a custom indicator, and it exists. (10e9550)

2009-10-20 Ted Gould

        * Now we're building a test, woot! (5e928c9)
        * Tests directory. (d28010e)
        * Fleshing out the get functions. (ada3399)
        * Fleshing out the set functions. (e932bfa)
        * Filling out some prototypes. (08c19ed)
        * Okay, connecting this little thing into DBus already. (81afbd1)
        * Making sure to free and unref all of our private variables.
          (484b489)
        * Now for some 'set' code.  Bringin' it. (59d8fbd)
        * Fleshing out get parameters... (23fdc86)
        * Adding in a bunch of things to the private struct.  We now have
          data! (b52ac88)
        * Basic property case statements. (56cd30a)

2009-10-19 Ted Gould

        * Creating a connected property to check easily. (b82c8da)
        * Boom, there are some signals. (9dbe19d)
        * Adding in the dbus signals from that interface. (6587e75)
        * Header comments and a new signal that we'll need to deal with.
          (bf1efc1)
        * Wow, properties.  The properties system in gobject is a little
          insane. (6da6b6b)

2009-10-17 Ted Gould

        * Changing the name to match the changes in the previous commit.
          (9e25a77)
        * Switching the name to be more consistent. (49bddff)
        * Getting the name change into the templates properly. (72815e1)
        * Making the enums camel case.  I prefer the other, but it seems best
          to match GTK style (06111bc)
        * Making sure to get the property names into defines so that we can
          ensure they're all the same. (7b45f65)
        * Filling out the property list. (a49c643)

2009-10-16 Ted Gould

        * Putting in our first property, status.  Woo hoo! (85b61a4)
        * Oops, shouldn't be CLUTTER there. (8dc712f)
        * Forgot to change the package name (63e10a6)
        * Set and get properties (31f519d)
        * Merging in the library interface. (227666e)
        * Adding the possibility of making the directories silently.
          (50e28fd)
        * Some small changes to make 'distcheck' happy. (f4f482c)
        * Another object file bites the dust (174af37)
        * Fixing the templates. (00c4764)
        * Filling out the enums to have values. (0b6ffb4)
        * Adding the C file into the build as well. (d7e3756)
        * Putting in the enum templates and building them. (ba81d4a)
        * Setting up build to build the enums. (5b8ab09)
        * Adding programs for buiding enums and marsherers and all that jazz
          (0336cb4)

2009-10-16 Emmanuele Bassi

        * Stealing these makefile segments to build enums and marshallers
          (8ad3fb0)

2009-10-16 Ted Gould

        * Building a basic prototype of the API for the lib. (1101075)
        * Adding in the DBus interface files and building of those. (664bc74)

2009-10-15 Ted Gould

        * Building a basic library starting out. (b666cc1)
        * We need a directory. (be305bc)
        * We're on the dbus branch now (e576b28)
        * Ignoring the generated dbus interfaces. (afd1d17)
        * Building the ChangeLog on dist (d6fb194)

2009-10-13 Ted Gould

        * Making sure we get our specs and clean up after ourselves.
          Distcheck magic. (df1cc80)
        * Getting some functions so that we can link happy like. (89ebfc6)
        * Fixing symbol names. (17192c2)
        * Getting to building all these header files nicely. (7b2c29f)
        * Some dbus y'all! (9fc5dd8)
        * A basical build system and basic files. (e265e46)
        * Building a basic indicator and the service to go along with it.
          (fb328a4)
        * Cleaning up status (d7640ed)
        * Local install on distcheck, now it passes. (683109e)
        * Wrong version (5b565b0)
        * DBus Service file (6e1d6b9)
        * Autogen and friends (7bd4902)
        * Very basic. (8f6b6e0)
        * First version (140fda5)