aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
blob: b7fa3391096e01dfad8acaf33258f15fe08cf3bf (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
# Generated by Makefile. Do not edit.

2011-03-23  Ted Gould  <ted@gould.cx>

	0.3.22

2011-03-23  Ted Gould  <ted@gould.cx>

	Adding API to know what the environment the indicator is in

2011-03-22  Ted Gould  <ted@gould.cx>

	Adding a nice little checking function

2011-03-22  Ted Gould  <ted@gould.cx>

	Adding an environments variable and make a lifecycle for it.

2011-03-22  Ted Gould  <ted@gould.cx>

	Getting some stub functions in

2011-03-22  Ted Gould  <ted@gould.cx>

	Making the environments a list of strings

2011-03-16  Ted Gould  <ted@gould.cx>

	0.3.21

2011-03-16  Ted Gould  <ted@gould.cx>

	Fix checking for target environment on the desktop group

2011-03-16  Ted Gould  <ted@gould.cx>

	Make sure not to use TargetEnvironment on the desktop group

2011-03-03  Ted Gould  <ted@gould.cx>

	0.3.20

2011-03-03  Ted Gould  <ted@gould.cx>

	Use the TargetEnvironment key

2011-03-02  Ted Gould  <ted@gould.cx>

	Removing warning that there are no shortcuts, that's a valid thing to have.

2011-03-02  Ted Gould  <ted@gould.cx>

	Adding a target environment key and checking for that over others.

2011-02-17  Ted Gould  <ted@gould.cx>

	0.3.19

2011-02-16  Ted Gould  <ted@gould.cx>

	Returning reserveds as we're breaking ABI anyway

2011-02-16  Ted Gould  <ted@gould.cx>

	Bumping the major version of the lib and the indicator directory

2011-02-16  Ted Gould  <ted@gould.cx>

	Merging support for having an accessible description

2011-02-08  Luke Yelavich  <luke.yelavich@canonical.com>

	accessible_name -> accessible_desc in tests as well

2011-02-08  Luke Yelavich  <luke.yelavich@canonical.com>

	* accessible_name -> accessible_desc to better reflect the use of the content.
	* Add accessible-desc-update signal so that indicators can tell
	indicator-applet/unity that the accessible description has changed

2011-02-01  Luke Yelavich  <luke.yelavich@canonical.com>

	use const gchar for variable and prototype

2011-02-01  Luke Yelavich  <luke.yelavich@canonical.com>

	Merge from trunk

2011-01-18  Luke Yelavich  <luke.yelavich@canonical.com>

	Add accessible_name variable in indicator entry structure

2011-02-16  Ted Gould  <ted@gould.cx>

	Fixing makefile to include all the necissary files in dist

2011-02-15  Ted Gould  <ted@gould.cx>

	Adding the service.in files as well

2011-02-15  Sebastien Bacher  <seb128@ubuntu.com>

	Add session.conf.in to dist

2011-01-27  Ted Gould  <ted@gould.cx>

	0.3.18

2011-01-27  Ted Gould  <ted@gould.cx>

	Adding a signal for scrolling that includes the entry

2011-01-27  Marco Trevisan (Treviño)  <mail@3v1n0.net>

	Removed typo in code.
	
	Pasted a more SCROLL value :P

2011-01-27  Marco Trevisan (Treviño)  <mail@3v1n0.net>

	Added support for "signal-entry" signal
	
	libindicator support the new "scroll-entry" signal (which get called
	using the target entry as parameter too) I think that maybe we could
	simply rewrite the "scroll" signal, but I kept it there for
	compatibility reasons; however, actually just the indicator-sound
	should be fixed in case of switch...

2011-01-14  Ted Gould  <ted@gould.cx>

	0.3.17

2011-01-13  Ted Gould  <ted@gould.cx>

	Use dbus name watches instead of g-owner-change signal for watching for restarts.

2011-01-13  Michael Terry  <mike@mterry.name>

	use actual DBus NameOwnerChanged interface rather than GDBus's higher level signal because that one only works for well-known names

2011-01-13  Michael Terry  <mike@mterry.name>

	fix basename issue when make is given full path

2011-01-13  Ted Gould  <ted@gould.cx>

	0.3.16

2011-01-10  Ted Gould  <ted@gould.cx>

	Adding a signal for the menu being closed.

2011-01-10  Ted Gould  <ted@gould.cx>

	Fixing doc strings

2011-01-09  Ted Gould  <ted@gould.cx>

	Adding a virtual function for closing the menu and a wrapper for it.

2011-01-10  Ted Gould  <ted@gould.cx>

	Porting to GDBus

2011-01-09  Ted Gould  <ted@gould.cx>

	Using the GCancellable to detect if we're already creating a proxy so that we don't do it twice.

2011-01-09  Ted Gould  <ted@gould.cx>

	Using variant_unref instead of object_unref as it's a variant

2011-01-09  Ted Gould  <ted@gould.cx>

	Making getting the proxy and watching cancellable so that we don't get weird crashes.

2011-01-09  Ted Gould  <ted@gould.cx>

	Adding in the ability to cancel the connection on short lived objects.

2011-01-07  Ted Gould  <ted@gould.cx>

	Removing a test that is broken at a lower level

2011-01-07  Ted Gould  <ted@gould.cx>

	Getting test suite build fixes

2011-01-07  Ted Gould  <ted@gould.cx>

	Syncing up to trunk

2011-01-07  Ted Gould  <ted@gould.cx>

	Switching to the session bus

2011-01-07  Ted Gould  <ted@gould.cx>

	Out of order parameters.

2011-01-07  Ted Gould  <ted@gould.cx>

	Adding in creating the interface info from the XML files

2011-01-07  Ted Gould  <ted@gould.cx>

	Replacing the service proxy with a brand new GDBus one

2011-01-07  Ted Gould  <ted@gould.cx>

	Ignoring the new files

2011-01-07  Ted Gould  <ted@gould.cx>

	Removing the bus and dbus_proxy variables as we won't need them anymore.

2011-01-07  Ted Gould  <ted@gould.cx>

	Switching around headers to the new world order

2011-01-07  Ted Gould  <ted@gould.cx>

	Instead of setting up a proxy to watch the watcher we're setting up a bus name watch on each one.

2011-01-07  Ted Gould  <ted@gould.cx>

	Little clean-ups the compiler found now that it's more happy.

2011-01-07  Ted Gould  <ted@gould.cx>

	Switch over to getting the GDBus bus instead of the dbus-glib one

2011-01-07  Ted Gould  <ted@gould.cx>

	Removing unused prototypes

2011-01-07  Ted Gould  <ted@gould.cx>

	Fleshing out the bus_method_call functions and tying them into the traditional start points from dbus.

2011-01-07  Ted Gould  <ted@gould.cx>

	Switching the way that we get a name on dbus and removing the dbus_proxy which was used for this previously.

2011-01-07  Ted Gould  <ted@gould.cx>

	Setting up the VTable

2011-01-07  Ted Gould  <ted@gould.cx>

	Switching the registration of the object over.

2011-01-07  Ted Gould  <ted@gould.cx>

	Parsing the XML file for the interface description on class init

2011-01-07  Ted Gould  <ted@gould.cx>

	Removing the dbus-glib headers

2011-01-07  Ted Gould  <ted@gould.cx>

	Changing the way the dbus xml is handled.

2011-01-06  Ted Gould  <ted@gould.cx>

	Removing dbus-glib from the build

2011-01-09  Ted Gould  <ted@gould.cx>

	Making the test suite compile again

2011-01-07  Ted Gould  <ted@gould.cx>

	Disabling the launch test temporarily as it seems broken in GLib

2011-01-07  Ted Gould  <ted@gould.cx>

	Fixing the linking of the tests to the right libs

2011-01-06  Ted Gould  <ted@gould.cx>

	Fixing the GTK3 include path.

2011-01-06  Ken VanDine  <ken.vandine@canonical.com>

	fixed the includedir

2011-01-06  Ted Gould  <ted@gould.cx>

	Fixing build source path and build a GTK3 loader

2010-11-24  Ken VanDine  <ken.vandine@canonical.com>

	Use abs_srcdir to find template files

2010-11-24  Ken VanDine  <ken.vandine@canonical.com>

	Build indicator-loader3 

2011-01-06  Ted Gould  <ted@gould.cx>

	Adding an important field to relate to when to show the indicator.

2011-01-04  Ted Gould  <ted@gould.cx>

	Adding a function to check whether we should show the indicator with priority.

2011-01-04  Ted Gould  <ted@gould.cx>

	Making it a real signal now

2011-01-04  Ted Gould  <ted@gould.cx>

	Adding a show now state to indicate priority.

2010-11-11  Ted Gould  <ted@gould.cx>

	0.3.15

2010-11-11  Ted Gould  <ted@gould.cx>

	Fixing the ignore file tarball matching

2010-11-11  Ted Gould  <ted@gould.cx>

	Merging in the GTK3 basis for the build

2010-11-11  Ted Gould  <ted@gould.cx>

	Making sure to get both pc files in the tarball

2010-11-11  Ted Gould  <ted@gould.cx>

	Checking for deprecations and making sure we check on distcheck

2010-11-11  Ted Gould  <ted@gould.cx>

	Putting the GTK3 indicators in a different directory.

2010-11-11  Ted Gould  <ted@gould.cx>

	Updating ignore for the GTK3 stuff

2010-11-11  Ted Gould  <ted@gould.cx>

	Merging in trunk to solve conflicts

2010-10-06  Michael Terry  <mike@mterry.name>

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

2010-06-19  Michael Terry  <michael.terry@canonical.com>

	don't use 3.3 version, rather use indicator3

2010-06-19  Michael Terry  <michael.terry@canonical.com>

	first pass at providing a gtk3 version

2010-10-15  Ted Gould  <ted@gould.cx>

	Adding a file to have the debugging environment variables

2010-10-15  Ted Gould  <ted@gould.cx>

	Add mean comment

2010-10-15  Ted Gould  <ted@gould.cx>

	Adding a number in the name

2010-10-15  Ted Gould  <ted@gould.cx>

	Installing the environment file in the session dir

2010-10-15  Ted Gould  <ted@gould.cx>

	All the environment flags we should set for debugging

2010-09-21  Ted Gould  <ted@gould.cx>

	0.3.14

2010-09-21  Ted Gould  <ted@gould.cx>

	Changing AUTHORS to mention it's built

2010-09-21  Ted Gould  <ted@gould.cx>

	Adding dist hooks for AUTHORS and ChangeLog

2010-09-19  Ted Gould  <ted@gould.cx>

	Adding in the about-to-show signal

2010-09-17  Ted Gould  <ted@gould.cx>

	Adding some version information so we don't need a conflicts

2010-09-16  Ted Gould  <ted@gould.cx>

	Changing indicator directory to '4'

2010-09-16  Ted Gould  <ted@gould.cx>

	Creating a callback on the loader to signal the event press down to the entry.

2010-09-16  Ted Gould  <ted@gould.cx>

	Fleshing out the entry activate function

2010-09-16  Ted Gould  <ted@gould.cx>

	Breaking the ABI and adding a subclassable function.

2010-09-16  Ted Gould  <ted@gould.cx>

	Adding a function to push activate back down.

2010-09-15  Ted Gould  <ted@gould.cx>

	0.3.13

2010-09-15  Ted Gould  <ted@gould.cx>

	Printout on menu showing in the loader

2010-09-15  Ted Gould  <ted@gould.cx>

	Putting a printout in for showing menus.

2010-09-14  Ted Gould  <ted@gould.cx>

	Adding a menu_show signal

2010-09-14  Ted Gould  <ted@gould.cx>

	Adding in the signal for the menu showing

2010-09-14  Ted Gould  <ted@gould.cx>

	Forgot the signal name

2010-09-14  Ted Gould  <ted@gould.cx>

	Adding slot for the menu show signal

2010-08-18  Ted Gould  <ted@gould.cx>

	0.3.12

2010-08-18  Ted Gould  <ted@gould.cx>

	Fixing a g_error so we don't kill unity

2010-08-16  Ted Gould  <ted@gould.cx>

	Changing the message to a warning and clearing the GtkImage.

2010-08-13  Ted Gould  <ted@gould.cx>

	Adding debug flag

2010-08-13  Mikkel Kamstrup Erlandsen  <mikkel.kamstrup@gmail.com>

	Add an --enable-debug flag to configure script that forces a -g to gcc

2010-08-12  Ted Gould  <ted@gould.cx>

	0.3.11

2010-08-12  Ted Gould  <ted@gould.cx>

	Allowing for absolute file names for icons.

2010-08-09  Karl  <karl@karl-desktop>

	Added absolute filename fixes

2010-07-15  Ted Gould  <ted@gould.cx>

	0.3.10

2010-07-13  Ted Gould  <ted@gould.cx>

	Adding a configurable timeout by environment variable.

2010-07-12  Ted Gould  <ted@gould.cx>

	Adding a new variable to adjust the time of the kill switch.

2010-07-09  Ted Gould  <ted@gould.cx>

	Fixing unwatching lookups.

2010-07-09  Ted Gould  <ted@gould.cx>

	We want the key not the value.

2010-07-09  Ted Gould  <ted@gould.cx>

	Taking it to the next level with impoliteness.

2010-07-09  Ted Gould  <ted@gould.cx>

	Lots of impoliteness to make sure.

2010-07-09  Ted Gould  <ted@gould.cx>

	Adding an impolite manager.

2010-07-09  Ted Gould  <ted@gould.cx>

	Bug

2010-07-09  Ted Gould  <ted@gould.cx>

	Adding in the unwatching test

2010-07-09  Ted Gould  <ted@gould.cx>

	A couple debug messages to make the test easier to read the output from.

2010-07-09  Ted Gould  <ted@gould.cx>

	Up to 5 watchers.

2010-07-09  Ted Gould  <ted@gould.cx>

	Longer timeout

2010-07-09  Ted Gould  <ted@gould.cx>

	Okay, we need our own service too.  Bah.

2010-07-09  Ted Gould  <ted@gould.cx>

	Delaying the watchers to ensure that we don't dbus activate, and removing the session.conf to even allow for that.

2010-07-09  Ted Gould  <ted@gould.cx>

	Starting the service ourselves.

2010-07-09  Ted Gould  <ted@gould.cx>

	Ignoring the new builds.

2010-07-09  Ted Gould  <ted@gould.cx>

	Making a new manager

2010-07-09  Ted Gould  <ted@gould.cx>

	Start a multi watch test

2010-07-09  Ted Gould  <ted@gould.cx>

	Uhg, wrong branch

2010-07-09  Ted Gould  <ted@gould.cx>

	Stop asking for the name, instead let's find it on our own.

2010-07-09  Ted Gould  <ted@gould.cx>

	A could of protections for the core.

2010-07-09  Ted Gould  <ted@gould.cx>

	Freeing the service.

2010-07-08  Ted Gould  <ted@gould.cx>

	0.3.9

2010-07-08  Ted Gould  <ted@gould.cx>

	Fixing signals so that our tests pass

2010-07-08  Ted Gould  <ted@gould.cx>

	Documenting the choices of not having a nice callback func.

2010-07-08  Ted Gould  <ted@gould.cx>

	Use the same function so we know everything is all right.

2010-07-08  Ted Gould  <ted@gould.cx>

	Unreffing the objects in dispose and ensuring we disconnect the signals first.

2010-07-08  Ted Gould  <ted@gould.cx>

	Disconnecting signal before removing from hashtable so we don't try twice.

2010-07-08  Ted Gould  <ted@gould.cx>

	Shutdown services when watchers leave the bus.

2010-07-06  Ted Gould  <ted@gould.cx>

	Creating a callback for the destory signal, but then moving the unwatch into a core function so that we can call it.

2010-07-06  Ted Gould  <ted@gould.cx>

	Actually creating a proxy to see if we can detect the watcher going away.

2010-07-06  Ted Gould  <ted@gould.cx>

	Making ths bus tracked in the private structure

2010-07-06  Ted Gould  <ted@gould.cx>

	Switching the watchers data structure over to a hashtable.

2010-07-06  Ted Gould  <ted@gould.cx>

	Removing unused style check

2010-07-06  Ted Gould  <ted@gould.cx>

	Removing the style lookup that wasn't used.

2010-05-06  Ted Gould  <ted@gould.cx>

	Dummy commit

2010-04-09  Ted Gould  <ted@gould.cx>

	0.3.8

2010-04-09  Ted Gould  <ted@gould.cx>

	Disting the templates.

2010-04-09  Ted Gould  <ted@gould.cx>

	0.3.7

2010-04-09  Ted Gould  <ted@gould.cx>

	Fixing the desktop test to make it more reliable.

2010-04-06  Ted Gould  <ted@gould.cx>

	Translating the shortcuts of the actions based on the desktop file translation domains.

2010-04-06  Ted Gould  <ted@gould.cx>

	Typo

2010-04-05  Ted Gould  <ted@gould.cx>

	Switching to only use the g_dgettext version if the locale_string function doesn't change the string from the normal lookup (and we have a domain to look in).

2010-04-05  Ted Gould  <ted@gould.cx>

	Make it so that we check the GNOME-Gettext-Domain as well

2010-04-02  Ted Gould  <ted@gould.cx>

	If we don't have a domain just use the locale function, otherwise we need to use that domain to get the translation.

2010-04-02  Ted Gould  <ted@gould.cx>

	Adding a private variable for the translation domain and grabbing it from the keyfile.

2010-03-18  Ted Gould  <ted@gould.cx>

	0.3.6

2010-03-17  Ted Gould  <ted@gould.cx>

	Adding the signal for scrolling in the indicator-object

2010-03-17  Cody Russell  <crussell@canonical.com>

	name

2010-03-17  Cody Russell  <crussell@canonical.com>

	Documentation fix.

2010-03-16  Cody Russell  <crussell@canonical.com>

	Use IndicatorScrollDirection instead of gboolean in IndicatorObjectClass->scroll function pointer.

2010-03-16  Cody Russell  <crussell@canonical.com>

	Define IndicatorScrollDirection enum for scroll signal parameter.

2010-03-15  Cody Russell  <crussell@canonical.com>

	Add 'scroll' signal.

2010-03-11  Ted Gould  <ted@gould.cx>

	0.3.5

2010-03-11  Ted Gould  <ted@gould.cx>

	Creating a function to update the icon to a new name.

2010-03-11  Ted Gould  <ted@gould.cx>

	Watching for style changes on the image.

2010-03-11  Ted Gould  <ted@gould.cx>

	Check to see if we've seen the image previously before adding signals in.

2010-03-11  Ted Gould  <ted@gould.cx>

	Splitting things out into an update function and a buid function.

2010-03-10  Ted Gould  <ted@gould.cx>

	Add a small helper for loading images.

2010-03-10  Ted Gould  <ted@gould.cx>

	Adding in a copyright header.

2010-03-10  Ted Gould  <ted@gould.cx>

	A little loader to test to see if we load an icon and what size it is.

2010-03-10  Ted Gould  <ted@gould.cx>

	If we get an icon that is too big, we have to scale it.

2010-03-10  Ted Gould  <ted@gould.cx>

	Doing dynamic size calculation based on the font if we have a prop set telling us to do so.

2010-03-10  Ted Gould  <ted@gould.cx>

	Disconnect from theme update when the image goes away.

2010-03-10  Ted Gould  <ted@gould.cx>

	Setting up the callback for themes changing.

2010-03-10  Ted Gould  <ted@gould.cx>

	Pulled out a bunch of the code into a refresh function for signals.

2010-03-10  Ted Gould  <ted@gould.cx>

	Fleshing out the image loading function.

2010-03-10  Ted Gould  <ted@gould.cx>

	Adding in an image helper library.

2010-02-25  Ted Gould  <ted@gould.cx>

	0.3.4

2010-02-19  Ted Gould  <ted@gould.cx>

	No reason we need newer APIs than this.

2010-02-18  Ted Gould  <ted@gould.cx>

	0.3.3

2010-02-18  Ted Gould  <ted@gould.cx>

	Adding in an object to get shortcuts out of desktop files.

2010-02-16  Ted Gould  <ted@gould.cx>

	Ignoring the touch file for the testing

2010-02-16  Ted Gould  <ted@gould.cx>

	Being more specific about where we should find the touch file for distcheck

2010-02-16  Ted Gould  <ted@gould.cx>

	Disabling debug messages

2010-02-16  Ted Gould  <ted@gould.cx>

	Debug messages.

2010-02-16  Ted Gould  <ted@gould.cx>

	We should look at the other nicks even if this one doesn't work.

2010-02-16  Ted Gould  <ted@gould.cx>

	Shipping our test desktop file

2010-02-16  Ted Gould  <ted@gould.cx>

	Clean up touch file

2010-02-16  Ted Gould  <ted@gould.cx>

	Checking to ensure the right nick is in the list

2010-02-16  Ted Gould  <ted@gould.cx>

	Using the nick directly to make this work better.

2010-02-16  Ted Gould  <ted@gould.cx>

	Wrong identity

2010-02-16  Ted Gould  <ted@gould.cx>

	Forgot to set the type of the desktop file, need to be an Application.

2010-02-16  Ted Gould  <ted@gould.cx>

	Add a test to launch an nick

2010-02-16  Ted Gould  <ted@gould.cx>

	Adding a check to ensure we're getting the right names from the nicks.

2010-02-16  Ted Gould  <ted@gould.cx>

	Making the function not recurse forever.

2010-02-16  Ted Gould  <ted@gould.cx>

	Adding in local filter test functions.

2010-02-16  Ted Gould  <ted@gould.cx>

	Check to ensure a global no show works.

2010-02-16  Ted Gould  <ted@gould.cx>

	Fix group detection to put a space in the name of the group

2010-02-16  Ted Gould  <ted@gould.cx>

	Better name

2010-02-16  Ted Gould  <ted@gould.cx>

	Ignoring the new stuff

2010-02-16  Ted Gould  <ted@gould.cx>

	A backslash off

2010-02-16  Ted Gould  <ted@gould.cx>

	Adding in a basic test desktop file test

2010-02-16  Ted Gould  <ted@gould.cx>

	Create a testing desktop file

2010-02-16  Ted Gould  <ted@gould.cx>

	Refactoring the list checks into their own functions so we can check the desktop group as well.

2010-02-16  Ted Gould  <ted@gould.cx>

	Adding in checking to see if we should be showing this entry.

2010-02-16  Ted Gould  <ted@gould.cx>

	Basic parsing of the files.

2010-02-16  Ted Gould  <ted@gould.cx>

	Checking for our shortcuts key, we don't really want a desktop file without it.

2010-02-16  Ted Gould  <ted@gould.cx>

	Start loading the keyfile.

2010-02-16  Ted Gould  <ted@gould.cx>

	Removing the reading of the desktop file.

2010-02-16  Ted Gould  <ted@gould.cx>

	Identity management with the properties.

2010-02-16  Ted Gould  <ted@gould.cx>

	Some error handling.

2010-02-15  Ted Gould  <ted@gould.cx>

	A basic property system.

2010-02-15  Ted Gould  <ted@gould.cx>

	Fleshing out the exec function which require GIO Unix

2010-02-15  Ted Gould  <ted@gould.cx>

	Fleshing out getting the Name of a shortcut

2010-02-15  Ted Gould  <ted@gould.cx>

	Fleshing out _new and _get_nicks  Both are lovely functions.

2010-02-15  Ted Gould  <ted@gould.cx>

	Getting some new private variables, and making sure they have a full lifecycle.

2010-02-15  Ted Gould  <ted@gould.cx>

	Instanciating the prototypes and making some comments.

2010-02-15  Ted Gould  <ted@gould.cx>

	Letz get ur prototypes

2010-02-15  Ted Gould  <ted@gould.cx>

	Copyright headers

2010-02-15  Ted Gould  <ted@gould.cx>

	Adding in the new object we're building for evaluating desktop shortcuts.

2010-02-04  Ted Gould  <ted@gould.cx>

	0.3.2

2010-02-02  Ted Gould  <ted@gould.cx>

	Fixes to the test suite.

2010-02-02  Ted Gould  <ted@gould.cx>

	Adjusting to new timeout value

2010-02-02  Ted Gould  <ted@gould.cx>

	Switching to 'bash'

2010-02-02  Ted Gould  <ted@gould.cx>

	Adding an printout for saying which display we created.

2010-02-02  Ted Gould  <ted@gould.cx>

	Adding in run-xvfb.sh

2010-02-01  Ted Gould  <ted@gould.cx>

	Better handling of some timeout conditions and more logging.

2010-01-28  Ted Gould  <ted@gould.cx>

	Adding a debug message for restarting the service.

2010-01-28  Ted Gould  <ted@gould.cx>

	Error handling when building our proxies.

2010-01-28  Ted Gould  <ted@gould.cx>

	Changing timeout to be approximatedly 1 second.

2010-01-28  Ted Gould  <ted@gould.cx>

	checking the error field for name callback and printing an error when it fails.

2010-01-28  Ted Gould  <ted@gould.cx>

	In the timeout function mention that we're shutting down, and have an environment variable to stop that.

2010-01-21  Ted Gould  <ted@gould.cx>

	0.3.1

2010-01-21  Ted Gould  <ted@gould.cx>

	When a watch fails we're moving to having that try and restart the startup/connection process again.

2010-01-21  Ted Gould  <ted@gould.cx>

	Adding in tracking of the restart idle function and making sure we don't do it twice.

2010-01-21  Ted Gould  <ted@gould.cx>

	In case we're restarting because of the 'Watch' returning failure we'd have a valid 'service_proxy' object to kill

2010-01-21  Ted Gould  <ted@gould.cx>

	Setting up the watch_cb function so that in errors it'll try to restart.  As most errors will be fixed by trying again.

2010-01-19  Ted Gould  <ted@gould.cx>

	Support for entries having a location and moving that location.

2010-01-18  Ted Gould  <ted@gould.cx>

	Update from trunk.

2010-01-15  Ted Gould  <ted@gould.cx>

	Having the signaller test check the 'moved' signal as well as the others.

2010-01-15  Ted Gould  <ted@gould.cx>

	No error on not having a get_location function.  We'll just return zero.

2010-01-15  Ted Gould  <ted@gould.cx>

	Basic location checking test.

2010-01-15  Ted Gould  <ted@gould.cx>

	Fleshing out the get_location function as much as they're implemented here.

2010-01-15  Ted Gould  <ted@gould.cx>

	Fixing the signal comments.

2010-01-15  Ted Gould  <ted@gould.cx>

	Setting up the move signal, which required custom marshallers.

2010-01-15  Ted Gould  <ted@gould.cx>

	API changes required to have locations for the entries.

2010-01-18  Ted Gould  <ted@gould.cx>

	Adding the code for having the services automatically restart if they crash.

2010-01-15  Ted Gould  <ted@gould.cx>

	It's a fundamental mistake to believe that we can protect people using
	this interface from the disconnection.  We have no information to say
	that the new service starting will come up in the same state as the one
	before it.  We need the individual implementers to verify that.  Now we
	need to fix that.  This commit does so.

2010-01-15  Ted Gould  <ted@gould.cx>

	Handling the connected signal as well, making sure we emit it.

2010-01-15  Ted Gould  <ted@gould.cx>

	Switching what our enviroment variable is for, let's just stop the whole thing instead of playing with it.

2010-01-15  Ted Gould  <ted@gould.cx>

	Setting up the signal for when the proxies falls down, we restart.

2010-01-15  Ted Gould  <ted@gould.cx>

	Filling out the function to start it again, and adding in the function to respond to the timeout.

2010-01-15  Ted Gould  <ted@gould.cx>

	Reset the restart_count when we start, and start to bring in 'start_service_again' to begin to throttle the restarts.

2010-01-15  Ted Gould  <ted@gould.cx>

	Getting a multiplier, and providing a way to override it using an environment variable.

2009-12-10  Ted Gould  <ted@gould.cx>

	0.3.0

2009-12-10  Ted Gould  <ted@gould.cx>

	Adding in license headers.

2009-12-10  Ted Gould  <ted@gould.cx>

	Adding in license headers.

2009-12-07  Ted Gould  <ted@gould.cx>

	Documentation, licenses, and some slight updates.

2009-12-04  Ted Gould  <ted@gould.cx>

	GPLv3 copyright headers.

2009-12-04  Ted Gould  <ted@gould.cx>

	Implemented the _connected function as it's silly that it wasn't.

2009-12-04  Ted Gould  <ted@gould.cx>

	More gtk-doc comments.

2009-12-03  Ted Gould  <ted@gould.cx>

	Adding in some comments and a little bit of code cleanup.

2009-12-03  Ted Gould  <ted@gould.cx>

	Putting in comments for the functions.

2009-12-03  Ted Gould  <ted@gould.cx>

	Service version numbers.

2009-12-07  Ted Gould  <ted@gould.cx>

	Add in support for sevice API versions.

2009-12-07  Ted Gould  <ted@gould.cx>

	Fixing a typo in the error message -- noticed by David Barth.

2009-12-03  Ted Gould  <ted@gould.cx>

	Adding a weak pointer to the service proxy.

2009-12-03  Ted Gould  <ted@gould.cx>

	Switching unwatch to being a no_reply function call.

2009-12-03  Ted Gould  <ted@gould.cx>

	Full signal handlers so that we can see everything.

2009-12-02  Ted Gould  <ted@gould.cx>

	Merge in from trunk, now two failing tests.

2009-12-02  Ted Gould  <ted@gould.cx>

	Forgot to delete the programs.

2009-12-02  Ted Gould  <ted@gould.cx>

	Actually checking the version and erroring on it.

2009-12-02  Ted Gould  <ted@gould.cx>

	Specifying who can't get the session bus.

2009-12-02  Ted Gould  <ted@gould.cx>

	Printing out the session bus address

2009-12-02  Ted Gould  <ted@gould.cx>

	Changing the names we're registering for to be correct.

2009-12-02  Ted Gould  <ted@gould.cx>

	Not erroring when we're supposed to pass.

2009-12-02  Ted Gould  <ted@gould.cx>

	Adding a log domain for error messages

2009-12-02  Ted Gould  <ted@gould.cx>

	Adding a new test to look at version numbers.

2009-12-02  Ted Gould  <ted@gould.cx>

	Adding _new functions that include the version number in them.

2009-12-02  Ted Gould  <ted@gould.cx>

	Sending a version number for the local service.

2009-12-01  Ted Gould  <ted@gould.cx>

	Adding a property for version.

2009-12-01  Ted Gould  <ted@gould.cx>

	Change the watch function to return both an API version and a user set version.

2009-12-03  Ted Gould  <ted@gould.cx>

	Patch to fix autogen.sh

2009-12-03  Cody Russell  <crussell@canonical.com>

	Fix autogen.sh so parameters are passed

2009-12-02  Ted Gould  <ted@gould.cx>

	Adding an unwatch command to allow for graceful disconnection from a service if we're not interested in it.

2009-12-01  Ted Gould  <ted@gould.cx>

	Only getting the bus once.

2009-12-01  Ted Gould  <ted@gould.cx>

	Trying to get a proxy before starting the service every time.  If it exists, let's use it.

2009-12-01  Ted Gould  <ted@gould.cx>

	New files to ignore.

2009-12-01  Ted Gould  <ted@gould.cx>

	Adding a test to ensure that a service gets shutdown by someone unwatching it.

2009-12-01  Ted Gould  <ted@gould.cx>

	Checking to make sure we don't get connected twice, that'd be an error.

2009-12-01  Ted Gould  <ted@gould.cx>

	Updating connection prototype to get all the data.

2009-12-01  Ted Gould  <ted@gould.cx>

	Making the timeout a failure case, and making it so that we want a graceful shutdown.

2009-12-01  Ted Gould  <ted@gould.cx>

	Unwatching if we have mismatched version.

2009-12-01  Ted Gould  <ted@gould.cx>

	When destroying the object we tell the watched service that we're not watching it.

2009-12-01  Ted Gould  <ted@gould.cx>

	Using the define for the version on both sides

2009-12-01  Ted Gould  <ted@gould.cx>

	Finding the watcher and removing him from the list.

2009-12-01  Ted Gould  <ted@gould.cx>

	Add an unwatch function with a basic handler.

2009-11-24  Ted Gould  <ted@gould.cx>

	Adding in a small tool to test loading of indicators on the command line. (easier development)

2009-11-24  Ted Gould  <ted@gould.cx>

	Adding support for removing entries

2009-11-24  Ted Gould  <ted@gould.cx>

	Stopping the app when the window closes.

2009-11-24  Ted Gould  <ted@gould.cx>

	Grabbing the entry added function as well, didn't realize how much it did :)

2009-11-24  Ted Gould  <ted@gould.cx>

	Showing the menubar and window

2009-11-24  Ted Gould  <ted@gould.cx>

	Adding a small little tool to load an indicator from the command line.

2009-11-05  Ted Gould  <ted@canonical.com>

	64-bit fix in that GTypes are not ints on 64-bit

2009-11-05  Ted Gould  <ted@canonical.com>

	Changing the indicator-object API to support indicators that have multiple entries, and are dynamic.

2009-11-04  Ted Gould  <ted@canonical.com>

	Changing the include directory as well.

2009-11-04  Ted Gould  <ted@canonical.com>

	Moving everything up to '3' as we're breaking everyone pretty bad at this point.

2009-11-04  Ted Gould  <ted@canonical.com>

	Updating to current trunk.

2009-11-04  Ted Gould  <ted@canonical.com>

	Use close instead of unreffing.

2009-11-04  Ted Gould  <ted@canonical.com>

	Adding a simple indicator test that checks to make sure we can signal up the stack.

2009-11-04  Ted Gould  <ted@canonical.com>

	Building a dummy indicator that signals.

2009-11-04  Ted Gould  <ted@canonical.com>

	Using the proper define for the type.

2009-11-03  Ted Gould  <ted@canonical.com>

	Adding in some ID helpers.

2009-11-03  Ted Gould  <ted@canonical.com>

	Adding in some signals to make for some more fun.

2009-11-03  Ted Gould  <ted@canonical.com>

	Updating to current trunk.

2009-11-03  Ted Gould  <ted@canonical.com>

	Changing the way the module is free'd

2009-11-03  Ted Gould  <ted@canonical.com>

	Having the test expect an object, but fail when calling the functions.

2009-11-03  Ted Gould  <ted@canonical.com>

	Make the tester dynamically link the lib so that there's not two versions of everything.

2009-11-03  Ted Gould  <ted@canonical.com>

	Linking the indicators with the libindicator library.

2009-11-03  Ted Gould  <ted@canonical.com>

	Switching to checking the entires list instead of individual functions.

2009-11-03  Ted Gould  <ted@canonical.com>

	Converting the dummy indicators over to the new API.  They compile now.

2009-11-03  Ted Gould  <ted@canonical.com>

	Typo

2009-11-03  Ted Gould  <ted@canonical.com>

	Creating the actual backing function for indicator_object_get_entries.

2009-11-03  Ted Gould  <ted@canonical.com>

	Adding in a default handler for get_entries.

2009-11-03  Ted Gould  <ted@canonical.com>

	Whew, blew up the interface and built it back again.

2009-11-03  Ted Gould  <ted@canonical.com>

	Redefining the interface.  Now this object should get subclassed by folks.

2009-11-03  Ted Gould  <ted@canonical.com>

	Removing the instance object.  I think that we can do everything we need by using the object.

2009-11-03  Ted Gould  <ted@canonical.com>

	Switching to a set_type function instead of making people do that themselves.

2009-11-03  Ted Gould  <ted@canonical.com>

	Adding in the basis for the instance class.

2009-11-03  Ted Gould  <ted@canonical.com>

	Stripping out the symbols for the old stuff, and going with the new of just getting a type.

2009-11-03  Ted Gould  <ted@canonical.com>

	We need atleast the loader branch as that's what we want to change.

2009-11-03  Ted Gould  <ted@canonical.com>

	Adding a service management interface into libindicators as many will use that.

2009-11-03  Ted Gould  <ted@canonical.com>

	Making a warning not use a colloquialism.

2009-11-03  Ted Gould  <ted@canonical.com>

	Changing version to service_version

2009-11-03  Ted Gould  <ted@canonical.com>

	Syncing up with trunk before merging.

2009-11-02  Ted Gould  <ted@canonical.com>

	Oops, we need to tell package config that we're a big library now.

2009-11-02  Ted Gould  <ted@canonical.com>

	Distcheck fixes.  Looking for the files in the right place and making sure we clean up after ourselves.

2009-11-02  Ted Gould  <ted@canonical.com>

	We should pass the test if we get a connection, it means we activated.

2009-11-02  Ted Gould  <ted@canonical.com>

	We want to not get the shutdown.  Since we're testing that we get it without connection we can now assume that if we don't get it we should pass.

2009-11-02  Ted Gould  <ted@canonical.com>

	Adding a fallback to the session bus after trying the starter bus.

2009-11-02  Ted Gould  <ted@canonical.com>

	Switching the name to match the service file... should fail.

2009-11-02  Ted Gould  <ted@canonical.com>

	Building a service file.

2009-11-02  Ted Gould  <ted@canonical.com>

	Adding in the basic data needed to start bringing up a test to start the service.

2009-11-02  Ted Gould  <ted@canonical.com>

	Fixing up the build rules so that they're directory independent.

2009-11-02  Ted Gould  <ted@canonical.com>

	Some things are errors that should really be warnings.

2009-11-02  Ted Gould  <ted@canonical.com>

	Ah, we can't throw an error on success.

2009-10-30  Ted Gould  <ted@canonical.com>

	Adding a test that ensures we don't get a connect signal.

2009-10-30  Ted Gould  <ted@canonical.com>

	Adding in the connected property and signalling when we're all hooked up.

2009-10-29  Ted Gould  <ted@canonical.com>

	A service proxy, and then calling watch.

2009-10-29  Ted Gould  <ted@canonical.com>

	Building the dbus proxy and using it a little bit.

2009-10-29  Ted Gould  <ted@canonical.com>

	Ah, forgot to free name

2009-10-29  Ted Gould  <ted@canonical.com>

	Properties functions.

2009-10-29  Ted Gould  <ted@canonical.com>

	Signals and properties, oh my! 

2009-10-29  Ted Gould  <ted@canonical.com>

	Adding the API functions.

2009-10-29  Ted Gould  <ted@canonical.com>

	Oops, forgot to set to passed.

2009-10-29  Ted Gould  <ted@canonical.com>

	Sending shutdown signal 500 ms after getting a name if we have no watchers.

2009-10-29  Ted Gould  <ted@canonical.com>

	Adding in the watchers and timeout parameter.

2009-10-29  Ted Gould  <ted@canonical.com>

	Adding in some shared strings for finding intefaces and objects.

2009-10-29  Ted Gould  <ted@canonical.com>

	Woot!  We're a DBus service now.

2009-10-29  Ted Gould  <ted@canonical.com>

	Building ourselves a DBus proxy.

2009-10-29  Ted Gould  <ted@canonical.com>

	Filling in more of the name property.

2009-10-29  Ted Gould  <ted@canonical.com>

	Adding in the 'name' property

2009-10-29  Ted Gould  <ted@canonical.com>

	Adding the shutdown signal

2009-10-29  Ted Gould  <ted@canonical.com>

	Woot!  A failing test.  Look how TDD I am.

2009-10-29  Ted Gould  <ted@canonical.com>

	Making the gtester stuff into a autotest thingy.

2009-10-29  Ted Gould  <ted@canonical.com>

	Creating a new test and linking it into things.

2009-10-29  Ted Gould  <ted@canonical.com>

	Putting a dummy implementation in for _new for linking

2009-10-29  Ted Gould  <ted@canonical.com>

	Adding basic interfaces and docs to IndicatorService

2009-10-29  Ted Gould  <ted@canonical.com>

	Defining some API and boot strapping documentation.

2009-10-29  Ted Gould  <ted@canonical.com>

	Making 'INDICATOR' the prefix for the objects.

2009-10-29  Ted Gould  <ted@canonical.com>

	Putting in some templated objects.

2009-10-28  Ted Gould  <ted@canonical.com>

	Building ourselves a little dbus spec

2009-10-28  Ted Gould  <ted@canonical.com>

	Adding a description for the indicator service.

2009-10-28  Ted Gould  <ted@canonical.com>

	Grabbing the loader branch

2009-11-03  Ted Gould  <ted@canonical.com>

	Merging in an interface for loading modules cleanly.

2009-11-03  Ted Gould  <ted@canonical.com>

	Changing comment on private struct.

2009-11-03  Ted Gould  <ted@canonical.com>

	Typo

2009-11-03  Ted Gould  <ted@canonical.com>

	Comments in the copyright statements updated.

2009-10-28  Ted Gould  <ted@canonical.com>

	Removing valgrind as I want to clean this branch up and make another for that.

2009-10-28  Ted Gould  <ted@canonical.com>

	Oh, legal headers.  Fun, fun.

2009-10-28  Ted Gould  <ted@canonical.com>

	Adding in comments.

2009-10-14  Ted Gould  <ted@canonical.com>

	Adding in check for valgrind that we'll need for the test tools.

2009-10-11  Ted Gould  <ted@canonical.com>

	Adding the terballs into ignore

2009-10-11  Ted Gould  <ted@canonical.com>

	Making a tools directory

2009-10-11  Ted Gould  <ted@canonical.com>

	using the blank dummy indicator

2009-10-11  Ted Gould  <ted@canonical.com>

	Building a new dummy indicator that doesn't have any symbols in it.

2009-10-08  Ted Gould  <ted@canonical.com>

	Testing the accessors

2009-10-08  Ted Gould  <ted@canonical.com>

	Adding some accessor functions for the various GTK objects.

2009-10-08  Ted Gould  <ted@canonical.com>

	Maintaining a reference to the objects we create in the object.

2009-10-08  Ted Gould  <ted@canonical.com>

	We need to use GTK.

2009-10-08  Ted Gould  <ted@canonical.com>

	A better dummy menu.

2009-10-08  Ted Gould  <ted@canonical.com>

	Create a very simple indicator and testing it.

2009-10-08  Ted Gould  <ted@canonical.com>

	Being a bit more verbose

2009-10-08  Ted Gould  <ted@canonical.com>

	Making it so that the null test checks for failure as we shoudln't have a null image and label.  Also making it so that warnings don't cause the test to fail.

2009-10-08  Ted Gould  <ted@canonical.com>

	Making it so that we use the same unref code as everyone else.

2009-10-08  Ted Gould  <ted@canonical.com>

	Truth again.  Keeps bitting back.  I shouldn't of lied in the 2nd grade, I confess!  No more, please.

2009-10-08  Ted Gould  <ted@canonical.com>

	Checking to see if a file exists before trying to load it.

2009-10-08  Ted Gould  <ted@canonical.com>

	Truth.  Sucks.

2009-10-08  Ted Gould  <ted@canonical.com>

	Turning all the return if fails into proper if's with warning and unref the object so there aren't any memory leaks.

2009-10-08  Ted Gould  <ted@canonical.com>

	Use the new build dir flag

2009-10-08  Ted Gould  <ted@canonical.com>

	Build dir fix and making gtester run all of them even if one fails.

2009-10-08  Ted Gould  <ted@canonical.com>

	Making it so that we're not using g_return_if_fail as it messes up the test suite.

2009-10-08  Ted Gould  <ted@canonical.com>

	Fleshing out the load from file function.  Still fails.

2009-10-08  Ted Gould  <ted@canonical.com>

	A test to load the dummy indicator

2009-10-08  Ted Gould  <ted@canonical.com>

	Apparently they have to be installable to get the .so.  Fail.

2009-10-08  Ted Gould  <ted@canonical.com>

	Adding a test that should pass as given a bad filename we should get no object back.

2009-10-08  Ted Gould  <ted@canonical.com>

	Adding a function to create an object from a file

2009-10-08  Ted Gould  <ted@canonical.com>

	Creating a dummy indicator that returns null

2009-10-08  Ted Gould  <ted@canonical.com>

	Switch from GLib to GTK as that's what we really needed.

2009-10-08  Ted Gould  <ted@canonical.com>

	Using a weak ref instead of connecting to a signal that doesn't exist

2009-10-08  Ted Gould  <ted@canonical.com>

	Putting data in the private

2009-10-08  Ted Gould  <ted@canonical.com>

	Test to build the object and unref it.

2009-10-08  Ted Gould  <ted@canonical.com>

	Fleshing out the test a little bit.

2009-10-08  Ted Gould  <ted@canonical.com>

	Adding in a simple little test.

2009-10-08  Ted Gould  <ted@canonical.com>

	Adding in a tests folder

2009-10-08  Ted Gould  <ted@canonical.com>

	Ignoring our new file.

2009-10-06  Ted Gould  <ted@canonical.com>

	Adding some pkg-config love to get things compiling all nice like.

2009-10-06  Ted Gould  <ted@canonical.com>

	Building a base object.

2009-10-08  Ted Gould  <ted@canonical.com>

	0.2.1

2009-10-06  Ted Gould  <ted@canonical.com>

	Adding license information to the header

2009-10-06  Ted Gould  <ted@canonical.com>

	oops, should be GPLv3 not LGPLv3

2009-10-06  Ted Gould  <ted@canonical.com>

	Header for the header file that has the LGPLv3

2009-09-10  Ted Gould  <ted@canonical.com>

	Making 0.2.0

2009-08-19  Ted Gould  <ted@canonical.com>

	Using AM 1.11 silent mode

2009-08-18  Ted Gould  <ted@canonical.com>

	Deleting everything only leaving libindicator

2009-08-08  Ted Gould  <ted@canonical.com>

	Adding an icons directory to the .pc file

2009-08-07  Ted Gould  <ted@canonical.com>

	Merging in the branch making two applets.

2009-08-07  Ted Gould  <ted@canonical.com>

	Changing the Bonobo server description file name to match that of FUSA.

2009-08-07  Ted Gould  <ted@canonical.com>

	Oops, we need more identity.

2009-08-07  Ted Gould  <ted@canonical.com>

	Switching the name to the proper server file.

2009-08-07  Ted Gould  <ted@canonical.com>

	Loading only the SUS plugin.

2009-08-07  Ted Gould  <ted@canonical.com>

	Blocking out SUS from standard applet.

2009-08-07  Ted Gould  <ted@canonical.com>

	Fixing the generation rules for the bonobo server files.

2009-08-07  Ted Gould  <ted@canonical.com>

	Ignoring more files.

2009-08-07  Ted Gould  <ted@canonical.com>

	Switching the name to actually be correct.

2009-08-07  Ted Gould  <ted@canonical.com>

	Changing the name of the directory to -sus which makes more sense

2009-08-07  Ted Gould  <ted@canonical.com>

	New executable name

2009-08-07  Ted Gould  <ted@canonical.com>

	Renaming the server file

2009-08-07  Ted Gould  <ted@canonical.com>

	Adjusting the namespace.  Just to make things fun like that.

2009-08-07  Ted Gould  <ted@canonical.com>

	Making the schema translatable

2009-08-07  Ted Gould  <ted@canonical.com>

	Adding a new server to connect with our new applet.  Still needs changes as it's just a copy.

2009-08-07  Ted Gould  <ted@canonical.com>

	Adding a new build target for our new applet

2009-08-07  Ted Gould  <ted@canonical.com>

	Adding the new src to the build system

2009-08-07  Ted Gould  <ted@canonical.com>

	New src entry

2009-08-06  Ted Gould  <ted@canonical.com>

	Aurelien's patch to add a set_server function to indicators.

2009-08-06  Aurelien Gateau  <aurelien.gateau@canonical.com>

	Updated documentation

2009-08-05  Aurelien Gateau  <aurelien.gateau@canonical.com>

	Introduce indicate_indicator_set_server() so that server can be defined for
	message indicators too.

2009-08-05  Ted Gould  <ted@canonical.com>

	Maintaining the count independent of the entires.

2009-08-04  Ted Gould  <ted@canonical.com>

	Update the pc file from the GTK split out.

2009-08-04  Ted Gould  <ted@canonical.com>

	Merging in the splitout of a GTK version of the lib

2009-08-04  Ted Gould  <ted@canonical.com>

	Adding libindicate a build include

2009-08-04  Ted Gould  <ted@canonical.com>

	Removing some more noise

2009-08-04  Ted Gould  <ted@canonical.com>

	Ignoring the tarball

2009-08-04  Ted Gould  <ted@canonical.com>

	Ignoring the right file

2009-08-04  Ted Gould  <ted@canonical.com>

	Making seperate versioning for libindicate-gtk

2009-08-04  Ted Gould  <ted@canonical.com>

	Bumping the version as we removed a function.

2009-08-04  Ted Gould  <ted@canonical.com>

	A bunch of distcheck fixes to clean things up

2009-08-03  Ted Gould  <ted@canonical.com>

	Some odd change

2009-08-03  Ted Gould  <ted@canonical.com>

	Last libgtk-pixbuf header

2009-08-03  Ted Gould  <ted@canonical.com>

	Removing GTK dependencies from the libindicate stuff

2009-08-03  Ted Gould  <ted@canonical.com>

	Fixing these guys to include the -gtk library where needed

2009-08-03  Ted Gould  <ted@canonical.com>

	Some ignore files for fun

2009-08-03  Ted Gould  <ted@canonical.com>

	Oops, forgot the listener stuff

2009-08-03  Ted Gould  <ted@canonical.com>

	Moving the listener code and some indicator code into libindicate-gtk

2009-08-03  Ted Gould  <ted@canonical.com>

	Okay, now it is the offending function in it.

2009-08-03  Ted Gould  <ted@canonical.com>

	Creating a default little GTK library to move the GTK stuff in

2009-08-03  Ted Gould  <ted@canonical.com>

	Adding a function to set the server of the indicator upon creation.  indicate_indicator_new_with_server()

2009-08-03  Ted Gould  <ted@canonical.com>

	Merging in changes to the destroy and removing a warning.

2009-07-27  Aurelien Gateau  <aurelien.gateau@canonical.com>

	Removed warning: it's annoying in unittests.

2009-07-27  Aurelien Gateau  <aurelien.gateau@canonical.com>

	Destroy dbus proxies in listener finalize.
	
	Makes it possible to destroy a listener and recreate one without calling the
	old instance callbacks (useful for unit-tests).

2009-08-03  Ted Gould  <ted@canonical.com>

	Ignoring built files

2009-07-21  Ted Gould  <ted@canonical.com>

	Fixing the other signal marshallers

2009-07-21  Ted Gould  <ted@canonical.com>

	Using the server marshaller

2009-07-21  Ted Gould  <ted@canonical.com>

	Creating the server marshallers that we need

2009-07-21  Ted Gould  <ted@canonical.com>

	Oops, we shouldn't have a prototype for a function that doesn't exist.  Thanks to Aurilien.

2009-07-03  Ted Gould  <ted@canonical.com>

	Configure change to cleanup output

2009-07-03  Ted Gould  <ted@canonical.com>

	A little like mentioned on the GNOME Wiki, but doesn't work until I have a higher version of automake.  Doesn't seem to cause problems though.

2009-06-08  Ted Gould  <ted@canonical.com>

	Patch from Mark Trompell to make suffix checking better.

2009-05-05  Ted Gould  <ted@canonical.com>

	Merging in the documentation branch.

2009-04-30  Ted Gould  <ted@canonical.com>

	Never understand this file really.

2009-04-30  Ted Gould  <ted@canonical.com>

	Fixing function listing

2009-04-30  Ted Gould  <ted@canonical.com>

	Fixing typo

2009-04-30  Ted Gould  <ted@canonical.com>

	Fixing some documentation bugs.

2009-04-30  Ted Gould  <ted@canonical.com>

	Documenting most of the public visible functions

2009-04-30  Ted Gould  <ted@canonical.com>

	Adding in arguments for the signals

2009-04-30  Ted Gould  <ted@canonical.com>

	Adding in arguments on the signal docs.

2009-04-30  Ted Gould  <ted@canonical.com>

	Woot, signal documentation works now.

2009-04-30  Ted Gould  <ted@canonical.com>

	Basic signals docs.

2009-04-30  Ted Gould  <ted@canonical.com>

	Server section documentation.

2009-04-30  Ted Gould  <ted@canonical.com>

	Comments for the class, who put all those functions on there...

2009-04-30  Ted Gould  <ted@canonical.com>

	Adding in message documentation and cleaning up some mistakes as I see them.

2009-04-30  Ted Gould  <ted@canonical.com>

	Never understand this file

2009-04-30  Ted Gould  <ted@canonical.com>

	Doing a better job about defining out the documentation gets
	created and looks.  Much cleaner.

2009-04-30  Ted Gould  <ted@canonical.com>

	Breaking out into sections.

2009-04-30  Ted Gould  <ted@canonical.com>

	Section information

2009-04-30  Ted Gould  <ted@canonical.com>

	Adding to the unused side of things.

2009-04-30  Ted Gould  <ted@canonical.com>

	Removing the big defines that aren't useful and the boilerplate get_type functions.

2009-04-30  Ted Gould  <ted@canonical.com>

	Reformatting to make gtk-doc happy.

2009-04-30  Ted Gould  <ted@canonical.com>

	Making it more like English and less like a pointer table.

2009-04-30  Ted Gould  <ted@canonical.com>

	Adding in IndicateIndicatorClass documentation.

2009-04-30  Ted Gould  <ted@canonical.com>

	What is the server

2009-04-30  Ted Gould  <ted@canonical.com>

	Typo

2009-04-30  Ted Gould  <ted@canonical.com>

	Getting most of the indicator documentation in the pool.

2009-04-30  Ted Gould  <ted@canonical.com>

	Turns out that gtk-doc can't have the name of the function on the same line as the start of the comment.  How stupid.

2009-04-30  Ted Gould  <ted@canonical.com>

	Removing symbols that shouldn't be in the docs anyway.

2009-04-30  Ted Gould  <ted@canonical.com>

	Ignoring the dbus and glib-marshaller generated header files.

2009-04-30  Ted Gould  <ted@canonical.com>

	Dispaly typo

2009-04-30  Ted Gould  <ted@canonical.com>

	First pass at trying to create some function documentation for Indicator

2009-04-29  Ted Gould  <ted@canonical.com>

	Patch from Niel Patel to close the directory after opening it.

2009-04-29  Ted Gould  <ted@canonical.com>

	Patch from Niel Patel to close the directory after opening it.

2009-04-27  Ted Gould  <ted@canonical.com>

	How important a simple backslash is :) 

2009-04-27  Ted Gould  <ted@canonical.com>

	Merging in the testing branch to get some tests for this guy

2009-04-27  Ted Gould  <ted@canonical.com>

	Switching to system dbus-test-runner

2009-04-20  Ted Gould  <ted@canonical.com>

	Adding a test to build a bunch of indicators

2009-04-20  Ted Gould  <ted@canonical.com>

	Adding in multiple servers connecting in to declare interest test

2009-04-20  Ted Gould  <ted@canonical.com>

	Expanding range of interest test and not checking to see if we got none, we shouldn't get it.

2009-04-20  Ted Gould  <ted@canonical.com>

	Gaurding against setting bad interests

2009-04-20  Ted Gould  <ted@canonical.com>

	Adding an interests test

2009-04-20  Ted Gould  <ted@canonical.com>

	Woot, now we do distcheck too

2009-04-20  Ted Gould  <ted@canonical.com>

	Distcheck fixes

2009-04-20  Ted Gould  <ted@canonical.com>

	Adding in a simple test

2009-04-20  Ted Gould  <ted@canonical.com>

	Build infrastructure for first test

2009-04-20  Ted Gould  <ted@canonical.com>

	Moving tests to examples

2009-04-22  Ted Gould  <ted@canonical.com>

	Get the submenu set right.

2009-04-22  Ted Gould  <ted@canonical.com>

	Slipping in the hbox

2009-04-22  Ted Gould  <ted@canonical.com>

	Oops, cut and paste error, pulling up the wrong symbols

2009-04-22  Ted Gould  <ted@canonical.com>

	Turning versions into a function and adding a name symbol.  Not yet used though.

2009-04-22  Ted Gould  <ted@canonical.com>

	Wow, the genius of making a symbol you want to export static is simply amazing.  It's truly a wonder of nature that I can tie my shoes in the morning.

2009-04-22  Ted Gould  <ted@canonical.com>

	Oops, not what I wanted.  These should have been prototypes not global variables.  Takes a second to think about it, but yeah, that's what they were.

2009-04-22  Ted Gould  <ted@canonical.com>

	Forgot a + on gtk

2009-04-21  Ted Gould  <ted@canonical.com>

	Changing to an icon and a lable and building our own item

2009-04-21  Ted Gould  <ted@canonical.com>

	Putting in and checking version information to ensure we all agree about the header version

2009-04-21  Ted Gould  <ted@canonical.com>

	Fixing and using the new indicator header.  This will help to connect things together and make them actually work in a reasonably type safe way.

2009-04-21  Ted Gould  <ted@canonical.com>

	Moving the indicators directory to match libindicator

2009-04-21  Ted Gould  <ted@canonical.com>

	Setting the indicators directory manually

2009-04-21  Ted Gould  <ted@canonical.com>

	Creating an indicator lib to make sure we can attach all these things together.

2009-04-20  Ted Gould  <ted@canonical.com>

	Chaning the include so that it works for make distcheck

2009-04-13  Ted Gould  <ted@canonical.com>

	Adding in support for finding out if people are interesting on the bus using introspection instead of sending a random function call to them and seeing what happens.

2009-04-13  Ted Gould  <ted@canonical.com>

	Commenting out some debug messages

2009-04-13  Ted Gould  <ted@canonical.com>

	Less debug

2009-04-13  Ted Gould  <ted@canonical.com>

	Ah, a typo.  Bother.

2009-04-13  Ted Gould  <ted@canonical.com>

	Okay, connected into that other there code... let's see what happens.

2009-04-13  Ted Gould  <ted@canonical.com>

	Fleshing out some

2009-04-13  Ted Gould  <ted@canonical.com>

	Whoa, it like builds and stuff

2009-04-12  Ted Gould  <ted@canonical.com>

	Updating from trunk

2009-04-12  Ted Gould  <ted@canonical.com>

	Proto-pseudo-code for the introspection functions that are going to be needed

2009-04-10  Ted Gould  <ted@canonical.com>

	Adding in libxml linking

2009-04-13  Ted Gould  <ted@canonical.com>

	Fixes to the finalize functions.

2009-04-13  Ted Gould  <ted@canonical.com>

	Making into a 6

2009-04-13  Ted Gould  <ted@canonical.com>

	Adding a bug number

2009-04-13  Ted Gould  <ted@canonical.com>

	Adding in call to the parent class' finalize function as well, this should free all the way up to the top.

2009-04-12  Ted Gould  <ted@canonical.com>

	Some slight code cleanups to remove warnings

2009-04-11  Ted Gould  <ted@canonical.com>

	Fixing some pedantic little bugs to try and figure out what's causing 359018

2009-04-10  Ted Gould  <ted@canonical.com>

	Dummy to put bug number in.

2009-04-10  Ted Gould  <ted@canonical.com>

	Create the virtual function for checking interest.

2009-04-10  Ted Gould  <ted@canonical.com>

	Merging in Eitan's gtype-ify of the enums and the IndicateListener... objects.

2009-04-10  Eitan Isaacson  <eitan@ascender.com>

	gtypify IndicateListenerIndicator

2009-04-10  Eitan Isaacson  <eitan@ascender.com>

	changed IndicateListenerServer to a gtyped pointer instead of a gboxed.

2009-04-08  Eitan Isaacson  <eitan@ascender.com>

	Changed marshallers to GBoxed for IndicatorListenerServer.
	Make copy/free functions empty for now.

2009-04-08  Eitan Isaacson  <eitan@ascender.com>

	GBoxed IndicateListenerServer

2009-04-08  Eitan Isaacson  <eitan@ascender.com>

	gtypified the interests enum.

2009-04-10  Ted Gould  <ted@canonical.com>

	Marking the dev branch as such.

2009-04-07  Ted Gould  <ted@canonical.com>

	Added in an 'icon-name' to make the about dialog have a proper icon.

2009-04-07  Ted Gould  <ted@canonical.com>

	Clearing another warning.  Shame gdk doesn't do this one for us.

2009-04-07  Ted Gould  <ted@canonical.com>

	Patch from Eitan Isaacson to correct prototype.  Had to be adjusted slightly as the prototypes had moved.

2009-04-07  Ted Gould  <ted@canonical.com>

	Ignoring our new test

2009-04-07  Ted Gould  <ted@canonical.com>

	Patch from Eitan Isaacson to remove a ref/unref infinite loop that effectively made it so that we kept our objects forever.  While we love them, at some point we need to say goodbye.

2009-04-07  Ted Gould  <ted@canonical.com>

	Making it so that we don't register the object twice.  This is really
	a work around, but it's atleast fixes the crasher.  Which sucked.  We
	need to work with the dbus folks to make this better.

2009-04-07  Ted Gould  <ted@canonical.com>

	Adding show hide server test from Eitan on bug 351537

2009-04-07  Ted Gould  <ted@canonical.com>

	I finally understood what seb128 told me about the version numbering.
	I feel so stupid for not understanding before :)

2009-04-07  Ted Gould  <ted@canonical.com>

	Hiding some debugging messages.

2009-04-07  Ted Gould  <ted@canonical.com>

	Simplifying error message

2009-04-06  Ted Gould  <ted@canonical.com>

	* Some debug messages
	* Making the comparison of interests detect changings properly
	* Correctly use g_list_remove in several cases making for long lists
	* Using g_list_prepend instead of append because it's faster.
	* Checking whether we've got proxies before destroying them.

2009-04-03  Ted Gould  <ted@canonical.com>

	Moving private interests out of the public header file.

2009-04-03  Ted Gould  <ted@canonical.com>

	Not quite sure how these got added, but I'm not going to
	fight it.

2009-04-03  Ted Gould  <ted@canonical.com>

	Trying to get to a sane state.  I apparently don't know as much
	about library versioning as I thought I did.

2009-04-03  Ted Gould  <ted@canonical.com>

	Hiding all of the functions that part of the DBus interface in that
	now they're all prefixed with '_' so that they don't get exported
	as part of the library symbols.  This should simplify everything a
	little bit for implementors.

2009-04-03  Ted Gould  <ted@canonical.com>

	Getting rid of everything starting with 'd'.  This gets rid of the dbus stuff that isn't set up to be static, which is silly.

2009-04-03  Ted Gould  <ted@canonical.com>

	Hiding the marshsallers from the libraries in the symbols by adding a _ in front of them.

2009-04-03  Ted Gould  <ted@canonical.com>

	Cleaning up the exported symbols, make sure that 'get_type_cb' isn't exported

2009-04-03  Ted Gould  <ted@canonical.com>

	Getting to version 0.2.0

2009-04-03  Ted Gould  <ted@canonical.com>

	Trying to have more style information included so that we can get rid of the focus line.

2009-04-03  Ted Gould  <ted@canonical.com>

	Adding interests on new servers saying that we're displaying the indicators and in the server.

2009-04-03  Ted Gould  <ted@canonical.com>

	Fleshing out the functions in the listener to set interests.

2009-04-02  Ted Gould  <ted@canonical.com>

	Putting in some protection from crazy values

2009-04-02  Ted Gould  <ted@canonical.com>

	Hiding debug

2009-04-02  Ted Gould  <ted@canonical.com>

	Adding a bunch of debugging messages and fixing the lifecycle for the folk pointer.  Lots'o'fun.  But things seem to be working.

2009-04-02  Ted Gould  <ted@canonical.com>

	Filling in the dbus owner changing code.  Now we should catch those.

2009-04-02  Ted Gould  <ted@canonical.com>

	Adding printouts for interest changes.

2009-04-02  Ted Gould  <ted@canonical.com>

	Connecting in the DBus messaging that we need.

2009-04-02  Ted Gould  <ted@canonical.com>

	Fleshing out the interest setting and removing functions.

2009-04-02  Ted Gould  <ted@canonical.com>

	Updating unused file

2009-04-02  Ted Gould  <ted@canonical.com>

	Adding in folks support.

2009-04-02  Ted Gould  <ted@canonical.com>

	Adding the interest removed and interest added signals in.

2009-04-02  Ted Gould  <ted@canonical.com>

	Woot!  Now we have some real functions to call!

2009-04-02  Ted Gould  <ted@canonical.com>

	I can't believe I messed up this one.  Luckily it doesn't seem to have
	caused any bugs.  Man.

2009-04-02  Ted Gould  <ted@canonical.com>

	Switching around the show_interest and remove_interest functions so that
	they are now asyncronous.  Not that being asynchronous is important but
	more that now they get the Method Invocation interface that we can use
	to find out the sender of the message.  Changed various APIs as a result
	of this, and moved the DBus functions to be internal.

2009-04-01  Ted Gould  <ted@canonical.com>

	Adding new functions show_interest and remove_interest into the API.  Now to fill in the backend.

2009-04-01  Ted Gould  <ted@canonical.com>

	Adding a remove and show interest

2009-04-01  Ted Gould  <ted@canonical.com>

	Change the API so it's more like we're keeping a list of what, and who are interested in.  This'll make it easier for us to manage all the DBus nastyness.

2009-04-01  Ted Gould  <ted@canonical.com>

	Adding stuff to ignore, much better

2009-04-01  Ted Gould  <ted@canonical.com>

	Misspelling

2009-04-01  Ted Gould  <ted@canonical.com>

	Getting some interests in the game.

2009-04-01  Ted Gould  <ted@canonical.com>

	Switch to searching on the connection, which is really what we care about and the proxy is a poor sustitute for.

2009-04-01  Ted Gould  <ted@canonical.com>

	First pass at the pretty meag-change to make it so that we can detect people on the system vs. the session bus.  Basically reworking a bunch of structures.  Fun.

2009-03-27  Ted Gould  <ted@canonical.com>

	Patch from Gabor Kelemen to make the license and 'No Indicators' message translatable.

2009-03-27  Ted Gould  <ted@canonical.com>

	Removing the translatable marking for 'Indicator Applet Factory'

2009-03-27  Ted Gould  <ted@canonical.com>

	Bad truth in the hide function.

2009-03-26  Ted Gould  <ted@canonical.com>

	Adding another bug that gets fixed with Eitan's merge.

2009-03-26  Ted Gould  <ted@canonical.com>

	Comment for label

2009-03-26  Ted Gould  <ted@canonical.com>

	Switching the case for 'No Indicators' to make it a label to still support right click through.

2009-03-26  Ted Gould  <ted@canonical.com>

	Changing license in about box to make sense.

2009-03-26  Ted Gould  <ted@canonical.com>

	ATK name for Eitan

2009-03-26  Ted Gould  <ted@canonical.com>

	Getting gtkdoc stuff to be a little happier

2009-03-26  Ted Gould  <ted@canonical.com>

	Bumping version

2009-03-26  Ted Gould  <ted@canonical.com>

	Merging in Eitan's changes to make the applet a GNOME Program

2009-03-26  Eitan Isaacson  <eitan@ascender.com>

	Add gnome_program_init with LIBGNOMEUI_MODULE.

2009-03-18  Ted Gould  <ted@canonical.com>

	Changing version number

2009-03-17  Ted Gould  <ted@canonical.com>

	Seems that we still get errors without it being there, I'm not sure why, but making it so that we can explicitly disable the gobject-introspection.  That should work for now.

2009-03-17  Ted Gould  <ted@canonical.com>

	Making it so that the GIR stuff autodetects and only builds if available.

2009-03-12  Ted Gould  <ted@canonical.com>

	Fixes for distcheck

2009-03-12  Ted Gould  <ted@canonical.com>

	Changing version number

2009-03-12  Ted Gould  <ted@canonical.com>

	Stealing the 'fast-user-switch-applet' name to get better theming

2009-03-12  Ted Gould  <ted@canonical.com>

	Fixing the popup to have the about

2009-03-12  Ted Gould  <ted@canonical.com>

	Right click menu is working, but without an about

2009-03-09  Ted Gould  <ted@canonical.com>

	Fix doubling of prototypes, patch from Eitan

2009-03-09  Ted Gould  <ted@canonical.com>

	Putting the example executables in libexec and the source code in doc/examples

2009-02-25  Ted Gould  <ted@canonical.com>

	Linking in the build interfaces, needed a temporary function to get linking right

2009-02-25  Ted Gould  <ted@canonical.com>

	Forgot to put these in built sources

2009-02-25  Ted Gould  <ted@canonical.com>

	true is TRUE

2009-02-25  Ted Gould  <ted@canonical.com>

	Adding build instructions for the listener interface

2009-02-25  Ted Gould  <ted@canonical.com>

	Merging in changes to put back in the GObject introspection and to have better build characteristics.

2009-02-25  Ted Gould  <ted@canonical.com>

	Typo

2009-02-25  Ted Gould  <ted@canonical.com>

	releasing version 0.1.1-0ubuntu3~ppa2

2009-02-25  Ted Gould  <ted@canonical.com>

	Adding back in the GIR files and some distclean improvements to get back to NULL.

2009-02-25  Ted Gould  <ted@canonical.com>

	releasing version 0.1.1-0ubuntu3~ppa1

2009-02-18  Ted Gould  <ted@canonical.com>

	releasing version 0.1-0ubuntu3~ppa1

2009-02-18  Ted Gould  <ted@canonical.com>

	Merging in icon changes

2009-02-17  Ted Gould  <ted@canonical.com>

	Cherry picking r137 from the ubuntu-core-dev packaging branch that has licensing fixes

2009-02-17  Martin Pitt  <martin.pitt@canonical.com>

	debian/copyright: Fix leftover word "either" from the license
	description.

2009-02-17  Ted Gould  <ted@canonical.com>

	Cherry picking r136 from the ubuntu-core-dev packaging branch that cleans up the licensing, descriptions, and adds additional info

2009-02-17  Martin Pitt  <martin.pitt@canonical.com>

	debian/control: Update package descriptions; the messaging part is
	provided by indicator-messages.

2009-02-17  Martin Pitt  <martin.pitt@canonical.com>

	debian/control: Fix Vcs-Bzr.

2009-02-17  Martin Pitt  <martin.pitt@canonical.com>

	releasing version 0.1-0ubuntu1

2009-02-17  Martin Pitt  <martin.pitt@canonical.com>

	configure.ac: Add missing gio-2.0 pkgconfig check (from DX team
	PPA packaging branch), and autoreconf to pick up the change.

2009-02-17  Martin Pitt  <martin.pitt@canonical.com>

	Repack orig.tar.gz with a copy of the LGPL 3, libindicate/* is
	under that license.

2009-02-17  Martin Pitt  <martin.pitt@canonical.com>

	debian/copyright: Properly describe licenses.

2009-02-17  Ted Gould  <ted@canonical.com>

	Cherry picking r130 from the ubuntu-core-dev packaging branch that cleans up the changelog, adds better descriptions and updates the entries in the control file.

2009-02-17  Martin Pitt  <martin.pitt@canonical.com>

	debian/control: Add Homepage:, Vcs-Bzr:, and proper package
	descriptions.

2009-02-17  Martin Pitt  <martin.pitt@canonical.com>

	flush changelog for ubuntu packaging branch

2009-02-25  Ted Gould  <ted@canonical.com>

	Adding in the listeners interface

2009-02-22  Ted Gould  <ted@canonical.com>

	An interface to get the list of servers from another listener

2009-02-22  Ted Gould  <ted@canonical.com>

	Adding information on how the server was added, but not really using
	it for anything yet.  I'm not sure that we can -- bother.

2009-02-18  Ted Gould  <ted@canonical.com>

	Releasing 0.1.1 with build fixes and icons.

2009-02-18  Ted Gould  <ted@canonical.com>

	Changing the icon to be our fancy new one.

2009-02-18  Ted Gould  <ted@canonical.com>

	Adding in the autotools stuff for installing an icon.

2009-02-18  Ted Gould  <ted@canonical.com>

	Ken's very cool Indicator Applet plugin.

2009-02-17  Ted Gould  <ted@canonical.com>

	Configure changes to include gio

2009-02-17  Ted Gould  <ted@canonical.com>

	Mostly build related changes coming from the upstream branch.

2009-02-15  Ted Gould  <ted@canonical.com>

	releasing version 0.1~ppa41

2009-02-15  Ted Gould  <ted@canonical.com>

	* Putting on a handle
	* Adding in a background function from panel-lib

2009-02-15  Ted Gould  <ted@canonical.com>

	releasing version 0.1~ppa40

2009-02-15  Ted Gould  <ted@canonical.com>

	Merging in from the 'upstream' branch.  Changes include the addition
	of a server signal for the NULL indicator.  And a warning fix for
	icons.

2009-02-13  Ted Gould  <ted@canonical.com>

	releasing version 0.1~ppa39

2009-02-13  Ted Gould  <ted@canonical.com>

	Fixing a bug in the listener where properties weren't available on running servers.

2009-02-12  Ted Gould  <ted@canonical.com>

	releasing version 0.1~ppa38

2009-02-12  Ted Gould  <ted@canonical.com>

	Adding in GIO to the list of linked modules.

2009-02-12  Ted Gould  <ted@canonical.com>

	releasing version 0.1~ppa37

2009-02-12  Ted Gould  <ted@canonical.com>

	Making time and icons happy and work well.  Also adding lots of fun tests for them.

2009-02-17  Ted Gould  <ted@canonical.com>

	This is a generated file.  Shouldn't be in VCS.

2009-02-17  Ted Gould  <ted@canonical.com>

	Adding the license info

2009-02-17  Ted Gould  <ted@canonical.com>

	Adding the LGPL licenses and making sure they get into the tarball.

2009-02-16  Ted Gould  <ted@canonical.com>

	Trying to add in some extra files that seem useful for building, gtk-doc still fails.

2009-02-16  Ted Gould  <ted@canonical.com>

	Oops, should get the screw up right...

2009-02-16  Ted Gould  <ted@canonical.com>

	Adding a couple of files to the distribution to pass distcheck

2009-02-15  Ted Gould  <ted@canonical.com>

	This function seems to set up the widget correctly with the background.  It's undocumented, but most other applets seem to do it.

2009-02-15  Ted Gould  <ted@canonical.com>

	Putting a little handle on the indicators.  Works for GNOME Panel.

2009-02-15  Ted Gould  <ted@canonical.com>

	Removing the debian directory.  Going to start using this as my upstream
	branch and the other as the packaging branch.

2009-02-15  Ted Gould  <ted@canonical.com>

	Adding a handler for the new server display signal, and then make the
	messages more clear between the two.

2009-02-15  Ted Gould  <ted@canonical.com>

	Adding a new signal in that handles the ID of zero, or null, comming
	back from a listener and uses that to show the server.  Or atleast
	signal it to figure out how to do that.  Also cleaning up the signals
	a little to use defines.

2009-02-15  Ted Gould  <ted@canonical.com>

	Adding a check for NULL string in the icon parsing code.  This will
	stop a bunch of warnings coming from everything else.

2009-02-13  Ted Gould  <ted@canonical.com>

	Ah, declared a variable in an if so that it didn't get out of scope.  Like it should have.  Bah.

2009-02-13  Ted Gould  <ted@canonical.com>

	Adding in a set of functions to get the properties off of a server

2009-02-12  Ted Gould  <ted@canonical.com>

	Forgot to set the timer back to something reasonable!

2009-02-12  Ted Gould  <ted@canonical.com>

	Adding in support for icons, specifically passing them back and forth on the bus

2009-02-12  Ted Gould  <ted@canonical.com>

	Changing from using a memory stream to using a buffer, the memory stream one seems to be broken.

2009-02-12  Ted Gould  <ted@canonical.com>

	Adding in the function to take a pixbuf, turn it into a png, base64 encode it and then send it across the wire.

2009-02-12  Ted Gould  <ted@canonical.com>

	Changing the icon data to be base64 encoded, should have done that originally, how silly.

2009-02-12  Ted Gould  <ted@canonical.com>

	Seems like a better name

2009-02-12  Ted Gould  <ted@canonical.com>

	Fixing some prototypes to fix warnings and errors we haven't yet encountered.  Also setting the type so that our switch statement actually works.

2009-02-12  Ted Gould  <ted@canonical.com>

	Adding in some debug messages and making the signal use the original key to broadcast itself.

2009-02-12  Ted Gould  <ted@canonical.com>

	Added in a way to print the values of properties while they change.  More later, but a start.

2009-02-12  Ted Gould  <ted@canonical.com>

	Seeing what happens if I turn on "sign always" in Bazaar.

2009-02-12  Ted Gould  <ted@canonical.com>

	Adding in the code for handling icons and time

2009-02-12  Ted Gould  <ted@canonical.com>

	Rebuilding the way that priorities get done so that we can handle a time and icon version of the functions so that apps don't have to worry about those details.

2009-02-12  Ted Gould  <ted@canonical.com>

	Setting the properties property and picking up Empathy's desktop file

2009-02-12  Ted Gould  <ted@canonical.com>

	Adding in a timer function to change the time every three minutes or
	so in order to test modifying times.

2009-02-12  Ted Gould  <ted@canonical.com>

	Using the time property function

2009-02-12  Ted Gould  <ted@canonical.com>

	Adding in a time property function

2009-02-11  Ted Gould  <ted@canonical.com>

	Merging from trunk

2009-02-11  Ted Gould  <ted@canonical.com>

	releasing version 0.1~ppa36

2009-02-11  Ted Gould  <ted@canonical.com>

	Merging in the changes to make it so that properties work right, get
	handled properly by the listener and have convience functions.  Also
	lots of little important cleanups.

2009-02-11  Ted Gould  <ted@canonical.com>

	Putting license information everywhere.

2009-02-11  Ted Gould  <ted@canonical.com>

	Cleaning up some debug messages that aren't as useful anymore

2009-02-11  Ted Gould  <ted@canonical.com>

	Switching to ref_default

2009-02-11  Ted Gould  <ted@canonical.com>

	Fixing the deallocation to check the right parameters.

2009-02-11  Ted Gould  <ted@canonical.com>

	Turning off some debugging, reformatting, and putting the connection into the proxy_t structure

2009-02-11  Ted Gould  <ted@canonical.com>

	Basically things are working as the proxyts are now findable.

2009-02-11  Ted Gould  <ted@canonical.com>

	Fixing the call, checking both lists of proxies, and adding some debug info.

2009-02-11  Ted Gould  <ted@canonical.com>

	Removing an annoying warning

2009-02-11  Ted Gould  <ted@canonical.com>

	Adding a check for type in the middle of the state machine for building a server.

2009-02-11  Ted Gould  <ted@canonical.com>

	Adding in a ref-default function so that we can keep one listener
	around for fun and profit.

2009-02-11  Ted Gould  <ted@canonical.com>

	Getting all the legal stuff in.

2009-02-11  Ted Gould  <ted@canonical.com>

	Adding in an author

2009-02-11  Ted Gould  <ted@canonical.com>

	Adding GPL to the tests

2009-02-11  Ted Gould  <ted@canonical.com>

	Adding the GPL to this file

2009-02-11  Ted Gould  <ted@canonical.com>

	Putting the debian copyright info in

2009-02-11  Ted Gould  <ted@canonical.com>

	Adding a license to the top of all these files.  LGPL 2/3

2009-02-10  Ted Gould  <ted@canonical.com>

	Adding to the convience functions for setting the desktop file
	and the type of the server.

2009-02-10  Ted Gould  <ted@canonical.com>

	Building a way to get properties.  Seems like this should be in the DBus
	libs, but anyway.  Here is the code that compiles and claims that it'll
	do it.  More code than I would have liked.

2009-02-10  Ted Gould  <ted@canonical.com>

	Avoiding a conflict with GObject's get_type function.

2009-02-10  Ted Gould  <ted@canonical.com>

	Adding in real functions to match the prototypes.

2009-02-10  Ted Gould  <ted@canonical.com>

	Adding in functions to match the prototypes.

2009-02-10  Ted Gould  <ted@canonical.com>

	Adding in a set_type function and fixing the prototype for set_desktop

2009-02-10  Ted Gould  <ted@canonical.com>

	Changing type to message.im for testing, now it's different than the messages.

2009-02-10  Ted Gould  <ted@canonical.com>

	Adding an API for getting the type and desktop files

2009-02-10  Ted Gould  <ted@canonical.com>

	Including type information in the creation and destruction of servers

2009-02-09  Ted Gould  <ted@canonical.com>

	Merge from trunk

2009-02-09  Ted Gould  <ted@canonical.com>

	releasing version 0.1~ppa35

2009-02-09  Ted Gould  <ted@canonical.com>

	Only emitting a changed signal on properties changed when the indicator is visible

2009-02-09  Ted Gould  <ted@canonical.com>

	Some formatting, reusing the private variable, making it so that hide sends the type and only sending a message of finalize if we're still visible.

2009-02-09  Ted Gould  <ted@canonical.com>

	Server hide function from Niel

2009-02-09  Neil Jagdish Patel  <neil.patel@canonical.com>

	Add the indicate_server_hide function

2009-02-07  Ted Gould  <ted@canonical.com>

	Sending the type with the signal in the listener, adding it into the tests.

2009-02-06  Ted Gould  <ted@canonical.com>

	releasing version 0.1~ppa34

2009-02-06  Ted Gould  <ted@canonical.com>

	Making the listener handle the case where we're using the new show/hide structure.

2009-02-06  Ted Gould  <ted@canonical.com>

	releasing version 0.1~ppa33

2009-02-06  Ted Gould  <ted@canonical.com>

	releasing version 0.1~ppa32

2009-02-06  Ted Gould  <ted@canonical.com>

	releasing version 0.1~ppa31

2009-02-06  Ted Gould  <ted@canonical.com>

	releasing version 0.1~ppa30

2009-02-06  Ted Gould  <ted@canonical.com>

	Removing GObject introspection for now

2009-02-06  Ted Gould  <ted@canonical.com>

	releasing version 0.1~ppa29

2009-02-05  Ted Gould  <ted@canonical.com>

	releasing version 0.1~ppa28

2009-02-07  Ted Gould  <ted@canonical.com>

	Changing the signals for show/hide to send the type correctly.

2009-02-07  Ted Gould  <ted@canonical.com>

	Setting the type of the server

2009-02-06  Ted Gould  <ted@canonical.com>

	Ah, stupid little wrong function

2009-02-06  Ted Gould  <ted@canonical.com>

	Tracking the type of the server in the proxyt structure

2009-02-06  Ted Gould  <ted@canonical.com>

	Changing the prototypes to start using the server added stuff

2009-02-05  Ted Gould  <ted@canonical.com>

	Merging in the trunk changes

2009-02-05  Ted Gould  <ted@canonical.com>

	releasing version 0.1~ppa27

2009-02-04  Ted Gould  <ted@canonical.com>

	typo

2009-02-04  Ted Gould  <ted@canonical.com>

	releasing version 0.1~ppa26

2009-02-04  Ted Gould  <ted@canonical.com>

	Merge in documentation and icons

2009-02-04  Neil Jagdish Patel  <neil.patel@canonical.com>

	Set the widget name on the applet rather than the menubar, to make sure
	it's picked up globally.

2009-02-04  Ted Gould  <ted@canonical.com>

	Adding a conflicts and a replaces to get rid of errors.

2009-02-04  Ted Gould  <ted@canonical.com>

	ppa23

2009-02-05  Ted Gould  <ted@canonical.com>

	Adding properties for doing type and desktop

2009-02-05  Ted Gould  <ted@canonical.com>

	Changing the DBUS API slightly.  Now there is no 'get_desktop' function as desktop is a property.  Added a property for type so that we can understand what kind of application this is.  And finally adding show/hide signals on the server as they were already on the listener.

2009-02-05  Ted Gould  <ted@canonical.com>

	releasing version 0.1~ppa23

2009-02-05  Ted Gould  <ted@canonical.com>

	Adding in the API function to take and icon and display it.  Just the prototype.

2009-02-04  Ted Gould  <ted@canonical.com>

	Removing the icons from the larger applet

2009-02-04  Ted Gould  <ted@canonical.com>

	Polish it up

2009-02-04  Ted Gould  <ted@canonical.com>

	Making it so that there is no more boarder on the menu bar

2009-02-04  Neil Jagdish Patel  <neil.patel@canonical.com>

	indicator-applet (0.1~ppa22) intrepid; urgency=low
	
	* Add support for a transparent panel applet
	
	-- Neil J. Patel <neil.patel@canonical.com>  Wed, 04 Feb 2009 12:44:56 +0100

2009-02-04  Neil Jagdish Patel  <neil.patel@canonical.com>

	Fix coding style

2009-02-03  Neil Jagdish Patel  <neil.patel@canonical.com>

	Enable support for a "transparent" panel applet, which reacts to the gnome-
	panel theme changes

2009-02-03  Ted Gould  <ted@canonical.com>

	Getting gtk-doc working

2009-02-03  Ted Gould  <ted@canonical.com>

	Getting everything together to try and build docs

2009-02-03  Ted Gould  <ted@canonical.com>

	Getting the dirs right

2009-02-03  Ted Gould  <ted@canonical.com>

	Getting SUBDIRS right

2009-02-03  Ted Gould  <ted@canonical.com>

	I think this will add gtk docs

2009-02-03  Ted Gould  <ted@canonical.com>

	Putting in the makefiles for the docs and the reference docs

2009-02-03  Ted Gould  <ted@canonical.com>

	Adding in checks for GTK Doc

2009-02-03  Ted Gould  <ted@canonical.com>

	Merge from trunk

2009-02-03  Ted Gould  <ted@canonical.com>

	* Adding in package fixes from seb128
	* Removing scrollkeeper
	* Changing libindicate to libindicate0
	* Removing .la file
	* Removing targets for files in libindcate-dev.install
	* Removing pkg-create-dbgsym
	* Adding a build depend on pkg-create-dbgsym

2009-02-03  Neil Jagdish Patel  <neil.patel@canonical.com>

	Allow sub-classes of server to emit signals using three new public functions

2009-02-02  Ted Gould  <ted@canonical.com>

	Bump for PPA

2009-02-02  Ted Gould  <ted@canonical.com>

	Should have been for Intrepid

2009-01-30  Ted Gould  <ted@canonical.com>

	Adding interface for listener sending back a display
	request.

2009-01-30  Ted Gould  <ted@canonical.com>

	Listener interface for signalling an indicator

2009-01-30  Ted Gould  <ted@canonical.com>

	Adding a print message for when the indicator is signaled

2009-01-30  Ted Gould  <ted@canonical.com>

	Adding an interface to call back to an indicator and display it.

2009-01-29  Ted Gould  <ted@canonical.com>

	Guess I should merge trunk back in at some point.

2009-01-29  Ted Gould  <ted@canonical.com>

	* Fixing the handling of named DBus connections
	* Moving most of the data in the objects to private sections
	* Making the signal names defines for easier usage
	* Having property changes actually work now.

2009-01-22  Ted Gould  <ted@canonical.com>

	Forgot to run autogen.sh before last package :(

2009-01-21  Ted Gould  <ted@canonical.com>

	Update API slightly and some fixes.

2009-01-21  Ted Gould  <ted@canonical.com>

	Adding in a message indicator and a small test to use it.

2009-01-21  Ted Gould  <ted@canonical.com>

	Adding in listener_get_property

2009-01-29  Ted Gould  <ted@canonical.com>

	Changing the include directory from 1.0 to 0.1 which gives us more room to screw up

2009-01-29  Ted Gould  <ted@canonical.com>

	Wow, I didn't realize we weren't handling properties at all correctly.  Fixed now.  Whew.

2009-01-29  Ted Gould  <ted@canonical.com>

	Adding a set property after the show to cause a signal

2009-01-29  Ted Gould  <ted@canonical.com>

	Have the server pass along the property modified signal

2009-01-29  Ted Gould  <ted@canonical.com>

	Adding a property modified signal to the indicator object

2009-01-29  Ted Gould  <ted@canonical.com>

	Making all of the server values move into a private section like all the others.  Generally a good thing and good clean up

2009-01-29  Ted Gould  <ted@canonical.com>

	Making the indicator properties private, they should be.  Also cleans
	up some deps.

2009-01-29  Ted Gould  <ted@canonical.com>

	Removing the gobject-introspection-repository from the list of build
	depends as we needed it for the dbus stuff, that we're no longer using.

2009-01-29  Ted Gould  <ted@canonical.com>

	Removing DBus from the gobject introspection

2009-01-29  Ted Gould  <ted@canonical.com>

	Oops, forgot the header there

2009-01-29  Ted Gould  <ted@canonical.com>

	Okay, moving all of the variables from the listener class into a private object.  This is to make the GObject introspection not need dbus, and thus we can reduce our build deps significantly.

2009-01-29  Ted Gould  <ted@canonical.com>

	Use the new fangled defines to make things cleaner

2009-01-29  Ted Gould  <ted@canonical.com>

	Getting some helper defines for some of the hacks that'll probably change in the future

2009-01-29  Ted Gould  <ted@canonical.com>

	Using the defines for the signal names

2009-01-29  Ted Gould  <ted@canonical.com>

	Making the signals use #defines to make everything a little more
	predictable.  I hate this part of GObject signals.

2009-01-29  Ted Gould  <ted@canonical.com>

	Adding a variable to make the compiler happier

2009-01-26  Ted Gould  <ted@canonical.com>

	Changed to only listen to reference names instead of descriptive
	ones.  Hopefully this'll fix a crash.

2009-01-21  Ted Gould  <ted@canonical.com>

	Adding in the im-client test and fixing a couple of bugs it found

2009-01-21  Ted Gould  <ted@canonical.com>

	Adding in a type for indicators that are messages

2009-01-21  Ted Gould  <ted@canonical.com>

	Generated source files

2009-01-21  Ted Gould  <ted@canonical.com>

	Adding in a get_property function

2009-01-19  Ted Gould  <ted@canonical.com>

	Wrong indicate include directory in package config files

2009-01-19  Ted Gould  <ted@canonical.com>

	Wrong indicate include directory in package config files

2009-01-16  Ted Gould  <ted@canonical.com>

	Moving the gir file to the right package

2009-01-16  Ted Gould  <ted@canonical.com>

	Removing the gir file from the applet so that it's only
	with the library so that we can install all of them.

2009-01-16  Ted Gould  <ted@canonical.com>

	Adding the GObject Introspection files into the build and the
	packaging.

2009-01-16  Ted Gould  <ted@canonical.com>

	Shell script integrated into the autotools system

2009-01-16  Ted Gould  <ted@canonical.com>

	Bringing GObject Introspection into the build and making it so that
	it gets installed with the library.

2009-01-16  Ted Gould  <ted@canonical.com>

	Build fix

2009-01-16  Ted Gould  <ted@canonical.com>

	Adding in libtool to build deps

2009-01-16  Ted Gould  <ted@canonical.com>

	Getting the debian package built up so that it can have a seperate library binary package.

2009-01-16  Ted Gould  <ted@canonical.com>

	Building the listener object that listens to all of the folks on DBus and turns that into a usable interface for indicator display folks.  A lot of code to make things simple :)

2009-01-14  Ted Gould  <ted@canonical.com>

	Okay, I think this is the end of server and indicator minus all
	the bugs that I expect to find :)

2009-01-14  Ted Gould  <ted@canonical.com>

	Merging in code from yesterday.  Got many of the functions working with
	real IDs and making lists.  The basis for all the properties stuff is there
	but it still needs a touch of fleshing out.  Also a new test for debugging.

2009-01-16  Ted Gould  <ted@canonical.com>

	Changing the build targets, now I understand the difference between 'any' and 'all'

2009-01-16  Ted Gould  <ted@canonical.com>

	Making it so the lib only uses glib (which it does)

2009-01-16  Ted Gould  <ted@canonical.com>

	Adding in the libindicate lib.

2009-01-16  Ted Gould  <ted@canonical.com>

	Moving the tests so that they can guarantee to build after the library
	builds as otherwise they end up getting built first.

2009-01-16  Ted Gould  <ted@canonical.com>

	Adding in a return that was missing (though it's useless)

2009-01-16  Ted Gould  <ted@canonical.com>

	Handling the case that we're destroying an entry because the bus told us to.  Properly signalling all of the removals

2009-01-15  Ted Gould  <ted@canonical.com>

	Fixing the printing and the saving of indicators.

2009-01-15  Ted Gould  <ted@canonical.com>

	Changing the test to do the printing by itself instead of using the debug messages in the class itself

2009-01-15  Ted Gould  <ted@canonical.com>

	Getting the signals in shape

2009-01-15  Ted Gould  <ted@canonical.com>

	Okay, adding the other signals in and keeping track of the indicators
	that are hanging around.  Now, to connect to things external.

2009-01-15  Ted Gould  <ted@canonical.com>

	Get the type of the list of indicators that we got, and then set the up to register

2009-01-15  Ted Gould  <ted@canonical.com>

	Now correctly calling the get indicators function to get the indicators on already created objects.

2009-01-15  Ted Gould  <ted@canonical.com>

	Adding in a marshaller for the DBus signals that we need

2009-01-15  Ted Gould  <ted@canonical.com>

	Now doing some DBus listening and getting some of the initial configuration built up.

2009-01-15  Ted Gould  <ted@canonical.com>

	Changing to the dbus interface and changing to build teh client and server interfaces

2009-01-15  Ted Gould  <ted@canonical.com>

	Amazing how a little string can make such a huge difference.

2009-01-15  Ted Gould  <ted@canonical.com>

	Adding in a basic listening test

2009-01-15  Ted Gould  <ted@canonical.com>

	Adding a new function

2009-01-15  Ted Gould  <ted@canonical.com>

	Starting to flesh out the listener a little bit, should get a list of names on teh bus at this point

2009-01-15  Ted Gould  <ted@canonical.com>

	Adding in the base object for the listener.

2009-01-15  Ted Gould  <ted@canonical.com>

	Cut-and-paste error

2009-01-14  Ted Gould  <ted@canonical.com>

	Cleaning up prototypes and type warnings.

2009-01-14  Ted Gould  <ted@canonical.com>

	Who the hell would design an API that passes in arrays of strings differently
	than it passes them out.  What an insane idea.  Oh yeah, properties work.

2009-01-14  Ted Gould  <ted@canonical.com>

	Chaning the property list parameters to be pointer arrays.

2009-01-13  Ted Gould  <ted@canonical.com>

	Making the indicator lookup it's own function and trying it out in another function to get a property.

2009-01-13  Ted Gould  <ted@canonical.com>

	Adding in some properties to the mix

2009-01-13  Ted Gould  <ted@canonical.com>

	Adding in a display function and a list by type.

2009-01-13  Ted Gould  <ted@canonical.com>

	Man, a lot of work for messing up one explaination point.

2009-01-13  Ted Gould  <ted@canonical.com>

	Making it so that the indicators all have unique IDs

2009-01-13  Ted Gould  <ted@canonical.com>

	Forgot to actually add the test

2009-01-13  Ted Gould  <ted@canonical.com>

	Ah, we weren't checking if we were visible.  Now things are better.

2009-01-13  Ted Gould  <ted@canonical.com>

	Return to crashing beauty

2009-01-13  Ted Gould  <ted@canonical.com>

	Add a test to create a lot of indicators.

2009-01-13  Ted Gould  <ted@canonical.com>

	Merging in Robert's changes.

2009-01-13  Robert Carr  <racarr@ender>

	Add script to build GObject-introspection GIR, and boilerplate 
	JavaScript test.

2009-01-13  Robert Carr  <racarr@ender>

	Use G_BEGIN/END_DECLS, and put the GOBject *_get_type functions in the 
	header file (needed by introspection, but also the normal GLib style).

2009-01-13  Robert Carr  <racarr@ender>

	Merge Ted's changes. I should have used bzr bind.

2009-01-13  Robert Carr  <racarr@ender>

	Add pkgconfig file.

2009-01-12  Ted Gould  <ted@canonical.com>

	Fleshing out more functions, we can now return a list of ids.  Need to test with more.

2009-01-12  Ted Gould  <ted@canonical.com>

	Whoo Hoo, we can count

2009-01-12  Ted Gould  <ted@canonical.com>

	Fleshing out the whole show and hide thing.  We should also be signalling when indicators are added or removed from the server.

2009-01-12  Ted Gould  <ted@canonical.com>

	Clean up the signal handlers and fixing the call in the test function.  Now we're to the point of showing the way I think things should be.

2009-01-12  Ted Gould  <ted@canonical.com>

	Basic show hide support in the indicator

2009-01-12  Ted Gould  <ted@canonical.com>

	Changing to showing the inicator and make it so that we dont' crash right now.

2009-01-12  Ted Gould  <ted@canonical.com>

	Adding in the base functions with pointers and fun stuff like that

2009-01-11  Ted Gould  <ted@canonical.com>

	Adding in signals so that we can talk to the app over DBus.  Nice.

2009-01-09  Ted Gould  <ted@canonical.com>

	Adding in a show to help debugging

2009-01-09  Ted Gould  <ted@canonical.com>

	Adding in an indicator to the test and fixing a typo

2009-01-09  Ted Gould  <ted@canonical.com>

	Connecting indicators and servers.  They create themselves easily.

2009-01-09  Ted Gould  <ted@canonical.com>

	Setting up the singleton nature of the server, and allow setting it.

2009-01-09  Ted Gould  <ted@canonical.com>

	Fleshing out the server some in adding function and prototypes.

2009-01-08  Ted Gould  <ted@canonical.com>

	Adding in build support for the indicate and crash test.  Will make future ones easier.

2009-01-08  Ted Gould  <ted@canonical.com>

	Adding in a simple program to crash after 15 seconds.  Now we can add indicators to it.

2009-01-08  Ted Gould  <ted@canonical.com>

	Building a pretty good set of virtual functions and getting them tied together, with errors too.

2009-01-08  Ted Gould  <ted@canonical.com>

	Basic GObject stuff

2009-01-07  Ted Gould  <ted@canonical.com>

	Setting up version of the libraries.

2009-01-07  Ted Gould  <ted@canonical.com>

	Fixing stuff so that everything links all together

2009-01-07  Ted Gould  <ted@canonical.com>

	Adding in a built sources tag to build the header file properly

2009-01-07  Ted Gould  <ted@canonical.com>

	Fixing linking and libraries and includes oh my

2009-01-07  Ted Gould  <ted@canonical.com>

	Dummy starting file

2009-01-07  Ted Gould  <ted@canonical.com>

	Adding libindicate to the build system

2009-01-07  Ted Gould  <ted@canonical.com>

	Make file starting out to build this thing

2009-01-07  Ted Gould  <ted@canonical.com>

	Basic server stuff

2009-01-07  Ted Gould  <ted@canonical.com>

	Fixing a bunch of typos, now it is a happy validating XML file.

2009-01-07  Ted Gould  <ted@canonical.com>

	First version of XML DBus interface

2009-01-07  Ted Gould  <ted@canonical.com>

	Dropping in more code to make these real GObjects and such

2008-12-20  Ted Gould  <ted@canonical.com>

	Stopping point

2008-12-04  Ted Gould  <ted@canonical.com>

	Moving the indicator directory cross-packages.

2008-12-04  Ted Gould  <ted@canonical.com>

	Put in the kickarse loader code.  Happy, happy.

2008-12-04  Ted Gould  <ted@canonical.com>

	Building in a module loader

2008-12-03  Ted Gould  <ted@canonical.com>

	Parse directories

2008-12-03  Ted Gould  <ted@canonical.com>

	Making the applet very light.

2008-12-03  Ted Gould  <ted@canonical.com>

	Okay, we're all doing everything perfect

2008-12-03  Ted Gould  <ted@canonical.com>

	Making the applet a lot more sparce.  Now we're going to load things dynamically.  Let them have their own problems.

2008-12-03  Ted Gould  <ted@canonical.com>

	Removing everything except messaging.

2008-12-02  Ted Gould  <ted@canonical.com>

	Adding in all of the icons into the mockups.

2008-11-25  Ted Gould  <ted@canonical.com>

	Adding in icons from Ken.

2008-11-24  Ted Gould  <ted@canonical.com>

	Adding in some filler menus to get some depth.

2008-11-24  Ted Gould  <ted@canonical.com>

	Adding in the infrastructure to have icons in the build.  Only a dummy icon for now, but it's there and ready for some friends.

2008-11-24  Ted Gould  <ted@canonical.com>

	Adding in additional files to catch translations

2008-11-24  Ted Gould  <ted@canonical.com>

	Removing the test menu item.

2008-11-24  Ted Gould  <ted@canonical.com>

	Adding in settings

2008-11-24  Ted Gould  <ted@canonical.com>

	Blocking the prelight

2008-11-24  Ted Gould  <ted@canonical.com>

	Making spacing and alignment better

2008-11-24  Ted Gould  <ted@canonical.com>

	Getting some batteries in there.

2008-11-24  Ted Gould  <ted@canonical.com>

	Basic power handler

2008-11-20  Ted Gould  <ted@canonical.com>

	First try at getting it not to hide on click.  Fail.

2008-11-20  Ted Gould  <ted@canonical.com>

	Whoa, getting that inherited type wrong really messes things up.

2008-11-20  Ted Gould  <ted@canonical.com>

	Clean compile, but something is broken in the _init function.  Not sure what.

2008-11-19  Ted Gould  <ted@canonical.com>

	Okay, blocked the prelight on the item, now how do I get my buttons out of event prison.

2008-11-19  Ted Gould  <ted@canonical.com>

	Getting all the widgets in the menu item.  Doesn't quite work right, but the widgets are there.

2008-11-19  Ted Gould  <ted@canonical.com>

	Adding in a menu item to start putting in a slider.

2008-11-18  Ted Gould  <ted@canonical.com>

	Adding a depend for dbus-glib

2008-11-18  Ted Gould  <ted@canonical.com>

	Version one of debian packaging.

2008-11-12  Ted Gould  <ted@canonical.com>

	Working on ideas for the prototype of the individual item stuff

2008-11-12  Ted Gould  <ted@canonical.com>

	Starting to build functions to handle the menu spec over DBus

2008-11-12  Ted Gould  <ted@canonical.com>

	Okay, audio is an icon now.

2008-11-12  Ted Gould  <ted@canonical.com>

	Connecting in all the different applets, now they can do their own thing.

2008-11-12  Ted Gould  <ted@canonical.com>

	Adding the basis for all the different indicators that we want to include

2008-11-12  Ted Gould  <ted@canonical.com>

	Switching from a label and an hbox to a menubar

2008-11-12  Ted Gould  <ted@canonical.com>

	Ah, forgot to show the applet itself.

2008-11-12  Ted Gould  <ted@canonical.com>

	Putting a label in the widget

2008-11-12  Ted Gould  <ted@canonical.com>

	Adding in more documentation on the seperation between user interaction
	and the system services.

2008-11-10  Ted Gould  <ted@canonical.com>

	A diagram about how intermediate daemons are going to provide status to the panel.

2008-11-10  Ted Gould  <ted@canonical.com>

	Getting some text that I'd written on the target API in the repo.

2008-11-10  Ted Gould  <ted@canonical.com>

	Indicator prototypes

2008-10-30  Ted Gould  <ted@canonical.com>

	Ignoring some stuff

2008-10-30  Ted Gould  <ted@canonical.com>

	Setting up the data directories and getting everything to translate nicely

2008-10-29  Ted Gould  <ted@canonical.com>

	Adding in the linking and some basic prototypes.

2008-10-29  Ted Gould  <ted@canonical.com>

	Getting the build things together so that it starts building.  Yeah.

2008-10-29  Ted Gould  <ted@canonical.com>

	Basic build system, not quite working though