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

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

	0.4.12

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

	Forgot about the LP naming issue

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

	Adding in a list of LINGUAS

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

	Adding translations from Launchpad

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

	0.4.11

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

	Handle a11y updates globally.

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

	don't connect multiple times to SIGNAL_ACCESSIBLE_DESC_UPDATE with arguments that may die on us

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

	0.4.10

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

	Bump libindicator to 0.3.22

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

	Set the environment for the applet

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

	Tell the object what environment it's in

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

	0.4.9

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

	Adding support for accessible descriptions

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

	libindicator v. 0.3.19

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

	Check to ensure the accessible object isn't NULL

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

	It should be the indicator's responsibility to update the value in the entry, not ours.

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

	menuitem is already a GtkWidget

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

	Add accessible_desc support

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

	0.4.8

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

	Close the menu if menu show is called with a NULL menu

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

	if requested, close all open menus

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

	0.4.7

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

	Require libindicator with new signal

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

	Port to use new entry based scroll event.

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

	Added support to "scroll-entry" signal
	
	Now indicator-applet emit a scroll-entry signal for each
	scroll over an IndicatorObjectEntry

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

	Port to the non-MateComponent panel

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

	port to libmate-panel-applet-3

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

	Removing unused MateConf support

2010-10-07  Sebastien Bacher  <seb128@ubuntu.com>

	don't use mateconf in the build system since the source doesn't use it

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

	0.4.6

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

	Signaling the activate on the top level items.

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

	Connecting to the activate signal for the menuitem and passing down.

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

	Making ChangeLog and AUTHORS built at dist time

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

	0.4.5

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

	Add an extra pixel of spacing.

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

	Adding a padding pixel in the box

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

	0.4.4

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

	Blacklist datetime in the base indicator

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

	Removing datetime from indicator-applet

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

	0.4.3

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

	Fixing sensitivity handling.

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

	

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

	Making sure to disconnect too! 

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

	Filling it out, we're just stealing sensitivity! 

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

	Setting up a callback when sensitivity changes.

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

	Looking at whether the lable and image are sensitive to set whether the menuitem is sensitive.

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

	0.4.2

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

	Hide when we don't have anything to show.

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

	Putting signals on the various objects to know when they adjust their state.

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

	The most basic thing needed, when adding an application we can determine whether it's visible and decide to show the menu or not.

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

	0.4.1

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

	Change the installed server files to be the .in.in files instead of the .in files

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

	0.4.0

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

	Updating Copyright Dates

2010-05-13  Tom Haddon  <tom.haddon@canonical.com>

	Update copyright notice

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

	Update to 0.3 branch

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

	0.3.7

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

	Shortcut fix

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

	Shortcut fix

2010-05-04  Roman Vorobets  <roman-vorobets@launchpad.net>

	Patch to fix modifiers on remote connections.

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

	Adding in a new binary target for window menus.

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

	We can ignore this little guy.

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

	Fixing which files we grab the translations from.

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

	Adding appmenu to the translations

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

	Really, we want libappmenu.so only in indicator-applet-appmenu

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

	Blocking the appmenu modules from the complete set so they can be right and left side.

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

	Ignoring everyone.

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

	Adding a matecomponent server for the appmenu applet.

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

	Changing all the ifdefs for appmenu

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

	Making an appmenu build

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

	Dummy commit to knock up the revno for a build with the new version

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

	Make the applet support vertical panels.

2010-04-19  MarkieB  <launchpad.org.Markie1@dfgh.net>

	resolve compiler warning changes

2010-04-18  MarkieB  <launchpad.org.Markie1@dfgh.net>

	suppress spurious 'conflict' in header includes arising from merger 352.1.2

2010-04-18  MarkieB  <launchpad.org.Markie1@dfgh.net>

	more elegant handling of data connections when reorienting - no need for the enum

2010-04-18  MarkieB  <launchpad.org.Markie1@dfgh.net>

	more elegant handling of data connections when reorienting

2010-04-18  MarkieB  <launchpad.org.Markie1@dfgh.net>

	without properties in current iteration

2010-04-16  MarkieB  <launchpad.org.Markie1@dfgh.net>

	label rotation according to preferences - as well as location

2010-04-16  MarkieB  <launchpad.org.Markie1@dfgh.net>

	add I18n of labels in [tentative] prefs mini-window

2010-04-16  MarkieB  <launchpad.org.Markie1@dfgh.net>

	add rotation of labels

2010-04-16  MarkieB  <launchpad.org.Markie1@dfgh.net>

	now multi-component orientation changes in a similar manner to the orientation of the various widgets contained in the applet, no need for panel restart

2010-04-16  MarkieB  <launchpad.org.Markie1@dfgh.net>

	variable multi-component orientation - needs desktop session restart to have effect though

2010-04-16  MarkieB  <launchpad.org.Markie1@dfgh.net>

	add reorientation to mate-panel-applet-* applets

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

	Compiler cleanups from Kevin Turner

2010-04-16  Kevin Turner  <http://keturn.net/>

	mark unused function parameters
	this makes the code -Wall clean, but for a message about missing
	initializers due to https://bugzilla.mate.org/show_bug.cgi?id=615986

2010-04-16  Kevin Turner  <http://keturn.net/>

	fix various warnings for unused symbols and signedness comparison

2010-04-16  Kevin Turner  <http://keturn.net/>

	bzr-ignore autoconf-generated items

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

	Fix keybinding issue

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

	Attaching bug number

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

	We need to really ensure this is a menu shell now that we're stealing properties from it.

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

	Reformating so it's readable

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

	Magic code, idea stolen from mate-panel but mixed with updated GTK code and other things.  What ever, it works.

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

	0.3.6

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

	Adding in the LGPL

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

	Adding the license to the tarball

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

	Adding LGPL for tombody keybindings and egg accelerators

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

	0.3.5

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

	Adding support for hotkeys in the applet

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

	Using select to make the menu appear

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

	Let's try S

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

	Trying `

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

	Trying ctrl and alt

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

	Updating to trunk

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

	Switching over to the tomboy handler.

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

	Using the tomboy keybinding C file that is everywhere.

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

	Calling specifically on the default screen.

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

	Switching to using an invisible

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

	Fleshing out the filter function.

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

	Adding in a filter function

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

	0.3.4

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

	Sending scroll events to indicators based on events coming to the menuitem.

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

	Store the IndicatorObject in the menuitem.

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

	Merge up with trunk

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

	Set object data.

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

	Emit 'scroll' signal on IndicatorObject when the user mouse-scrolls on the indicator menuitem.

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

	Fix for --prefix option to autogen.sh

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

	0.3.3

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

	Adding in the sound indicator to the list.

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

	Putting the sound menu between the applications and messaging.

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

	0.3.2

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

	Err, used wrong filename function.

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

	Make the log output go to a file.

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

	Dropping this, as I don't think we need it.

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

	Changing to deleting and creating the file.

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

	Changing the flags around to try and remove the temp files.

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

	Only make the directory if it doesn't exist.

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

	Switching to having a temp string for async.

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

	Fixing a warning on types.

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

	Don't care about errors making the directory.  It seems to error if the directory already exists.

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

	Better error reporting, and making it so that we won't recurse.

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

	Setting up a basic log handling function that writes to a file.

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

	Adding in the file header and the defines for each applet type.

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

	Code to sort the various indicators.

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

	Adding in entry_moved code -- can't really test this yet though.

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

	Implementing a search function to determine where the menu item should be and inserting it there.

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

	Switching to just keeping the sorting value.

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

	Attaching the name to the object.

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

	An array with the order of the indicators in it.

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

	0.3.1

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

	Making all of the build targets be built from src/applet-main.c with compiler flags to set defines for the various differences.  Adding a build target for an indicator applet that has all the indicators in it.

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

	Fix MateComponent file

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

	Sync to trunk

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

	Updating translations to match the craziness

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

	Making a MateComponent applet server file for the Complete applet

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

	Ignoring our new bins

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

	Killing off the src-session directory.

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

	Merging the changes from the session applet into this file behind the #defines

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

	Make it so that the session and complete items are built from the same source with just defines.

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

	Adding in support for 'me' -- basically putting it in the right indicator applet incarnation.

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

	Removing 'me' from the main indicator applet.

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

	Supporting the Me menu as well.

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

	0.3.0

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

	Start handling the addition and removal of entries in the applet.

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

	Shouldn't be so quick, need the defines as well.

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

	Stealing the entry_removed code for the applet itself.

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

	Grabbing the added event and processing adding entries.  Moving all the code into a simple little function.

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

	Updating to libindicator 0.3.0 loader interface.

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

	Porting to libindicate 0.3.0

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

	Porting to libindicate 0.3.0

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

	Bumping up indicator required version

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

	Cleaning up the about dialogs to have better names (same as service files, no translations), the right version numbers, and use the GTK API instead of libmateui.

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

	Another bug

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

	Attaching another bug

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

	Attaching bug

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

	Using the version number from config.h

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

	Fixing the description in the about to match the MateComponent config.

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

	Removing dependency on libmateui

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

	Doing the same thing, session side.

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

	Replacing mate_program_init with g_set_application_name

2009-10-15  Martin Pitt  <martin.pitt@ubuntu.com>

	MATE Stracciatella fix to disable the session applet.

2009-10-14  Martin Pitt  <martin.pitt@canonical.com>

	Hide session applet in stracciatella session.
	
	This is the same code as for the message indicator applet.

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

	Setting the version to 0.2.0

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

	Some remaining sus-isms

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

	Grabbing the icons directory from the pkgconfig file.

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

	Using AM 1.11 silent mode

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

	Forgot to change names so that we pick up the session menu instead of sus

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

	Getting the libraries out and renaming SUS

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

	Removing more of the libraries and docs stuff.

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

	Adding in the session possible translations

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

	Changed the name of the MateComponent service file.  Oops, should have done
	this earlier.

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

	Ignore this message

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

	Changing build targets and the MateComponent descriptors that love them.

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

	Renaming the directory.

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

	Removing the libraries.

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 MateComponent 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 matecomponent 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 MATE 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 MATE Program

2009-03-26  Eitan Isaacson  <eitan@ascender.com>

	Add mate_program_init with LIBMATEUI_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 MATE 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 mate-
	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