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

2012-02-09  Ted Gould  <ted@gould.cx>

	0.5.90

2012-02-09  Ted Gould  <ted@gould.cx>

	Adding code coverage targets

2011-12-06  Allan LeSage  <allanlesage@gmail.com>

	Added coverage reporting via gcov config and targets.

2012-02-09  Ted Gould  <ted@gould.cx>

	Match libindicate 0.6.90

2012-02-09  Ted Gould  <ted@gould.cx>

	Adjust configure to use indicate-0.7

2012-02-09  Ted Gould  <ted@gould.cx>

	Updating for Dbusmenu 0.5.90

2012-01-31  Ted Gould  <ted@gould.cx>

	Fixing dbusmenu-gtk include paths

2012-01-31  Ted Gould  <ted@gould.cx>

	Updating deb to dbusmenu-gtk 0.5.90

2012-02-09  Daniel d'Andrada  <daniel.dandrada@canonical.com>

	Plug leak in launcher_menu_item_new
	
	Memory returned by indicator_desktop_shortcuts_nick_get_name
	has to be freed.

2012-02-08  Daniel d'Andrada  <daniel.dandrada@canonical.com>

	Fix memory leak: Free path string.
	
	The path was being created in build_launchers (line 1427)
	but never freed.

2012-01-25  Ted Gould  <ted@gould.cx>

	Compare server and path for multi-server clients

2011-12-01  Robert Carr  <racarr@canonical.com>

	serverList_equal: We have to compare IndicateListenerServers by DBus path instead of just name. This fixes issues where one client (DBus name) will create two or more indicate servers.

2012-01-25  Ted Gould  <ted@gould.cx>

	Using the new GTK3 box API to avoid deprecations

2012-01-23  Allan LeSage  <allanlesage@gmail.com>

	Resovled self-inflicted merge conflict.

2012-01-23  Allan LeSage  <allanlesage@gmail.com>

	Added macro to gtk_hbox_new fix per charles' advice.

2012-01-23  Allan LeSage  <allanlesage@gmail.com>

	Added macro to gtk_hbox_new fix per charles' advice (and fixed tabination).

2012-01-23  Allan LeSage  <allanlesage@gmail.com>

	Fix for gtk_hbox_new, werror on deprecated.

2011-11-29  Ted Gould  <ted@gould.cx>

	Adding a name hint

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

	Export the indicator name hint
	
	Using the PACKAGE config.h variable.

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

	0.5.0

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

	Memory leak on pixbufs

2011-01-21  Chow Loong Jin  <hyperair@ubuntu.com>

	Memory leaks fixes

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

	0.4.95

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

	Fix the gutters

2011-08-24  Ted Gould  <ted@gould.cx>

	Don't look up a style value we're not using

2011-08-24  Ted Gould  <ted@gould.cx>

	Switching the padding to the toggle-spacing like the image menu item and using it at creation of the box

2011-08-24  Ted Gould  <ted@gould.cx>

	Removing unneeded header

2011-08-24  Ted Gould  <ted@gould.cx>

	Remove an unused hbox in the application menu item

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

	MPT's happiness is a feature

2011-08-19  Omer Akram  <om26er@ubuntu.com>

	s/Clear Attention/Clear

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

	0.4.94

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

	Fix Emense statuses

2011-07-29  Sven Baars  <svenb.linux@gmail.com>

	emesene: Change OFFLINE to INVISIBLE and add a new OFFLINE status

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

	Fix drawing on GTK3

2011-08-17  Andrea Cimitan  <andrea.cimitan@canonical.com>

	Whitespace

2011-08-17  Andrea Cimitan  <andrea.cimitan@canonical.com>

	Whitespace

2011-08-17  Andrea Cimitan  <andrea.cimitan@canonical.com>

	Fixes draw renderings in gtk+3

2011-08-11  Ted Gould  <ted@gould.cx>

	0.4.93

2011-08-11  Ted Gould  <ted@gould.cx>

	Migrating to libindicate 0.6 API

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

	Add a clear attention menu item and attach it to middle click

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

	Make sure clear attention stays at the end

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

	No need to track the last separator as we now have a menu item below it.

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

	Adding in the clear attention menu item

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

	Removing the menu item from the indicator

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

	Responding to clear attention method by clearing the dot

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

	Switching to calling a method instead of clearing in the indictor.

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

	Removing Watch method as that's been moved to libindicator (for a while)

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

	Adding a method to clear the attention

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

	Don't use g_return_if_fail in middle-click cb function
	
	We don't need an assertion there.

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

	X and Y pointer position aren't supported anymore by libindicator
	
	Dropping them!

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

	Added a "Clear notifications" menu as well...

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

	Merge with upstream

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

	Reset the un-attention icon on secondary-activate over indicator
	
	When the messaging menu is in the "attention" state, middle-clicking
	over the indicator-messages will clear the attention icon.

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

	configure.ac: Use the "--with-gtk" option flag.
	
	Use this flag, as all other projects in unity and indicators land

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

	Making mail applications based on the default mail client not a hardcoded desktop file.

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

	Use the G_N_ELEMENTS macro

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

	Reworking found slightly to make clean up code nicer

2011-07-21  Chris Coulson  <chrisccoulson@ubuntu.com>

	Honour the default mail client rather than hardcoding the Mail entry to point to Evolution

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

	Make sure to insert in the right locations

2011-07-22  Chris Coulson  <chrisccoulson@ubuntu.com>

	Make all indicator entries appear after an applications shortcuts
	
	Currently, indicator_added and resort_menu have different ideas of where they should go.
	indicator_added puts them before shortcuts, whereas resort_menu will move the shortcuts
	before them. This leads to a situation where shortcut entries end up inbetween an applications
	indicator entries (and this happens a lot with Thunderbird)

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

	0.4.92

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

	Adding status menu items to the messaging menu

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

	Adding copyright headers

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

	Off by one error, because, well, this is a computer program and that's what happens.

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

	Allow the status provider directory to be overridden by an environment variable

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

	Handle users clicking on those silly menu items that we created.

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

	Signal back that the icon should be updated

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

	Connect in to update the stati

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

	Priming with the status separator

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

	Putting status items into the menu

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

	Ignoring the PC files

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

	Making a pkgconfig file for the status providers

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

	Getting libindicator 0.4 support

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

	The trailing slash makes distcheck fail.  No really.

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

	Translate the strings in status-items

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

	Ignoring some more

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

	Connecting a callback and cleaning up

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

	Attach the module to the object and put them in the list.  Now we're real.

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

	Breaking the status provider base objec out into it's own library

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

	Loading the modules and getting an object

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

	Insure we're only loading .so's

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

	Call the status items build function

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

	Basic loadable modules

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

	Turning a directory into a bunch of idles loading status providers

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

	Adding in an idle function for handling the directory.

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

	Getting some static data and using it a bit to boot strap this data

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

	Adding in some helpers with building up all the status-items.

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

	Commenting out the main function to make it more explanitory

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

	Stealing all of the status providers from indicator-me so that we can use them here.

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

	0.4.91

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

	Migrate to indicator 0.4 API

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

	Bumping to libindicator 0.4 API

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

	0.4.90

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

	GTK3 Changes

2011-05-26  Michael Terry  <michael.terry@canonical.com>

	allow building with gtk3

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

	0.4.0

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

	Add support for a specific icon on the menu

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

	Attaching bug

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

	Look for the override icon in the keyfile

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

	move ICON_KEY

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

	Create the keyfile for the application icon as well

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

	Checking for the ayatana override in the keyfile

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

	Making it so that we store the keyfile as well.  Sad we need to do this.

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

	Set the type before the other variables

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

	Make sure to set the type of the item before all the values.

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

	0.3.92

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

	Support for accessiable descriptions of the indicator

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

	Removing an unneeded strdup

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

	Updating libindicator required version

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

	Updating the description when we signal that it's changed

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

	Store entry data in a variable so it can be freed after signaling an
	accessible description change, preventing a memory leak.

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

	No need to use g_strdup, the variable is a const

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

	Add accessible description support

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

	0.3.91

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

	Upgrading to new type handler prototype

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

	Grabbing Ken's branch too! 

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

	rename the service to match the indicator

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

	Adding a log domain and fixing service file.

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

	Ignoring the generated XML

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

	Adding in log domains

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

	Fixing service file

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

	0.3.90

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

	ayatana.org to canonical.com

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

	ayatana.org to canonical.com

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

	Switching dbusmenu and indicator messages

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

	Prototype changes

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

	Emitting signals for the connections

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

	Saving the connection

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

	Swiching to our method function.. woot! 

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

	Setting up the vtable and making it connect in

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

	Get the connection in the cool new style

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

	Switching how we get our interface info

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

	Switch to new dbusmenu signal prototype

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

	Type to session

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

	Switching the function callbacks

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

	Changing the signal callbacks

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

	Changing the creation of the proxy

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

	Changing to get the interface from the included XML file

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

	Switching over from using dbus-binding-tool to sed

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

	Switching the pkgconfig files that are used.

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

	Fix deprecations and ensure they're part of distcheck

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

	avoid deprecated API

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

	Building ChangeLog and AUTHORS from makefile

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

	0.3.11

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

	Pass the dbusmenu menuitem to the expose callback.

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

	Making sure to put the dbusmenu item in the callback

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

	0.3.10

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

	Shifting the locations of the triangles and the icons.

2010-08-26  David Barth  <david.barth@canonical.com>

	adjusted position of the left icons and triangle overlay

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

	Removing some extra code that's not needed and ensuring the icon is always shown.

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

	Only show the avatar if it is sent

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

	Removing the blank menu items

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

	Set the image menu icon

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

	0.3.9

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

	Removing the parenthesis

2010-07-29  David Barth  <david.barth@canonical.com>

	0.3.8

2010-07-29  David Barth  <david.barth@canonical.com>

	running apps triangle indicator overlay from Cimi

2010-07-29  Andrea Cimitan  <andrea.cimitan@gmail.com>

	merged dbarth's branch

2010-07-29  David Barth  <david.barth@canonical.com>

	better aspect ratio for the triangle

2010-07-29  David Barth  <david.barth@canonical.com>

	adjust the triangle size

2010-07-29  David Barth  <david.barth@canonical.com>

	remove the old running app. icon

2010-07-29  David Barth  <david.barth@canonical.com>

	fix typos to build and clean up comments

2010-07-29  Andrea Cimitan  <andrea.cimitan@gmail.com>

	remove the previous icon

2010-07-29  Andrea Cimitan  <andrea.cimitan@gmail.com>

	trailing whitespace

2010-07-29  Andrea Cimitan  <andrea.cimitan@gmail.com>

	Draw a triangle on the left

2010-07-29  David Barth  <david.barth@canonical.com>

	message counters are now rendered with a nice rounded background

2010-07-29  Andrea Cimitan  <andrea.cimitan@gmail.com>

	check if widget is really a widget before getting its style (from dbarth)

2010-07-29  Andrea Cimitan  <andrea.cimitan@gmail.com>

	Ops, readded the label :P

2010-07-29  Andrea Cimitan  <andrea.cimitan@gmail.com>

	Added rounded rectangles on the right

2010-07-22  Andrea Cimitan  <andrea.cimitan@gmail.com>

	Fixed position of sub menu indicators (the one with the counter on the right)

2010-07-22  Andrea Cimitan  <cimi@gemini>

	Added triangles on the left and new label design on the right.
	We still need to align not-active services but I don't have any clue on how to do this

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

	Dummy commit

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

	0.3.7

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

	Patch from Kees to ensure the hashtable keeps its memory

2010-04-28  Kees Cook  <kees@outflux.net>

	Allocate memory for hash table items (LP: #533021)

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

	Check for whether a desktop file is eclipsed when loaded.

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

	When adding a desktop file look through teh applications we have to check for eclipsing

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

	Ensure that we cleanup proxy items as shortcuts.

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

	Forgot to pass the object here.

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

	Handling the remove and add in separate functions.

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

	Changing the changed signal to be added/removed so that we can make things even more fun.

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

	Minor refactoring to make the logic clearer

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

	Some debug messages when removing shortcuts

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

	It's possible the newroot could be NULL, and that's okay.

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

	Negative debugging

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

	Some debugging messages

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

	Deleteing shortcuts on update if they need to be

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

	Killing hte launcher shortcuts on exit as well.

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

	Removing the shortcuts when removing the application entry.

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

	0.3.6

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

	Fixes to the placement of notifications and their visibility.  Lots of lovely cleanups.

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

	We only want to increment the position if we didn't find an entry

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

	Dropping a useless warning

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

	Actually, more correctly, that should be a weak ref.

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

	Fixing a mixed up signal name.  Small memory leak.

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

	Making application items default to invisible, and only become visible if they get a valid desktop file.

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

	Ensuring that the visibility property is set on the application entries.

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

	Make the visibility of indictor items and separators follow the visibility of the application item.

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

	Build the separator after checking to see which entry to use.  That way we've always got one.

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

	Making the messaging menu use the service architecture.

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

	Making it so that we don't build two icon_proxies ever.

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

	Putting in a timeout to clear the icon if there were messages waiting when we lost the service.

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

	Making the service into an indicator service.

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

	Switching over to using an indicator service manager instead of setting up the proxies by hand.

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

	Comments and formatting.

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

	0.3.5

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

	Tracking which applications we've seen before.

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

	Fail if we have init called more than once.  Merge comment.

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

	Give us a minute before we write it out.

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

	When we're being reshown eval the label

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

	Ah, classic failure

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

	Make this easier to test

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

	Building us a file.

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

	More comments

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

	Copyright headers.

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

	Some comments

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

	Have a background process for writing out the seen DB

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

	Code to read in the keyfile

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

	Building a file name and checking if it exists.

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

	Only build shortcuts if we've been seen before.

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

	Checking to see if we've seen the application before choosing whether we have the name or the setup string.

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

	Adding the new server to the seen database.

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

	Building the seen db on init

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

	Changing to be more of a singleton type of thing.  Really that makes more sense.

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

	Making a basic interface for the seen database.

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

	Adding in support for shifting over command items

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

	Increasing the dbusmenu required version to 0.2.8

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

	Making sure command items are using blanks

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

	Set the blank icon on proxy objects

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

	Grab changes in app icons.

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

	Allow for applications icons to change incase we haven't gotten the property yet.

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

	Making a small indicator on apps that are running.

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

	Removing app-gtk-menu-item as it really wasn't needed.

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

	Looking for the right property

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

	Changing to use the new app type

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

	Adds in an application menu item.

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

	Replacing the count with the icon

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

	updating to trunk

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

	Building a new base object for our menuitem

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

	0.3.4

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

	Make the avatar spacing same as the other icons in the menu

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

	Setting the minimum allocation for the image to be the menu icon size even if there isn't any pixmap.

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

	Putting padding between the items to make them pretty like.

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

	Use the standard libindicator icon handling

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

	Switch to using the image helper and drop design team size

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

	Bumping libindicator version to 0.3.5

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

	Fix to use translated string.

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

	Grab translation for default name.

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

	Handling bools by getting a value for indicators requesting attention.

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

	Switching the attention callback to using a value so it can correctly handle booleans.

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

	String changes to match everyone else.

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

	Changing from microblogging to broadcast

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

	0.3.3

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

	Putting in default icons for the default apps that are panel themed

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

	Using the default icon in the application indicator as well.

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

	Making it so that if the app is default, it uses a generic icon.

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

	Adding in an icon lookup to the default apps db

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

	Adding in a base set of icons from the gnome theme.

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

	Setting up default application names in the menu.

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

	Checking the default name on application items

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

	Checking to see if we have a default name.

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

	Keeping our desktop file paths safe.

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

	Copyright headers.

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

	Making the default applications strings translatable.

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

	Adding in the setup function.

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

	Refactoring into a helper

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

	Adding empathy and gwibber to the mix.

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

	Actually searching through the list

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

	Adding a small little function to find default applications.

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

	0.3.2

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

	Adding in an icon to show the application as running

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

	Adding in an application-running icon

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

	Changing the applications to have icons.

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

	Put the icons into the active items.

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

	Removing the launcher custom menu type

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

	Switch to having a launcher be a standard item with an icon.

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

	Getting dynamic items from libindicate and dbusmenu

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

	Upping dbusmenu dep to 0.2.5

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

	Adding protection from data fields by checking to ensure they're AppMenuItems

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

	Setting the listener to NULL after unrefing it.

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

	Do a resort after adding new items.

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

	Did I ever talk to you about why I hate while loops?  I have to stop using them.  They just lead to bugs.

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

	Eh, forgot to flesh out the lists

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

	If we already have children, make sure to process them right away.

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

	Adding some debug messages

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

	Moving the shortcuts along with the app item

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

	Getting the shortcuts in, and handling changes of them.

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

	Realized that we can't proxy the root as the items can't then have two parents, and they need to exist with a parent in the menu that we're building.  So we have to leave the proxy items unparented until they get picked up in the service themselves.

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

	Adding a list to put the shortcuts in

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

	Oops, wrong signal name for this function.

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

	Emitting the new signal all over the place.

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

	Adding in a shortcuts changed signal

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

	Handling root item changes.  Mostly.

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

	Init and cleanup the client and root private properties.

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

	Fleshing out menu_cb, lots of avenues for expantion in other directions now.

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

	Adding API for getting items

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

	Grabbing the static commands branch so we can build on it.

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

	Adding in the ability to take static commands from a desktop file

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

	Bumping libindicator to 0.3.3

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

	Use the string allocate by g_key_file instead of creating a new one

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

	Explicitly setting the visible property so we call pull it later.

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

	Switching over to using _bool for the visible property

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

	Adding the shortcuts into the menuhandling code.

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

	Fleshing out the get_items function

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

	Applying the eclipsed value to the shortcuts that are associted with this launcher.

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

	Making visible use boolean properties.

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

	Responding to clicking on the shortcuts

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

	Build us some shortcut menuitems

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

	Adding in shortcuts and ids private variables.  Full lifecycle.

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

	Adding a function to get the items that are in the desktop file.

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

	If we see a keyfile, use the keyfile processing.

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

	Spliting out the launchers into the keyfiles

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

	Abstracting out the keyfile handling stuff.

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

	Adding in the ability to use keyfiles for the black list

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

	Property disconnect the count changed signal.

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

	Some comments.

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

	Disconnecting the signal handler attached to the listener when we go away.

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

	Removing the in brackets creation of a variable that also existed in the function, thus creating a NULL pointer.

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

	Kids, ignore pot

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

	Creating a local variable that was masking the one in the function.

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

	Fixing debug message

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

	I shouldn't have to have a ref there as it's got a ref count of one.

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

	0.3.1

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

	Update to new dbusmenu 0.2.2

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

	Fixing one more timestamp

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

	Changing callback prototype and activate signals

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

	Upping to dbusmenu-gtk 0.2.2

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

	0.3.0

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

	Updating to dbusmenu v0.2.0

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

	Switching type to use the #define

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

	Switching the property callback to be GValue

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

	Requiring the 0.2.x series of dbusmenu

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

	Apparently order matters.

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

	Disabling static builds because we don't need them, and they seem to cause errors on amd64.

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

	Moving to the libindicator 0.3.0 API

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

	Switching to the new indicator interface.

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

	Requiring the new libindicator

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

	Adding translator comments for the hours and minutes strings.

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

	Adding a translators comments for minutes and hours strings.

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

	0.2.6

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

	Making sure that the menu is calculated after it is determined after the black list is checked.

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

	Resort the menu after the blacklist has been checked case we've black listed the last item in the menu.

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

	Stupid ordering, just asking for a memory leak.

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

	0.2.5

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

	Adding in a check to see if the time was set, if not, don't display it in the menu item.

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

	Making sure we don't update the text for the time if it's zero.

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

	Adding in a creation seconds and returning that if seconds isn't set.

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

	Checking for icon status when adding launchers to ensure that we get the correct status.

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

	Checking to see if the menu should get un-hidden when we're installing new launchers.

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

	Getting the path for icons from pkgconfig and putting them in the right location.

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

	Using the new icon directory define.

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

	Adding in a variable for the icon directory.

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

	Making a 0.2.4

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

	Merging in the minimum width branch to fix descriptions getting truncated when they're a reasonable length.

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

	Adding in a resort after editing the blacklist

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

	Too big

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

	Putting in teh size request a minimum width

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

	Merging in the icon scaling branch

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

	Forgot to scale on icon changing.

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

	Putting in a little code to scale icons.

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

	Version to kick LP

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

	Merging in branch to add a path for indicators in /usr/share and make it so that invalid desktop files don't create visible menu items.

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

	If we're not given a valid desktop file we should eclipse ourselves, and if we're eclipsed, we should hide the separator as well.

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

	Looking at the old system apps directory as well.

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

	Changing directory names

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

	Making a purdy 0.2.3

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

	Merging in i18n branch to add i18n.

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

	Forgot intltool

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

	Adding in header for gettext

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

	Adding in some encoding to make things fun.

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

	Oops, teach me to cut and paste :) 

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

	Making it so the po directory is connected in.

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

	Adding configure stuff in to set up gettext

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

	Adding a po directory with a list of files.

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

	Setting up the gettext stuff.

2009-09-15  Sebstien Bacher  <seb128@ubuntu.com>

	Patch from Seb to init localization

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

	Going 0.2.2

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

	Adding in the separators

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

	When removing an application item we need to get rid of its separator as well.

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

	Merging in the time init stuff into this branch so that it gets into this code review.

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

	Setting the default seconds to be the current time.

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

	Switch to checking the separator by keeping track of the last one incase there are a bunch of launchers that are eclipsed at the end of the list.  We'll have too many cases, it's easier just to see who we unhide.

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

	Check eclipse to see if we should make indicators visible or not.

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

	Hiding the last item on the list depending on who is last.

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

	When eclipsing a launcher we're hiding it's separator as well.

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

	Putting the separators into the resorting of the menu.

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

	Handling separators on launchers.

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

	Initializing local imList_t objects.

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

	Forgot to initialize a separator.  Also initializing the locally defined server objects to make it easier to find bugs with not setting stuff.

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

	Making the server separator and putting it in.

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

	Updated to current trunk.

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

	Updating to latest trunk

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

	Merging in the menu update branch.

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

	Adding indicator-messages.service to the clean files for distcheck.

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

	Making 0.2.1

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

	Putting the dbus service (correctly) in the libexec directory instead of the bin directory.

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

	Adding in the local install flag to make that distcheck passes.

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

	Update to the v2 API and getting the majority of 423013.

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

	Bother.

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

	Checking the wrong variable, let's not get caught by those legacy guys ;) 

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

	Adding in support for properties changing on the indicator menu item on the visualization side of things.

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

	No atoi, no stdlib.h, that's how it is.

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

	Fixing as I fixed the libindicate API, we shouldn't have to do an atoi here.

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

	Setting up the listener signal to make it so that we know when the count changes.  Using the property call back and just calling that function.

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

	Replacing type with count

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

	Removing the count on the label boolean as we're detecting that differently now.

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

	We don't need to be tracking the added and removed signals for indicators anymore.

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

	Fleshing out indicator changing the attention parameter.

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

	Connecting into the attention signal.

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

	Processing the attention when an indicator leaves the building.

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

	Comments.

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

	Fleshing out checking server attention by looking at all the indicators.

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

	Initializing count

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

	Oops, a little silly before.  We really need to check the indicators as well, we can't just clear the attention for the count value.

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

	Reworking how we handle the server count changing and how that makes us check for attention now.

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

	Adding an attention parameter to the server and initing it.

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

	If the item was shown, and we're in an overload case, we need to find someone else to show when we're dying.

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

	Adding in a small function to access the show variable.

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

	Hiding the items that go over our bounds.  That's how it is.  Hard, hard, limits.

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

	Defining the max number of indicators and telling the server about it.

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

	Setting the property on the dbusmenu menuitem as well

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

	Adding in a show state.

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

	Fleshing out the attention_cb to make it record the value and signal on changes.

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

	Adding an attention variable and a function to access it.

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

	Adding in a signal for when the attention changes.

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

	Fleshing out the count item

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

	Ask for all the properties up front.

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

	We're tracking count instead of whether we should show the time as a boolean.

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

	Making the sender support the name attribute and clean up the code a bit.

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

	oops forgot to remove type from the modified one, oops.

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

	Well, you know, Oholoh says that I don't comment enough.  Better put some more in.

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

	Changing the properties to be the indicate v2 ones.  Mostly this involves adding extra properties at this point.

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

	Removing the indicate-gtk headers.

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

	Dropping dep on indicate-gtk, we don't need it now that we're just passing the image data on.

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

	Converting this over to an indicator menuitem.

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

	Fleshing out the indicator item.  It's purdy.

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

	Making sure these don't conflict with ones already in usage.

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

	Adding properties for the new menuitems we need to build for showing applications and indicators.

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

	Removing the type from the indicator_removed function.

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

	We have to drop show_time as a parameter as the caller doesn't really know if that's the case or not anymore.

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

	Reshuffle.  Now the creation of an indicator makes for a im-menu-item without looking at type and subtype at all.  We'll have a bunch more now.

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

	libindicate dependency was already 0.2.0, but marking this as the case in the version history.

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

	Merging in the dbusmenu011 branch.  I think I got other trunk updates as well.

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

	Bringing up to use some of the new features and defines in DBusmenu 0.1.1

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

	A variable and a prototype.  Such is life.

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

	Fixing a header and some defines.

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

	Using the defines fo dealing with the icons and using the generic image type.  We're just passing along the PNGs right now.

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

	Using defines for visibility.

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

	Upping dbusmenu version

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

	Updating to dbusmenu 0.1.0 as a versioning snafu got involved.

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

	Changing to version 0.2.0.  We need a release sometime.

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

	Merging in a branch that updates to the new dbusmenu but also uses it to add a custom launcher item.

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

	Checking args from libdbusmenu, stealing code from there.  Comments by Neil.

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

	Attaching a bug to a branch.

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

	This stuff is crashing big time now.  Not sure why it worked before, but not going to look into it now.

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

	Adding a little style to our labels.  Hopefully making them look a little nicer.

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

	Use that handy get_description function that we just merged in.  Heh, wonder why we did that...

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

	Merging in the lift-and-separate branch to get the description function on there.

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

	Adding a get_description function

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

	Merging in the dirwatch branch

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

	Setting the type of the item and app name

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

	Filling in the new launcher menu item

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

	Pulling the type and the properties into the shared DBus header.

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

	Injecting in a type for the launchers.

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

	Making ourselves a variable in the middle of everything.

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

	Replacing the prop strings with defines

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

	Locking to version 0.0.2 to use some of the new nicities

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

	show -> visible

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

	Merging in changes to make the green dot appear and the icon hide when no one is there.

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

	Adding the green dot bug onto the branch.

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

	Some debug messages and checking the list length, but most importantly, got the show/eclipsed logic backwards.

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

	Checking hidden when servers are added and removed as well.

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

	Putting in the hiding logic

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

	Adding in teh ability to count the number of launchers that are visable

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

	The documentation clearly states that you don't need these if the client supports introspection.  I thought I was being old school by still putting them in.  But, THE DOCUMENTATION LIES, you need to add the signals no matter what.

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

	Forgot to change to Ayatana

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

	Bad name, fixed.

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

	Setting the attention parameter in the dbus interface.

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

	Legal crap.

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

	Oh, wow, now there's some flesh on these.  Let's hide and show icons.

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

	Setting up signals and callbacks, oh my!  Watch for lions.

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

	Building a proxy...

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

	Okay, now we're signaling change.

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

	Making some signal lovin'

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

	Adding the basic set functions into the C files.

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

	Some comments.

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

	Bringing up the object and having some variables to access.

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

	Creating a real object and initing it.

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

	Building an object to represent the service over DBus.

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

	Adding in a new dbus interface.

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

	Switching to ayatana.org and adding a new name for the service as a whole.

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

	Merging in the directory watch branch.

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

	Checking to see if error is null before looking inside it.

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

	Now we're really killing these puppies!  Don't cry, they weren't cuddly puppies.

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

	Fleshing out the first part of destroy, in that we're just removing an item from a list.

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

	Relinking back to trunk.

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

	The launcher creation didn't test to see if it already exists.  Now we keep one launcher per desktop file.  Makes sense, eh?  That's what we're going for.

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

	Start responding to changes in the applications directories

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

	I'd have to say that hash_table_find didn't do what I expected, and is pretty useless.

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

	Fleshing out remove to try to get rid of all these blacklist items.

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

	Turning blacklist dir changes into events

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

	Basic code to monitor the directories

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

	Adding in black list support

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

	Merging in the black list branch.

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

	Updating to trunk

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

	Adding the user APPS directory to the places where we can find applications

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

	Switching the build to take the directory as a parameter

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

	Some debug and fixing checking the desktop file.  All good.

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

	Now parsing the directory on start up.  Getting this whole thing started up.

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

	Writing the fairly extensive and complex check function.  But, if that's the way it needs to be, I guess it needs to be that way.

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

	We're taking ownership of that variable as well

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

	Fleshing out the add function.  Just a little.

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

	More of a basis for the black list stuff.  Some functions and an interface.

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

	Adding in some seperators to make things more clear.

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

	Adding in a couple of blacklist check point.

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

	Merging in the launchers branch

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

	Adding in support for launchers

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

	Should be in milliseconds not micro

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

	Use a GDK app context.  Not sure about the timestamp units though.

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

	Oh, some debug messages to see what's going on.

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

	Ah, where casting kills.  You can cast anything to the right value even though it's not.  Nice opaque errors you get for that.

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

	Big commit.  Trying to check for eclipses, but first both objects needed to track their desktop file paths.  So I had to add that little nugget in as well.

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

	Adding an eclipsed function for the LMI

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

	Clean up, clean up, everybody everywhere

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

	Adding in a couple function to deal with disappearing launchers.

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

	Adding in the activate logic so that the menu items actually launch the application.

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

	Adding the launcher list to the resorting function.  This looks more complex than it is, it's just merging the two lists on the fly in alphabetical order.

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

	Making this file a little more readable.  Eh, I guess you never plan on them getting this big when you start do you?  I remember when he was just a little automake file.

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

	Missing a couple headers for distcheckness

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

	Getting launchers to add to the menu, and changing the function to do that so it's not all server based.  We want everyone involved now.

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

	Setting the label of the menu item.

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

	Lots of debug, but also cleaning up the desktop file name path so it gets properly into the constructor.

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

	Oops, forgot one level of redirection here

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

	Spliting out the building of the items as it'll read the desktop file off disk and parse it.

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

	Go through the launchers and start building items

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

	Not sure why, but the naming of this file is really bugging me.  Fixed now.

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

	Adding in a new menu-item type.  One for launchers!  Woo Hoo!

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

	No reason that all these should be linked into the loadable module.  Err, fail.

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

	Adding the basis for launchers

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

	Adding directories.  Let's put them in one file so that they'll be changable easy :)

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

	AM 1.11 silent rule

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

	Fixing the messaging indicator to unref the menu item, which removes the signal handlers.

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

	indicate-gtk changes that are required

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

	Merging in the branch that pulls in the dbusmenu changes that change to using a service.

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

	Aw, bother, turns out I messed up the service file.  Let's fix that.

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

	Building a simple little activator to find out if we can activate the service.

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

	Putting a little more error handling code in.

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

	Failing on warnings

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

	Switching to the better dbus service dir

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

	Starting the service if it isn't there

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

	Getting a name, and grabbing it, and loving it...

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

	Removing the child_reorder function as it's now upstream

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

	First pass at moving everything to doing work with the DbusmenuMenuitem's instead of GTK

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

	Converting to a DbusmenuMenuitem instead of GtkMenuItem

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

	Converting to a DbusmenuMenuitem instead of GtkMenuItem

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

	First pass, build the listener and do fun stuff like that.

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

	Building the indicator-messages-service

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

	A simple main() to get things to compile

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

	Install the DBus Service

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

	Adding in a service descriptor for adding to DBUS

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

	Lookup the dbus services

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

	Linking in the dbus data

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

	Moving the complex code into the service and leaving the rest for the loadable module.

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

	Adding in dbus name and object

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

	Adding a dependency on the dbus menu library.

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

	Merging in fix for tracking the timers.

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

	Not setting the variable time_update_min when creating the source.  Bug found by Ka-Hing Cheung

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

	Get rid of the main menu variable that we're not using.  Hide the image.

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

	Setting the name to 'messages'

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

	removing a warning by ref'ing the default

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

	Fixing return type

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

	Breaking out into libindicator style function calls.

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

	Including the indicator info

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

	Installing to indicator dir instead of other fun places

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

	Putting a 'dev' on the version number

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

	Increasing the version of indicate required and requiring indicator

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

	Some changes suggested by Cody Russell to make things a little bit safer.

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

	Freeing the appinfo and type from the application object on finalize

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

	Moving signal disconnecting and unref to the dispose function instead of finalize.  Fix by Cody Russell on bug 362124.

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

	Adding a ref'ing and deref'ing of the listener to the application menu item to ensure it stays around while we hav signals attached to it.  Fix by Code Russell on bug 362124.

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

	Fixes to the finalize function.

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

	Making a 6

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

	Merging in Cody's fix for 359018

2009-04-13  cody  <cody@raconteur>

	move parent->finalize() to the end of the finalize function

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

	Including some cleanups from James Westby.  Thanks

2009-04-05  James Westby  <james.westby@canonical.com>

	Be aware that appinfo can be NULL.

2009-04-05  James Westby  <james.westby@canonical.com>

	Fix PKG_NAME in autogen.sh.

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

	Require indicate version 0.1.5 or higher

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

	Trying to set this to also act like FUSA so that we get the same visual as the rest of the panel.

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

	Make sure we disconnect from all our signals and free from memory that really exists.  Lots of little nasty bugs.

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

	Actually removing indicators when the server goes bye-bye and freeing up the indicator data.  Wow, two biggie leaks.

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

	Should have been using g_strcmp0 all along.  No reason not to use the safer one.

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

	Making these new0 to make sure that our lists are NULL

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

	Using the right symbol names now

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

	Using the correct way to find the DBus name and ids.

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

	Setting version 0.1.5

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

	Showing some interest in teh clients we talk to.

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

	Adding in some consts to match the new prototypes better

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

	Changing version number

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

	Making time more about it's own relative nature rather than a fixed time.

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

	Adding in a couple of statics

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

	Making it so that an indicator gets displayed when someone logs in, eventually it disappears.

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

	Setting version number to 0.1.3 to match all of the other indicator stuff.  Probably should split things out more later.

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

	Making the truth correct

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

	Backwards sorting

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

	Adding in message.im, should have spec'd this better now there's some drift.

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

	Making the IM list sorted and handling the time changed signal

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

	Putting the seconds into the private structure, a function to get them, and a signal when they change.

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

	Fleshing out the reconsile function.  And making sure it gets called everytime there is a name change on the server side.

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

	Wrong name

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

	Relaying out the data structures so that the indicators are sub to the servers

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

	Forgot to actually pass the value to the signal, ahhhh

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

	Switching the servers from a hash table to a list.  Cleans things up a little, and sets us up for menu organization at a more complete level.

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

	Adding functions to make it so that we can get signaled on name changes and also query them in app-menu-items

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

	Putting in a sorting function to make sure that the individual indicators are always below the server that they're associated with.

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

	Bad truth

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

	Disconnecting our signals properly, avoids a crash

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

	Add simulation of zero count on server remove

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

	Setting up the library versioning to basically not have any, this is a module.

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

	Switching the icon to be based on whether or not the server is reporting indicators instead of counting the number of indicators items.

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

	Splitting the label updating into it's own function and making that called by the other functions that adjust how that happens.

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

	Adding in an unread count variable, and then a signal to show it chagned.  Also, watching for the indicators on this server to make sure it stays correct.

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

	Changing the version number, but don't release it :)

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

	changing the size of the icon

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

	Turns out that in configure it was 'messaging' -- oops, fixed to be the same as everywhere else.

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

	Making this an upstream branch, no packaging.

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

	releasing version 0.1~ppa15

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

	Making the menu hide itself if there is no one around

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

	releasing version 0.1~ppa14

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

	Forgot to change all the names.

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

	Making the image global, and changing it based on how many IMs we have.

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

	Add a callback to display the app

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

	Oh, I forgot these create log messages.  Very annoying.

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

	Adding in desktop file support, which required configure changes to get the right headers.

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

	Adding in functions to get the desktop file and type of the application

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

	Adding a callback for when things like the time get modified.

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

	Adding in scaling of icons

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

	Setting up to use the icon and time helper functions and make icons update.  Whoot!

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

	Adding in a copyright for the debian packaging and description of the package license

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

	Adding myself as an author

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

	Adding in license headers, GPL v3

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

	More debugging and temorarily showing the menu item ourselves

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

	Adding in some debug messages

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

	Adding in the basis for making a server based menu item

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

	Removing the need for an indicator

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

	Adding in an application menu item to start building those

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

	Making the activate callback static and putting in a prototype

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

	Removing warnings by getting the right pointer types

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

	Oh, two things.  First is setting alignment of the two strings and also getting the time from an ISO8601 string

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

	releasing version 0.1~ppa13

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

	Using the right damn function

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

	releasing version 0.1~ppa12

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

	Installing to the wrong directory

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

	Adding in data directory

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

	releasing version 0.1~ppa11

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

	Taking the icons from Evolution and GNOME icon themes.  Some slight modifications.

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

	releasing version 0.1~ppa10

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

	Adding in dummy icons

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

	Adding in icons

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

	Changed libindicate name to libindicate0, so need to have
	another build in the PPA.

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

	Bumping for PPA

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

	Adding in activate callback when the menu item is
	clicked on.

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

	Adding in an activate callback

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

	Making things better, now menu items are created and
	destroyed as they are, well, indicators are created
	and destroyed.  Also minor cleanups.

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

	Switching from a hash table to a list

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

	Putting a debug message on compare

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

	Warning on not removing something that should have been.

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

	Basically now indicators show up if someone puts an IM message
	on the Bus.  Way cool.  No delete or anything fancy, but good
	progress.

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

	I always get the order of these backwards

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

	Changing the text to be a little shorter

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

	Adding in a show that I forgot :(

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

	Better debug message and getting the time callback to check for the right property

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

	Lots of debugging message to figure out that I hadn't passed
	the return variable in _new :(

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

	I hate me

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

	It's truly amazing how many logic errors I make

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

	Make menu items for IM indicators

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

	Adding in some more warnings

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

	Forgot a _start

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

	Forgot to connect in the signal handler, oops.

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

	Get this to compile

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

	Linking together

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

	Fleshed this item out some

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

	Boiler plate IM menu items

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

	ifdef'ing out the mail stuff as we need to get IM working first

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

	Building the basis of what needs to be the indicator.

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

	Adding in libindicate as a dependency

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

	Ignore stuff

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

	Moving the directory

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

	Starting Debian Packaging

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

	Showing by default.

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

	Making the directory the same as the applet.  Should have done that first, eh.

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

	Ignoring

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

	Actually getting this all to build reasonably.

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

	Checkmark checkin