aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
blob: bff759cd91823d78c31b79b6ee43452de17c5a8a (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
2020-10-30 15:00:16 +0100 Mike Gabriel

	* release 0.8.1 (HEAD -> master, tag: 0.8.1)

2020-10-30 14:59:36 +0100 Mike Gabriel (0ee1eb7)

	* locale: Add more languages.

2020-10-30 14:53:59 +0100 Mike Gabriel (bdb852e)

	* debian/copyright: Adopt from official Debian package.

2020-10-30 14:53:01 +0100 Mike Gabriel (dd2f32e)

	* src/*.vala: Fix license headers having been a mix of GPL and LGPL
          license text fragments. Adapt to GPL-3, fully.

2020-10-28 23:22:28 +0000 Milan Korecky (60858e9)

	* Translated using Weblate (Czech)

2020-10-27 15:44:27 +0100 Mike Gabriel (17eb55d)

	* release 0.8.0 (tag: 0.8.0)

2020-10-27 15:40:11 +0100 Mike Gabriel (128e70b)

	* locale: Update translation files once more.

2020-10-26 21:29:55 +0000 Adrià Martín (af8276b)

	* Translated using Weblate (Sardinian)

2020-10-26 21:55:03 +0000 Anders Jonsson (a60a03f)

	* Translated using Weblate (Swedish)

2020-10-27 01:46:42 +0000 Milo Ivir (0454b48)

	* Translated using Weblate (Croatian)

2020-10-26 12:13:32 +0000 Michele (371b394)

	* Translated using Weblate (Italian)

2020-10-26 12:26:14 +0000 Luna Jernberg (ab8f265)

	* Translated using Weblate (Swedish)

2020-10-26 12:44:03 +0100 Weblate (844cab1)

	* Added translation using Weblate (Norwegian Bokmål)

2020-10-26 12:43:59 +0100 Weblate (350b6b7)

	* Added translation using Weblate (German (Walser))

2020-10-26 12:43:57 +0100 Weblate (ac26ae9)

	* Added translation using Weblate (Shan)

2020-10-26 12:43:47 +0100 Weblate (e4c5357)

	* Added translation using Weblate (Meadow Mari)

2020-10-26 12:43:45 +0100 Weblate (6cbb817)

	* Added translation using Weblate (Crimean Tatar)

2020-10-26 12:43:40 +0100 Weblate (d7bfd86)

	* Added translation using Weblate (Bemba)

2020-10-26 12:43:35 +0100 Weblate (ac06bf7)

	* Added translation using Weblate (Manx)

2020-10-26 12:43:33 +0100 Weblate (b4c1325)

	* Added translation using Weblate (Chuvash)

2020-10-26 12:43:22 +0100 Weblate (fecb19e)

	* Added translation using Weblate (Corsican)

2020-10-26 12:43:20 +0100 Weblate (8221edb)

	* Added translation using Weblate (Chechen)

2020-10-26 12:43:12 +0100 Weblate (5e7dcdc)

	* Added translation using Weblate (Afar)

2020-10-26 12:43:06 +0100 Weblate (3d7bcc3)

	* Added translation using Weblate (Silesian)

2020-10-26 12:43:05 +0100 Weblate (5539664)

	* Added translation using Weblate (Sanskrit)

2020-10-26 12:43:00 +0100 Weblate (4102244)

	* Added translation using Weblate (Latin)

2020-10-26 12:42:58 +0100 Weblate (c714b3f)

	* Added translation using Weblate (Nyanja)

2020-10-26 12:42:51 +0100 Weblate (0cd8200)

	* Added translation using Weblate (French (Canada))

2020-10-26 12:42:50 +0100 Weblate (53d4e30)

	* Added translation using Weblate (Chinese (Traditional))

2020-10-26 12:42:42 +0100 Weblate (b0d399d)

	* Added translation using Weblate (Franco-Provençal)

2020-10-26 12:42:40 +0100 Weblate (1aa1562)

	* Added translation using Weblate (Ossetian)

2020-10-26 12:42:34 +0100 Weblate (85c946d)

	* Added translation using Weblate (Sindhi)

2020-10-26 12:42:26 +0100 Weblate (b3e900f)

	* Added translation using Weblate (Northern Sami)

2020-10-26 12:42:19 +0100 Weblate (5b6d5f8)

	* Added translation using Weblate (Burmese)

2020-10-26 12:42:17 +0100 Weblate (daf1c11)

	* Added translation using Weblate (Greenlandic)

2020-10-26 12:42:10 +0100 Weblate (2c5185a)

	* Added translation using Weblate (Assamese)

2020-10-26 12:42:01 +0100 Weblate (dad532c)

	* Added translation using Weblate (Sardinian)

2020-10-26 12:41:57 +0100 Weblate (d548538)

	* Added translation using Weblate (Wolof)

2020-10-26 12:41:54 +0100 Weblate (e381cc5)

	* Added translation using Weblate (Haitian)

2020-10-26 12:41:45 +0100 Weblate (9000576)

	* Added translation using Weblate (Central Kurdish)

2020-10-26 12:41:37 +0100 Weblate (fb6fb1f)

	* Added translation using Weblate (Uzbek)

2020-10-26 12:41:33 +0100 Weblate (5fc571d)

	* Added translation using Weblate (Urdu)

2020-10-26 12:41:31 +0100 Weblate (26fa61f)

	* Added translation using Weblate (Kyrgyz)

2020-10-26 12:41:26 +0100 Weblate (0089e99)

	* Added translation using Weblate (Kurdish)

2020-10-26 12:41:24 +0100 Weblate (91a466a)

	* Added translation using Weblate (Cornish)

2020-10-26 12:41:19 +0100 Weblate (1234775)

	* Added translation using Weblate (Sinhala)

2020-10-26 12:41:11 +0100 Weblate (ab02918)

	* Added translation using Weblate (Central Khmer)

2020-10-26 12:41:04 +0100 Weblate (7d7a313)

	* Added translation using Weblate (Kannada)

2020-10-26 12:40:55 +0100 Weblate (066fa6d)

	* Added translation using Weblate (Korean)

2020-10-26 12:40:54 +0100 Weblate (33d5f6b)

	* Added translation using Weblate (Albanian)

2020-10-26 12:40:46 +0100 Weblate (b580140)

	* Added translation using Weblate (Georgian)

2020-10-26 12:40:43 +0100 Weblate (b8daf91)

	* Added translation using Weblate (Faroese)

2020-10-26 12:40:36 +0100 Weblate (4a7d2a5)

	* Added translation using Weblate (Persian)

2020-10-26 12:40:26 +0100 Weblate (28d53c4)

	* Added translation using Weblate (Swedish)

2020-10-26 12:40:24 +0100 Weblate (5a73892)

	* Added translation using Weblate (Frisian)

2020-10-26 12:40:22 +0100 Weblate (bc956c0)

	* Added translation using Weblate (Nepali)

2020-10-26 12:40:17 +0100 Weblate (82f8857)

	* Added translation using Weblate (Indonesian)

2020-10-26 11:40:05 +0000 Mike Gabriel (f74e48b)

	* Translated using Weblate (German)

2020-10-26 12:40:10 +0100 Weblate (cc7b0a0)

	* Added translation using Weblate (Azerbaijani)

2020-10-26 12:40:05 +0100 Weblate (1f5eca0)

	* Added translation using Weblate (Interlingua)

2020-10-26 12:39:57 +0100 Weblate (a76c8c8)

	* Added translation using Weblate (Arabic)

2020-10-26 12:39:54 +0100 Weblate (d536a43)

	* Added translation using Weblate (Aragonese)

2020-10-26 12:39:43 +0100 Weblate (59f922c)

	* Added translation using Weblate (Amharic)

2020-10-26 12:39:37 +0100 Weblate (010e2c1)

	* Added translation using Weblate (Swahili)

2020-10-26 12:39:31 +0100 Weblate (57c3caa)

	* Added translation using Weblate (Afrikaans)

2020-10-26 12:39:28 +0100 Weblate (02f697e)

	* Added translation using Weblate (Marathi)

2020-10-26 12:39:27 +0100 Weblate (187f8ad)

	* Added translation using Weblate (Maori)

2020-10-26 12:39:22 +0100 Weblate (b44355f)

	* Added translation using Weblate (Malayalam)

2020-10-26 12:39:14 +0100 Weblate (278eb57)

	* Added translation using Weblate (Chinese (Simplified))

2020-10-26 12:39:10 +0100 Weblate (244fc0e)

	* Added translation using Weblate (Malagasy)

2020-10-26 12:39:09 +0100 Weblate (28d7c46)

	* Added translation using Weblate (English (Canada))

2020-10-26 12:39:08 +0100 Weblate (ef2233a)

	* Added translation using Weblate (English (Australia))

2020-10-26 12:38:53 +0100 Weblate (646216d)

	* Added translation using Weblate (Hebrew)

2020-10-26 12:38:49 +0100 Weblate (f685023)

	* Added translation using Weblate (Hindi)

2020-10-26 12:38:45 +0100 Weblate (ae9a510)

	* Added translation using Weblate (Slovenian)

2020-10-26 12:38:44 +0100 Weblate (4030019)

	* Added translation using Weblate (Slovak)

2020-10-26 12:38:43 +0100 Weblate (24420be)

	* Added translation using Weblate (Serbian)

2020-10-26 12:38:39 +0100 Weblate (c290f62)

	* Added translation using Weblate (Armenian)

2020-10-26 12:38:33 +0100 Weblate (d44744e)

	* Added translation using Weblate (Icelandic)

2020-10-26 12:38:22 +0100 Weblate (9db40ad)

	* Added translation using Weblate (Vietnamese)

2020-10-26 12:38:22 +0100 Weblate (7e13d0c)

	* Added translation using Weblate (Kazakh)

2020-10-26 12:38:13 +0100 Weblate (fe57f29)

	* Added translation using Weblate (Finnish)

2020-10-26 12:38:03 +0100 Weblate (7ff80f3)

	* Added translation using Weblate (Norwegian Nynorsk)

2020-10-26 12:38:03 +0100 Weblate (23f3c34)

	* Added translation using Weblate (Punjabi)

2020-10-26 12:37:59 +0100 Weblate (a8a31fb)

	* Added translation using Weblate (Dutch)

2020-10-26 12:37:51 +0100 Weblate (cdb33ab)

	* Added translation using Weblate (Pashto)

2020-10-26 12:37:46 +0100 Weblate (022a562)

	* Added translation using Weblate (Bosnian)

2020-10-26 12:37:43 +0100 Weblate (fe8ca94)

	* Added translation using Weblate (Italian)

2020-10-26 12:37:36 +0100 Weblate (466271c)

	* Added translation using Weblate (Uyghur)

2020-10-26 12:37:28 +0100 Weblate (6602d1e)

	* Added translation using Weblate (Malay)

2020-10-26 12:37:27 +0100 Weblate (3fb9c4a)

	* Added translation using Weblate (Breton)

2020-10-26 12:37:25 +0100 Weblate (c4e4deb)

	* Added translation using Weblate (Tibetan)

2020-10-26 12:37:25 +0100 Weblate (142771a)

	* Added translation using Weblate (Hungarian)

2020-10-26 12:37:25 +0100 Weblate (27d3666)

	* Added translation using Weblate (Asturian)

2020-10-26 12:37:21 +0100 Weblate (2db95e5)

	* Added translation using Weblate (Croatian)

2020-10-26 12:37:15 +0100 Weblate (2719865)

	* Added translation using Weblate (English (United Kingdom))

2020-10-26 12:37:12 +0100 Weblate (0656e05)

	* Added translation using Weblate (Belarusian)

2020-10-26 12:37:12 +0100 Weblate (58b5e76)

	* Added translation using Weblate (Portuguese)

2020-10-26 12:36:58 +0100 Weblate (0743ff0)

	* Added translation using Weblate (Romanian)

2020-10-26 12:36:54 +0100 Weblate (caab75c)

	* Added translation using Weblate (Czech)

2020-10-26 12:36:54 +0100 Weblate (248bf8e)

	* Added translation using Weblate (Basque)

2020-10-26 12:36:53 +0100 Weblate (6c3540a)

	* Added translation using Weblate (Welsh)

2020-10-26 12:36:47 +0100 Weblate (cf8fc28)

	* Added translation using Weblate (Esperanto)

2020-10-26 12:36:46 +0100 Weblate (069f23a)

	* Added translation using Weblate (Occitan)

2020-10-26 12:36:40 +0100 Weblate (763e389)

	* Added translation using Weblate (Japanese)

2020-10-26 12:36:35 +0100 Weblate (9aaaee7)

	* Added translation using Weblate (Ukrainian)

2020-10-26 12:36:21 +0100 Weblate (6aa4011)

	* Added translation using Weblate (Danish)

2020-10-26 12:36:20 +0100 Weblate (4d20163)

	* Added translation using Weblate (Bulgarian)

2020-10-26 12:36:16 +0100 Weblate (1112b20)

	* Added translation using Weblate (Chinese (Traditional, Hong Kong))

2020-10-26 12:36:16 +0100 Weblate (178d3d2)

	* Added translation using Weblate (Bengali)

2020-10-26 12:36:06 +0100 Weblate (8d9f018)

	* Added translation using Weblate (Russian)

2020-10-26 12:36:02 +0100 Weblate (a9fb625)

	* Added translation using Weblate (Tamil)

2020-10-26 12:36:01 +0100 Weblate (7855a93)

	* Added translation using Weblate (Filipino)

2020-10-26 12:35:54 +0100 Weblate (0eae014)

	* Added translation using Weblate (Estonian)

2020-10-26 12:35:53 +0100 Weblate (1340616)

	* Added translation using Weblate (Tajik)

2020-10-26 12:35:53 +0100 Weblate (aad6963)

	* Added translation using Weblate (Greek)

2020-10-26 12:35:46 +0100 Weblate (582557c)

	* Added translation using Weblate (German)

2020-10-26 12:35:44 +0100 Weblate (af59894)

	* Added translation using Weblate (Portuguese (Brazil))

2020-10-26 12:35:42 +0100 Weblate (f74eb77)

	* Added translation using Weblate (Tigrinya)

2020-10-26 12:35:41 +0100 Weblate (f81bd8a)

	* Added translation using Weblate (Thai)

2020-10-26 12:35:41 +0100 Weblate (96df519)

	* Added translation using Weblate (Telugu)

2020-10-26 12:35:32 +0100 Weblate (d3484c6)

	* Added translation using Weblate (Lao)

2020-10-26 12:35:30 +0100 Weblate (8675257)

	* Added translation using Weblate (Lithuanian)

2020-10-26 12:35:30 +0100 Weblate (7e6185a)

	* Added translation using Weblate (Luxembourgish)

2020-10-26 12:35:23 +0100 Weblate (d02f7d6)

	* Added translation using Weblate (Latvian)

2020-10-26 12:35:22 +0100 Weblate (370b61f)

	* Added translation using Weblate (Irish)

2020-10-26 12:35:22 +0100 Weblate (4817417)

	* Added translation using Weblate (Turkish)

2020-10-26 12:35:20 +0100 Weblate (479ef83)

	* Added translation using Weblate (Galician)

2020-10-26 12:35:20 +0100 Weblate (30506ae)

	* Added translation using Weblate (Gaelic)

2020-10-26 12:35:19 +0100 Weblate (6fe384e)

	* Added translation using Weblate (Valencian)

2020-10-26 12:35:19 +0100 Weblate (09c3f6b)

	* Added translation using Weblate (Gujarati)

2020-10-26 12:31:51 +0100 Mike Gabriel (b9d8876)

	* locale: Update translation files (add new .po files for just added
          languages).

2020-10-26 12:31:11 +0100 Mike Gabriel (bdc4882)

	* locale: Update LINGUAS file, with many new translations.

2020-10-26 12:25:02 +0100 Mike Gabriel (c5e0906)

	* locale: update translation files.

2020-10-26 12:23:23 +0100 Mike Gabriel (bd5008a)

	* Merge branch 'sunweaver-pr/locale-helper-scripts'

2020-10-25 23:33:21 +0100 Mike Gabriel (7930783)

	* Add locale helper scripts.

2020-10-26 12:18:39 +0100 Mike Gabriel (3c2271b)

	* debian/control: Add B-D: intltool.

2020-10-26 12:10:05 +0100 Mike Gabriel (a3c012d)

	* Merge branch 'sunweaver-pr/cmake-port'

2020-10-25 23:31:54 +0100 Mike Gabriel (e672e51)

	* Port from autotools to CMake.

2020-10-26 12:02:57 +0100 Mike Gabriel (d720a79)

	* Merge branch 'sunweaver-pr/debian-amendments'

2020-10-25 22:16:55 +0100 Mike Gabriel (46a83f4)

	* debian/control: Improve LONG_DESCRIPTION.

2020-10-25 16:28:53 +0100 Mike Gabriel (2ae8a3e)

	* debian/source/format: Add file (format 1.0).

2020-10-26 11:57:56 +0100 Mike Gabriel (3404e45)

	* Merge branch 'sunweaver-pr/indicator-specific-fixes'

2020-10-25 16:27:45 +0100 Robert Tari (33860bf)

	* src/*: Switch to new activate state connect approach, rathern than
          using notify["state"].connect.

2020-10-25 16:26:25 +0100 Robert Tari (fd44171)

	* src/bluez.vala: Make BLUEZ_BUSNAME 'const string' (not 'static
          const string').

2020-10-25 16:25:22 +0100 Robert Tari (89e7fc1)

	* src/*: Scope and white-space fixes.

2020-10-26 11:56:37 +0100 Mike Gabriel (d097481)

	* Merge branch 'sunweaver-pr/mate-support'

2020-10-25 16:24:53 +0100 Robert Tari (aae2a1f)

	* debian/control: Alternative dependency on mate-control-center.

2020-10-25 16:24:08 +0100 Robert Tari (c0de75c)

	* Make indicator aware of running inside the MATE desktop
          environment.

2020-10-26 11:46:12 +0100 Mike Gabriel (fc0145c)

	* configure.ac: Regression fix for 49e87fdb. Drop reference to
          data/upstart/Makefile. The data/upstart/ folder has been
          removed in the referenced commit.

2020-10-26 11:39:28 +0100 Mike Gabriel (4105028)

	* Merge branch 'sunweaver-pr/fix-localedir-variable-name'

2020-10-25 16:11:47 +0100 Robert Tari (447f27c)

	* Switch from GNOMELOCALEDIR to LOCALEDIR variable name.

2020-10-26 11:38:05 +0100 Mike Gabriel (c53da7f)

	* Merge branch 'sunweaver-pr/make-url-dispatcher-optional'

2020-10-25 23:05:45 +0100 Mike Gabriel (00c7151)

	* debian/control: Allow builds where liburl-dispatcher1-dev is not
          available.

2020-10-25 16:10:26 +0100 Robert Tari (babfaba)

	* Make dependency on liburl-dispatcher optional.

2020-10-26 11:35:57 +0100 Mike Gabriel (21b8f5e)

	* Merge branch 'sunweaver-pr/drop-ubuntuisms'

2020-10-25 15:57:31 +0100 Robert Tari (611df0c)

	* Drop bzr remnants. We are on Git these days.

2020-10-25 15:59:41 +0100 Robert Tari (49e87fd)

	* Drop upstart support.

2020-10-26 00:00:22 +0100 Robert Tari (73163e6)

	* Attributes GH PR #2:
          https://github.com/AyatanaIndicators/ayatana-indicator-bluetooth/pull/2
          Merge branch 'sunweaver-pr/ayatana-indicators-port' into
          master

2020-10-25 22:10:26 +0100 Robert Tari (6a5ff48)

	* debian/rules: Add --with autoreconf DH option.

2020-10-25 22:08:53 +0100 Robert Tari (8a508b6)

	* debian/rules: Move --fail-missing DH flag into dh_missing override.

2020-10-25 16:31:19 +0100 Robert Tari (1d1dd40)

	* debian/rules: Add dh_auto_test override that shows how to enable
          live test logs.

2020-10-25 16:14:34 +0100 Robert Tari (67376d6)

	* Switch over from Ubuntu System Indicator to Ayatana System
          Indicator.

2018-01-11 10:38:38 +0000 Dan Chapman (5024aaf)

	* Update Jenkinsfile

2017-11-01 02:03:57 +0100 Marius Gripsgard (bcd3785)

	* Update Jenkinsfile

2017-07-23 19:46:34 +0200 Marius Gripsgard (2a5ca18)

	* Update changelog

2017-07-23 17:24:48 +0200 Marius Gripsgard (ec3f329)

	* Imported to UBports

2016-10-23 09:02:28 +0000 Bileto Bot (bebb187)

	* Releasing 0.0.6+17.04.20161023-0ubuntu1

2016-10-23 09:01:58 +0000 Ted Gould (accdf32)

	* Adding an systemd user session unit

2016-10-22 11:06:54 +0200 Ted Gould (2e85ab9)

	* Fix variable name

2016-10-22 11:06:13 +0200 Ted Gould (8a43e4a)

	* Merging trunk

2016-10-03 10:15:04 +0000 Bileto Bot (285ce0f)

	* Releasing 0.0.6+16.10.20161003-0ubuntu1

2016-10-03 10:14:37 +0000 Robert Ancell (c41ef29)

	* Correctly use XDG_CURRENT_DESKTOP (LP: #1554878)

2016-07-20 08:57:59 +0200 Ted Gould (8d19980)

	* Adding a restart rule

2016-07-19 09:35:00 +0200 Ted Gould (7f2c3a6)

	* Install dep on indicator-common

2016-07-18 18:09:45 +0200 Ted Gould (475e5e0)

	* Adding an systemd user session unit

2016-06-07 10:18:08 +1200 Robert Ancell (6578e27)

	* Correctly use XDG_CURRENT_DESKTOP

2016-05-26 13:34:48 +0000 CI Train Bot (eb2d435)

	* Releasing 0.0.6+16.10.20160526-0ubuntu1

2016-05-26 13:34:46 +0000 Sebastien Bacher (1e4d22b)

	* Remove the "browse" action since there is no working backend Fixes:
          #1562822 Approved by: Robert Ancell, PS Jenkins bot

2016-05-12 17:44:25 +0200 Sebastien Bacher (04743cc)

	* Remove the "browse" action since there is no working backend

2016-02-14 21:13:56 +0000 CI Train Bot (7be3a46)

	* Releasing 0.0.6+16.04.20160214-0ubuntu1

2016-02-14 21:13:54 +0000 Charles Kerr (1c4b29c)

	* Change the indicator's Bluez class to watch for 'org.bluez' to
          appear/vanish on the system bus.

2016-02-14 15:05:19 -0600 Charles Kerr (20ea574)

	* in bluez.vala, silence a startup g_warning by calling
          init_bluez_state_vars() before we start listening for
          org.bluez on the bus

2016-02-14 14:52:35 -0600 Charles Kerr (4fc9eb3)

	* in bluez.vala, update our state properties when org.bluez vanishes
          from the bus

2016-02-14 14:46:38 -0600 Charles Kerr (55bd790)

	* in bluez.vala, create a symbolic name for bluez' busname

2016-02-14 14:45:44 -0600 Charles Kerr (5262691)

	* (trivial) remove trailing whitespace

2016-02-14 14:45:23 -0600 Charles Kerr (1e38642)

	* in bluez.vala, watch for org.bluez to be owned/unowned on the
          system bus

2015-09-29 09:36:03 +0000 CI Train Bot (cb2ad7c)

	* Releasing 0.0.6+15.10.20150929-0ubuntu1

2015-09-29 09:36:00 +0000 Robert Ancell (b01126f)

	* Check for NULL when getting cached properties Address and UUIDs.
          Fixes: #1497928 Approved by: PS Jenkins bot, Sebastien
          Bacher

2015-09-28 17:06:29 +1300 Robert Ancell (507aff2)

	* Check for NULL when getting cached properties Address and UUIDs

2015-09-15 14:15:38 +0000 CI Train Bot (99dc56c)

	* Releasing 0.0.6+15.10.20150915-0ubuntu1

2015-09-15 14:15:36 +0000 Sebastien Bacher (3a835ef)

	* under unity8 start system-settings instead unity-control-center
          Fixes: #1489490 Approved by: Charles Kerr, PS Jenkins bot

2015-08-27 15:24:22 +0100 Sebastien Bacher (8e6baf4)

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

2015-08-13 15:42:35 +0000 CI Train Bot (3d63ade)

	* Releasing 0.0.6+15.10.20150813-0ubuntu1

2015-08-13 15:42:32 +0000 Robert Ancell (cf886e1)

	* Support Bluez 5

2015-08-07 14:52:28 +1200 Robert Ancell (db3ee2a)

	* Remove unused argument in DBus interface

2014-12-11 15:50:16 +1300 Robert Ancell (682e614)

	* Support Bluez 5

2014-10-06 17:22:41 +0000 CI bot (b60855a)

	* Releasing 0.0.6+14.10.20141006-0ubuntu1

2014-10-06 17:22:30 +0000 Charles Kerr (9231c13)

	* Move the position of this indicator on the panel. Fixes: 1377294
          Approved by: Ted Gould, PS Jenkins bot

2014-10-06 11:50:57 -0500 Charles Kerr (2c5271e)

	* only rearrange the indicator position on the phone

2014-10-06 10:35:41 -0500 Charles Kerr (280728d)

	* move bluetooth indicator as per the 'Indicator RTM Usability Fixes'
          document

2014-09-22 14:03:08 +0000 CI bot (0a23919)

	* Releasing 0.0.6+14.10.20140922-0ubuntu1

2014-09-22 14:02:55 +0000 Mathieu Trudel-Lapierre (a5bb066)

	* Synchronize process management across indicators Fixes: 1232828
          Approved by: Charles Kerr, PS Jenkins bot

2014-09-22 09:01:48 -0500 Ted Gould (816d353)

	* Changlog for CI Train

2014-09-22 08:54:50 -0500 Mathieu Trudel-Lapierre (a365a5f)

	* Toggle rfkill again so that we have a chance of persisting the
          bluetooth state across reboots.

2014-02-26 10:33:46 -0600 Ted Gould (754b56d)

	* Update for gnome-fallback

2014-02-19 21:23:36 -0600 Ted Gould (df75643)

	* Putting the upstart directory in its own directory so it doesn't
          fight

2014-02-19 21:20:35 -0600 Ted Gould (514971d)

	* Add onlyshowin

2014-02-14 14:44:50 -0600 Ted Gould (3279417)

	* Start condition cleanup and respawn limits

2014-02-07 16:19:46 +0000 CI bot (c23fc96)

	* Releasing 0.0.6+14.04.20140207-0ubuntu1

2014-02-07 16:19:36 +0000 CI bot (06473b3)

	* Adding acceptance tests and merge review policies

2014-01-31 21:06:11 +0000 Ted Gould (546f3c5)

	* Adding acceptance tests and merge review policies.

2014-01-31 14:16:47 -0600 Ted Gould (58ec03d)

	* Adding merge review policy

2014-01-31 14:16:46 -0600 Ted Gould (6c339c1)

	* Adding basic acceptance tests

2014-01-24 14:33:51 +0000 Automatic PS uploader (869f373)

	* Releasing 0.0.6+14.04.20140124-0ubuntu1 (revision 79 from
          lp:indicator-bluetooth).

2014-01-24 10:59:56 +0000 Automatic PS uploader (8f8a2ea)

	* Releasing 0.0.6+14.04.20140124-0ubuntu1, based on r79

2014-01-22 17:37:58 +0000 Robert Ancell (8d51105)

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

2014-01-22 10:29:37 +1300 Robert Ancell (d364082)

	* Only run unity-control-center under unity

2014-01-14 17:39:09 +1300 Robert Ancell (722d610)

	* Recommend unity-control-center before gnome-control-center

2014-01-10 12:13:24 +1300 Robert Ancell (dce18d4)

	* Use unity-control-center if it is available

2013-12-18 16:11:32 +0000 Charles Kerr (7f23146)

	* Switching DBus service to an Upstart Job.

2013-12-18 06:56:59 -0600 Charles Kerr (c2536fe)

	* sync with trunk

2013-12-18 06:53:49 -0600 Charles Kerr (33dc5dc)

	* remove NotShowIn=Unity from the main .desktop file

2013-12-18 06:53:29 -0600 Charles Kerr (004680a)

	* add a second .desktop file to be installed in
          /usr/share/upstart/xdg/autostart with Hidden=true

2013-12-06 17:25:47 +0000 Charles Kerr (a996850)

	* Gets us a little closer to the spec in two ways:

2013-12-06 17:00:26 +0000 Charles Kerr (8c6f26a)

	* Switching DBus service to an Upstart Job.

2013-12-06 16:13:00 +0000 Charles Kerr (f1ebedf)

	* mark the 'Bluetooth' menuitem for translation

2013-12-06 16:08:49 +0000 Charles Kerr (1ada398)

	* change the bluetooth.supported property whenever bluez' default
          adapter changes its object path.

2013-12-06 15:36:56 +0000 Charles Kerr (a3b7b1c)

	* support header icon states as per the spec -- different icons for
          disabled, enabled, and enabled-with-connected-devices

2013-12-06 15:36:47 +0000 Charles Kerr (abc3e28)

	* add a 'connected' property as a simple hook to whether or not we
          have any connected bluetooth devices

2013-12-06 14:25:40 +0000 Charles Kerr (9d183eb)

	* on the desktop, show a bluetooth indicator if the hardware supports
          bluetooth and if the user has chosen for the indicator to
          be visible.

2013-10-29 12:04:12 +0000 Automatic PS uploader (a26756e)

	* Releasing 0.0.6+14.04.20131029.1-0ubuntu1 (revision 75 from
          lp:indicator-bluetooth).

2013-10-29 10:31:12 +0000 Automatic PS uploader (b08565f)

	* Releasing 0.0.6+14.04.20131029.1-0ubuntu1, based on r75

2013-10-28 18:10:47 +0000 Ted Gould (eab5e96)

	* Adding a phone_greeter profile.

2013-10-28 10:09:39 -0700 Ted Gould (eb110a2)

	* Adding a phone_greeter profile

2013-10-25 15:10:31 +0000 Charles Kerr (674cdd5)

	* explicitly instantiate GVariants to avoid leaking them. See the
          description in bug #1244468 for before & after C code and
          more information. Fixes:
          https://bugs.launchpad.net/bugs/1244468.

2013-10-24 19:19:20 -0500 Charles Kerr (1ad4f0f)

	* don't leak implicitly-created GVariants

2013-10-24 13:10:21 +0000 Lars Uebernickel (506ae9c)

	* Desktop menu: mark "Visible" menu item label as translatable.
          Fixes: https://bugs.launchpad.net/bugs/1242038.

2013-10-21 17:55:15 -0400 Lars Uebernickel (d753f21)

	* Desktop menu: mark "Visible" menu item label for translation

2013-10-18 15:08:25 +0000 Dmitrijs Ledkovs (0795831)

	* Define "ubiquity" indicator profile, reusing the greeter object.
          (LP: #1241539). Fixes:
          https://bugs.launchpad.net/bugs/1241539.

2013-10-18 13:28:04 +0100 Dmitrijs Ledkovs (2d76b5e)

	* Define "ubiquity" indicator profile, reusing the greeter object.
          (LP: #1241539)

2013-10-16 10:32:57 +0000 Automatic PS uploader (329794c)

	* Releasing 0.0.6+13.10.20131016-0ubuntu1 (revision 70 from
          lp:indicator-bluetooth).

2013-10-16 02:34:32 +0000 Automatic PS uploader (c48b164)

	* Releasing 0.0.6+13.10.20131016-0ubuntu1, based on r70

2013-10-15 16:12:42 +0000 Charles Kerr (08f4099)

	* When the user chooses to toggle bluetooth on or off, if /dev/rfkill
          isn't available, fall back to toggling org.bluez.Adapter's
          Powered property. Fixes:
          https://bugs.launchpad.net/bugs/1230275,
          https://bugs.launchpad.net/bugs/1236249.

2013-10-14 18:33:59 -0500 Charles Kerr (73cc5b0)

	* make org.bluez.Adapter's set_property() call nonblocking

2013-10-14 18:27:17 -0500 Charles Kerr (46d4ad6)

	* omit the rfkill killswitch altogether, leaving on/off to bluez via
          org.bluez.Adapter's Powered property

2013-10-14 18:25:57 -0500 Charles Kerr (e15cd36)

	* when listening to notify events from bluetooth to update desktop
          indicator visibility, add a specifier for which event to
          monitor

2013-10-14 12:50:05 -0500 Charles Kerr (5a14c4f)

	* if killswitch exists and is valid, prefer its use over toggling
          org.bluez.Adapter's Powered property

2013-10-11 08:38:51 -0500 Charles Kerr (f7ca11b)

	* if /dev/rfkill doesn't exist or isn't writable, then try to handle
          bluetooth toggles simply by toggling bluez Adapters'
          Powered property

2013-10-11 10:20:30 +0000 Automatic PS uploader (5fb7802)

	* Releasing 0.0.6+13.10.20131011-0ubuntu1 (revision 68 from
          lp:indicator-bluetooth).

2013-10-11 04:27:05 +0000 Automatic PS uploader (c0e9fd2)

	* Releasing 0.0.6+13.10.20131011-0ubuntu1, based on r68

2013-10-10 21:22:41 +0000 Charles Kerr (3145f10)

	* add an action whose state shows whether or not bluetooth is
          supported by the hardware, used by ubuntu-system-settings.
          Fixes: https://bugs.launchpad.net/bugs/1233628.

2013-10-10 14:58:46 -0500 Charles Kerr (0932c83)

	* add an action whose state shows whether or not bluetooth is
          supported by the hardware, used by ubuntu-system-settings

2013-10-04 10:19:31 +0000 Automatic PS uploader (5165b13)

	* Releasing 0.0.6+13.10.20131004-0ubuntu1 (revision 66 from
          lp:indicator-bluetooth).

2013-10-04 02:28:54 +0000 Automatic PS uploader (b1e6e1a)

	* Releasing 0.0.6+13.10.20131004-0ubuntu1, based on r66

2013-10-03 22:26:06 +0000 Charles Kerr (ea3f6e9)

	* Update settings URL to settings:///system. Fixes:
          https://bugs.launchpad.net/bugs/1231444.

2013-10-03 15:49:23 -0500 Charles Kerr (d6b2ff5)

	* Update settings URL to settings:///system

2013-10-02 15:01:12 +0000 Sebastien Bacher (e099052)

	* Don't list autogenerated files as translation sources.

2013-10-01 17:03:35 +0000 Ted Gould (656d54f)

	* Flip the dependency list so that ubuntu-system-settings doesn't get
          pulled in.

2013-10-01 13:06:27 +0200 Sebastien Bacher (1fc501b)

	* Don't list autogenerated files as translation sources

2013-09-30 12:20:51 +0000 Automatic PS uploader (eeb4c22)

	* Releasing 0.0.6+13.10.20130930-0ubuntu1 (revision 62 from
          lp:indicator-bluetooth).

2013-09-30 06:32:30 +0000 Automatic PS uploader (ad40c38)

	* Releasing 0.0.6+13.10.20130930-0ubuntu1, based on r62

2013-09-26 21:08:47 -0500 Ted Gould (ba13ff9)

	* Flip the dependency list so that ubuntu-system-settings doesn't get
          pulled in

2013-09-25 20:33:17 +0000 Charles Kerr (dadbe9e)

	* Use url-dispatcher instead of invoking system-settings directly.
          Fixes: https://bugs.launchpad.net/bugs/1230819.

2013-09-25 15:06:30 -0500 Charles Kerr (760dc3b)

	* use url-dispatcher instead of invoking system-settings directly.

2013-09-24 10:04:30 +0000 Automatic PS uploader (acbd029)

	* Releasing 0.0.6+13.10.20130924.2-0ubuntu1 (revision 60 from
          lp:indicator-bluetooth).

2013-09-24 08:58:34 +0000 Automatic PS uploader (5333068)

	* Releasing 0.0.6+13.10.20130924.2-0ubuntu1, based on r60

2013-09-23 16:51:16 +0000 Charles Kerr (e440832)

	* Handle the change-state event rather than notify["state"] so that
          there won't be any inconsistency between the action's
          state and the killswitch -- ie, the state won't change
          unless the killswitch toggle succeeds.

2013-09-23 10:22:08 -0500 Charles Kerr (2edd2fb)

	* use the change-state signal to handle bluetooth-enabled change
          requests. h/t larsu

2013-09-13 19:41:14 +0000 Automatic PS uploader (d42aa2d)

	* Releasing 0.0.6+13.10.20130913-0ubuntu1 (revision 58 from
          lp:indicator-bluetooth).

2013-09-13 15:15:49 +0000 Automatic PS uploader (e642f81)

	* Releasing 0.0.6+13.10.20130913-0ubuntu1, based on r58

2013-09-11 18:45:52 +0000 Charles Kerr (2c2f7da)

	* Adds a title in the header's action state. Fixes:
          https://bugs.launchpad.net/bugs/1223635.

2013-09-11 11:58:36 -0500 Charles Kerr (ff2593f)

	* add a title to the header's action state

2013-08-23 19:07:05 +0000 Automatic PS uploader (cb5ce56)

	* Releasing 0.0.6+13.10.20130823-0ubuntu1 (revision 56 from
          lp:indicator-bluetooth).

2013-08-23 18:07:31 +0000 Automatic PS uploader (58126cd)

	* Releasing 0.0.6+13.10.20130823-0ubuntu1, based on r56

2013-08-23 14:35:34 +0000 Charles Kerr (bf7ba1f)

	* Since we're not using the gnome-bluetooth vapi file, we shouldn't
          bundle it.

2013-08-23 14:25:42 +0000 Charles Kerr (43c384d)

	* Don't use deprecated GSimpleActionGroup APIs.

2013-08-22 11:25:21 -0500 Charles Kerr (076c482)

	* Don't use deprecated GSimpleActionGroup APIs.

2013-08-22 01:22:25 -0500 Charles Kerr (8b2bc6c)

	* remove vapi/gnome-bluetooth-1.0.vapi

2013-08-12 09:48:13 +0000 Automatic PS uploader (2ee6f89)

	* Releasing 0.0.6+13.10.20130812.1-0ubuntu1 (revision 53 from
          lp:indicator-bluetooth).

2013-08-12 06:06:38 +0000 Automatic PS uploader (8f6e427)

	* Releasing 0.0.6+13.10.20130812.1-0ubuntu1, based on r53

2013-08-10 04:26:27 +0000 Charles Kerr (f28653e)

	* Add phone profile. Export menus & actions using gio. Drops the gtk,
          dbusmenu, and libindicator build dependencies. Drops
          runtime dependency on gnome-blueooth in the phone profile.

2013-08-09 18:23:50 -0500 Charles Kerr (a061690)

	* remove the libindicator vapi file; it's no longer used.

2013-08-09 18:22:31 -0500 Charles Kerr (aacf0de)

	* create Profile.root_action in Profile's constructor.

2013-08-09 18:18:59 -0500 Charles Kerr (c1d8ca0)

	* on shutdown, unexport the menus and unown the bus name

2013-08-09 17:11:59 -0500 Charles Kerr (654ce42)

	* set indicatorsdir to $(datadir)/unity/indicators instead of
          $(prefix)/share/unity/indicators

2013-08-08 14:23:08 -0500 Charles Kerr (a6092a4)

	* in debian/control, make the bluez dependency explicit

2013-08-08 14:12:06 -0500 Charles Kerr (f77ffbd)

	* change control s.t. either ubuntu-system-settings, or
          (gnome-control-center && gnome-bluetooth), are a
          Dependency

2013-08-06 15:33:26 -0500 Charles Kerr (b82c9a9)

	* copyediting: whitespace, type inference

2013-08-06 15:21:44 -0500 Charles Kerr (df2bb30)

	* templated strings need to begin with a '@'

2013-08-06 14:17:09 -0500 Charles Kerr (a5c2cb1)

	* add src/bluez.c, src/desktop.c, src/phone.c to POTFILES.in

2013-08-06 13:43:31 -0500 Charles Kerr (bbca3ae)

	* copyediting: fix lines that wrap

2013-08-06 13:33:08 -0500 Charles Kerr (c920d6f)

	* add some extra comments

2013-08-06 13:08:06 -0500 Charles Kerr (cd19774)

	* copyediting: don't use 'this.' when it's not needed

2013-08-06 13:05:19 -0500 Charles Kerr (d4432eb)

	* bump version to 13.10.0

2013-08-06 13:01:58 -0500 Charles Kerr (7c0143b)

	* sync POTFILES.in with the new files in src/

2013-08-06 10:04:50 -0500 Charles Kerr (afafeed)

	* add device.vala to the repo

2013-08-05 19:56:44 -0500 Charles Kerr (6f6674a)

	* Remove dbusmenu, gtk, indicator dependencies. Only require
          gnome-bluetooth on the desktop.

2013-08-05 19:43:18 -0500 Charles Kerr (90a5d3f)

	* main() should return service.run()

2013-08-05 19:42:55 -0500 Charles Kerr (bae23fb)

	* copyediting: fix indentation in Service, fix copyright & author
          comments in bluez, service, main

2013-08-05 19:36:17 -0500 Charles Kerr (6492053)

	* promote shared functions up from Desktop to Profile so that Phone
          can use it too

2013-08-05 18:31:09 -0500 Charles Kerr (2d03420)

	* in phone and desktop, make 'action_state_for_root' private -- it's
          no longer in the Profile superclass.

2013-08-05 18:24:41 -0500 Charles Kerr (76efb05)

	* copyediting: readability + grouping related methods together

2013-08-05 17:47:31 -0500 Charles Kerr (77e298f)

	* pass the SimpleActionGroup handle into the profile object so that
          dynamically-added actions can get added/exported

2013-08-05 17:46:44 -0500 Charles Kerr (fcf74c7)

	* silence g_message scaffolding

2013-08-05 17:01:23 -0500 Charles Kerr (ccc5657)

	* edit killswitch for readability and to remove the iowatch in
          dispose()

2013-08-05 16:48:17 -0500 Charles Kerr (c1ce02f)

	* fully implement the bluez/device backend. in the desktop profile,
          add menuitems for the devices.

2013-08-03 10:48:02 -0500 Charles Kerr (9837ce8)

	* initial support for individual devices in Bluetooth class

2013-08-03 10:47:35 -0500 Charles Kerr (d73ae64)

	* tweak startup comments

2013-08-03 10:47:23 -0500 Charles Kerr (43059ed)

	* change the 'BluetoothMenu' superclass to 'Profile'

2013-08-01 20:30:08 -0500 Charles Kerr (dfd38e5)

	* move indicator3-0.4.vapi to the vapi dir. it'll go away soon
          enough...

2013-08-01 18:33:44 -0500 Charles Kerr (5bc8ff5)

	* improve documentation on Killswitch, Bluetooth, and Bluez

2013-08-01 18:21:05 -0500 Charles Kerr (cf89430)

	* add a bluetooth backend to track bluetooth being enabled, being
          hard/soft blocked, and its devices.

2013-08-01 01:34:47 -0500 Charles Kerr (3cc732f)

	* add per-profile icons and initial menus w/settings section

2013-07-31 23:09:41 -0500 Charles Kerr (39263df)

	* add main() to its own file

2013-07-31 23:04:40 -0500 Charles Kerr (761a9ff)

	* add a vapi/ directory off the top package directory

2013-07-31 22:59:30 -0500 Charles Kerr (143845e)

	* sync this indicator's i18n autoconf rules with the other indicators

2013-07-31 22:57:11 -0500 Charles Kerr (5140c09)

	* remove --enable-localinstall

2013-06-07 09:48:00 +0000 Automatic PS uploader (0391025)

	* Releasing 0.0.6daily13.06.07-0ubuntu1 to ubuntu.

2013-06-07 02:02:09 +0000 Automatic PS uploader (387eca4)

	* Releasing 0.0.6daily13.06.07-0ubuntu1, based on r51

2013-06-06 21:13:01 +0000 Jeremy Bicha (9cbe6f1)

	* This change will have indicator-bluetooth build against the default
          valac (for Ubuntu 13.10 this is currently valac 0.18 but
          we may switch to 0.20 as Debian testing already has). I
          have successfully test-built against valac-0.20.

2013-06-06 11:42:59 -0400 Jeremy Bicha (d80631e)

	* * debian/control:   - Build with valac (>= 0.18) instead of
          vala-0.18 for easier transitions

2013-02-19 12:05:46 +0000 Automatic PS uploader (ed790f8)

	* Releasing 0.0.6daily13.02.19-0ubuntu1 to ubuntu.

2013-02-19 02:01:50 +0000 Automatic PS uploader (4087b18)

	* Releasing 0.0.6daily13.02.19-0ubuntu1, based on r49

2013-02-15 22:37:27 +0000 Sebastien Bacher (7a4ce65)

	* breaks/replaces gnome-bluetooth (<< 3.6.1-0ubuntu2). Fixes:
          https://bugs.launchpad.net/bugs/1123115.

2013-02-15 12:17:50 +0100 Sebastien Bacher (f1e4c72)

	* breaks/replaces gnome-bluetooth (<< 3.6.1-0ubuntu2)

2013-02-12 10:47:09 +1300 Robert Ancell (8bda5c9)

	* Releasing 0.0.6

2013-02-11 20:25:30 +0000 Robert Ancell (c3b9103)

	* Support existing gsettings key to disable indicator. Fixes:
          https://bugs.launchpad.net/bugs/1115394.

2013-02-08 11:57:39 +1300 Robert Ancell (5ab20c1)

	* Support existing gsettings key to disable indicator

2013-02-08 11:38:17 +1300 Robert Ancell (4643e10)

	* Only show indicator if Bluetooth adapter present

2013-02-08 11:20:53 +1300 Robert Ancell (0166a12)

	* Add "Set Up New Device" menu item

2013-02-06 03:16:55 +0000 Michael Terry (b4ead8b)

	* A couple strings weren't marked for translation.

2013-02-06 03:04:15 +0000 Michael Terry (103c24e)

	* Add bootstrap message for Jenkins.

2013-02-05 11:16:20 -0500 Michael Terry (96acdc0)

	* add autolanding bootstrap message

2013-02-05 10:47:00 -0500 Mathieu Trudel-Lapierre (9f7df98)

	* Fix up changelog to match what is in the archive (release 0.0.5).

2013-02-05 10:41:04 -0500 Mathieu Trudel-Lapierre (c328f67)

	* With debhelper compat level 9, libexecdir no longer includes the
          package name. So use pkglibexecdir instead.

2013-02-05 10:39:34 -0500 Mathieu Trudel-Lapierre (ca53a57)

	* Inline packaging, for autolanding.

2013-02-04 10:39:43 -0500 Michael Terry (7112b9e)

	* add bzr-builddeb

2013-02-01 08:54:53 +1300 Robert Ancell (f338093)

	* Update license header

2013-01-31 12:42:17 -0500 Michael Terry (e3d1f4a)

	* install service into pkglibexecdir, not libexecdir

2013-01-31 12:35:03 -0500 Michael Terry (7471eb6)

	* update POTFILES and pot

2013-01-31 12:27:59 -0500 Michael Terry (ead9d50)

	* translate accessible descriptions

2013-01-31 12:19:41 -0500 Michael Terry (d2b21e0)

	* move debian/ inline

2013-01-31 12:16:24 -0500 Michael Terry (e73d88a)

	* relicense as GPL-3, not GPL-3+

2013-01-31 09:36:13 -0500 Michael Terry (06e6079)

	* Add COPYING file and fix license to be GPL-3, not GPL-3+

2013-01-31 11:10:38 +1300 Robert Ancell (748795c)

	* Stop items being duplicated on resume from suspend

2013-01-30 16:48:46 +1300 Robert Ancell (842e578)

	* Update LINGUAS

2013-01-24 05:34:10 +0000 Launchpad Translations on behalf of robert-ancell (6efdf5f)

	* Launchpad automatic translations update.

2013-01-15 05:31:26 +0000 Launchpad Translations on behalf of robert-ancell (c96b557)

	* Launchpad automatic translations update.

2013-01-11 14:08:14 +1300 Robert Ancell (0af35a7)

	* Releasing 0.0.3

2013-01-11 14:07:31 +1300 Robert Ancell (9107c64)

	* Fix indicator-bluetooth.service file having wrong library directory

2013-01-11 11:44:59 +1300 Robert Ancell (29eaa61)

	* Set useful values for accessible description

2013-01-08 06:02:31 +0000 Launchpad Translations on behalf of robert-ancell (f5413a1)

	* Launchpad automatic translations update.

2013-01-08 16:58:07 +1300 Robert Ancell (1f12196)

	* Releasing 0.0.2

2013-01-08 16:55:14 +1300 Robert Ancell (5619bd3)

	* Fix item disconnection

2013-01-08 16:46:00 +1300 Robert Ancell (bc42915)

	* Add start of accessible description

2013-01-08 16:38:11 +1300 Robert Ancell (3cdfd9a)

	* Hide items without options

2013-01-08 16:32:08 +1300 Robert Ancell (5430140)

	* Stop feedback loop when switch settings changed from external
          sources

2013-01-08 15:49:56 +1300 Robert Ancell (6895fc9)

	* Use ellipses in labels

2013-01-08 15:48:11 +1300 Robert Ancell (a725295)

	* Add LINGUAS

2013-01-08 15:47:26 +1300 Robert Ancell (df30168)

	* Merge in translations

2013-01-08 15:46:40 +1300 Robert Ancell (c424971)

	* Fix reversed logic on visible menu item

2012-12-16 05:25:49 +0000 Launchpad Translations on behalf of robert-ancell (589700f)

	* Launchpad automatic translations update.

2012-12-15 05:28:23 +0000 Launchpad Translations on behalf of robert-ancell (b430c43)

	* Launchpad automatic translations update.

2012-12-09 05:10:48 +0000 Launchpad Translations on behalf of robert-ancell (237fa94)

	* Launchpad automatic translations update.

2012-12-06 17:55:43 +1300 Robert Ancell (9a8b4ff)

	* Make enable label 'Bluetooth' to match design

2012-12-06 16:29:47 +1300 Robert Ancell (07e85b5)

	* Check in translations

2012-12-06 16:03:36 +1300 Robert Ancell (bf24e68)

	* Ignore files

2012-12-06 15:58:44 +1300 Robert Ancell (b121a13)

	* Get distcheck working

2012-12-06 15:55:20 +1300 Robert Ancell (0119cb8)

	* Fix icon

2012-12-06 15:35:57 +1300 Robert Ancell (4993d0a)

	* Make into a proper indicator

2012-12-05 14:09:59 +1300 Robert Ancell (34c7299)

	* Add icons

2012-12-05 14:03:42 +1300 Robert Ancell (6309b14)

	* Add connect button

2012-12-05 11:11:58 +1300 Robert Ancell (a958c28)

	* Only add required elements to submenus

2012-12-05 10:46:57 +1300 Robert Ancell (90a0f1b)

	* Add bug link for workaround

2012-12-05 09:31:55 +1300 Robert Ancell (22bfe32)

	* Workaround a bug in libappindicator3

2012-12-04 17:00:48 +1300 Robert Ancell (904619d)

	* Fix visible toggle

2012-12-04 16:59:09 +1300 Robert Ancell (5f29593)

	* Only show devices, not adapters

2012-12-04 16:55:15 +1300 Robert Ancell (f2e15cb)

	* Tidy up gnome-bluetooth-1.0.vapi

2012-12-04 16:41:13 +1300 Robert Ancell (35ab354)

	* Correctly set icon

2012-12-04 16:34:30 +1300 Robert Ancell (7dd1e1a)

	* Use GnomeBluetooth.Killswitch instead of reading /dev/rfkill
          directly

2012-12-04 15:24:49 +1300 Robert Ancell (c9759cf)

	* Use GnomeBluetooth instead of bluez directly

2012-10-11 19:07:48 +1300 Robert Ancell (de24772)

	* Check device class

2012-10-11 18:30:05 +1300 Robert Ancell (8e5d7ea)

	* Fix visible toggle

2012-10-11 18:20:47 +1300 Robert Ancell (072e048)

	* Abstract out bluez more

2012-10-11 12:01:44 +1300 Robert Ancell (ca444db)

	* Get killswitch working

2012-10-11 08:42:59 +1300 Robert Ancell (f14da3c)

	* First start on bluetooth-indicator