aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 578c65527140fd1312610510d68231cafbc9ecbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
2023-12-26 Mike Gabriel

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

2023-12-19 Mike Gabriel

        * Merge branch 'personal/peat-psuwit/bring-back-lomiri-hints'
          (635be6a)

2023-12-08 Ratchanan Srirattanamet

        * Confirm that all supposedly boolean hints take strings (c96d7ed)
        * Guard Lomiri-specific notification hints under conditionals
          (28b0b55)

2023-12-07 Ratchanan Srirattanamet

        * tests/test-notify: remove unused hint variable (f494eae)

2023-12-06 Ratchanan Srirattanamet

        * Revert "Remove orphan osd-notify remnants" (18d92e3)

2023-11-06 Mike Gabriel

        * release 23.10.1 (51d6185) (tag: 23.10.1)

2023-11-04 Robert Tari

        * Merge branch 'sunweaver-pr/rda-optional' (0b8c415)

2023-11-04 Mike Gabriel

        * {CMakeLists.txt,src/service.c}: Make building against librda
          optional. (55c6fbd)

2023-10-24 Moo

        * Translated using Weblate (Lithuanian) (5a02948)

2023-10-14 Quentin PAGÈS

        * Translated using Weblate (Occitan) (5d81ce6)

2023-10-13 Mike Gabriel

        * release 23.10.0 (02fba87) (tag: 23.10.0)

2023-10-10 Mike Gabriel

        * po/: Update translation files. (75641c9)

2023-10-06 Mike Gabriel

        * Merge branch 'tari01-pr/drop-zenity' (c5c442e)

2023-10-04 Robert Tari

        * debian/control: Drop zenity dependency (7b96161)

2023-10-02 Mike Gabriel

        * Merge branch 'personal/mariogrip/dbus-updates' (2e602b9)

2023-09-18 Marius Gripsgard

        * dbus: Add power percentage and is discharging (b794ebd)

2023-09-15 gallegonovato

        * Translated using Weblate (Spanish) (2aefd84)

2023-09-11 Mike Gabriel

        * Translated using Weblate (German) (09dd9f9)

2023-09-09 Mike Gabriel

        * Merge branch 'tari01-pr/notification-cleanup' (c049657)

2023-09-09 Robert Tari

        * Remove orphan osd-notify remnants (ba37bd3)

2023-09-06 Luna Jernberg

        * Translated using Weblate (Swedish) (9c70557)

2023-09-02 Robert Tari

        * Merge branch 'sunweaver-pr/no-rda-checks-on-lomiri' (7b04435)

2023-08-31 Mike Gabriel

        * src/service.c: Ignore RDA's opinion when on Lomiri. Assume local
          session for Lomiri. (bc6df20)

2023-08-24 Mike Gabriel

        * release 23.6.1 (3ddb532) (tag: 23.6.1)
        * src/deviceinfo-flashlight.c: Add copyright header. (1ccd548)
        * Merge branch 'tari01-pr/detect-remote-session' (dc14508)

2023-08-20 Sabri Ünal

        * Translated using Weblate (Turkish) (62d78d5)
        * Translated using Weblate (Turkish) (12e9c96)

2023-08-07 Robert Tari

        * .build.yml: Add librda dependency (60c00e4)
        * debian/control: Add librda dependency (7db56c6)

2023-08-10 Robert Tari

        * Do not show when in a remote session (319748d)

2023-08-04 Robert Tari

        * src/notifier.c: Do not access freed variable (2256383)

2023-07-11 Jozef Mlich

        * Translated using Weblate (Czech) (7ae6155)

2023-06-30 Ratchanan Srirattanamet

        * src/service.c: stop special-casing Lomiri for level indicator type
          (822b801)

2023-07-12 Robert Tari

        * Merge branch 'personal/peat-psuwit/update-phone-section' (9823a1d)

2023-06-15 Ratchanan Srirattanamet

        * src/service.c: also update devices section on phone profile
          (1ac0b0f)

2023-06-27 Sylke Vicious

        * Translated using Weblate (Italian) (7737c05)

2023-06-25 ssantos

        * Translated using Weblate (Portuguese) (2e7cd28)

2023-06-22 Milan Korecky

        * Translated using Weblate (Czech) (5ca05bd)

2023-06-21 Daniel Frost

        * Translated using Weblate (German) (e7d41b0)

2023-06-22 Jozef Mlich

        * Translated using Weblate (Czech) (c1f0d8c)

2023-06-14 Sergii Horichenko

        * Translated using Weblate (Ukrainian) (c5d6946)
        * Translated using Weblate (Russian) (09e39d7)

2023-06-10 Sabri Ünal

        * Translated using Weblate (Turkish) (dfcc519)

2023-06-10 gallegonovato

        * Translated using Weblate (Spanish) (c2b219d)

2023-06-09 Wellington Terumi Uemura

        * Translated using Weblate (Portuguese (Brazil)) (844930c)

2023-06-09 Heimen Stoffels

        * Translated using Weblate (Dutch) (c7954a9)

2023-06-09 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (dee6536)

2023-06-09 Mike Gabriel

        * po/: Translation update. (149b66a)
        * release 23.6.0 (8eb43ec) (tag: 23.6.0)
        * d/control: Add to S: ayatana-ido (>= 0.10.0). Older versions don't
          ship the 'level' menu item. (930179e)

2023-06-08 Robert Tari

        * Merge branch 'muhammad23012009-main' (238d705)

2023-06-06 Mike Gabriel

        * src/device.c: Don't show parentheses around time-remaining /
          battery charge percentage values when in Lomiri. (0ed3e17)

2023-06-08 Robert Tari

        * Merge branch 'sunweaver-pr/no-parentheses-in-lomiri' (c20a21f)

2023-06-06 Mike Gabriel

        * src/device.c: Don't show parentheses around time-remaining /
          battery charge percentage values when in Lomiri. (80312bd)

2023-06-05 Muhammad

        * Merge branch 'AyatanaIndicators:main' into main (37ce149)

2023-05-12 Muhammad

        * src: add support for getting flashlight paths through deviceinfo
          (dd3dccb)

2023-05-20 Milo Ivir

        * Translated using Weblate (Croatian) (22d2a52)

2023-05-05 Mike Gabriel

        * Merge branch 'tari01-pr/adapt-to-level-ido' (08039f0)

2023-04-05 Robert Tari

        * Do not use charge-aware icons in the menu (8f7c0cd)
        * Use the device model name in the menu (906c021)
        * src/service.c: Use level or progress IDO as needed (eeea7ea)
        * CMakeLists.txt: Fix minimum requred CMake warning (490ec9d)
        * Whitespace fix (858276b)

2023-04-20 Vilakone Thammavong

        * Translated using Weblate (Lao) (e62300d)

2023-04-06 ssantos

        * Translated using Weblate (Portuguese) (813f52b)

2023-04-07 Mike Gabriel

        * CMakeLists.txt: Fix version number. (3bd498c)

2023-04-03 Mike Gabriel

        * Merge branch 'tari01-pr/show-bluetooth-devices' (e6e69b2)

2023-03-06 Robert Tari

        * Show battery level for all devices (including bluetooth) (c80d5eb)

2023-03-16 Heimen Stoffels

        * Translated using Weblate (Dutch) (e1f4b7f)
        * Translated using Weblate (Dutch) (0c28f81)

2023-03-03 gallegonovato

        * Translated using Weblate (Spanish) (c63e0de)

2023-02-28 Mike Gabriel

        * release 22.9.5 (44408bb) (tag: 22.9.5)
        * Merge branch 'tari01-pr/lomiri-fake-battery' (b173fa1)

2023-02-16 Robert Tari

        * src/service.c: Create a fake primary device icon on Lomiri if no
          device is present (8a22354)

2023-02-12 Mike Gabriel

        * release 22.9.4 (7f0e2f5) (tag: 22.9.4)
        * Merge branch 'tari01-pr/flashlight-change-state' (a19e4d9)

2023-02-10 Luna Jernberg

        * Translated using Weblate (Swedish) (d2569c7)

2023-02-11 Robert Tari

        * Handle state changes for flashlight switch (8ec14e2)

2023-02-10 Luna Jernberg

        * Translated using Weblate (Swedish) (5ff62e2)

2023-01-06 Andy Chiang

        * Translated using Weblate (Chinese (Simplified) (zh_LATN@pinyin))
          (a7c39af)

2022-12-30 Milo Ivir

        * Translated using Weblate (Croatian) (670d4d3)

2022-11-23 Mike Gabriel

        * Merge branch 'tari01-pr/fix-lomiri-schemas-name' (1354d99)

2022-11-14 Robert Tari

        * debian/control: Correct lomiri-schemas name (ff3449d)

2022-11-13 Mike Gabriel

        * release 22.9.3 (d1e4bc6) (tag: 22.9.3)
        * Merge branch 'tari01-pr/fix-auto-brightness-toggle' (d744550)

2022-11-13 Robert Tari

        * src/service.c: Fix auto brightness switch (ddb6073)

2022-11-12 Mike Gabriel

        * release 22.9.2 (8038312) (tag: 22.9.2)
        * Merge branch 'fredldotme-sargo-battery' (a87015b)

2022-11-12 Alfred Neumayer

        * Revert "Don't prioritize discharging items with no time estimate
          that have more than 10% power remaining." (cdf2459)

2022-11-12 Mike Gabriel

        * Merge branch 'tari01-pr/fix-tests' (ce3cef1)

2022-11-11 Robert Tari

        * tests/test-device.cc: Fix icon tests (350a210)

2022-11-12 Mike Gabriel

        * release 22.9.1 (b72b14c) (tag: 22.9.1)
        * Merge branch 'tari01-pr/fix-flashlight-toggle' (009e1b6)

2022-11-11 Robert Tari

        * src/service.c: Fix flashlight toggle (f4bbf9d)

2022-11-10 Mike Gabriel

        * Merge branch 'tari01-pr/fix-theming' (47feef0)

2022-10-06 Robert Tari

        * Theming fix: Separate panel icons from the power menu icons
          (1b8c12e)

2022-10-19 Kristjan Räts

        * Translated using Weblate (Estonian) (2b2ee5a)

2022-10-01 Mubarek Seyd Juhar

        * Translated using Weblate (Tigrinya) (9918096)

2022-09-29 이정희

        * Translated using Weblate (Korean) (c5d5de4)

2022-09-25 Oğuz Ersen

        * Translated using Weblate (Turkish) (835f256)

2022-09-14 Sergii Horichenko

        * Translated using Weblate (Ukrainian) (e1f32cf)
        * Translated using Weblate (Russian) (2997ed4)

2022-09-14 Mike Gabriel

        * release 22.9.0 (7f9bbcb) (tag: 22.9.0)

2022-09-14 Milan Korecky

        * Translated using Weblate (Czech) (0aa1bc1)

2022-09-14 Mike Gabriel

        * po/*.po{,t}: Translation strings update (esp. source file
          references). (4e13213)
        * update-po{,t}.sh: Also catch multi-file source file references.
          (069e953)

2022-09-13 Robert Tari

        * Merge branch 'sunweaver-pr/fix-and-update-translation-template'
          (ee9f029)

2022-09-07 Quentin PAGÈS

        * Translated using Weblate (Occitan) (b0aa902)

2022-09-07 Moo

        * Translated using Weblate (Lithuanian) (4f44d07)

2022-09-06 Wellington Terumi Uemura

        * Translated using Weblate (Portuguese (Brazil)) (0374202)

2022-09-05 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (64497ab)

2022-09-05 Mike Gabriel

        * Translated using Weblate (German) (7a83794)

2022-09-11 Mike Gabriel

        * po/*.pot: Update translation template file. (55df6ad)
        * data/: Fix translation of .gschema.xml file. (5482074)
        * update-po{,t}.sh: Omit ../ at beginning of file names in .po(t)
          file(s). (4e1ed14)

2022-09-07 Quentin PAGÈS

        * Translated using Weblate (Occitan) (beaa19f)

2022-09-07 Moo

        * Translated using Weblate (Lithuanian) (ca3d681)

2022-09-06 Wellington Terumi Uemura

        * Translated using Weblate (Portuguese (Brazil)) (1df012e)

2022-09-05 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (7bbf4e9)

2022-09-05 Mike Gabriel

        * Translated using Weblate (German) (67d732c)
        * po/*.po{,t}: Translation strings update. (d5fd034)

2022-09-02 Robert Tari

        * Merge branch 'sunweaver-pr/tooltip-support' (16cae61)
        * tests/test-device.cc: Add missing header (de77370)
        * Whitespace fix (ebaf72c)

2022-07-22 Mike Gabriel

        * src/service.c: Add tooltip support. (322f63b)

2022-07-14 Teitei

        * Translated using Weblate (Burmese) (dabd41d)

2022-04-23 Sergii Horichenko

        * Translated using Weblate (Ukrainian) (08b4c59)
        * Translated using Weblate (Ukrainian) (30ae76c)

2022-04-05 Mike Gabriel

        * Merge branch 'flexiondotorg-gaming-input' (5ade5c4)

2022-04-05 Martin Wimpress

        * Add support for gaming-input devices with internal batteries
          (dbc0a8d)

2022-03-29 Quentin PAGÈS

        * Translated using Weblate (Occitan) (56a3011)

2022-03-29 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (4045fcc)

2022-03-26 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (a332c27)

2022-03-26 ButterflyOfFire

        * Translated using Weblate (Arabic) (fa1d4af)

2022-03-21 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (f81c217)

2022-02-28 Mike Gabriel

        * Merge branch 'tari01-pr/get-sounds-path-from-lomniri-sounds'
          (fb42e14)

2022-02-23 Robert Tari

        * .build.yml: Add lomiri-sounds dependency and pull it from git
          (0a4e2ee)
        * Get Lomiri sounds path from lomiri-sounds pkg-config (cbf17a5)

2022-02-20 Mike Gabriel

        * release 22.2.0 (8e990c9) (tag: 22.2.0)
        * Merge branch 'tari01-pr/add-lomiri-features-flag' (bc16de1)

2022-02-18 Robert Tari

        * .build.yml: Add ENABLE_LOMIRI_FEATURES flag and adapt build flow
          (e6f52e9)
        * Make Lomiri features configurable at build time (627d685)

2022-02-16 Mike Gabriel

        * Merge branch 'tari01-pr/drop-cmake-install-full-pkglibexecdir'
          (b12fb0e)

2022-02-14 Robert Tari

        * Drop pkglibexecdir and use native CMake file configuration
          (a9e3f58)

2022-02-08 Robert Tari

        * .travis.yml: Run CI builds on Travis CI's Ubuntu focal base system
          (47544b8)

2022-01-27 Mike Gabriel

        * Merge branch 'tari01-pr/cleanup-compile-flags' (d70bd10)

2021-12-17 Robert Tari

        * .build.yml: Drop extra compilation flags and build with -Werror
          (6cf7604)
        * Clean up compilation flags (f342689)

2021-12-15 Mike Gabriel

        * Merge branch
          'tari01-pr/build-libayatana-common-with-enable-lomiri-features'
          (eeb9ddc)

2021-12-06 Robert Tari

        * .build.yml: Build libayatana-common with ENABLE_LOMIRI_FEATURES
          (0d84ced)

2021-12-15 Mike Gabriel

        * Merge branch 'tari01-pr/detect-lomiri-schemas' (809fa0a)

2021-11-24 Robert Tari

        * Check for lomiri-schemas package instead of individual files
          (14726b0)

2021-12-15 Mike Gabriel

        * Merge branch 'tari01-pr/drop-makevars' (01b36c8)

2021-11-23 Robert Tari

        * po/Makevars: Drop file (d52a3d7)

2021-11-21 phlostically

        * Translated using Weblate (Esperanto) (cf5df47)

2021-11-22 Mike Gabriel

        * Merge branch 'tari01-pr/drop-sounds' (ddd9347)

2021-11-19 Robert Tari

        * Drop Low battery.ogg and adapt code to use Lomiri sounds (c8591cc)

2021-11-20 phlostically

        * Translated using Weblate (Esperanto) (f71a7c1)

2021-11-18 phlostically

        * Translated using Weblate (Esperanto) (3bd0e41)

2021-11-18 Mike Gabriel

        * src/service.c: Assign copyright to Robert Tari, not
          AyatanaIndicators project. (3572663)
        * src/: Typo fix in license header. (084f344)

2021-11-17 Mike Gabriel

        * release 2.2.0 (9e26f76) (tag: 2.2.0)

2021-11-10 Mike Gabriel

        * Merge branch 'tari01-pr/rename-to-x-lomiri' (ce10361)

2021-11-09 Robert Tari

        * Rename Lomiri-specific properties to x-lomiri (2b3772a)

2021-11-03 ElectrifiedSpeed

        * Translated using Weblate (Macedonian) (a692593)

2021-11-02 Mike Gabriel

        * Merge branch 'tari01-pr/drop-merge-review' (99f0480)

2021-11-02 Robert Tari

        * Drop all references to MERGE-REVIEW (25aa4b1)

2021-11-01 Mike Gabriel

        * Merge branch 'tari01-pr/accountsservice-sound' (84201b1)

2021-11-01 Robert Tari

        *_UT_ACCTSERVICE_SYSTEMSOUND_SETTINGS to
          HAS_LOMIRI_ACCTSERVICE_SOUND (c8aae42)
        * com.ubuntu.touch.AccountsService.Sound to
          com.lomiri.touch.AccountsService.Sound (b956f93)
        * debian/control: Depend on lomiri-common-schemas instead of
          accountsservice-ubuntu-schemas (c3e75f3)

2021-11-01 Mike Gabriel

        * Merge branch 'tari01-pr/rename-com-ubuntu-touch-system' (f25c5c8)

2021-10-28 Robert Tari

        * Rename com.ubuntu.touch.system to com.lomiri.touch.system (aab43ad)

2021-11-01 Mike Gabriel

        * Merge branch 'tari01-pr/x-canonical-to-x-ayatana' (2e0b3e5)

2021-10-26 Robert Tari

        * Rename x-canonical properties to x-ayatana (4cefa0b)

2021-10-25 Robert Tari

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

2021-10-25 Mike Gabriel

        * .build.yml: Remove source code of locally built dependency after it
          has been installed. (50f5556)
        * .build.yml: Run unit tests in build_scripts: target. (8c3fd38)
        * .build.yml: Drop autogen.sh support. (de7348d)

2021-10-22 Robert Tari

        * data/CMakeLists.txt: Do not use automatic GSchema compilation
          (6f08a78)

2021-10-21 Mike Gabriel

        * Merge branch 'tari01-pr/use-intltool-merge-translations' (89958b6)

2021-10-21 Robert Tari

        * data/CMakeLists.txt: Use intltool_merge_translations instead of
          execute_process (4fde8a3)

2021-10-21 Mike Gabriel

        * Merge branch 'tari01-pr/use-native-cmake-gsettings-module'
          (31defa1)

2021-10-20 Robert Tari

        * Use native CMake GSettings module (cb4dc74)
        * .travis.yml: Temporarily disable ppc64le builds (8cae720)

2021-09-20 Robert Tari

        * src/device.c: Fix copyright header (03b3c67)

2021-09-02 Robert Tari

        * .build.yml: Also run unit tests during CI builds against Ubuntu.
          (892badd)
        * Fix Travis status image (85fcc78)

2021-08-29 Hosted Weblate

        * Update translation files (5b998de)

2021-08-29 Mike Gabriel

        * debian/{control,compat}: Bump to level 10. (399e146)
        * debian/rules: Enable unit tests with the new way. (b0897a0)

2021-08-28 Weblate

        * Added translation using Weblate (Kurdish (Southern)) (b78e5ac)
        * Added translation using Weblate (Kurdish (Northern)) (34e8684)

2021-08-28 Mike Gabriel

        * po/: Drop zh_Hant.po: Drop duplicate file for Chinese
          (Tranditional) and adjust LINGUAS files. (8326b47)
        * .travis.yml: Fix branch name what is now the default branch in
          ayatana-dev-scripts. (81bcde1)
        * Merge branch 'tari01-pr/drop-lomiri-url-dispatcher' (ce0f7ae)

2021-08-25 Robert Tari

        * Drop all references to lomiri-url-dispatcher (5a49c61)

2021-08-28 Mike Gabriel

        * Merge branch 'sunweaver-pr/fix-ci-builds' (b22198e)
        * .build.yml: Assure that all build requirements for
          libayatana-common are available in CI build chroots.
          (9af4de7)
        * .build.yml: Fix CI failures in before_script stage. The
          libayatana-common build-from-source requires Vala
          nowadays. (7c733c9)
        * Merge branch 'tari01-pr/fix-lomiri-power-setting' (75bcdb4)

2021-08-25 Robert Tari

        * Fix Lomiri power setting (956867a)

2021-08-28 Mike Gabriel

        * Merge branch 'tari01-pr/ubports-patches' (046a91e)

2021-07-27 Robert Tari

        * Rename com.canonical.powerd -> com.lomiri.Repowerd (d5a5302)

2020-12-03 Jami Kettunen

        * flashlight: Add support for PM8998 based SoCs (2432f6b)

2020-10-16 Jami Kettunen

        * flashlight: Add support for simpler sysfs toggles (#34) (333a427)

2018-10-28 Rodney

        * Pull in many fixes from the bionic branch. (#7) (948a510)

2016-05-16 Charles Kerr

        * fix glib-fixture.h copyright year in header comment (ecb73d5)
        * since we're shopping audio out to org.freedesktop notifications,
          drop the gstreamer build dep (4a4663a)
        * housekeeping: sync tests/glib-fixture with the up-to-date version
          in indicator-datetime (bcdc3cc)
        * fix cmake warning of the test apps' dependency on the service
          library (39571b0)

2016-02-01 Charles Kerr

        * remove dead code (557e10a)
        * for low power notifications, use libnotify's 'sound-file' property
          instead of indicator-power calling the sound player
          directly (f4d6611)

2016-01-04 Charles Kerr

        * demote a spurious warning to a debug message (b906892)
        * don't disable the warning sound when AccountServices is completely
          unavailable (d2e654d)
        * move sound-player-mock into the tests/ directory (f829a7e)
        * fix copy-paste typo (1d9e1e5)
        * assume we're in silent mode if we can't get an accounts-service
          proxy (27122e9)
        * add a leak safeguard to accounts_service_sound_proxy (afc0919)
        * add build-dep to accountsservice-ubuntu-schemas instead of bundling
          com.ubuntu.touch.AccountsService.Sound.xml into our source
          tree (1182c7f)

2016-01-01 charles kerr

        * handle service_set_notifier(NULL) gracefully (5d03863)
        * update copyright dates on changed files (again) (deca915)
        * honor com.ubuntu.touch.AccountsService.Sound.SilentMode (97130ad)
        * use a symbolic constant for the low battery sound's filename
          (460f146)
        * create a data/sounds/ directory in the repo to hold Low battery.ogg
          (c7881a2)
        * fix another touched file's copyright date (9b631e9)
        * fix notifier property in service (61327b5)
        * in Notifier's destructor, unref its SoundPlayer field (46efcd9)
        * update copyright years on changed/new files (bdc03e1)
        * add play-sound tests to test-notify (d7d630d)
        * make a SoundPlayer interface so we can mock it in the tests
          (a8fd3f4)
        * use gstreamer to play the sound (2b93945)
        * add logic to call sound_play_file() when the low battery
          notification is shown (4fc7a4e)
        * add an XDG friendly way of finding app-specific datafiles (c5f9fe4)

2015-06-02 Marc Deslauriers

        * Don't prioritize discharging items with no time estimate that have
          more than 10% power remaining. (522fdc6)

2016-01-01 charles kerr

        * add 'Low battery.ogg' (6fbccd3)

2021-08-27 Ács Zoltán

        * Translated using Weblate (Hungarian) (92ac255)

2021-08-10 Mike Gabriel

        * Merge branch 'tari01-pr/no-pie-only-in-tests' (bad6295)

2021-08-10 Robert Tari

        * Use -no-pie build flag for tests only (9ed2cff)

2021-08-10 Mike Gabriel

        * Merge branch 'tari01-pr/add-enable-werror-option' (0e8c18c)

2021-08-09 Robert Tari

        * Add ENABLE_WERROR option (b0737af)

2021-08-06 Mike Gabriel

        * Merge branch 'tari01-pr/add-documentation' (a3361b8)

2021-07-28 Robert Tari

        * Add documentation and build instructions (de47a96)

2021-07-15 Boyuan Yang

        * Translated using Weblate (Chinese (Simplified)) (672d5f2)

2021-06-04 Hosted Weblate

        * Update translation files (45e53e6)

2021-06-03 Weblate

        * Added translation using Weblate (Chinese (Traditional)) (afd2c1f)

2021-06-03 Hosted Weblate

        * Update translation files (2cbabb9)

2021-05-22 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (d01da4e)

2021-05-20 Jacque Fresco

        * Translated using Weblate (Indonesian) (d6582eb)

2021-05-17 Mike Gabriel

        * Merge branch 'tari01-pr/standard-cmake' (49afb06)

2021-05-17 Robert Tari

        * CMakeLists.txt: Add standard Ayatana CMake bits (803dbf6)

2021-05-17 Mike Gabriel

        * Merge branch 'tari01-pr/prefixed-libayatana-common' (408b265)

2021-05-17 Robert Tari

        * Use prefixed libayatana-common symbols (06a9f94)

2021-05-11 Robert Tari

        * Merge branch 'sunweaver-pr/fix-cmake-coverage-reporting' (b03e69d)

2021-05-04 Mike Gabriel

        * .travis.yml: Don't try running autotools based CI build. (0261d5a)
        * .travis.yml: Don't try running autotools based CI build. (f853eda)
        * CMakeLists.txt: Switch to 'our' new style of enabling tests and
          coverage reports. (edd6cdd)
        * Merge branch 'tari01-pr/remove-zenity-warning' (a3db570)

2021-05-03 Mike Gabriel

        * debian/control: Bump versioned B-D on libayatana-common to (>=
          0.9.1). (22acbfc)

2021-04-06 Robert Tari

        * src/utils.(ch): Drop local zenity_warning and use
          libayatana-common. (f327003)

2021-05-03 Mike Gabriel

        * CMakeLists.txt: Require libayatana-common 0.9.1. (284da3f)

2021-05-04 Mike Gabriel

        * Revert "Fix percentage for mice and keyboards" (d4e75ae)
        * debian/control: Fix B-D on libayatana-common(-dev). The -dev suffix
          had been forgotten. (9299187)

2021-05-03 Mike Gabriel

        * Merge branch 'tari01-pr/peripherial-percentage' (94edbd3)

2021-04-01 Robert Tari

        * Add us to the copyright headers (062e93c)
        * Fix percentage for mice and keyboards (f94ffac)

2021-05-03 Mike Gabriel

        * Merge branch 'tari01-pr/always-show' (773cf3e)

2021-03-29 Robert Tari

        * Always show indicator, use icon policy only on Lomiri (0ded1c9)

2021-05-03 Mike Gabriel

        * Merge branch 'tari01-pr/add-budgie' (f188111)

2021-03-26 Robert Tari

        * Add Budgie desktop support. (29f1219)

2021-05-03 Mike Gabriel

        * Merge branch 'tari01-pr/add-libayatana-common' (03e887a)

2021-03-25 Robert Tari

        * Add us to the copyright headers (9fefd2e)
        * debian/control: B-D on libayatana-common (>= 0.9.0). (716b655)
        * Move redundant code portions into libayatana-common and build
          against it. (85b752c)

2021-05-03 Mike Gabriel

        * Merge branch 'tari01-pr/fix-build-warnings' (4c50f67)

2021-03-25 Robert Tari

        * Fix cmake version warnings. (8a96865)

2021-05-03 Robert Tari

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

2021-05-03 Mike Gabriel

        * tests/CMakeLists.txt: Build unit tests with --no-pie CXXFLAG.
          (fc02afc)
        * Travis CI: Initial draft for CI builds. (2511a46)

2021-05-01 Tomáš Marný

        * Translated using Weblate (Czech) (e776da3)

2021-04-23 Quentin PAGÈS

        * Translated using Weblate (Occitan) (441f676)

2021-03-30 Hosted Weblate

        * Update translation files (682c211)

2021-03-29 Weblate

        * Added translation using Weblate (Chinese (Simplified)
          (zh_LATN@pinyin)) (b9720b6)

2021-03-18 Reza Almanda

        * Translated using Weblate (Indonesian) (8f67b56)

2021-02-19 J. Lavoie

        * Translated using Weblate (French) (20cd4fb)
        * Translated using Weblate (Finnish) (0ada117)
        * Translated using Weblate (German) (50174d4)

2021-02-04 Michalis

        * Translated using Weblate (Greek) (0a115cb)

2021-02-03 Robert Tari

        * Merge branch 'sunweaver-pr/port-to-lomiri-url-dispatcher' (5df9547)

2021-01-27 Oğuz Ersen

        * Translated using Weblate (Turkish) (73877ac)

2021-02-03 Mike Gabriel

        * debian/control: Switch from url-dispatcher to lomiri-url-dispatcher
          in B-D. (c472b93)
        * Port from URL Dispatcher to Lomiri URL Dispatcher. (828e139)

2021-01-27 Oğuz Ersen

        * Translated using Weblate (Turkish) (63f44d0)

2021-01-28 Mike Gabriel

        * release 2.1.2 (850430d) (tag: 2.1.2)

2020-11-26 Ács Zoltán

        * Translated using Weblate (Hungarian) (c7a589f)

2020-11-16 Mike Gabriel

        * Merge branch 'tari01-pr/drop-panel-settings' (6423a59)

2020-11-16 Robert Tari

        * service.c: Drop indicator settings items (c265c17)

2020-11-11 Oğuz Ersen

        * Translated using Weblate (Turkish) (194d74c)

2020-11-07 Quentin PAGÈS

        * Translated using Weblate (Occitan) (8740c00)

2020-11-06 Ács Zoltán

        * Translated using Weblate (Hungarian) (7fa6077)

2020-11-02 Joan CiberSheep

        * Translated using Weblate (Catalan) (6427a99)

2020-11-01 Hosted Weblate

        * Update translation files (9ffc597)

2020-10-31 Joan CiberSheep

        * Translated using Weblate (Catalan) (604db38)

2020-10-31 Weblate

        * Added translation using Weblate (Italian) (dfc2785)
        * Added translation using Weblate (Tamil (Sri Lanka)) (f1e81c0)
        * Added translation using Weblate (Dhivehi) (c553c39)
        * Added translation using Weblate (Venetian) (232994a)
        * Added translation using Weblate (Kashubian) (9d82f29)
        * Added translation using Weblate (Macedonian) (08c1f08)
        * Added translation using Weblate (Friulian) (27b5a20)
        * Added translation using Weblate (Tatar) (3fa2dc7)

2020-10-28 Milan Korecky

        * Translated using Weblate (Czech) (9d4cf5d)

2020-10-28 Joan CiberSheep

        * Translated using Weblate (Catalan) (1ecd008)

2020-10-26 Adrià Martín

        * Translated using Weblate (Sardinian) (09941ba)

2020-10-27 Hosted Weblate

        * Update translation files (13408db)

2020-10-26 Weblate

        * Added translation using Weblate (Manx) (e173265)
        * Added translation using Weblate (Afar) (bdca3dc)
        * Added translation using Weblate (Nyanja) (02fdb2b)
        * Added translation using Weblate (Assamese) (2150273)
        * Added translation using Weblate (Wolof) (ec5f83e)

2020-10-24 Ács Zoltán

        * Translated using Weblate (Hungarian) (bdd39ab)

2020-10-23 Quentin PAGÈS

        * Translated using Weblate (Occitan) (61c95c2)

2020-10-18 Quentin PAGÈS

        * Translated using Weblate (Occitan) (f655568)

2020-10-04 Michal Čihař

        * Translated using Weblate (Hungarian) (efee0e5)

2020-09-30 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (6754015)

2020-09-29 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (9bfb0db)

2020-09-27 Artem

        * Translated using Weblate (Russian) (71a2498)

2020-09-28 Adolfo Jayme Barrientos

        * Translated using Weblate (Spanish) (b7e2379)

2020-09-25 Talking Panda

        * Translated using Weblate (Turkish) (b36ddd0)

2020-09-24 Quentin PAGÈS

        * Translated using Weblate (Occitan) (3d3d56e)

2020-09-23 Viktar Vauchkevich

        * Translated using Weblate (Belarusian) (dfd79f9)

2020-09-24 Quentin PAGÈS

        * Translated using Weblate (Occitan) (d8b1135)

2020-09-10 Mike Gabriel

        * release 2.1.1 (193a475) (tag: 2.1.1)

2020-09-07 Tundzhay Mollov

        * Translated using Weblate (Bulgarian) (c41b3b6)

2020-09-06 Baka Gaijin

        * Translated using Weblate (Japanese) (6e03179)

2020-09-05 Robert Tari

        * Merge branch 'sunweaver-pr/break-ubuntu-indicator' into master
          Attributes GH PR
          #16:https://github.com/AyatanaIndicators/ayatana-indicator-power/pull/16
          (30d1a7d)

2020-09-04 antuketot76

        * Translated using Weblate (Malay) (d0d8857)
        * Translated using Weblate (Malay) (5bb3145)

2020-09-05 Mike Gabriel

        * debian/control: Add B:/R: indicator-power. (859c780)

2020-09-04 Mike Gabriel

        * Merge branch 'tari01-pr/power-settings-crash' (2820cb8)

2020-09-03 Robert Tari

        * Do not call the power settings handler if the command is unknown
          (d6a07da)

2020-09-04 Mike Gabriel

        * Merge branch 'tari01-pr/deprecations-warnings' (527bbe4)

2020-09-03 Robert Tari

        * Fix deprecations and build warnings. (147130a)
        * Whitespace fix (2849569)

2020-08-17 Mike Gabriel

        * release 2.1.0 (ca5a779) (tag: 2.1.0)

2020-08-11 Mike Gabriel

        * Merge branch 'tari01-pr/replace-x-canonical-attributes' (592a667)

2020-08-11 Robert Tari

        * Replace x-canonical attributes (20f7780)
        * Merge branch 'sunweaver-pr/drop-upstart-support' Attributes GH PR
          #8:
          https://github.com/AyatanaIndicators/ayatana-indicator-power/pull/8
          (2fe548a)

2020-08-10 Mike Gabriel

        * Drop all references to upstart. (1fb52f0)
        * debian/ayatana-indicator-power.links: Add FIXME/reminder to drop
          manual symlinking of systemd user service file once DH
          compat level is raised to a level above 12. (d37997e)
        * Merge branch 'ubports-fix-systemd' (b1ad978)

2020-08-09 Marius Gripsgard

        * Start indicator in systemd when ayatana-indicators.target is
          started (c011884)

2020-08-06 Nazim-ua

        * Translated using Weblate (Ukrainian) (09e8477)

2020-07-15 Florian Leeber

        * Try to detect if flash needs to be enabled (latched) separately
          (4aaddc4)

2020-02-16 Alfred Neumayer

        * flashlight: Add more brightness file paths (215c6dd)

2019-08-29 BirdZhang

        * Do not divide by battery size if percent less than 0.01 (9d40332)

2020-08-06 Mike Gabriel

        * debian/control: Drop from B-D: python:any. In fact, a totally
          superfluous B-D. (960b4ec)

2020-08-03 Abbas Baharforoosh

        * Translated using Weblate (Persian) (4ddb778)

2020-07-29 Ács Zoltán

        * Translated using Weblate (Hungarian) (6b9cb69)

2020-07-25 Mike Gabriel

        * release 2.0.95 (6974c37) (tag: 2.0.95)
        * Merge branch 'tari01-master' (42600ab)

2020-07-25 Robert Tari

        * Added option to disable Testing/Coverage (0b63b9c)

2020-07-24 Mike Gabriel

        * CMakeLists.txt: Drop workaround for missing libexec dir on Debian.
          Debian moved forward and now supports FHS 3.0 (since
          Debian Policy 4.1.5). (653137a)

2020-07-03 Tobias p

        * Translated using Weblate (Danish) (97d211a)

2020-06-24 Milo Ivir

        * Translated using Weblate (German) (0751254)

2020-06-14 MarongHappy

        * Translated using Weblate (Korean) (eaeeb83)

2020-05-30 Juraj Liso

        * Translated using Weblate (Slovak) (e0ce238)

2020-05-24 wdggg

        * Translated using Weblate (Chinese (Simplified)) (08d68ba)

2020-05-08 Abdusalam

        * Translated using Weblate (Uyghur) (bec791a)

2020-05-09 iNetRoos

        * Translated using Weblate (Afrikaans) (4cd7268)

2020-04-30 Mingun

        * Translated using Weblate (Russian) (bdeb547)

2020-04-27 Jeannette L

        * Translated using Weblate (Italian) (2bf068e)
        * Translated using Weblate (French (Canada)) (ee4390a)
        * Translated using Weblate (English (United Kingdom)) (3ce36fd)
        * Translated using Weblate (English (Canada)) (80ab0bc)
        * Translated using Weblate (English (Australia)) (5d8fad3)

2020-04-16 george k

        * Translated using Weblate (Greek) (f917031)

2020-04-14 Jeannette L

        * Translated using Weblate (French) (c566844)

2020-04-04 Kristjan Räts

        * Translated using Weblate (Estonian) (e51b166)
        * Translated using Weblate (Estonian) (82ccfe4)

2020-04-01 Davit Mayilyan

        * Translated using Weblate (Armenian) (8fde3eb)

2020-03-30 ferhad.necef

        * Translated using Weblate (Russian) (de28bf2)

2020-03-24 Violeta Uzunova

        * Translated using Weblate (Bulgarian) (b10c322)

2020-03-16 Grace Guo

        * Translated using Weblate (Japanese) (c888564)

2020-02-25 Wellington Terumi Uemura

        * Translated using Weblate (Portuguese (Brazil)) (f714149)

2020-02-22 Amr Karajah

        * Translated using Weblate (Arabic) (c330d69)

2020-02-09 THANOS SIOURDAKIS

        * Translated using Weblate (Greek) (fa432ab)

2020-02-06 Laércio Cordeiro

        * Translated using Weblate (Portuguese (Brazil)) (50c95bc)

2020-01-18 Heimen Stoffels

        * Translated using Weblate (Dutch) (54e099b)

2020-01-04 ssantos

        * Translated using Weblate (Portuguese) (53f947a)

2020-01-02 Milo Ivir

        * Translated using Weblate (Croatian) (4dc16fa)

2019-11-23 Niara

        * Translated using Weblate (Russian) (56b5bc6)

2019-11-21 Mike Gabriel

        * release 2.0.94 (9d30e39) (tag: 2.0.94)

2019-11-15 Theeiss

        * Translated using Weblate (Portuguese) (4dcda7f)

2019-11-12 Christopher Murach

        * Translated using Weblate (German) (f519dae)

2019-11-10 Allan Nordhøy

        * Translated using Weblate (Norwegian Bokmål) (a3c9d3f)

2019-10-30 Marcela Korreshi

        * Translated using Weblate (Albanian) (ed15e8e)

2019-10-29 Danjela Hoxha

        * Translated using Weblate (Albanian) (f6afdc7)

2019-10-27 Niara

        * Translated using Weblate (Russian) (9f8fce7)

2019-10-23 Mattias Münster

        * Translated using Weblate (Swedish) (e345493)

2019-10-13 Abhay Patel

        * Translated using Weblate (Hindi) (b4d1bbb)

2019-10-07 Mateusz Rumiński

        * Translated using Weblate (Polish) (8049edf)

2019-10-01 Pedro Alexandre

        * Translated using Weblate (Portuguese) (1f27606)

2019-09-07 Abraham Roman

        * Translated using Weblate (Spanish) (d876789)

2019-09-02 Swann Martinet

        * Translated using Weblate (French) (832dde6)

2019-09-01 Moo

        * Translated using Weblate (Lithuanian) (edce726)

2019-08-29 Anders Jonsson

        * Translated using Weblate (Swedish) (7785fde)

2019-08-28 Heimen Stoffels

        * Translated using Weblate (Dutch) (ec2e79a)

2019-08-29 Mike Gabriel

        * Translated using Weblate (German) (e4187da)

2019-08-28 Mike Gabriel

        * update locale files (40db8a1)
        * Merge branch 'leela52452-master' (90d660a)

2019-08-25 leela

        * Translated using Weblate (Telugu) (e20f85e)
        * Translated using Weblate (Telugu) (da9fb29)
        * indicates an interrogative clause or phrase.. (631477a)

2019-08-10 M Ramani Priya

        * Translated using Weblate (Telugu) (d09a535)

2019-07-01 Elizabeth Sherrock

        * Translated using Weblate (Chinese (Simplified)) (f010e51)

2019-05-21 THANOS SIOURDAKIS

        * Translated using Weblate (Greek) (6bd06b1)

2019-04-17 Rui Mendes

        * Translated using Weblate (Portuguese (Brazil)) (289a58e)
        * Translated using Weblate (Portuguese) (82ed6d4)

2019-01-11 Louies

        * Translated using Weblate (Chinese (Traditional)) (3c1dc7b)

2018-11-18 ssantos

        * Translated using Weblate (Portuguese) (9654d07)

2018-10-31 Petter Reinholdtsen

        * Translated using Weblate (Norwegian Bokmål) (71274db)

2018-10-23 Iván Seoane

        * Translated using Weblate (Galician) (a99a775)

2018-09-27 Володимир Бриняк

        * Translated using Weblate (Ukrainian) (7927536)

2018-09-27 Pavel Borecki

        * Translated using Weblate (Czech) (379fa6c)

2018-09-18 Henrique Combochi

        * Translated using Weblate (Portuguese (Brazil)) (fafe18f)

2018-08-24 WaldiS

        * Translated using Weblate (Polish) (3deb5d2)

2018-08-23 WaldiS

        * Translated using Weblate (Polish) (bf2d57d)

2018-07-22 Eugen Wesseloh

        * Translated using Weblate (Russian) (9c5277c)

2018-07-17 Danil Semenov

        * Translated using Weblate (Russian) (3416130)

2018-06-18 Doma Gergő

        * Translated using Weblate (Hungarian) (738a297)

2018-06-17 advocatux

        * Translated using Weblate (Spanish) (0f0013c)

2018-05-08 Heimen Stoffels

        * Translated using Weblate (Dutch) (0902e9a)

2018-05-02 Adolfo Jayme Barrientos

        * Translated using Weblate (Spanish) (f7b76c0)

2018-04-04 Pavel Borecki

        * Translated using Weblate (Czech) (a0ac1c4)
        * Translated using Weblate (Czech) (8c96052)
        * Translated using Weblate (Czech) (1558d80)
        * Translated using Weblate (Czech) (56377ab)
        * Translated using Weblate (Czech) (b4bc9d5)
        * Translated using Weblate (Czech) (2fee033)

2018-11-16 Mike Gabriel

        * debian/control: Radically move control-center and power-manager
          recommendations to Suggests: field. Pulling in too many
          dependencies otherwise. (ce113ed)
        * debian/control: Re-sort packages under R. Add mate-control-center
          alternative. (aeb856b)
        * debian/*: Sync in relevant changes from official Debian packaging.
          (30820ed)

2018-03-25 Mike Gabriel

        * src/service.c: Adapt indicator attribute for flashlight switch to
          ayatana-ido. (6e7dad1)
        * tests/glib-fixture.h: Fix printf macro (%d -> %lu). (6021c3a)
        * src/flashlight.c: Cast char* from const char* when assigning
          flash_sysfs_path. (1d4e6c3)

2018-03-25 Jan Sprinz (NeoTheThird)

        * Added warning to avoid overheating of the LED. (868fa16)

2018-03-25 Marius Gripsgard

        * Ignore batt_therm devices. (cf33215)
        * Add basic flashlight support. (cf7ae8a)

2018-03-21 Mike Gabriel

        * src/utils.(c|h): Use XDG_CURRENT_DESKTOP for XFCE as well, in order
          to detect that -power indicator is used on an XFCE
          desktop. (1872fc5)

2018-03-19 Mike Gabriel

        * data/org.ayatana.indicator.power.gschema.xml.in: Prepend project
          namespace to enum id. (41bf160)

2018-03-16 Mike Gabriel

        * src/{service.c,utils.c}: Fix grammar flaw in zenity warning.
          (06ef51a)
        * po/: Update ayatana-indicator-power.pot. (6f4bf8f)
        * release 2.0.93 (8dd5cd8) (tag: 2.0.93)
        * po/CMakeLists.txt: Drop intl_update_potfile(). We don't want this
          in Ayatana Indicators. (0c8e7c0)

2018-03-16 Rodney Dawes

        * Use intltool support from cmake-extras. (59f9f20)
        * Use coverage support from cmake-extras. (744720d)
        * Use gmock module from cmake-extras. (970f382)

2018-03-15 Mike Gabriel

        * debian/control: Add zenity to Recommends: (for issuing warnings).
          (34b8d5a)
        * Add fallback code that produces a warning (using zenity), if we
          don't know how to handle certain actions. (9819c2e)
        * src/utils.c: Use our desktop detection functions for find a way to
          open an appropriate power settings dialog. (32df70e)
        * src/utils.c: Add is_pantheon() function. (2026ee0)

2018-03-12 Mike Gabriel

        * src/service.c: Use desktop detection functions in
          'on_statistics_activated()'. (60363ad)
        * src/utils.(c|h): Port is_{mate,gnome,unity}() functions from
          -session indicator. (1830c84)

2018-03-04 Moo

        * Translated using Weblate (Lithuanian) (4774ba8)

2018-03-01 Moo

        * Translated using Weblate (Lithuanian) (221cc5a)

2018-03-12 Mike Gabriel

        * debian/copyright: Update copyright attributions. (0bacdd9)
        * debian/: Update from latest official Debian package. (3be21c5)
        * Make URL dispatcher build-dependency optional and handle battery
          settings request appropriately. (422443f)
        * Revert "Drop unnecessary dependency on Ubuntu's url-dispatcher."
          (4d95898)
        * debian/control: Drop from B-D: libgudev-1.0-dev. Not required
          anymore. (aff888f)
        * CMakeLists.txt: Drop gudev-1.0 from list of required shared libs.
          Obviously not used. (009c935)

2018-03-11 Mike Gabriel

        * tests/CMakeLists.txt: Prohibit gschemas.compiled to be generated
          multiple times. (9a90f93)

2018-02-28 Mike Gabriel

        * NEWS: Fix c+p flaw. (bdfc18a)
        * po/Makevars: Update copyright holder and upstream bug tracker URL.
          (5fac6a9)
        * debian/rules: Ship NEWS file as upstream changelog. (cf71aef)
        * NEWS file: Add for next release. (1421355)
        * release 2.0.92 (3b1854a) (tag: 2.0.92)
        * NEWS: Move old NEWS file to NEWS.Canonical. (ba93f00)

2018-02-28 Мира Странная

        * Translated using Weblate (Russian) (e89a255)

2018-02-08 Furkan Kalkan

        * Translated using Weblate (Turkish) (2dd7450)

2018-02-04 Michal Čihař

        * Translated using Weblate (Turkish) (25d96d4)

2018-01-22 Марс Ямбар

        * Translated using Weblate (Ukrainian) (a08230f)

2018-01-01 Anders Jonsson

        * Translated using Weblate (Swedish) (4a00d8a)

2018-01-04 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (6938cc3)

2017-12-31 Sebastian Rasmussen

        * Translated using Weblate (Swedish) (0ea506e)

2017-12-07 Allan Nordhøy

        * Translated using Weblate (Norwegian Bokmål) (1b0ece7)

2017-11-30 Olivier Macchioni

        * Translated using Weblate (French) (35a79c6)
        * Translated using Weblate (French) (7a18639)

2017-12-06 Mike Gabriel

        * data/ayatana-indicator-power.desktop.in: Add XFCE to OnlyShowIn=
          key. (f1c13c9)
        * tests/test-device.cc: Fix failing tests after we have renamed
          DG_LOG_DOMAIN. (5de104c)
        * Rename GNOMELOCALEDIR -> LOCALEDIR. (3cf825f)
        * Set DG_LOG_DOMAIN to ayatana-indicator-power (decapitalized
          spelling). (5ef27ef)
        * CMakeLists.txt: Move gettext initialization below the
          GNUInstallDirs include. This sets GNOMELOCALEDIR
          appropriately and probably fixes broken i18n support.
          (5479b13)
        * data/CMakeLists.txt: More namespace fixes in comments / output
          messages. (17ab6d1)
        * tests/CMakeLists.txt: Fix namespace in add_dependencies() call.
          (5a59319)

2017-12-05 Mike Gabriel

        * debian/postinst: Drop file. The libglib2.0-bin package has trigger
          for schema compilation these days (and this for ages,
          actually). (0058a8b)

2017-12-04 Mike Gabriel

        * debian/changelog: Bump upstream to a development version. (2f3a761)

2017-12-02 Mike Gabriel

        * debian/control: Fix D (glib2.0-bin -> libglib2.0-bin). (765806b)
        * debian/{control,postinst}: Recompile GSettings schemas at post
          installation. (e9b7bfe)

2017-11-29 Mike Gabriel

        * po/: Update translation files once more. (0f2a468)
        * update-po.sh: Preserve .pot file when updating *.po files.
          (f936fa5)
        * po/*.po: Update with now correct file names for .xml files.
          (01156d3)

2017-11-27 Kristjan Räts

        * Translated using Weblate (Estonian) (b9c3729)

2017-11-24 Allan Nordhøy

        * Translated using Weblate (Norwegian Bokmål) (4041646)

2017-11-22 Fatih Mert Doğancan

        * Translated using Weblate (Turkish) (9e16d82)

2017-10-12 Matteo F. Vescovi

        * Translated using Weblate (Italian) (9413bdb)

2017-11-29 Mike Gabriel

        * Revert "po/*.po: Update with now correct file names for .xml
          files." (7e7500a)
        * po/*.po: Update with now correct file names for .xml files.
          (2c40ef0)
        * po/ayatana-indicator-power.pot: Update with now correct file names
          for .xml files. (d16056b)
        * update-po.sh: Fix filenames of .ini(.in) and .xml(.in) files in po
          files. (bdc25da)
        * update-pot.sh: Fix filenames of .ini(.in) and .xml(.in) files in po
          template file. (6a07d32)

2017-10-24 Mike Gabriel

        * update-po*.sh: Add license header. (7cae4fb)
        * debian/{control,copyright,watch}: Update to new upstream URLs.
          (1cb6718)

2017-10-12 Mike Gabriel

        * update-po.sh: Add support for creating new LINGUAS. (b140fe8)

2017-08-26 Kjetil Fleten

        * Translated using Weblate (Danish) (22c70c0)

2017-10-07 Mike Gabriel

        * debian/control: Modify B-D for systemd: only available/required on
          [linux-any]. (977a89d)
        * systemd unit file: Only build+install if systemd is available at
          build-time. (dac8f77)

2017-08-26 Mike Gabriel

        * Translated using Weblate (German) (efdc686)
        * Translated using Weblate (German) (0db1118)

2017-08-18 Viktar Vauchkevich

        * Translated using Weblate (Belarusian) (b84b921)

2017-07-21 Mike Gabriel

        * update-po.sh: Add simple script to update po/*.po files. (7a214d4)
        * po/: Create .po files from .pot file using msginit. (57f0dfd)
        * po/: Add LINGUAS file. (5f9ea6f)
        * po/: Create .pot file for ayatana-indicator-power. (1d4c6c4)
        * update-pot.sh: Add mini script to update .pot file. (8049c1b)

2017-06-21 Mike Gabriel

        * src/CMakeLists.txt: Round up previous commit by fixing
          dbus-powerd.h codegen call. (10a06c6)

2017-06-14 Mike Gabriel

        * Really switch back to com.canonical.powerd. (5949845)

2017-06-08 Mike Gabriel

        * debian/rules: Don't copy removed apport hook into package.
          (cf69c55)
        * debian/control: Drop full-stop from SYNOPSIS. (c736882)
        * debian/copyright: Pull-over copyright files from official Debian
          package. (af0e1a7)
        * debian/rules: Pull-over get-orig-source rule from official Debian
          package. (6850dfe)

2017-06-07 Mike Gabriel

        * debian/{watches,upstream/,patches}: Sync in changes from official
          Debian packaging. (36b5cbb)
        * debian/source_ayatana-indicator-power.py: Drop apport support.
          (034ae2a)
        * release 2.0.91 (6791d33) (tag: 2.0.91)

2017-06-02 Mike Gabriel

        * src/brightness.c Fix sed search+replace flaw. (fb4f8b2)
        * one step back, let's keep this Ubuntu-centric, we need to add a
          org.gnome.SettingsDaemon-way of doing this... (ef2ba34)
        * src/service.s: Fix x-canonical-type of the brightness slider
          building against ayatana-ido. (ff21a6c)

2017-05-31 Mike Gabriel

        * debian/{control,rules}: Enable all hardening flags. (30c0c43)
        * Drop debian/ayatana-indicator-power.maintscript. Not required in
          this version of the power indicator. (ab351f2)
        * ayatana-indicator-power: XDG-Autostart in Unity and MATE for now.
          (b79892f)
        * Partially revert 51a4186. Of course, we need the XDG autostart
          file. Not the upstart/xdg autostart file, though.
          (7354fe6)
        * src/notifier.c: Fix our own service executable name in
          notify_init() call. (8ec5165)
        * src/testing.c: Use 'Ayatana Indicator Power Serivce' as service
          name. (79a5dc9)
        * debian/control: Drop from R (ayatana-indicator-power):
          indicator-applet | indicator-renderer. Add to R instead:
          mate-indicator-applet | xfce4-indicator-plugin. (585a2f6)
        * src/service.c: Prefer mate-power-statistics to
          gnome-power-statistics if in a MATE session. (e41dcc8)
        * src/service.c: Know about DESKTOP_SESSION xfce as well (not only
          about xubuntu). (3f6306b)

2017-05-16 Mike Gabriel

        * src/CMakeLists.txt: Fix nasty typo. (6436d4e)
        * Another fix-up for previous commits: keep org.ayatana.indicator
          namespace for indicator types. (7f6aa3f)
        * Fixup previous commit. More x-canonical-* type changes. (394a06b)

2017-05-15 Mike Gabriel

        * One step back... Mimick Canonical's API. Use their namespace for
          item attributes. (2a7ebff)
        * debian/control: Fix porting flaw, we need ayatana-indicator-common,
          not indicator-common. (b4468d6)

2017-05-15 Rodney Dawes

        * Remove old autostart files. (51a4186)

2017-05-15 Charles Kerr

        * Make device with power supply has higher sorting priority. (LP:
          #1100546) (bd1a508)

2017-05-15 Michael Terry

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

2017-05-15 Charles Kerr

        * Add systemd user session unit file (3afc69b)
        * Fix bug that chose the wrong header icon if a connected device has
          a charge but its charging/discharging state is unknown.
          (LP: #1470080). (f223d5a)
        * Fix the fallback power icon so the battery icon doesn't show red
          above 20% even when the Suru icon theme isn't present.

          Fixes: LP:#1559731. (c2b69b8)

2017-05-15 Mike Gabriel

        * data/*: Fix namespace separation from project we forked from.
          (78ae40e)

2017-05-14 Mike Gabriel

        * debian/control: Bump Standards-Version: to 3.9.8. No changes
          needed. (04578ca)

2015-11-12 Mike Gabriel

        * Fix various BUS_PATH names (copy+paste errors in previous commits).
          (dd439ef)
        * Version bump to 2.0.90. (9614a2e)
        * Drop unnecessary dependency on Ubuntu's url-dispatcher. (0a9cc2a)
        * Fork from Ubuntu's indicator-power code project. (0f33bc4)

2015-10-05 CI Train Bot

        * Releasing 12.10.6+15.10.20151005.1-0ubuntu1 (511915f)

2015-10-05 Sebastien Bacher

        * under unity8 start system-settings instead unity-control-center

          Fixes: #1489482 Approved by: Charles Kerr, PS Jenkins bot
          (5d36e8d)

2015-08-27 Sebastien Bacher

        * under unity8 start system-settings instead unity-control-center
          (b8a77a0)

2015-05-22 CI Train Bot

        * Releasing 12.10.6+15.10.20150522-0ubuntu1 (ff85d7e)

2015-05-22 Charles Kerr

        * When powerd updates the backlight brightness, update the indicator
          slider to show the new value.
          Fixes: #1370791 Approved by:
          Alejandro J. Cura (cb5ebdb)
        * when powerd adjusts the system brightness, adjust the brightness
          slider appropriately. (b877001)

2015-05-20 Charles Kerr

        * sync with indicator-power/15.04 (3c2d328)
        * remove g_message tracer (5288b42)
        * fix the get-brightness-params return signature now that it's
          wrapped in a proxy (05d6082)
        * a little more work on getting the powerd proxy running (f4c8e26)
        * in brightness.c, add a powerd proxy and listen to it for brightness
          property changes. (108a1e2)

2015-05-15 CI Train Bot

        * Releasing 12.10.6+15.10.20150515-0ubuntu1 (a7c6825)

2015-05-15 Charles Kerr

        * Fix timing issue that caused "Adjust brightness automatically"
          menuitem to sometimes not be shown.
          Fixes: #1382861
          Approved by: PS Jenkins bot, Rodney Dawes (dcf21a7)

2015-05-15 CI Train Bot

        * Releasing 12.10.6+15.04.20150515-0ubuntu1 (65f5646)

2015-05-15 Charles Kerr

        * Fix timing issue that caused "Adjust brightness automatically"
          menuitem to sometimes not be shown.
          Fixes: #1382861
          Approved by: PS Jenkins bot, Rodney Dawes (e0a33ec)

2015-05-14 Charles Kerr

        * better checking on whether or not menus are built. (373d9f1)

2015-04-02 CI Train Bot

        * Releasing 12.10.6+15.04.20150402-0ubuntu1 (05d07c8)

2015-04-02 Marc Deslauriers

        * Change sort order to prefer items with known time remaining
          Approved by: Charles Kerr, PS Jenkins bot (a3cf499)

2015-04-02 Ubuntu MATE Developers

        * This merge proposal adds support for MATE Desktop. Approved by: Ted
          Gould (e332c6b)

2015-03-31 CI Train Bot

        * Releasing 12.10.6+15.04.20150331-0ubuntu1 (e7a6c33)

2015-03-31 Charles Kerr

        * For the brightness slider, use the same left & right icons as
          ubunu-system-settings
          Fixes: #1289465 Approved by:
          Alejandro J. Cura, PS Jenkins bot (c16921a)
        * oops, forgot to commit this tyop fix before pushing (708527d)

2015-03-10 Marc Deslauriers

        *   * Change sort order to prefer items with known time remaining
          (LP: #1315434) (31f83e8)

2015-03-02 Charles Kerr

        * use a GThemedIcon (39439d9)
        * in the brightness slider, use the display-brightness-min and
          display-brightness-max icons. (e33b4e7)

2015-02-25 Ubuntu MATE Developers

        * Added support for MATE. (5838f6d)

2015-02-12 CI Train Bot

        * Releasing 12.10.6+15.04.20150212-0ubuntu1 (ae9a41c)

2015-02-12 Charles Kerr

        * Use the new power level icons for a more accurate display of the
          battery level.
          Fixes: #1388235 Approved by: Ted Gould, PS
          Jenkins bot (8e3fb8c)

2015-01-30 CI Train Bot

        * Releasing 12.10.6+15.04.20150130-0ubuntu1 (55104b7)

2015-01-30 Charles Kerr

        * Publish the primary device's state for on the bus.
          Fixes: #1416096
          Approved by: Ken VanDine, Ted Gould, PS Jenkins bot
          (e759c85)
        * in the new device-state action state, use the string 'unknown' if
          no primary device is found. (6057cd8)
        * publish a device state for the benefit of u-s-s (32b591d)
        * publish a device state for the benefit of u-s-s (3850d8b)

2015-01-12 Charles Kerr

        * update manual tests (92b25d8)
        * fix fencepost error s.t. 20% actually uses battery-020 (a43f1c3)
        * round power level to the nearest 10% to take advantage of
          higher-resolution power level icons (d989c88)

2014-12-09 Ted Gould

        * Package sync for upower changes (499fb96)

2014-12-03 CI bot

        * Releasing 12.10.6+15.04.20141203-0ubuntu1 (4f07f00)

2014-12-03 Christopher Lee

        * Fix some minor typos in power testing xml file. Approved by: Ted
          Gould, PS Jenkins bot (29058f3)

2014-12-03 Charles Kerr

        * Show the phone menu in the phone greeter. (8a59942)

2014-12-02 Charles Kerr

        * d'oh (8d522c8)
        * use the same menu in both phone and phone_greeter profiles
          (87db72f)

2014-11-18 Christopher Lee

        * Fix minor typos in power testing xml file. (42a6c1c)

2014-11-03 CI bot

        * Releasing 12.10.6+15.04.20141103-0ubuntu1 (d5a8d0a)

2014-11-03 Sebastien Bacher

        * List missing source for translations (d0ee781)

2014-10-15 CI bot

        * Releasing 12.10.6+14.10.20141015-0ubuntu1 (3209f1a)

2014-10-15 Charles Kerr

        * Add mock battery support to make QA testing easier.
          Fixes: 1373511
          Approved by: Antti Kaijanmäki, PS Jenkins bot, Ted Gould
          (2496678)

2014-10-14 Charles Kerr

        * r273 tried to fix the blocking bug listed at
          http://paste.ubuntu.com/8562226/, but in the process
          introduced a new bug that manifested in RTM. This removes
          r273 and uses a different fix. (ee53f5d)
        * in testing.c, make 'bus' a private field instead of a public
          GObject property (5f316dc)
        * move the mock battery from GSettings to DBus (f599c1b)
        * fix notify get-capabilities startup blocking bug found in testing
          (407c63c)
        * make service's bus connection a property so that
          IndicatorPowerTesting can listen for it and export an
          object before the name is acquired (1e530c2)
        * move the testing settings to a DBus interface (c07c186)

2014-10-14 Sebastien Bacher

        * List missing source for translations (da7995b)

2014-10-10 Charles Kerr

        * update manual test notes for the mock battery (f934717)
        * add gsettings for a mock battery to make QA tester's lives easier
          (7eb00e8)

2014-10-09 CI bot

        * Releasing 12.10.6+14.10.20141009-0ubuntu1 (7251f3d)

2014-10-09 Cody Garver

        * Add Switchboard as alternative recommend
          Fixes: 1291051 Approved
          by: Ted Gould, PS Jenkins bot (939cea2)

2014-10-09 Charles Kerr

        * Remove the border around the icon when showing a low battery
          notification.
          Fixes: 1378411 Approved by: Antti
          Kaijanmäki, PS Jenkins bot (10101c2)

2014-10-07 Charles Kerr

        * confirmation buttons should be green, so add the 'affirmative-tint'
          hint for the OK button. (01a0d94)
        * use a string for unity-notification's boolean types. (f82d29b)

2014-10-06 CI bot

        * Releasing 12.10.6+14.10.20141006-0ubuntu1 (c73b4b9)

2014-10-06 Charles Kerr

        * Move the position of this indicator on the panel.
          Fixes: 1377294
          Approved by: Ted Gould, PS Jenkins bot (969a970)
        * only rearrange the indicator position on the phone (47082f1)
        * move indicator as per the 'Indicator RTM Usability Fixes' document
          (0b76796)

2014-09-12 CI bot

        * Releasing 12.10.6+14.10.20140912-0ubuntu1 (0dc696d)

2014-09-12 Charles Kerr

        * Restore the the brightness slider and have the brightness setting
          persist between reboots.
          Fixes: 1289470, 1364453 Approved
          by: Ted Gould, PS Jenkins bot (2982ab5)
        * in brightness.c, set_uscreen_user_brightness() should be a
          private/static function (e5abeb9)

2014-09-11 Charles Kerr

        * add an 'auto brightness' checkbox (54fd6bf)
        * fix typo in manual tests (d5d3065)
        * add device-brightness-slider manual test (20889f1)
        * tweak comments for readability (9d0cc59)
        * remove the new code's g_message() tracers or replace with g_debug()
          (2e3d004)
        * run manual tests through test-case-format tidier (25cc0e4)
        * add manual tests (7eb2466)
        * first draft of adding persistence to the brightness slider
          (7ced238)

2014-09-10 Charles Kerr

        * copyediting: rename 'dflt' as 'default_value' for readability
          (4adcc32)
        * copyediting: whitespace, comment text (ae12f25)
        * fix typo; change g_message() calls to g_debug(); use same
          percentage range as ubuntu-system-settings (f5fae61)
        * first draft of non-blocking powerd/uscreen brightness impl
          (e90e9f7)

2014-09-09 CI bot

        * Releasing 12.10.6+14.10.20140909-0ubuntu1 (dd89ffe)

2014-09-09 Charles Kerr

        * When the phone's battery goes down past a certain level, pop up a
          snap decision to warn the user.
          Fixes: 1296431 Approved
          by: Ted Gould, PS Jenkins bot (c91ba6b)
        * Add support for UPower 0.99.
          Fixes: 1330037 Approved by: Ted Gould,
          PS Jenkins bot (2720a57)

2014-09-09 Ted Gould

        * Synchronize process management across indicators Approved by:
          Charles Kerr, PS Jenkins bot (4b15eb1)

2014-09-08 Ted Gould

        * Merge trunk (334e3b3)

2014-09-08 Charles Kerr

        * sync with lp-1330037-add-upower-099-support to resolve merge
          conflicts (ee6e07f)
        * drop our gcc -Weverything fixes in notifier.c so that they don't
          step on the changes in lp-1296431-low-power-snap-decisions
          (0c312c1)
        * in notifier's snap decisions, distinguish in the title between low
          battery and critical battery (24b9a28)
        * in notifier.c, don't call notify_get_server_caps() if notify_init()
          failed. (48b162d)
        * in notifier.c, reverse the order in which we add the actions so
          they'll look right on the phone (b06dda0)
        * fix typo introduced while trying to fix clang -Weverything warnings
          (b2d6637)
        * on phone, add nonexpiring snap-decision popup on low battery
          events. (0ab79ac)
        * more copyediting (84265a5)
        * copyediting. (84a32ae)
        * in device-provider-upower, use glib's G_ADD_PRIVATE() macro
          (cede6ed)

2014-09-07 Charles Kerr

        * add upower 0.99 support (26e4c85)
        * silence warnings generated by clang -Weverything (d0fc633)

2014-08-22 CI bot

        * Releasing 12.10.6+14.10.20140822-0ubuntu1 (059246d)

2014-08-22 Charles Kerr

        * Choose the icon that's closest to the current battery charge
          percentage
          Fixes: 1186181 Approved by: Antti Kaijanmäki,
          PS Jenkins bot (575a5a1)
        * in debian/control, bump standards version from 3.9.2 to 3.9.5 to
          make lintian happy (9eee0b5)
        * sync with trunk. (3d4c3f2)

2014-08-14 CI bot

        * Releasing 12.10.6+14.10.20140814-0ubuntu1 (c7e1740)

2014-08-14 Charles Kerr

        * Re-use the same Translations.cmake file across indicators
          Fixes:
          1354058 Approved by: Ted Gould, PS Jenkins bot (7c2aed0)

2014-08-09 Charles Kerr

        * sync the shared Translations.cmake file to pick up recent bugfixes.
          (e613cb5)

2014-07-30 CI bot

        * Releasing 12.10.6+14.10.20140730-0ubuntu1 (42414e0)

2014-07-30 Charles Kerr

        * Add low-battery notifications.
          Fixes: 1317858, 1317860 Approved by:
          PS Jenkins bot, Lars Uebernickel (b4f91b1)

2014-07-29 Charles Kerr

        * sync unit tests. (a402b61)
        * show the icon that most closely matches the battery charge
          percentage. (b04239b)

2014-07-25 Charles Kerr

        * in notify.c, improve the logic for when to tear down a notification
          (b46ec7d)
        * disable the notification's interactive hint for now (265ab08)
        * fix bug introduced in previous commit (eaf64b2)

2014-07-24 Charles Kerr

        * in notify, reverse the numerical order of the now-private
          PowerLevel enum so that they have the more intuitive
          behavior of higher integer values meaning a better power
          level. (35a2513)
        * on the bus, publish the battery's power_level as strings rather
          than ints (f15482d)
        * in notifier.c, remove unnecessary middleman properties and deal
          with the dbus-battery properties directly. (079ac51)
        * in notifier.c, fix potential callchain loop when closing a
          notification (e9ba47b)
        * in notifier, use G_DEFINE_TYPE_WITH_PRIVATE (b715352)
        * d'oh (f7f949e)
        * remove redundant '#include glib', '#include gobject' calls
          (34cf2ba)
        * check the return value of g_dbus_interface_skeleton_export()
          directly instead of indirectly testing to see if the
          GError it used is nonnull. (62a35de)
        * don't set to zero fields in a struct that's been calloc()ed
          already. (11784e2)
        * in notifier.c, don't keep pointers to the bindings around as
          they're cleaned up automatically when either of the
          objects is destroyed. (f4e1a83)
        * in tests/glib-fixture.h, sync with the glib-fixture.h from
          indicator-transfer, it's got less '#if 0' cruft (8b9a801)

2014-07-23 Charles Kerr

        * remove instance_count from IndicatorPowerNotifierClass (d185409)
        * copyediting: slightly better comments. (aba9e62)
        * make the notifications click-to-dismiss by adding the 'interactive
          notification' hint (bf93456)
        * copyediting (a62291b)
        * remove now-unused code that tests whether the Notify server
          supports actions (a8ea5a0)

2014-07-22 Charles Kerr

        * make the notification popup decision logic simpler & easier to read
          (1f98321)
        * add manual test case for using the
          indicator-power-service-cmdline-battery test utility
          (dd32234)
        * Filter out some redundant warnings -- e.g., don't notify when the
          power percentage drops from 10% to 9%, only when it
          crosses a PowerLevel threshold (79a3d89)
        * Make the when-does-power-level-change tests work whether or not
          Ephemeral notifications are being used. (584aa80)
        * for now, only show Ephemeral notifications when the battery gets
          low. (7ecf18c)
        * add indicator-power-service-cmdline-battery, a manual test utility
          to test the indicator's behavior when a battery's state
          changes (399eab2)
        * when a device changes, update the header action state even if the
          menus haven't been created yet. This fixes a startup
          condition found by the tests. (dd5f50b)
        * copyediting: code cleanup (9c3d863)

2014-07-21 Charles Kerr

        * in debian/control, add python3-dbusmock to Build-Deps for tests
          (f5db19d)
        * in debian/control, add libdbustest1-dev to Build-Deps for tests
          (34925a7)
        * in notifier.c, use g_clear_object to unref the GBindings (51f39c8)
        * add tests for events that change whether or not a 'low battery'
          notification is being shown (1bd1b70)
        * add tests to confirm that the DBus object's PowerLevel property
          changes at the right times (and only at the right times)
          when the battery is draining (2cb851b)
        * copyediting (8c4b964)
        * don't show clickable actions if the Notify server doesn't support
          them. (f5bf7f9)
        * copy the dbus-test-runner/dbusmock scaffolding for freedesktop
          Notifications from the indicator-datetime tests (125f6f6)
        * add dbus-test-runner as a build dependency for tests (d5b4275)
        * fix build issues (7b3b8a2)
        * sync with lp:indicator-power (bc32a96)
        * remove DeviceProvider from Notifier (1902911)
        * second draft of low battery power notifications, still a work in
          progress (b08f9b0)

2014-07-18 CI bot

        * Releasing 12.10.6+14.10.20140718-0ubuntu1 (967a547)

2014-07-18 Charles Kerr

        * Switch from automake/autoconf to CMake. Approved by: Ted Gould, PS
          Jenkins bot (512426b)

2014-07-17 Charles Kerr

        * replace 'std::vector<unsigned>' with 'std::vector<unsigned int>'
          for readability (9f1ebe8)

2014-07-16 Charles Kerr

        * none of the current tests require dbustest-1, so remove it from
          pkg_check_modules (e187f6f)
        * add dh-translations to Build-Depends (082a47c)
        * add po/CMakeLists.txt (1f2f165)
        * in debian/rules, remove autotool-specific bits (69081d4)
        * add first draft of low battery notifications (6ea2db5)
        * in debian/control and CMake files, add libnotify (74b8522)
        * in device.h, add #include <gio/gio.h> to pick up needed GIcon
          declaration (066f1fb)

2014-07-13 Charles Kerr

        * replace autoconf/automake with cmake (35a8b17)
        * fix some compiler warnings generated by clang static analyzer
          (3f29c1a)

2014-06-24 CI bot

        * Releasing 12.10.6+14.10.20140624-0ubuntu1 (2d06cbb)

2014-06-24 Iain Lane

        * Drop powerd and u-s-c to suggests, since the code handles them not
          being present and we don't need them on desktop (and they
          are in universe). (724900e)

2014-06-24 Alberto Aguirre

        * Changes to address setBrightness interface moving from powerd to
          unity-system-compositor (049c09d)

2014-06-24 Iain Lane

        * Change powerd/u-s-c dependency to a suggests (b6da254)

2014-06-20 Alberto Aguirre

        * Specify required unity-system-compositor version (0e5ceb9)

2014-06-19 Alberto Aguirre

        * Add 1.11 as  allowed version for lcov (89f187f)
        * Add powerd and unity-system-compositor to Depends (ed6ad9d)
        * Remove powerd reference in message (cd9a40f)
        * Remove references to powerd since the brightness interface is now
          provided by Unity.Screen (9e9a0da)

2014-06-16 Alberto Aguirre

        * Changes to address setBrightness interface moving from powerd to
          unity-system-compositor (2769c7f)

2014-06-11 CI bot

        * Releasing 12.10.6+14.10.20140611-0ubuntu1 (3982a33)

2014-06-11 Charles Kerr

        * Prefer the 'battery-XXX-charging' (eg, 'battery-020-charging')
          icons over the 'battery-low-charging' ones because the
          former are more precise and likely closer to the actual
          battery level.
          Fixes: 1186181 (defec1d)

2014-06-11 Iain Lane

        * Remove the brightness slider from the phone menu.
          Fixes: 1289470
          (34ba55d)

2014-06-05 Ted Gould

        * Adding lcov 1.11 (cc51d0f)

2014-05-05 Charles Kerr

        * prefer the 'battery-020-charging' icon to the
          'battery-low-charging' one because the former is more
          precise so its icon is more likely to be close to the
          actual actual battery level. (8c874cb)

2014-04-28 CI bot

        * Releasing 12.10.6+14.10.20140428-0ubuntu1 (34cda47)

2014-04-28 Ricardo Salveti de Araujo

        * Updating code to reflect latest powerd dbus API changes (7aaf31b)
        * updating code to reflect latest powerd dbus API changes (bab79c8)

2014-04-15 Iain Lane

        * Don't build the tests when cross compiling, they fail to build
          (fb4c324)
        * Build-Depend on python:any, for cross building. (db02577)
        * Don't add the brightness entry to the phone profile; it's been
          removed by design (b36744e)

2014-04-11 CI bot

        * Releasing 12.10.6+14.04.20140411-0ubuntu1 (58ed2f8)

2014-04-11 Sebastien Bacher

        * export an ubiquity profile, reusing the desktop_greeter object

          Fixes: 1306604 (d12706e)
        * export an ubiquity profile, reusing the desktop_greeter object
          (a76095e)

2014-04-09 Cody Garver

        * Uppercase Pantheon (27fa892)
        * Use XDG_CURRENT_DESKTOP instead (96b4124)
        * Correct packaging (3a9c255)

2014-03-28 CI bot

        * Releasing 12.10.6+14.04.20140328-0ubuntu1 (ca89fdd)

2014-03-28 Lars Uebernickel

        * Use com.canonical.indicator.basic menu item for device items
          (fc86e4d)

2014-03-28 Charles Kerr

        * If there are two batteries detected, combine their percentages and
          their time-remainings as per the revised spec.
          Fixes:
          880881, 1297466 (71ef362)

2014-03-27 Lars Uebernickel

        * Use com.canonical.indicator.basic menu item for device items
          (0b58eeb)

2014-03-26 CI bot

        * Releasing 12.10.6+14.04.20140326-0ubuntu1 (39ab6b3)

2014-03-26 Y.C cheng

        * Set brightness via powerd if it exist (using dbus)
          Fixes: 1287599
          (ebf3030)
        * remove modificaiton in changelog for CI (20aa7e1)

2014-03-25 Charles Kerr

        * sync to lp:indicator-power (8fcb63c)
        * add translator comments to the new translatable strings. (9b33101)

2014-03-24 Cody Garver

        * Add switchboard-plug-power as an alternative recommendation in
          packaging (d08ca44)

2014-03-19 Charles Kerr

        * add a courtesy message to let observers know that test-device isn't
          stuck, it's just slow. (0ea6d3d)
        * when choosing a primary device and more than one battery is found,
          accumulate their percentages and time-remaining properties
          as per the spec revisions in bug #880881. (b3ec90e)

2014-03-15 Cody Garver

        * Add support for Switchboard when in Pantheon session to fix bug
          #1291051 (4ba6d06)

2014-03-14 CI bot

        * Releasing 12.10.6+14.04.20140314-0ubuntu1 (6b9e3d4)

2014-03-14 Charles Kerr

        * Change the implementation of the title text / title accessible text
          / menuitem text to follow the spec changes in
          https://wiki.ubuntu.com/Power?action=diff&rev2=44&rev1=43#Title
          and update the tests accordingly.
          Fixes: 1234458 (fe4849e)

2014-03-13 Charles Kerr

        * add lp:~charlesk/indicator-power/lp-1256872 (d615980)
        * when expecting a NULL string, use EXPECT_EQ(NULL, str) (b1f0d40)
        * in the new indicator_power_device_get_*() functions, use
          g_return_val_if_fail(foo, NULL) rather than
          g_return_if_fail(foo) (bee4794)
        * copyediting: add const, fix misaligned whitespace (a49c013)
        * remove INDICATOR_IS_POWER_DEVICE(device) tests from private
          functions (3c4a789)
        * in the new indicator_power_device_get_*() functions, use
          heap-allocated strings rather than relying on
          g_snprintf(). (9936e22)

2014-03-11 CI bot

        * Releasing 12.10.6+14.04.20140311-0ubuntu1 (2596b05)

2014-03-11 Lars Uebernickel

        * Add desktop_lockscreen profile (c67067b)
        * Add desktop_lockscreen profile (12cf8a5)

2014-03-06 CI bot

        * Releasing 12.10.6+14.04.20140306-0ubuntu1 (24f2ab3)

2014-03-06 Simon Steinbeiß

        * Add xfce4-powermanager as alternative recommend (0e381b4)

2014-03-06 Y.C cheng

        * refine and use default value as initial brightness value (a67018f)

2014-03-05 Y.C cheng

        * add GCancellable and cancel it before free (a046fce)
        * brightness parameters as necessary condition to use powerd
          (237ba71)
        * clean up / wrong code fix (6a577e1)

2014-03-04 Charles Kerr

        * slightly better comments (065169e)
        * update the header / menuitem text / accessible text to reflect the
          changes in
          https://wiki.ubuntu.com/Power?action=diff&rev2=44&rev1=43#Title
          (0f47066)

2014-03-03 Y.C cheng

        * set brightness via powerd if it exist (using dbus) (18fd0fa)

2014-02-26 Ted Gould

        * Update for gnome-fallback (e8635c2)

2014-02-20 Ted Gould

        * Make sure to go into that subdirectory (d7f93a7)
        * Add the Upstart override (6f4bbf0)
        * Make it only show in Unity (87f8929)
        * Make the Upstart job match (bf09f85)

2014-02-18 Simon Steinbeiß

        * Add xfce4-powermanager as alternative recommend (8c0a214)

2014-02-07 CI bot

        * Releasing 12.10.6+14.04.20140207-0ubuntu1 (8c96b02)
        * Adding acceptance tests and merge review policies (aea3f06)

2014-01-31 Ted Gould

        * Adding acceptance tests and merge review policies. (e447a75)
        * Adding merge review policy (5efc941)
        * Adding basic acceptance tests (dfa6753)

2014-01-27 Automatic PS uploader

        * Releasing 12.10.6+14.04.20140127-0ubuntu1 (revision 224 from
          lp:indicator-power). (02cef6a)
        * Releasing 12.10.6+14.04.20140127-0ubuntu1, based on r224 (831ba77)

2014-01-27 Ricardo Salveti de Araujo

        * device.c: pending_charge means not charging. (a98a7c1)

2014-01-24 Ricardo Salveti de Araujo

        * device.c: pending_charge means not charging (90bce0b)

2014-01-24 Automatic PS uploader

        * Releasing 12.10.6+14.04.20140124-0ubuntu1 (revision 222 from
          lp:indicator-power). (2d54e43)
        * Releasing 12.10.6+14.04.20140124-0ubuntu1, based on r222 (898e6b8)

2014-01-22 Lars Uebernickel

        * Run xfce-powermanager-settings when in an Xubuntu session.
          (eab4835)
        * service.c: cache the control center command (e10669b)
        * service.c: execute unity-control-center on desktops other than
          unity as well (12febda)
        * service.c: remove free() on uninitialized pointer (2f5e7c9)

2014-01-21 Simon Steinbeiß

        * Add support for opening xfce4-powermanager-settings when in a
          Xubuntu-session (fd8313f)

2014-01-21 Robert Ancell

        * Use unity-control-center if it is available.
          Fixes:
          https://bugs.launchpad.net/bugs/1257505. (10c22e3)

2014-01-14 Robert Ancell

        * Recommend unity-control-center before gnome-control-center
          (b118fa5)

2014-01-10 Robert Ancell

        * Use unity-control-center if it is available (1bd93b0)

2013-12-05 Calum Lind

        * From bug 1255655: "focus[es] the correct tab upon opening
          gnome-power-statistics when clicking the indicator
          battery.".
          Fixes: https://bugs.launchpad.net/bugs/1255655.
          (a253b42)

2013-12-04 Calum Lind

        * merge from trunk (5a957ff)
        * Focus to battery tab when opening in gnome-power-statistics
          (84d26b8)

2013-12-03 Lars Uebernickel

        * gcov.m4: add 1.10 to the lcov version list. (b2c58f6)
        * gcov.m4: add 1.10 to the lcov version list (c596b45)

2013-11-29 Automatic PS uploader

        * Releasing 12.10.6+14.04.20131129-0ubuntu1 (revision 217 from
          lp:indicator-power). (3ff43b0)
        * Releasing 12.10.6+14.04.20131129-0ubuntu1, based on r217 (f7a1777)

2013-11-29 Lars Uebernickel

        * Use GSettingsActions instead of g_settings_bind (1d5aed9)
        * Don't keep GSettingsActions around (87f6a0f)

2013-11-28 Lars Uebernickel

        * Use GSettingsActions instead of g_settings_bind (e9b6509)

2013-11-27 Calum Lind

        * Focus to battery tab when opening in gnome-power-statistics
          (5468416)

2013-11-25 Automatic PS uploader

        * Releasing 12.10.6+14.04.20131125-0ubuntu1 (revision 215 from
          lp:indicator-power). (d531422)
        * Releasing 12.10.6+14.04.20131125-0ubuntu1, based on r215 (25e3ff0)

2013-11-08 Charles Kerr

        * fix a minor memory leak that was caused by treating the variant
          returned by g_icon_serialize() as floating. (c608bd8)
        * fix a minor memory leak that was caused by treating the variant
          returned by g_icon_serialize() as floating. (32c637b)

2013-11-04 Charles Kerr

        * We really only need to keep a handful of properties up-to-date for
          each upower device. Given that upower requires us to
          refetch all properties with GetAll whenever it signals
          that it's changed, we really don't need to keep bus
          proxies alive for each device. (bde1f5d)

2013-11-03 Charles Kerr

        * in on_bus_ready(), use g_error_matches(). (7dd7640)
        * in on_device_properties_ready(), improve the g_warning() text to be
          more useful. (65fa65f)
        * in on_device_properties_ready(), use g_error_matches (adfd4c6)

2013-10-31 Ted Gould

        * Switching DBus service to an Upstart Job.
          Fixes:
          https://bugs.launchpad.net/bugs/1185565. (7066fed)

2013-10-30 Nick Dedekind

        * Removed Label from brightness slider.
          Fixes:
          https://bugs.launchpad.net/bugs/1240756. (1ca27d4)
        * Use NULL for empty string (cd42d9e)

2013-10-29 Nick Dedekind

        * Removed brigtness label from indicator menu (833e7fc)

2013-10-29 Ted Gould

        * Add in the autostart config (4913289)
        * Updating to trunk (fb13441)

2013-10-29 Automatic PS uploader

        * Releasing 12.10.6+14.04.20131029.1-0ubuntu1 (revision 210 from
          lp:indicator-power). (1a9e81a)
        * Releasing 12.10.6+14.04.20131029.1-0ubuntu1, based on r210
          (52f40f1)

2013-10-28 Ted Gould

        * Adding a phone_greeter profile. (7f7e1ab)
        * Adding a phone_greeter profile (30747fc)

2013-10-24 Sebastien Bacher

        * Don't leak the g_file_get_contents value, reported by valgrind .
          (f4cbf51)
        * Don't leak the g_file_get_contents value, reported by valgrind
          (e1e4997)

2013-10-15 Marcus Tomlinson

        * Added torch icons to either end of brightness slider.
          Fixes:
          https://bugs.launchpad.net/bugs/1227250. (6c9f30f)

2013-10-10 Marcus Tomlinson

        * Added "torch-on" and "torch-off" icons to brightness slider menu
          item. (f192ac0)

2013-10-08 Automatic PS uploader

        * Releasing 12.10.6+13.10.20131008-0ubuntu1 (revision 206 from
          lp:indicator-power). (b3d3cbe)
        * Releasing 12.10.6+13.10.20131008-0ubuntu1, based on r206 (2d02157)

2013-10-04 Ted Gould

        * Adding an additional slash to the settings URL.
          Fixes:
          https://bugs.launchpad.net/bugs/1231444. (150e04c)
        * Adding an additional slash to the settings URL (5cc73ec)

2013-10-04 Automatic PS uploader

        * Releasing 12.10.6+13.10.20131004-0ubuntu1 (revision 204 from
          lp:indicator-power). (b872bf2)
        * Releasing 12.10.6+13.10.20131004-0ubuntu1, based on r204 (cca3975)

2013-10-03 Charles Kerr

        * don't create proxies for each upower device. (7c2a156)

2013-10-02 Charles Kerr

        * Listen for the "Resuming" signal from upower to refresh devices
          when resuming from suspend/hibernate.
          Fixes:
          https://bugs.launchpad.net/bugs/1224931. (29eb8c2)

2013-10-01 Charles Kerr

        * Listen for the 'Resuming' signal from upower. When it's received,
          refresh all our devices. (76c6292)
        * replace a g_print() call with g_debug() (5a739fd)
        * Revert bug #824629 code --  use the correct charge % when deciding
          what icon to use.
          Fixes:
          https://bugs.launchpad.net/bugs/1215520. (a16d123)
        * use the correct battery icon when charging/discharging (3fe1d26)

2013-09-18 Automatic PS uploader

        * Releasing 12.10.6+13.10.20130918.2-0ubuntu1 (revision 201 from
          lp:indicator-power). (6c04d1a)
        * Releasing 12.10.6+13.10.20130918.2-0ubuntu1, based on r201
          (9b17a6b)

2013-09-18 Łukasz 'sil2100' Zemczak

        * Add the FFe bug number to the last changelog entry (LP: #1215980)
          (97e7e6d)

2013-09-18 Timo Jyrinki

        * Manual changelog entry to indicate why the reverting of the revert
          is ok now. (7b46f6c)

2013-09-17 Ted Gould

        * Use URL dispatcher to show settings on the phone. (0344077)

2013-09-15 Ted Gould

        * Don't do the revert (bb9e728)
        * Update to trunk before revert (22f3ee8)

2013-09-14 Stéphane Graber

        * Revert previous upload. (5fbb8ed)

2013-09-13 Stéphane Graber

        * Revert the previous upload as it caused 10 extra packages to be
          installed on all Ubuntu desktop machines and as a result
          caused a FeatureFreeze violation. (8d05805)

2013-09-13 Automatic PS uploader

        * Releasing 12.10.6+13.10.20130913-0ubuntu1 (revision 196 from
          lp:indicator-power). (830e6a6)
        * Releasing 12.10.6+13.10.20130913-0ubuntu1, based on r196 (a14a925)

2013-09-11 Charles Kerr

        * Adds a title in the header's action state.
          Fixes:
          https://bugs.launchpad.net/bugs/1223635. (f853cb2)
        * use g_variant_new_take_string() where appropriate (4ca541c)
        * add a title entry to the header action's state (ce4067c)

2013-09-09 Ted Gould

        * Use URL Dispatcher for settings on the phone. (5507ff9)

2013-09-04 Ted Gould

        * Adding a phone settings action (5ec4944)
        * Grabbing the URL dispatcher build (627005e)
        * Adding a build dep on URL dispatcher (a3bfe6c)

2013-08-30 Automatic PS uploader

        * Releasing 12.10.6+13.10.20130830.2-0ubuntu1 (revision 193 from
          lp:indicator-power). (f4ae2d0)
        * Releasing 12.10.6+13.10.20130830.2-0ubuntu1, based on r193
          (81d519f)

2013-08-30 Sebastien Bacher

        * revert previous commit, liburl-dispatcher1 depends on
          upstart-app-launch which is in universe, that's blocking
          indicators from landing. (eae8289)
        * revert previous commit, liburl-dispatcher1 depends on
          upstart-app-launch which is in universe, that's blocking
          indicators from landing. (7b1c7e8)

2013-08-30 Ted Gould

        * Make settings work on the phone. (4179a81)

2013-08-29 Sebastien Bacher

        * don't depends on gnome-control-center, recommends is enough, since
          it's only required for the preferences menu item. Let
          ubuntu-system-settings replace it as an alternative,
          that's needed on the touch image. (cb21c21)

2013-08-29 Ted Gould

        * Merging seb128's branch (0becc25)
        * Add a new action for phone settings and call the dispatcher
          (2dc4a6e)
        * Adding build items on url dispatcher (0f4852e)
        * Fix dependendencies to include url-dispatcher and allow
          system-settings (4b27302)

2013-08-29 Sebastien Bacher

        * don't depends on gnome-control-center, recommends is enough, since
          it's only required for the preferences menu item. Let
          ubuntu-system-settings replace it as an alternative,
          that's needed on the touch image. (ae2fc2d)

2013-08-27 Ted Gould

        * Dropping debugging for system-wide support (812ac9a)
        * Switching the dvus service to an upstart job (667bae7)

2013-08-23 Automatic PS uploader

        * Releasing 12.10.6+13.10.20130823-0ubuntu1 (revision 189 from
          lp:indicator-power). (7c271b3)
        * Releasing 12.10.6+13.10.20130823-0ubuntu1, based on r189 (dfebb76)

2013-08-23 Charles Kerr

        * Don't show the time remaining for a discharging battery if it
          exceeds 24 hours because it's probably an erroneous time
          estimate.
          Fixes: https://bugs.launchpad.net/bugs/1216030.
          (2e46eb4)
        * update the tests to look at the 24 hour threshold (90f4785)
        * as per the changes in
          https://wiki.ubuntu.com/Power?action=diff&rev2=39&rev1=38,
          hide the discharge time remaining if it's > 24 hours
          (b1f32d5)
        * Updates the power indicator to match the spec changes at
          <https://wiki.ubuntu.com/Power?action=diff&rev2=37&rev1=36>.
          (e079d4b)
        * copyediting: some newly-dead code should have been removed instead
          of just commented out (ad28ae2)
        * copyediting: more descriptive comments when building
          label/header/a11y text (b84432b)

2013-08-22 Charles Kerr

        * copyediting: remove trailing spaces in source code (cfda45b)
        * don't use deprecated GSimpleActionGroup APIs (65b6f06)
        * add show-percentage feature, basing off Haw Loeung's patch.
          (c15ff1e)
        * add schema changes from hloeung's branch (3c2e7c8)

2013-08-21 Automatic PS uploader

        * Releasing 12.10.6+13.10.20130821-0ubuntu1 (revision 186 from
          lp:indicator-power). (f22849a)
        * Releasing 12.10.6+13.10.20130821-0ubuntu1, based on r186 (bc7c071)

2013-08-20 Charles Kerr

        * Add a brightness slider to indicator-power's phone menu. (cf9f238)

2013-08-19 Charles Kerr

        * copyediting: trivial dead code removal (7121aeb)
        * make the brightness slider work correctly in both unity8 and ido
          (21871f8)
        * in ib_brightness_control_set_value(), log the strerror when write()
          fails. (1b56431)
        * add ib-brightness-control for phone menu (ffaf526)

2013-08-08 Automatic PS uploader

        * Releasing 12.10.6+13.10.20130808-0ubuntu1 (revision 184 from
          lp:indicator-power). (63e89ea)
        * Releasing 12.10.6+13.10.20130808-0ubuntu1, based on r184 (f56cb9f)

2013-08-07 Allan LeSage

        * This restores coverage reporting; we could alternately add the
          COVERAGE_CFLAGS to SHARED_CFLAGS instead.
          Fixes:
          https://bugs.launchpad.net/bugs/1204127. (ad584c1)
        * Restore coverage flags. (5f1524a)

2013-07-25 Automatic PS uploader

        * Releasing 12.10.6+13.10.20130725-0ubuntu1 (revision 182 from
          lp:indicator-power). (02ddec5)
        * Releasing 12.10.6+13.10.20130725-0ubuntu1, based on r182 (e84ea95)

2013-07-24 Charles Kerr

        * Set the battery-level action's 'sensitive' flag to false so that it
          will not be clickable, as per the phone spec. (e5d2ea5)
        * set the phone menu's battery-level action's 'enabled' flag to false
          so that it won't be clickable, as per the spec. (9fd02d4)
        * Add a phone profile and menu. (6cca65e)
        * add a profile for the phone's power indicator
          https://wiki.ubuntu.com/Power#Phone (2d6f099)

2013-07-23 Charles Kerr

        * rename create_devices_section as create_desktop_devices_section
          since we're about to add a sibling
          create_phone_devices_section (6e63cf5)

2013-07-08 Automatic PS uploader

        * Releasing 12.10.6+13.10.20130708-0ubuntu1 (revision 179 from
          lp:indicator-power). (a6db14f)
        * Releasing 12.10.6+13.10.20130708-0ubuntu1, based on r179 (2e21a4f)

2013-07-05 Lars Uebernickel

        * Put service into libexecir. (cfbd125)
        * indicator file: rename greeter to desktop_greeter. (e1166c9)

2013-07-04 Lars Uebernickel

        * Put service into libexecdir (2ca78c7)
        * indicator file: greeter -> desktop_greeter (51182d1)

2013-07-03 Automatic PS uploader

        * Releasing 12.10.6+13.10.20130703.1-0ubuntu1 to ubuntu. (91878b5)
        * Releasing 12.10.6+13.10.20130703.1-0ubuntu1, based on r176
          (e825a65)

2013-07-02 Charles Kerr

        * add a Position entry in the .indicator file.
          Fixes:
          https://bugs.launchpad.net/bugs/1196650. (b227201)
        * in the .indicator file, add a Position entry (15ee6e1)
        * make the greeter menu key consistent with indicator-session.
          (0f046a6)

2013-07-02 Automatic PS uploader

        * Releasing 12.10.6+13.10.20130702-0ubuntu1 to ubuntu. (61fb99c)
        * Releasing 12.10.6+13.10.20130702-0ubuntu1, based on r173 (ce51165)

2013-07-01 Charles Kerr

        * in service.c's menu_names array, use 'desktop_greeter' as the key
          instead of 'greeter' (ce05101)

2013-07-01 Sebastien Bacher

        * backport the changelog from the manual distro upload. (09635bc)
        * backport the changelog from the manual distro upload (04b32b4)

2013-06-29 Charles Kerr

        * don't rely on the dbus pkg-config variable to know where to install
          .service files. (5fb3644)

2013-06-28 Charles Kerr

        * since we're removing localinstall mode, no need to pass it as an
          arg here either (f6329d6)
        * remove 'local install' mode (8bfff65)
        * similar to the i-datetime change, use the unicode ellipsis
          directly. (9ba857d)

2013-06-28 Automatic PS uploader

        * Releasing 12.10.6+13.10.20130628-0ubuntu1 to ubuntu. (ae08ab6)

2013-06-28 Charles Kerr

        * use … directly in strings instead of the C octal escaped UTF-8.
          (54b4afe)

2013-06-28 Automatic PS uploader

        * Releasing 12.10.6+13.10.20130628-0ubuntu1, based on r169 (ada376a)

2013-06-20 Łukasz 'sil2100' Zemczak

        * Add a build-dep on python. This is required as we're using
          gdbus-codegen from libglib2.0-dev which only 'recommends'
          python. We don't install recommends, so to get things
          working, this build-dep is needed. (30b8b27)
        * Add a build-dep on python. This is required as we're using
          gdbus-codegen from libglib2.0-dev which only 'recommends'
          python. We don't install recommends, so to get things
          working, this build-dep is needed (6811e6b)

2013-06-19 Charles Kerr

        * Convert the power indicator into a service that exports GMenus and
          GActions in accordance with our indicator-ng design.
          (0ce78de)
        * adjust device-provider-upower's timer to reduce how many times we
          pull the device's properties over the bus. (258f3ad)
        * remove the '--replace' command line argument; process management
          will be handled by Upstart (8f74477)
        * in indicator_power_device_provider_get_devices, confirm that the
          get_devices function pointer isn't NULL before we call it.
          (e2431a9)
        * in provider-upower.c, clear its private hashtable in dispose() and
          destroy it in finalize() (0ec4365)
        * lower the interval on the upower timer to make our updates more
          responsive (dec4af4)
        * in configure.ac, add AM_PROG_AR to silence an autotools warning
          caused by the temporary static libraries created in src/
          (eeb91e4)
        * fix build issue in indicator_power_device_provider_get_devices(),
          reported by CI... (34161b3)
        * put the service on the production busname (9cb5ad0)
        * add a dbus service file for indicator-power... (f566ca0)
        * bump NEWS for 'make dist' (1b56362)

2013-06-18 Charles Kerr

        * install the .indicator file into share/unity/indicators/ (eeb37d1)
        * remove the short-term TODO (34cffae)
        * remove INDICATORDIR and INDICATORICONSDIR from configure.ac
          (8e052ae)

2013-06-17 Charles Kerr

        * get test-devices building and passing again. (bef4229)
        * update POTFILES.in to reflect the new files in src/ (b3a23dc)
        * remove the gtest-xorg dependency, we're no longer using gui
          elements in the tests (9990582)
        * tighten the -Wextra screws a little tighter (aa625b0)
        * in device-provider-upower's dispose(), disconnect from our proxy's
          signal before we unref the proxy (72d74f4)
        * copyediting: group common functions together, fix line wrap, better
          commenting (a4d5e56)

2013-06-16 Charles Kerr

        * add a short-term TODO file (37051c1)
        * first steps at fixing the tests that broke during GMenuification
          (545b341)
        * update indicator-power build rules to reflect the changes in source
          code and in dependencies (1ad51b4)
        * update build rules: remove now-unneeded build dependencies for
          libindicator, gtk, gnome-settings-daemon-dev,
          libupower-glib, libdbus-1-dev (b8f5e07)
        * add power.indicator (1d8adeb)
        * explicitly use gio; remove unused glib-upower.h calls (f5c93cd)
        * add a main() wrapper to create a service and pass a
          device-provider-upower to it (cbbf63c)
        * remove the old IndicatorObject code (997a109)
        * add the heart of the service (ee13ae6)
        * add device-provider-upower, a UPower implementation of
          device-provider (da79f94)
        * add device-provider, an interface class for an object that provides
          IndicatorPowerDevices. This could be given a UPower
          implementation, or a mock implementation, or a
          whatever-replaces-upower-on-phones implementation.
          (ebde9c5)
        * remove the org.gnome.SettingsDaemon listener; we'll use UPower
          directly (f3deb18)
        * add UPower xml files for gdbus-codegen (d67d887)

2013-03-07 Automatic PS uploader

        * Releasing 12.10.6daily13.03.07-0ubuntu1 to ubuntu. (0b05855)
        * Releasing 12.10.6daily13.03.07-0ubuntu1, based on r166 (bdb55d2)

2013-03-06 Mathieu Trudel-Lapierre

        * Do the linking with -lpthread correctly.
          Fixes:
          https://bugs.launchpad.net/bugs/1126362. (17c0ead)

2013-03-05 Mathieu Trudel-Lapierre

        * Make use of XORG_GTEST_LDFLAGS that xorg-gtest can export to know
          whether there are extra libraries we should link against.
          (6922c6a)

2013-01-25 Automatic PS uploader

        * Releasing 12.10.6daily13.01.25-0ubuntu1 to ubuntu. (f9e5ac4)
        * Releasing 12.10.6daily13.01.25-0ubuntu1, based on r164 (0589b7d)

2013-01-23 Mathieu Trudel-Lapierre

        * Fix path to gtest source. (4b2a473)

2013-01-22 Mathieu Trudel-Lapierre

        * Fix path to gtest sources. (72ba52e)

2013-01-18 Automatic PS uploader

        * Releasing 12.10.6daily13.01.18-0ubuntu1 to ubuntu. (e9e5df9)
        * Releasing 12.10.6daily13.01.18-0ubuntu1, based on r162 (838849d)

2013-01-17 Mathieu Trudel-Lapierre

        * releasing version 12.10.6daily13.01.17-0ubuntu1 (040e7a8)

2013-01-17 Charles Kerr

        * g_type_init() is deprecated as of glib 2.35.4, so bump our glib
          minimum requirement and remove the g_type_init() call.
          (a399017)
        * remove g_type_init() calls and bump glib minimum to 2.35.4, where
          g_type_init() is deprecated (5535cc5)

2013-01-17 Automatic PS uploader

        * Releasing 12.10.6daily13.01.17-0ubuntu1, based on r160 (35cadc9)

2013-01-15 Phillip Susi

        * This is Phillip Susi's patch from
          lp:~psusi/ubuntu/raring/indicator-power/show-ups, proposed
          here for trunk.
          Fixes:
          https://bugs.launchpad.net/bugs/1007095. (06c8a32)

2013-01-14 Phillip Susi

        * merge lp:~psusi/ubuntu/raring/indicator-power/show-ups (181b366)

2012-11-21 Didier Roche

        * Releasing 12.10.6daily12.11.21.1-0ubuntu1 to ubuntu (7281308)

2012-11-21 unknown

        * Releasing 12.10.6daily12.11.21.1-0ubuntu1, based on r158 (e05edf4)

2012-11-16 Charles Kerr

        * explicitly cast integral values to the correct type when passing
          them to a varargs function.
          Fixes:
          https://bugs.launchpad.net/bugs/1079795. (9d92445)
        * explicitly cast integral values to the correct type when passing
          them to a varargs function. (1d3272d)

2012-11-16 Didier Roche

        * Report missing changes in indicator-power trunk from trunk.12.10.
          (a911ab8)
        * remove the duplicated case (cc47ec0)
        * report accidently revert fixes when inline packaging was merged in
          (c9912e1)
        * add bootstrap message. (378d1e1)
        * add bootstrap message (bedc8ea)

2012-11-15 Ken VanDine

        * Import debian/. (81f2ecd)

2012-11-15 Mathieu Trudel-Lapierre

        * make sure we call dh_install --fail-missing in the dh_install
          override, to be consistent with other indicator packages.
          (721e3c4)
        * Add libgtest-dev to Build-Depends for unit tests. (d82a5a9)
        * Add libxorg-gtest-dev to Build-Depends for unit tests. (43db0f0)
        * Add autopoint to Build-Depends. (78fa11f)

2012-11-14 Mathieu Trudel-Lapierre

        * debian/rules: it's dh_autoreconf, not dh-autoreconf. (8989d86)
        * use DPKG_GENSYMBOLS_CHECK_LEVEL=4. (11b06f3)
        * debian/rules:   - use the dh sequencer with --with autoreconf.
          - override dh_autoreconf to call autogen.sh from upstream.
          (b4f0934)
        * Update Vcs-Bzr and Vcs-Browser fields, add notice to uploaders.
          (db6421c)
        *   - Reorganize Build-Depends for clarity; build system b-deps
          first.   - Use trailing commas for dep lists, as per other
          indicator packages. (c3848e4)
        * debian/compat: bump to compat level 9. (d8f0f89)
        * debian/control:   - Bump Build-Depends on debhelper to (>= 9).
          (d18b6c2)
        * Specify to bzr-builddeb that the package should be built using
          split mode. (baa58fe)
        * Open new changelog entry. (9287192)
        * Import debian/ from lp:~ubuntu-desktop/indicator-power/ubuntu.
          (aae9eaa)

2012-11-14 Sebastien Bacher

        * releasing version 12.10.5-0ubuntu1 (78e1bc5)
        * New upstream release:   - Fix a device display bug introduced in
          12.10.3 (LP: #1075192) (7ef9fc9)
        * Import upstream version 12.10.5 (fb0e7bd)

2012-11-13 Charles Kerr

        * bump NEWS (17629a4)
        * 12.10.5 (7c335dd)
        * backport the 'AC Adapter shown in panel' bugfix from trunk/13.04
          (f6075f0)

2012-11-08 Charles Kerr

        * add 'check-news' to AM_INIT_AUTOMAKE (727b8ca)

2012-11-07 Charles Kerr

        * Handle choosing a primary device when no device is charging nor
          discharging.
          Fixes:
          https://bugs.launchpad.net/bugs/1075192. (7b7b36e)
        * change indicator_power_device_get_time_details() s.t. the 'short
          details' for an AC Adapter is an empty string. (f446e2f)
        * modify DeviceTest.Labels s.t. it fails (currently failing) if the
          'short' string for an AC Adapter is nonempty. (a499914)

2012-11-06 Charles Kerr

        * when choosing a primary device from devices that are neither
          charging nor discharging, prefer batteries, then
          everything except line-power, then line power (a2e4245)
        * in TestDevice.ChoosePrimary, add another test (currently failing)
          to confirm that when indicator-datetime is choosing from
          devices that are neither charging nor discharging,
          batteries are more interesting than other devices, and
          other devices are more interesting than
          UP_DEVICE_KIND_LINE_POWER (7b37016)
        * when choosing between two devices, always pick the one that's not a
          UP_DEVICE_KIND_LINE_POWER (75636fb)
        * add unit test (currently failing) to test for the bug reported in
          LP bug #1075192 (e555496)

2012-11-05 Sebastien Bacher

        * releasing version 12.10.4-0ubuntu1 (74bed2a)
        * New upstream release.   - Show the proper icon for mice and ups
          devices. (LP: #1066208) (0c14d7b)
        * Import upstream version 12.10.4 (a3b85f4)

2012-11-04 Charles Kerr

        * 12.10.4 (014fbc2)
        * fix logic error in primary device selection; add unit tests to
          confirm the fix. (lp:~charlesk/indicator-power/lp-1071757)
          (2fa0264)

2012-10-29 Charles Kerr

        * Fix the logic error. Add tests to confirm the fix.
          Fixes:
          https://bugs.launchpad.net/bugs/1071757. (1e5b83d)
        * copyediting: fix comment text (7d558ff)

2012-10-28 Charles Kerr

        * in TestDevice, make the log variable names a little more consistent
          (a76e474)
        * set DeviceTest's gwarning/gcritical log func to one that prints no
          messages but accumulates the log count. This way we can
          both (a) silence in-console warnings that look like bugs
          in the test but are actually desirable warnings generated
          by fuzz testing, and (b) assert that we get exactly as
          many warnings/criticals as we expect to get. (8867ec9)
        * expand DeviceTest.ChoosePrimary to test choosing from a wider
          variety of device states. (7c0d274)

2012-10-26 Charles Kerr

        * fix logic error when deciding which primary device to select.
          (0189c72)
        * add test (currently failing) to detect the logic error reported in
          bug #1071757 (cd8e633)
        * 12.10.3 (681e4e9)
        * choose the correct primary device, and choose the correct icon for
          it. (880f44e)
        * choose the correct primary device, and choose the correct icon for
          it. (6d19670)
        * fix copy-paste comment error (e246512)
        * fix comment typo (a842e7b)
        * Select the primary device based on the spec's criteria. Add tests
          to confirm. (b7b7ffd)
        * silence the known/nonbug gtk and glib warnings (a8d3382)
        * add unit tests to confirm the device refcounts are correct s.t.
          IndicatorPower isn't leaking devices (92b48e8)
        * fix leaked icon and label; found by running valgrind on
          tests/test-indicator (8659889)
        * Fix unhandled enum 'unknown device' that was smoked out by the unit
          tests. (90af0bf)

2012-10-25 Charles Kerr

        * the device kind string wasn't being used in some icon names.
          (46f92ba)

2012-10-03 Sebastien Bacher

        * releasing version 12.10.2-0ubuntu1 (a42d1cd)
        * New upstream release.   - Show a more accurate view of
          discharging batteries (LP: #1054146)   - Fix a GIcon
          memory leak   - In device.c, include gi18n-lib.h instead
          of gi18n.h (c302843)
        * Import upstream version 12.10.2 (0fa9b26)

2012-10-03 Charles Kerr

        * 12.10.2 (3a0758a)
        * merge lp:~charlesk/indicator-power/lp-1054146 to give a more
          accurate view of discharging batteries (af699e1)
        * when discharging the battery, prefer the percent-charged icons over
          the full,good,low icons because the former show a more
          accurate view of the charge. (2b046e7)

2012-09-26 Lars Uebernickel

        * Merge lp:~/larsu/indicator-power/plug-get-icon-memory-leak
          (b226f3f)

2012-09-25 Lars Uebernickel

        * get_icon: Plug memory leak (e4002d5)

2012-09-20 Didier Roche

        * releasing version 12.10.1-0ubuntu2 (938cb5d)
        * Cherry-pick:   - Ensure the power indicator string translations
          are loaded. Thanks lars (002ce20)

2012-09-20 Lars Uebernickel

        * device.c: include gi18n-lib.h instead of gi18n.h (a94288f)

2012-09-05 Charles Kerr

        * copyediting: text formatting to make the icon list more readable
          (75e9a60)

2012-08-22 Sebastien Bacher

        * releasing version 12.10.1-0ubuntu1 (d90c644)
        * New upstream release. (1286a19)
        * Import upstream version 12.10.1 (c752cbe)

2012-08-21 Charles Kerr

        * 12.10.1 (fb058d4)
        * merge lp:~charlesk/indicator-power/lp-1023533 to bump the glib
          prerequisite (300b1cc)

2012-07-13 Charles Kerr

        * raise glib minimum to 2.33 (b2b5176)

2012-07-11 Sebastien Bacher

        * releasing version 12.10.0-0ubuntu1 (79146a3)
        * New upstream release.;  debian/control: updated glib requirement
          (2e4ec4a)
        * Import upstream version 12.10.0 (4af0bd2)

2012-07-11 Charles Kerr

        * bump version to 12.10.0 (7bc1a48)
        * merge lp:~charlesk/indicator-power/coverage (6401fdd)

2012-07-03 Charles Kerr

        * disable test-dbus-listener for now (2343edb)

2012-06-07 Charles Kerr

        * remove some dead code. (867f9fe)
        * improve the variant sanity tests in
          indicator_power_device_new_from_variant() (8b31b76)

2012-06-06 Charles Kerr

        * reimplement indicator_power_device_get_icon_names() since our CA is
          incompatible with reusing code from GSD. (9091bba)
        * remove superfluous #include (137b2e1)
        * simplify the Device properties' name strings (bca7ca9)
        * For GTK-Doc, reference functions with function_name() instead of
          #function_name (0acce23)
        * In indicator_power_device_new_from_variant(), check whether the
          input variant has the correct type before using it.
          (73bef48)
        * add G_OBJECT_WARN_INVALID_PROPERTY_ID for the 'default' switch case
          in Device's get/set property methods (50fb08d)
        * IndicatorObjectDevice's finalize() function needs to chain up to
          the parent class. (de56d59)
        * in IndicatorPowerDevice's class init function, use
          g_object_class_install_properties() instead of installing
          each property separately. (da3c570)
        * remove prototype for indicator_power_dbus_listener_new() since it's
          not needed/used (42caee4)
        * simplify the devices-enumerated signal's name (65f33de)
        * if self->cancellable is non-NULL in dispose(), pass it to
          g_cancellable_cancel() before clearing the listener's
          reference (fcd052a)
        * remove trailing whitespace (5cac4eb)
        * add g_bus_unwatch_name() to watcher's dispose() method (79d37d6)
        * add a GTK-Doc signal comment block for
          indictor-power-dbus-listener's enumerated signal (f2310de)
        * move the header files from noinst_HEADERS to libpower_la_SOURCES
          (15d6b25)

2012-06-01 Charles Kerr

        * In indicator-power.c's put_primary_device(), remove dead code.
          (66ba8ed)
        * copyediting: fix tab damage in dbus-listener.[ch] (99a719a)
        * copyediting: fix tab damage in device.[ch] (52d1979)
        * use C++-style comments in test-device.cc (b108010)
        * In indicator_power_device_get_time_details(), add a test for
          non-devices being passed in. (0b46d08)
        * Fix edge case in indicator_power_device_get_icon_names() that
          returned a bad value if the caller passed in a NULL
          pointer as a device. Added regression test. (5b17593)
        * In indicator_power_device_get_time_details(), use g_strdup(foo)
          instead of g_strdup_printf("%s",foo) (4c433bf)
        * Add coverage test for AC Adapters in
          indicator_power_device_get_time_details() (560aa0e)
        * capitalize the second word in 'AC Adapter' (7c3ac19)
        * in indicator_power_device_get_time_details(), don't list 'not
          present' for AC Adapters that have no % and no time
          estimate (9937a07)
        * Add unit tests for indicator_power_device_get_time_details()
          (ea0293e)
        * In indicator_power_device_get_time_details(), remove an unlikely
          branch that could result in time/detail strings not being
          set. (53d9c7e)
        * Add gcda/gcno to CLEANFILES s.t. 'make clean' will cover them
          (624a1f3)

2012-05-31 Charles Kerr

        * in indicator_power_device_get_time_details(), limit the scope of
          variables short_timestring and detailed_timestring
          (9a753ec)
        * Move private indicator-power function build_device_time_details()
          to device.c to public function
          indicator_power_device_get_time_details() so that we can
          unit test the user-visible strings. (8476e80)
        * remove IndicatorPowerDevice's now-unused device icon string.
          (97867c3)
        * Add indicator_power_device_get_icon_names(). (b18b586)
        * remove some g_message() calls that shouldn't've been committed.
          (89c515d)

2012-05-29 Charles Kerr

        * add a test to make sure that the listener responds to a
          PropertiesChanged signal (ab87d8f)
        * t^Cak to indicator_set_power_differences() (5786eca)
        * use g_clear_pointer() where useful (1c35339)
        * add tests for gsd GetDevices returning (a) no devices and (b) an
          error (8a37ae2)
        * exclude G_DEFINE_TYPE from coverage testing in dbus-listener.c
          (7f08c9a)

2012-05-28 Charles Kerr

        * add more tests to improve coverage: different device types, no
          primary device (7b8cd09)
        * add a mock GSD.Power to handle the GetPower requests (b9a6194)

2012-05-27 Charles Kerr

        * use signals to decouple i-power and dbus-listener (23a2672)
        * Add skeleton test for IndicatorPowerDbusListener (675cc79)

2012-05-26 Charles Kerr

        * add coverage for charging with >1 minute but <1 hour left (2f1281d)
        * add coverage for DBusListener get_property() (eda15ff)
        * try adding LCOV_EXCL_{START,STOP} for unreachable conditions (glib
          looking for subclasses of IndicatorPowerDevic.
          unreachables in G_DEFINE_TYPE) (194cfbc)
        * call g_object_run_dispose() in a standalone test to get coverage on
          the NULL / non-NULL branches of dispose()'s
          g_clear_pointer() calls (aeb6ab5)
        * nope, LCOV_EXCL_LINE doesn't work on macros (21656d9)
        * try adding LCOV_EXCL_LINE for unreachable conditions (glib looking
          for subclasses of IndicatorPowerDevice; unreachables in
          G_DEFINE_TYPE) (83aee49)
        * reuse the same cancellable across multiple non-concurrent dbus
          calls (5937352)
        * avoid a cyclical refcount dependency between IndicatorPower and its
          DBusListener (b3a1b20)
        * extract-method to simplify testing the accessible text (29ec6d2)
        * separate the dbus org.gnome.SettingsDaemon.Power logic into a
          separate class (9ee74a3)
        * add coverage for various charging/discharging/charged states
          (e0d1b32)
        * first draft of adding tests for a discharging battery (676aef0)

2012-05-25 Charles Kerr

        * make indicator_power_set_devices() safe for passing in the same
          devices more than once (7ac2b78)
        * fix negated logic in menu_add_device() introduced in r160 (73d31da)
        * indicator_power_set_devices() should fail gracefully when no
          devices are available (ce82684)
        * make Jenkins happy (6bbfe3a)
        * modify IndicatorPower to use IndicatorPowerDevices internally
          (34c756a)
        * put IndicatorPower's fields back inside a priv struct (33f4e3d)

2012-05-24 Charles Kerr

        * ah, c++ is too smart for the last commit's implicit conversion.
          (4d1bb11)
        * test passing bad non-NULL pointers to Device's accessors (ebf2eda)
        * add unit tests confirming that the device accessor functions won't
          crash when you pass NULL for the device (88d4861)
        * remove the 'default' clause from get_property() and set_property().
          (9e188d4)
        * remove some unnecessary type compatibilty tests...
          g_object_get_property() does these tests for us (2643aa2)
        * remove the tests that attempted to exercise the code removed in
          r151 (d2ba05c)
        * don't include the unit tests' code in coverage metrics (fd7ad85)
        * remove some unnecessary type compatibilty tests...
          g_object_set_property() does these tests for us (f023be5)
        * add unit tests for getting/setting device properties (4c95f0b)
        * first draft of getting GSettings working in the unit tests before
          the schema is installed. (d8484ce)
        * remove the g_clear_pointer() calls s.t. things will build and run
          on alesage's Jenkins setup running Precise (caae424)
        * remove the g_clear_pointer() calls s.t. things will build and run
          on alesage's Jenkins setup running Precise (f18b60b)
        * add test-indicator.cc (4f74252)
        * add a 'hello world' test for instantiating IndicatorPower (f434dc2)
        * add private container struct IndicatorPowerDevice (622c185)

2012-05-23 Charles Kerr

        * replace 'Power Settings...' with 'Power Settings…' (71a3e53)
        * move libpower's automake rules into src/ (122e56d)

2012-04-26 Charles Kerr

        * fix a handful of string and GVariant leaks in indicator-power.
          (8e7ee28)

2012-04-15 Charles Kerr

        * tweak: in put_primary_device(), peek at the variant's strings
          instead of dup'ing them (820cc22)
        * sync with lp:indicator-power (3e92639)
        * fix leaked strings in menu_add_device when (kind ==
          UP_DEVICE_KIND_LINE_POWER) (fd5fac8)

2012-04-11 Ken VanDine

        * releasing version 2.0-0ubuntu1 (bd7a606)
        * New upstream release.   * Make menu items accessible with Orca
          Screen reader (LP: #953176)   * Plug memory leaks when
          updating our icons (387890e)

2012-04-11 Charles Kerr

        * releasing version 2.0-0ubuntu1~ppa1 (6e6011e)
        * New upstream release.   * Make menu items accessible with Orca
          Screen reader (LP: #953176)   * Plug memory leaks when
          updating our icons (c88bf4d)
        * Import upstream version 2.0 (109d4fe)
        * Sync from Ubuntu Desktop (9868757)
        * 2.0 (3242c72) (tag: 2.0)

2012-04-10 Charles Kerr

        * merge lp:~allanlesage/indicator-power/TDD to improve our gcov fules
          in autotools (f1c836c)

2012-04-09 Charles Kerr

        * use atk_object_set_name(foo,bar)" instead of
          g_object_set(foo,"accessible-name",bar,NULL)" (a24e06c)
        * leak fix 3 of 3: don't leak the GIcons returned by
          get_device_icon() (45bc12d)
        * leak fix 2 of 3: fix leaky fallback GIcon in get_device_icon()
          (7a5b5a6)
        * leak fix 1 of 3: don't leak object_path and device_icon if kind ==
          UP_DEVICE_KIND_LINE_POWER (6305fe3)
        * if possible, set the device menuitems' accessible names. (8e0baaf)

2012-03-27 Allan LeSage

        * Pedantic name change for gcovr xml results. (13e52ee)
        * Added gcov coverage tooling. (3db9585)

2012-03-21 Ken VanDine

        * releasing version 1.93-0ubuntu1 (4e4a839)
        * New upstream release.   * Fix for translatable strings not being
          extracted for i18n (LP: #957542) (fddb19e)

2012-03-21 Charles Kerr

        * releasing version 1.93-0ubuntu1~ppa1 (abc3faf)
        * New upstream release.   * Fix for translatable strings not being
          extracted for i18n (LP: #957542) (b8ba3be)
        * Import upstream version 1.93 (4c91eb5)
        * Sync from Ubuntu Desktop (e9f8e72)
        * 1.93 (aec0158) (tag: 1.93)

2012-03-17 Charles Kerr

        * Fix memory leaks in get_primary_device(). (22a82f6)
        * Fix variant leak in count_batteries() -- the returned value of
          g_variant_get_child_value() needs to be freed with
          g_variant_unref() when we're done with it. (a9ab1c3)
        * fix variant leaks in menu_add_devices() (0489149)
        * merge lp:~kelemeng/indicator-power/bug957542 to fix extracting
          translatable strings from ipower (Bug #957542) (0ef46e1)

2012-03-17 Gabor Kelemen

        * Add g_dngettext to the list of known keywords. LP: #957542
          (f1ad17d)

2012-03-14 Sebastien Bacher

        * releasing version 1.92-0ubuntu1 (82e7ef0)
        * New upstream release. (6b63458)
        * Import upstream version 1.92 (fdf4d4c)

2012-03-14 Charles Kerr

        * 1.91 (af5642f) (tag: 1.92)

2012-02-23 Ken VanDine

        * releasing version 1.91-0ubuntu1 (eecdfb2)
        * New upstream release.   * Fix for the icon not changing when
          state changes (LP: #933466)   * Fix accessible
          descriptions (LP: #891932) (1d09e63)

2012-02-23 Ted Gould

        * releasing version 1.91-0ubuntu1~ppa1 (9539d05)
        * New upstream release.   * Fix for the icon not changing when
          state changes (LP: #933466)   * Fix accessible
          descriptions (LP: #891932) (b1bc105)
        * Import upstream version 1.91 (fd038ed)
        * Merging with U. Desktop (f775f62)
        * 1.91 (f1c5931) (tag: 1.91)

2012-02-22 Ted Gould

        * Fix accessible descriptions (500b6ee)

2012-02-22 Charles Kerr

        * when a new entry is added, ensure that its accessible_string is
          properly set (5396553)
        * fix trivial indentation error (92c0175)
        * fix trivial misspelling (f688c48)
        * fix set_accessible_desc() to update the entries' accessible_desc
          fields and emit the accessible-desc-changed signal
          (947e415)

2012-02-17 Ken VanDine

        * releasing version 1.90-0ubuntu2 (c80b2c6)

2012-02-17 Charles Kerr

        * Listen for the "g-properties-changed" signal instead of the
          "g-signal" signal from its GDBusProxy to fix bug #933466.
          (e1c4456)

2012-02-16 Charles Kerr

        * register for g-properties-changed rather than g-signal (94398e2)

2012-02-14 Sebastien Bacher

        * releasing version 1.90-0ubuntu1 (4dcb232)

2012-02-14 Ted Gould

        * releasing version 1.90-0ubuntu1~ppa1 (b33fcf3)
        * New upstream release.   * Support for hiding of icon and settings
          for it as well   * Adding a name hint (527b493)
        * Import upstream version 1.90 (55cbd83)
        * 1.90 (1651ec1) (tag: 1.90)
        * Fixing distcheck (e9cd101)
        * Make data have it's own makefile so the GSettings rules work
          properly on distcheck (612662f)
        * Style and performance fixes (ea4f2d8)

2012-02-14 Javier Jardón

        * Use G_GNUC_CONST for indicator_power_get_type() to improve
          performance (207267a)
        * Code style fixes (4a60cd5)

2012-02-13 Charles Kerr

        * add icon-policy from branch
          lp:~charlesk/indicator-power/icon-policy (16fb53f)
        * ensure that we don't have a reference to the proxy or proxy_cancel
          fields in indicator_power_dispose(). (aee1300)
        * move POWER_INDICATOR_ICON_POLICY_* enum to the top of the file
          (8be6c2d)
        * remove unncessary private field 'visible' (0c1e774)
        * consistent use of ICON_POLICY_KEY (cb4bd9d)
        * remove unnecessary G_OBJECT() cast (f7d828a)
        * make prototypes for update_visibility() and should_be_visible()
          align with the neighboring forward declarations (695ba1e)

2012-02-10 Ted Gould

        * Support building coverage targets (c8ccec6)

2012-02-01 Charles Kerr

        * add support for icon-policy setting (4b5ec3d)
        * create the menu at init time s.t. we don't have to keep checking to
          see if it exists (f9dc8cc)
        * use g_settings_bind() for the show-time checkbox (33beea0)
        * better error reporting if g_spawn_command_line_async() fails
          (da453ec)
        * remove redundant #include of glib.h (98a2abe)
        * use g_clear_object() on the proxy_cancel field (aacad61)
        * remove unnecessary Priv struct -- the =entire class= is private
          (4a6c629)
        * remove unused struct names (7cc07d1)
        * group the indicator_power lifecycle funcs together (7c8371d)
        * unref+clear Priv's variant fields in _dispose() (85a04b4)
        * don't leak priv->settings (17626e1)
        * don't leak priv->accessible_desc (c63e1db)
        * remove redundant prototypes (aa089d4)

2012-01-25 Ken VanDine

        * releasing version 0.10-0ubuntu2 (1566633)

2012-01-24 Ken VanDine

        * no change rebuild for libindicator7 (ba7c3ca)

2011-12-06 Allan LeSage

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

2011-11-30 Marco Trevisan (Treviño)

        * Add name-hint. (5e74455)

2011-11-08 Marco Trevisan (Treviño)

        * Add name-hint. (c4a85b1)

2011-10-24 Ken VanDine

        * releasing version 0.10-0ubuntu1 (36b6a7b)
        * Import upstream version 0.10 (8541fa2)

2011-10-13 Javier Jardón

        * 0.10 (31651dd) (tag: 0.10)
        * Do not hardcode icon percentage when discharging (15c23be)
        * Add support for old name icons (29f2613)
        * Fix icon creation for UP_DEVICE_STATE_CHARGING state (305a069)

2011-10-04 Javier Jardón

        * Only show a red icon when we have less than 30 minutes of battery
          remainig (129c0c9)

2011-10-03 Javier Jardón

        * Use battery-with-a-plug when the batttery is fully charged but
          still on AC (e1abe62)

2011-10-03 Ken VanDine

        * releasing version 0.9-0ubuntu2 (4518758)

2011-10-03 Javier Jardón

        * Show non present batteries in the menu (2d4b6f0)

2011-10-02 Javier Jardón

        * Add a workaround to fix the case when we get a empty bay as a real
          battery (f87057a)

2011-09-23 Ken VanDine

        * releasing version 0.9-0ubuntu1 (f0c76b8)
        * po/POTFILES.in   - Fixed gsettings schema filename (861bc3a)
        * Fix POTFILES.in to reflect new gsettings schema filename (c550405)
        * fixed filename for gsettings schema (7b20f91)
        * New upstream release.   - Use correct dgettext and g_dngettext
          calls (LP: #846895)   - Ensure we use the same icon for
          all charge levels if we are in the     charging status
          (LP: #824629)   - Fix gap when the power indicator is not
          show (LP: #842188)   - Do not show (charged) in menu title
          when fully charged (LP: #850011)   - Do not activate
          g-s-d, but just watch dbus for g-s-d to     appear (LP:
          #854717) (4596344)
        * Import upstream version 0.9 (56dd8ea)

2011-09-23 Javier Jardón

        * 0.9 (a93ea52) (tag: 0.9)

2011-09-21 Javier Jardón

        * Do not activate g-s-d, but just watch dbus for g-s-d to appear
          (50bee91)

2011-09-14 Javier Jardón

        * Do not show (charged) in menu title when fully charged (8be5a9d)

2011-09-12 Javier Jardón

        * 0.8 (8c55038) (tag: 0.8)
        * Fix a gap in the indicators region when the power indicator is not
          show (0c0a7b0)
        * Use the same icon for all charge levels if we are in the charging
          status (49ac0f5)

2011-09-11 Gabor Kelemen

        * Use correct dgettext and g_dngettext calls. LP: #846895 (0a74520)
        * Use correct dgettext and g_dngettext calls. LP: #846895 (8736942)

2011-09-08 Javier Jardón

        * Handle the case with broken batteries (14adfe5)

2011-09-07 Javier Jardón

        * indicator-power.c: Add padding between the icon and the text in the
          menu items (2fb4685)

2011-08-25 Javier Jardón

        * Use consistent location for gsettings schema (1c9c777)

2011-08-25 Ken VanDine

        * releasing version 0.7-0ubuntu2 (589843c)

2011-08-24 Javier Jardón

        * Fix a memory leak (bc4d8d4)

2011-08-23 Ken VanDine

        * releasing version 0.7-0ubuntu1 (a244894)

2011-08-23 Javier Jardón

        * Makefile.am: fix typo to include .gschema.xml.in to the dist
          (8f2d9f2)

2011-08-23 Ken VanDine

        * New upstream release.   - Use gsettings to store the status of
          "Show time in Menu Bar"     option (LP: #829853)   -
          Follow standard alignment of icons in menus (LP: #829697)
           - Do not use a space before an ellipsis at the end of a
          string.;  debian/control   - Added build depends for
          libglib2.0-dev (b72dbbd)
        * Import upstream version 0.7 (3751cc4)

2011-08-23 Javier Jardón

        * Fix typo in the gsettings schema: show_time -> show-time (bfa69e3)
        * Release 0.7 (b1a5f6e) (tag: 0.7)
        * Makefile.am: some autotools fixes (e7e437b)

2011-08-22 Javier Jardón

        * Add gsettings schema to the translatable files (ad80098)
        * Fix typo in the gsettings schema: show_time -> show-time (b2aec5e)
        * Use gsettings to store the status of "Show time in Menu Bar" option
          (84735ec)
        * Follow standard alignment of icons in menus (94b05b3)
        * Do not use a space before an ellipsis at the end of a string.
          (bd9dc3e)

2011-08-12 Ken VanDine

        * releasing version 0.6-0ubuntu2 (62b88ad)

2011-08-12 Javier Jardón

        * Do not show the default icon by default (37d7b33)

2011-08-12 Ken VanDine

        * releasing version 0.6-0ubuntu1 (593e1b7)

2011-08-12 Javier Jardón

        * Free memory in the correct place (d88054a)

2011-08-12 Ken VanDine

        * New upstream release.   - Show time left to use without brackets,
          time left to charge with     brackets. (LP: #824629)   -
          Fix some memory leaks   - Don't show settings links when
          used in a greeter   - Use a string when the energy source
          is not present instead     of 0%   - only batteries status
          icons are allowed in the menu title;  debian/rules:   -
          run intltool-update to update the translations template
          (lp: #820705) (e6361de)
        * Import upstream version 0.6 (edfb2ab)

2011-08-12 Javier Jardón

        * Release 0.6 (d5c1b2c) (tag: 0.6)
        * Show time left to use without brackets, time left to charge with
          brackets. (9c1a5e9)

2011-08-11 Javier Jardón

        * Fix some memory leaks (6322445)

2011-08-11 Michael Terry

        * Don't show settings links when used in a greeter (7a2c59a)

2011-08-11 Javier Jardón

        * Use a string when the energy source is not present (b36ac87)
        * Only batteries can be primary devices (329ed97)
        * Fix some memory leaks (68ee93b)

2011-08-03 Michael Terry

        * don't show settings links when used in a greeter (b62772e)

2011-08-03 Ken VanDine

        * releasing version 0.5-0ubuntu1 (28e2acb)
        * New upstream release.   - Set GETTEXT_PACKAGE to generate proper
          templates   - Dropped support for gnome-power-manage.
          debian/patches/fix_defines.patch   - removed, merged
          upstream (2cb1445)
        * Import upstream version 0.5 (e705925)

2011-08-03 Javier Jardón

        * Release 0.5 (1ad8d1f) (tag: 0.5)
        * Do not support the gnome-power-manager dbus interface anymore
          (7d7b78e)

2011-08-03 Ken VanDine

        * Fixed typos on checking for GSD and set the HAVE_GSD defines at
          build time (d58b6ad)

2011-08-03 Javier Jardón

        * configure.ac: Set GETTEXT_PACKAGE correctly to generate the expect
          template (5a3da6b)

2011-08-01 Ken VanDine

        * Set GETTEXT_PACKAGE to generate the expect template (df3af54)

2011-07-28 Ken VanDine

        * releasing version 0.4-0ubuntu3 (6b8997c)
        * fixed a syntax error on checking for GSD and set the HAVE_GSD
          defines at build time (534616d)
        * releasing version 0.4-0ubuntu2 (20013a8)

2011-07-26 Ken VanDine

        * releasing version 0.4-0ubuntu1 (f459bee)

2011-07-19 Ken VanDine

        *   - Always select a device (LP: #810872)   - Use the dbus interface
          provided in g-s-d 3.1.4;  debian/control   - Added build
          depends for gnome-settings-daemon-dev >= 3.1.4 (f982b44)
        * New upstream release. (dc8de37)
        * Import upstream version 0.4 (e9d8efc)

2011-07-18 Javier Jardón

        * Do not draw a separator between the configuration options in the
          menu (13d993e)
        * Use the new D-Bus interface if gnome-settings-daemon is new enough
          (99c94ac)

2011-07-15 Javier Jardón

        * Always select a device, doesnt matter Its charging/discharging or
          not (8b03674)
        * Makefile.am: Pass upower _FLAGS and _LIBS (9a7ee8c)

2011-07-14 Ken VanDine

        * releasing version 0.3-0ubuntu1 (a847f5b)
        * New upstream release.   - Refine the text of the items in the
          menu to follow the specification   - Draw option checkbox
          as check, not radio   - Show the apropiate icon depending
          of the status of the devices       Create new function to
          store the logic to put the primary device (f4706f0)
        * Import upstream version 0.3 (b891e8b)

2011-07-14 Javier Jardón

        * Do not show the device name in the menu title (d442569)
        * Release 0.3 (74a0c13) (tag: 0.3)
        * Show "X (charged)" if it is fully charged and not discharging
          (0cdc5de)
        * Only show the remaining time if it is discharging with less than 12
          hours left (ad01db7)
        * Refine the text of the items in the menu to follow the
          specification (cabdda6)

2011-07-14 Michael Terry

        * Draw option checkbox as check, not radio (f152ea5)

2011-07-14 Javier Jardón

        * Show the apropiate icon depending of the status of the devices
          (d104cd9)

2011-07-13 Michael Terry

        * draw option checkbox as check, not radio (af2a417)

2011-07-13 Javier Jardón

        * Create new function to store the logic to put the primary device
          (4bd6548)

2011-07-08 Ken VanDine

        * releasing version 0.2-0ubuntu1 (f3fe8b3)
        * New upstream release. (539a65b)
        * Import upstream version 0.2 (502f3f9)

2011-07-08 Javier Jardón

        * configure.ac: Add support for the new indicator3-0.4 (7652767)
        * configure.ac: Remove dbus service stuff (aefbd30)

2011-07-07 Ken VanDine

        * releasing version 0.1-0ubuntu1 (7c7458b)
        * Import upstream version 0.1 (0ad0de3)

2011-07-07 unknown

        * Packaging fixes (4713039)

2011-07-07 Ken VanDine

        * include creating .tar.gz dists as well, we still use these for
          packaging (d215c71)
        * Added COPYING file (843a1ad)
        * Removed cruft, we don't include a service (5464206)

2011-07-07 Javier Jardón

        * Do not use indicator_image_helper() (45f9aac)
        * Add support for multiple devices in the menu (9b83f48)
        * configure.ac: We only support GTK+3 (864d4bd)
        * Get all the available devices instead the primary one (86e4b38)

2011-07-06 Javier Jardon

        * Use the 'missing' icon instead the 'empty' icon by default
          (5db47ca)

2011-07-06 Ted Gould

        * Little things to make distcheck pass. (2cfdbd8)

2011-07-05 Ted Gould

        * Getting missing out of build-aux (0ba5df9)
        * Dropping missing because it's missing (28a27ee)
        * Putting in Dummy files for the build scripts (e6ea966)
        * Fixing a cut-and-paste error on POTFILES.in (0ee90af)

2011-07-05 Javier Jardon

        * Always show 2 digits for the minutes (8168150)
        * Fix typo (2957a0b)
        * Use a bigger icon for the menu items (fb991e3)
        * Use the correct string for the menu item icon (e0806a7)
        * Do not create a new GtkMenu instance with every change (70ebe79)
        * Do not use the notify:visible signal to update the menu (fed51c1)
        * Add po/Makevars file (0dce7db)
        * Add translatable files to POTFILES.in (b24a9bd)

2011-07-05 Javier Jardón

        * Remove debug output (7c3ed59)
        * Store the current device in the private structure (4de5875)
        * notify signal (fe2b41f)

2011-07-04 Javier Jardón

        * Add real info in the menu item (453148a)
        * Rebuild menu when there is a change in the DBUS interface (40b045d)
        * Move callbacks to the beginning of the file (a6b0041)
        * Construct the time details in a separate function (dd26fa3)
        * Build menu dynamically (f29bcda)

2011-07-01 Javier Jardón

        * Bump version to 0.1 (420e84d)
        * configure.ac: advertise if this is a local build (499a09e)
        * configure.ac: Remove the GTK+2 support (73d6282)
        * configure.ac: Remove not used ido dependency (a3ebc78)
        * Add some more kind of devices (95eb2b5)
        * Do not show the device name in the menu title (942311b)
        * Activate the use of icons in the menu (c38905e)
        * Use "Battery" instead "Laptop Battery" (637b5cd)
        * Return the correct accessible description (866c7d3)
        * Use the short time string in the label (6d4b1e0)
        * Get also a short time string (353d27d)
        * Add device name to the label (10050d9)

2011-06-30 Javier Jardón

        * Show the real information about the remaining charge time (2d3206b)
        * Show the remaining time in the status icon depending of the check
          menu item status (ad775de)
        * Remove "Icon Only" option (07ef8e0)
        * gnome-power-preferences has been moved to gnome-control-center
          (0f3b20e)
        * Specify what icon we want to show (7df8806)
        * Update the icon, not create a new one (950c5a0)
        * Fix default icon (10313d3)
        * Use device_icon name consistently (59ac588)
        * Change the status icon when the charge changes (363df28)

2011-06-29 Javier Jardón

        * Make the check menu items look like a radio menu item. (5b5a987)
        * Add options to the indicator menu (d049d2f)
        * Show the power statistics when click on the device menu item
          (b701513)
        * Populate menu: Add preferences menu item (b1d0f0e)

2011-06-28 Javier Jardón

        * Fix typo (3774122)
        * Process the data received from the gnome-power-manager service
          (88ee892)
        * indicator-power: connect to the gnome-power-manager service
          directly (8c9abf2)
        * Remove dbus interface in the client side (1e55136)
        * Remove libido dependency (ce435ff)
        * Remove power service for now (a749786)
        * indicator-power: Create the proxy for the service (dcec51a)

2011-06-27 Javier Jardón

        * configure.ac: Remove vala dependency (6be2b92)
        * Change copyright to Canonical Ltd (8775e20)
        * Implement power dbus service interface (65ab8e5)
        * power-service: Add more items to the menu (e9f91cf)
        * power-service: No need for a global variable (998509e)
        * Fix some typos (f348430)
        * power-service: Add an item to the menu (10f1e36)
        * Implement skeleton of power-service (09c4a91)
        * Implement skeleton of indicator-power (c6c1156)

2011-06-24 Javier Jardón

        * Some build fixes (05c4272)
        * Initial commit (e2d0b04)