aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 997b3db45b8ec9d92d680bd19373aa45ef89c668 (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
2023-10-12 Mike Gabriel

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

2023-10-10 Mike Gabriel

        * po/: Update translatio files. (485e539)

2023-09-15 gallegonovato

        * Translated using Weblate (Spanish) (1aa2edd)

2023-09-11 Mike Gabriel

        * Translated using Weblate (German) (1b705e5)

2023-09-09 Mike Gabriel

        * Merge branch 'tari01-pr/fix-schema-translation' (33d4e81)

2023-09-07 Robert Tari

        * Fix gschema file translation (cfde53e)

2023-09-09 Mike Gabriel

        * Merge branch 'tari01-pr/drop-testing' (99055f6)

2023-09-08 Robert Tari

        * src/desktop.vala: Use blueman-manager for settings on XFCE
          (0f4312d)

2023-09-06 Kieran W

        * Translated using Weblate (English (United Kingdom)) (145f43c)

2023-09-08 Mike Gabriel

        * Merge branch 'tari01-pr/xfce-blueman-settings' (6ca2230)

2023-09-08 Robert Tari

        * src/desktop.vala: Use blueman-manager for settings on XFCE
          (15beb49)

2023-09-06 Kieran W

        * Translated using Weblate (English (United Kingdom)) (2ea6783)

2023-09-06 Robert Tari

        * Drop testing/coverage options (1d29622)

2023-07-01 spnux

        * Translated using Weblate (French) (25889d6)

2023-06-27 Sylke Vicious

        * Translated using Weblate (Italian) (1f17e86)

2023-06-22 Joan CiberSheep

        * Translated using Weblate (Catalan) (90e42cd)

2023-05-20 Milo Ivir

        * Translated using Weblate (Croatian) (d9ab7e4)

2023-04-20 Vilakone Thammavong

        * Translated using Weblate (Lao) (4b30503)

2023-04-06 ssantos

        * Translated using Weblate (Portuguese) (1b8d615)

2023-03-15 Heimen Stoffels

        * Translated using Weblate (Dutch) (ba3cdca)

2023-03-03 gallegonovato

        * Translated using Weblate (Spanish) (2e8c59d)

2023-02-15 Mike Gabriel

        * release 22.9.1 (bc43252) (tag: 22.9.1)
        * Merge branch 'tari01-pr/icon-to-bus-lomiri' (c6dc3d1)

2023-02-14 Robert Tari

        * src/profile.vala: Send all menu root properties to D-Bus on Lomiri
          regardless of the Bluetooth state (fe15518)

2023-02-10 Luna Jernberg

        * Translated using Weblate (Swedish) (a924392)

2023-01-06 Andy Chiang

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

2022-12-30 Milo Ivir

        * Translated using Weblate (Croatian) (a393385)

2022-10-19 Kristjan Räts

        * Translated using Weblate (Estonian) (f90fbf4)

2022-10-01 Mubarek Seyd Juhar

        * Translated using Weblate (Tigrinya) (b80b675)

2022-09-29 이정희

        * Translated using Weblate (Korean) (25cb087)

2022-09-25 Oğuz Ersen

        * Translated using Weblate (Turkish) (f9bdc36)
        * Translated using Weblate (Turkish) (4f8f75a)

2022-09-14 Sergii Horichenko

        * Translated using Weblate (Ukrainian) (c70652c)
        * Translated using Weblate (Russian) (078e185)

2022-09-14 Mike Gabriel

        * release 22.9.0 (f7b910d) (tag: 22.9.0)

2022-09-14 Milan Korecky

        * Translated using Weblate (Czech) (01eb12d)

2022-09-14 Mike Gabriel

        * po/*.po{,t}: Translation strings update (esp. source file
          references). (2ffdf6a)
        * update-po{,t}.sh: Also catch multi-file source file references.
          (a2bfe09)
        * po/*.po: Update translation strings. (989f4a2)

2022-09-13 Robert Tari

        * Merge branch 'sunweaver-pr/beautify-paths-in-pot-file' (743c3b5)

2022-09-07 Quentin PAGÈS

        * Translated using Weblate (Occitan) (1f878cf)

2022-09-07 Moo

        * Translated using Weblate (Lithuanian) (786e35e)

2022-09-06 Wellington Terumi Uemura

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

2022-09-05 Mike Gabriel

        * Translated using Weblate (German) (1471d82)

2022-09-05 Eric

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

2022-09-05 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (9c0f84b)

2022-09-05 Mike Gabriel

        * Translated using Weblate (German) (590fd16)

2022-09-11 Mike Gabriel

        * po/ayatana-indicator-bluetooth.pot: Update file. (093d011)
        * update-po{,t}.sh: Omit ../ at beginning of file names in .pot file.
          (24033c3)

2022-09-07 Quentin PAGÈS

        * Translated using Weblate (Occitan) (a651610)

2022-09-07 Moo

        * Translated using Weblate (Lithuanian) (c641890)

2022-09-06 Wellington Terumi Uemura

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

2022-09-05 Mike Gabriel

        * Translated using Weblate (German) (4726c38)

2022-09-05 Eric

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

2022-09-05 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (972ac03)

2022-09-05 Mike Gabriel

        * Translated using Weblate (German) (1db42be)
        * po/*.po{,t}: Translation strings update. (5fee084)
        * Merge branch 'tari01-pr/hide-icon-if-no-adapter' (26e135a)

2022-07-22 Mike Gabriel

        * src/profile.vala: Add tooltip. (19530d5)

2022-08-06 Quentin PAGÈS

        * Translated using Weblate (Occitan) (4bdc03c)

2022-09-01 Mike Gabriel

        * Merge branch 'sunweaver-pr/tooltip-support' (710c133)

2022-07-22 Mike Gabriel

        * src/profile.vala: Add tooltip. (f47463e)

2022-08-06 Quentin PAGÈS

        * Translated using Weblate (Occitan) (a683585)

2022-08-01 Robert Tari

        * Hide bluetooth icon on hardware without bluetooth support (5ebb1a3)

2022-07-27 Sergii Horichenko

        * Translated using Weblate (Ukrainian) (ed77cff)

2022-07-14 Teitei

        * Translated using Weblate (Burmese) (2f1676f)

2022-06-26 Mike Gabriel

        * Merge branch 'peat-psuwit-qmenumodel-compat' (4048650)

2022-06-22 Ratchanan Srirattanamet

        * src/*.vala: make the switch item & action QMenuModel compatible
          (b3adf1f)

2022-06-14 Mike Gabriel

        * Translated using Weblate (German) (1e922c2)

2022-04-23 Sergii Horichenko

        * Translated using Weblate (Russian) (191e8c2)
        * Translated using Weblate (Ukrainian) (6afb61b)
        * Translated using Weblate (Russian) (3568eb4)
        * Translated using Weblate (Ukrainian) (5f68674)
        * Translated using Weblate (Ukrainian) (6968ff0)

2022-02-27 이정희

        * Translated using Weblate (Korean) (8e58a6d)

2022-02-28 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (e0a57e2)

2022-02-17 Mike Gabriel

        * release 22.2.0 (f2281a9) (tag: 22.2.0)

2022-02-16 Mike Gabriel

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

2022-02-16 Robert Tari

        * data/CMakeLists.txt: Drop unused pkglibexecdir definition (7b61cdf)

2022-02-08 Robert Tari

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

2022-02-02 Aung Xange

        * Translated using Weblate (Burmese) (7c9505f)

2022-01-27 Mike Gabriel

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

2022-01-11 Robert Tari

        * .build.yml: Drop extra compilation flags and build with -Werror
          (b1fd511)
        * CMakeLists.txt: Clean up compilation flags (a7c80f6)

2022-01-02 ssantos

        * Translated using Weblate (Portuguese) (1267d39)

2021-12-15 Mike Gabriel

        * Merge branch 'tari01-pr/fix-device-section-layout' (aed99ec)

2021-12-15 Robert Tari

        * src/desktop.vala: Fix device section layout (706ba0d)

2021-12-15 Mike Gabriel

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

2021-12-06 Robert Tari

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

2021-11-18 phlostically

        * Translated using Weblate (Esperanto) (a556eb8)

2021-11-17 Mike Gabriel

        * release 0.9.0 (0ec67c2) (tag: 0.9.0)

2021-11-16 Phil Clifford

        * Translated using Weblate (Gaelic) (53e179e)

2021-11-05 Andrej Shadura

        * Translated using Weblate (Slovak) (fdd5521)

2021-11-04 Michele

        * Translated using Weblate (Italian) (74b2a7a)

2021-11-03 ElectrifiedSpeed

        * Translated using Weblate (Macedonian) (103d42c)

2021-11-02 Mike Gabriel

        * Merge branch 'tari01-pr/drop-merge-review' (2e4774e)

2021-11-02 Robert Tari

        * Drop all references to MERGE-REVIEW (6d61bfd)

2021-10-26 Robert Tari

        * Merge branch 'sunweaver-pr/travis-cleanup' (f0c22a8)

2021-10-25 Mike Gabriel

        * .build.yml: Remove source code of locally built dependency after it
          has been installed. (0472b40)

2021-10-26 Mike Gabriel

        * .build.yml. Skip cppcheck run for the bluetooth indicator, only
          Vala code in here. (a300ef3)

2021-10-25 Mike Gabriel

        * .build.yml: If we ever start having unit tests, run those unit
          tests in build_scripts: target. (7bec1ae)
        * .build.yml: Drop autogen.sh support. (3d03427)

2021-10-22 Robert Tari

        * data/CMakeLists.txt: Do not use automatic GSchema compilation
          (8be805d)

2021-10-21 Mike Gabriel

        * Merge branch 'tari01-pr/use-intltool-merge-translations' (253e534)

2021-10-21 Robert Tari

        * data/CMakeLists.txt: Use intltool_merge_translations instead of
          execute_process (2e7199e)

2021-10-20 Robert Tari

        * .travis.yml: Temporarily disable ppc64le builds (a77ead4)

2021-10-20 Mike Gabriel

        * Merge branch 'tari01-pr/compile-gschema-during-installation'
          (ed27074)

2021-10-20 Robert Tari

        * Compile GSchema during installation (2ee00dd)

2021-09-02 Robert Tari

        * .build.yml: Also run unit tests during CI builds against Ubuntu.
          (f75ac44)

2021-09-23 Wellington Terumi Uemura

        * Translated using Weblate (Portuguese (Brazil)) (3ea1fef)

2021-09-02 Robert Tari

        * Fix Travis status image (61b6fcf)

2021-08-29 Mike Gabriel

        * debian/{control,compat}: Bump to level 10. (25ea618)
        * debian/changelog: Syntax fix. (cba8d5f)
        * debian/rules: Enable unit tests with the new way. (c9adf52)

2021-08-28 Mike Gabriel

        * po/: Split up ku.po into ckb.po, kmr.po, and sdh.po. (5b126ad)
        * .travis.yml: Fix branch name what is now the default branch in
          ayatana-dev-scripts. (008ccb8)
        * debian/control: Add B-D: libayatana-common-dev (>= 0.9.3).
          (11f9570)
        * Merge branch 'tari01-pr/drop-lomiri-url-dispatcher' (5699940)

2021-08-27 Robert Tari

        * debian/: Drop all references to lomiri-url-dispatcher (5849ff3)
        * .build.yml: Adjust to lomiri-url-dispatcher being an optional
          dependency of libayatana-common; Debian 11 has been
          released, so drop debian:stable specific requirements."
          (c0df5d0)
        * Drop lomiri-url-dispatcher (fe24f8d)

2021-08-28 Mike Gabriel

        * Merge branch 'tari01-pr/use-libayatana-common' (3e827b8)

2021-08-27 Robert Tari

        * Add libayatana-common dependencies (9ca4205)
        * Replace code with libayatana-common functions (3e045e8)

2021-08-28 Mike Gabriel

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

2021-08-09 Robert Tari

        * Add ENABLE_WERROR option (6bddc11)

2021-08-28 Mike Gabriel

        * Merge branch 'tari01-pr/fix-duplicate-languages' (7d10907)

2021-07-28 Robert Tari

        * Remove duplicate translation files (a523864)

2021-08-04 Mike Gabriel

        * Merge branch 'tari01-pr/cmake-install-full' (b48e316)

2021-08-03 Robert Tari

        * Use CMAKE_INSTALL_FULL_*DIR locations for installation (2ea849e)

2021-08-04 Mike Gabriel

        * Merge branch 'tari01-pr/add-documentation-and-build-instructions'
          (3675599)

2021-07-28 Robert Tari

        * Add documentation and build instructions (c200a3d)

2021-08-04 Mike Gabriel

        * Merge branch 'tari01-pr/add-standard-cmake-bits' (cbfecc6)

2021-07-28 Robert Tari

        * Add standard Ayatana CMake bits (fb099bb)

2021-07-15 Boyuan Yang

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

2021-05-22 Yaron Shahrabani

        * Translated using Weblate (Hebrew) (83d34cb)

2021-05-04 Robert Tari

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

2021-05-01 Tomáš Marný

        * Translated using Weblate (Czech) (7aa2d3b)

2021-03-29 Weblate

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

2021-03-18 Reza Almanda

        * Translated using Weblate (Indonesian) (48b55c6)

2021-05-04 Mike Gabriel

        * .travis.yml: Don't try running autotools based CI build. (c89874f)
        * Travis CI: Disable unit test runs (none present). (6c28702)
        * Travis CI: Initial draft for CI builds. (b3a3958)

2021-05-01 Tomáš Marný

        * Translated using Weblate (Czech) (977400d)

2021-03-29 Weblate

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

2021-03-18 Reza Almanda

        * Translated using Weblate (Indonesian) (46166aa)

2021-02-04 Mike Gabriel

        * post-release update of debian/changelog (720dbfe)

2021-02-03 Mike Gabriel

        * release 0.8.2 (43c78e6) (tag: 0.8.2)
        * src/CMakeLists.txt: Fix loading VAPI file for
          lomiri-url-dispatcher. (3832935)

2021-02-03 Robert Tari

        * Merge branch 'sunweaver-pr/finalize-lomiri-url-dispatcher-port'
          (697f09a)

2021-02-03 Mike Gabriel

        * Finalize incomplete switch to Lomiri URL Dispatcher. (a0a8973)
        * debian/control: Switch from url-dispatcher to
          lomiri-url-dispatcher. (8d6ed86)

2021-01-28 Milo Ivir

        * Translated using Weblate (Croatian) (b406121)

2021-01-27 Mike Gabriel

        * debian/control: Make B-D on dh-systemd optional (fixes FTBFS in
          Debian bullseye). (5817d4a)

2021-01-16 Kristjan Räts

        * Translated using Weblate (Estonian) (0d81295)

2020-12-30 J. Lavoie

        * Translated using Weblate (French (Canada)) (43bff8e)
        * Translated using Weblate (English (Canada)) (db1edad)
        * Translated using Weblate (English (United Kingdom)) (ede9d94)
        * Translated using Weblate (German) (f1ecac8)

2020-12-29 Wellington Terumi Uemura

        * Translated using Weblate (Portuguese (Brazil)) (4632ce2)

2020-12-30 J. Lavoie

        * Translated using Weblate (French) (101b074)

2020-12-23 Luna Jernberg

        * Translated using Weblate (Swedish) (2575b09)

2020-12-22 Mike Gabriel

        * Merge branch 'tari01-pr/devices-to-sections' (e077724)

2020-12-22 Robert Tari

        * Show devices in sections (0f5f6c0)

2020-12-22 Mike Gabriel

        * Merge branch 'tari01-pr/build-warnings' (14e884b)

2020-12-21 Robert Tari

        * Fix build warnings (3bbded7)

2020-12-22 Mike Gabriel

        * Merge branch 'tari01-pr/do-not-hide-the-indicator' (4634e40)

2020-12-21 Robert Tari

        * desktop.vala: Do not hide the indicator (85de671)

2020-11-26 Ács Zoltán

        * Translated using Weblate (Hungarian) (50669be)

2020-11-23 Adolfo Jayme Barrientos

        * Translated using Weblate (Spanish) (ef717cb)

2020-11-17 Moo

        * Translated using Weblate (Lithuanian) (fc0410d)

2020-11-13 Mike Gabriel

        * Merge branch 'comradekingu-patch-1' (a173cf6)

2020-11-10 Allan Nordhøy

        * Spelling: Bluetooth (ecdfded)
        * Translated using Weblate (Norwegian Bokmål) (cb5f6ae)

2020-11-11 Oğuz Ersen

        * Translated using Weblate (Turkish) (f398362)

2020-11-07 Quentin PAGÈS

        * Translated using Weblate (Occitan) (12531f6)

2020-11-06 Ács Zoltán

        * Translated using Weblate (Hungarian) (ca86d83)

2020-10-31 Joan CiberSheep

        * Translated using Weblate (Catalan) (663bafa)

2020-10-30 Mike Gabriel

        * src/*.vala: Follow-up fix for dd2f32e2 (fixing GPL-3 license texts
          in file headers). (2191d31)
        * release 0.8.1 (5c72d42) (tag: 0.8.1)
        * locale: Add more languages. (0ee1eb7)
        * debian/copyright: Adopt from official Debian package. (bdb852e)
        * src/*.vala: Fix license headers having been a mix of GPL and LGPL
          license text fragments. Adapt to GPL-3, fully. (dd2f32e)

2020-10-28 Milan Korecky

        * Translated using Weblate (Czech) (60858e9)

2020-10-27 Mike Gabriel

        * release 0.8.0 (17eb55d) (tag: 0.8.0)
        * locale: Update translation files once more. (128e70b)

2020-10-26 Adrià Martín

        * Translated using Weblate (Sardinian) (af8276b)

2020-10-26 Anders Jonsson

        * Translated using Weblate (Swedish) (a60a03f)

2020-10-27 Milo Ivir

        * Translated using Weblate (Croatian) (0454b48)

2020-10-26 Michele

        * Translated using Weblate (Italian) (371b394)

2020-10-26 Luna Jernberg

        * Translated using Weblate (Swedish) (ab8f265)

2020-10-26 Weblate

        * Added translation using Weblate (Norwegian Bokmål) (844cab1)
        * Added translation using Weblate (German (Walser)) (350b6b7)
        * Added translation using Weblate (Shan) (ac26ae9)
        * Added translation using Weblate (Meadow Mari) (e4c5357)
        * Added translation using Weblate (Crimean Tatar) (6cbb817)
        * Added translation using Weblate (Bemba) (d7bfd86)
        * Added translation using Weblate (Manx) (ac06bf7)
        * Added translation using Weblate (Chuvash) (b4c1325)
        * Added translation using Weblate (Corsican) (fecb19e)
        * Added translation using Weblate (Chechen) (8221edb)
        * Added translation using Weblate (Afar) (5e7dcdc)
        * Added translation using Weblate (Silesian) (3d7bcc3)
        * Added translation using Weblate (Sanskrit) (5539664)
        * Added translation using Weblate (Latin) (4102244)
        * Added translation using Weblate (Nyanja) (c714b3f)
        * Added translation using Weblate (French (Canada)) (0cd8200)
        * Added translation using Weblate (Chinese (Traditional)) (53d4e30)
        * Added translation using Weblate (Franco-Provençal) (b0d399d)
        * Added translation using Weblate (Ossetian) (1aa1562)
        * Added translation using Weblate (Sindhi) (85c946d)
        * Added translation using Weblate (Northern Sami) (b3e900f)
        * Added translation using Weblate (Burmese) (5b6d5f8)
        * Added translation using Weblate (Greenlandic) (daf1c11)
        * Added translation using Weblate (Assamese) (2c5185a)
        * Added translation using Weblate (Sardinian) (dad532c)
        * Added translation using Weblate (Wolof) (d548538)
        * Added translation using Weblate (Haitian) (e381cc5)
        * Added translation using Weblate (Central Kurdish) (9000576)
        * Added translation using Weblate (Uzbek) (fb6fb1f)
        * Added translation using Weblate (Urdu) (5fc571d)
        * Added translation using Weblate (Kyrgyz) (26fa61f)
        * Added translation using Weblate (Kurdish) (0089e99)
        * Added translation using Weblate (Cornish) (91a466a)
        * Added translation using Weblate (Sinhala) (1234775)
        * Added translation using Weblate (Central Khmer) (ab02918)
        * Added translation using Weblate (Kannada) (7d7a313)
        * Added translation using Weblate (Korean) (066fa6d)
        * Added translation using Weblate (Albanian) (33d5f6b)
        * Added translation using Weblate (Georgian) (b580140)
        * Added translation using Weblate (Faroese) (b8daf91)
        * Added translation using Weblate (Persian) (4a7d2a5)
        * Added translation using Weblate (Swedish) (28d53c4)
        * Added translation using Weblate (Frisian) (5a73892)
        * Added translation using Weblate (Nepali) (bc956c0)
        * Added translation using Weblate (Indonesian) (82f8857)

2020-10-26 Mike Gabriel

        * Translated using Weblate (German) (f74e48b)

2020-10-26 Weblate

        * Added translation using Weblate (Azerbaijani) (cc7b0a0)
        * Added translation using Weblate (Interlingua) (1f5eca0)
        * Added translation using Weblate (Arabic) (a76c8c8)
        * Added translation using Weblate (Aragonese) (d536a43)
        * Added translation using Weblate (Amharic) (59f922c)
        * Added translation using Weblate (Swahili) (010e2c1)
        * Added translation using Weblate (Afrikaans) (57c3caa)
        * Added translation using Weblate (Marathi) (02f697e)
        * Added translation using Weblate (Maori) (187f8ad)
        * Added translation using Weblate (Malayalam) (b44355f)
        * Added translation using Weblate (Chinese (Simplified)) (278eb57)
        * Added translation using Weblate (Malagasy) (244fc0e)
        * Added translation using Weblate (English (Canada)) (28d7c46)
        * Added translation using Weblate (English (Australia)) (ef2233a)
        * Added translation using Weblate (Hebrew) (646216d)
        * Added translation using Weblate (Hindi) (f685023)
        * Added translation using Weblate (Slovenian) (ae9a510)
        * Added translation using Weblate (Slovak) (4030019)
        * Added translation using Weblate (Serbian) (24420be)
        * Added translation using Weblate (Armenian) (c290f62)
        * Added translation using Weblate (Icelandic) (d44744e)
        * Added translation using Weblate (Vietnamese) (9db40ad)
        * Added translation using Weblate (Kazakh) (7e13d0c)
        * Added translation using Weblate (Finnish) (fe57f29)
        * Added translation using Weblate (Norwegian Nynorsk) (7ff80f3)
        * Added translation using Weblate (Punjabi) (23f3c34)
        * Added translation using Weblate (Dutch) (a8a31fb)
        * Added translation using Weblate (Pashto) (cdb33ab)
        * Added translation using Weblate (Bosnian) (022a562)
        * Added translation using Weblate (Italian) (fe8ca94)
        * Added translation using Weblate (Uyghur) (466271c)
        * Added translation using Weblate (Malay) (6602d1e)
        * Added translation using Weblate (Breton) (3fb9c4a)
        * Added translation using Weblate (Tibetan) (c4e4deb)
        * Added translation using Weblate (Hungarian) (142771a)
        * Added translation using Weblate (Asturian) (27d3666)
        * Added translation using Weblate (Croatian) (2db95e5)
        * Added translation using Weblate (English (United Kingdom))
          (2719865)
        * Added translation using Weblate (Belarusian) (0656e05)
        * Added translation using Weblate (Portuguese) (58b5e76)
        * Added translation using Weblate (Romanian) (0743ff0)
        * Added translation using Weblate (Czech) (caab75c)
        * Added translation using Weblate (Basque) (248bf8e)
        * Added translation using Weblate (Welsh) (6c3540a)
        * Added translation using Weblate (Esperanto) (cf8fc28)
        * Added translation using Weblate (Occitan) (069f23a)
        * Added translation using Weblate (Japanese) (763e389)
        * Added translation using Weblate (Ukrainian) (9aaaee7)
        * Added translation using Weblate (Danish) (6aa4011)
        * Added translation using Weblate (Bulgarian) (4d20163)
        * Added translation using Weblate (Chinese (Traditional, Hong Kong))
          (1112b20)
        * Added translation using Weblate (Bengali) (178d3d2)
        * Added translation using Weblate (Russian) (8d9f018)
        * Added translation using Weblate (Tamil) (a9fb625)
        * Added translation using Weblate (Filipino) (7855a93)
        * Added translation using Weblate (Estonian) (0eae014)
        * Added translation using Weblate (Tajik) (1340616)
        * Added translation using Weblate (Greek) (aad6963)
        * Added translation using Weblate (German) (582557c)
        * Added translation using Weblate (Portuguese (Brazil)) (af59894)
        * Added translation using Weblate (Tigrinya) (f74eb77)
        * Added translation using Weblate (Thai) (f81bd8a)
        * Added translation using Weblate (Telugu) (96df519)
        * Added translation using Weblate (Lao) (d3484c6)
        * Added translation using Weblate (Lithuanian) (8675257)
        * Added translation using Weblate (Luxembourgish) (7e6185a)
        * Added translation using Weblate (Latvian) (d02f7d6)
        * Added translation using Weblate (Irish) (370b61f)
        * Added translation using Weblate (Turkish) (4817417)
        * Added translation using Weblate (Galician) (479ef83)
        * Added translation using Weblate (Gaelic) (30506ae)
        * Added translation using Weblate (Valencian) (6fe384e)
        * Added translation using Weblate (Gujarati) (09c3f6b)

2020-10-26 Mike Gabriel

        * locale: Update translation files (add new .po files for just added
          languages). (b9d8876)
        * locale: Update LINGUAS file, with many new translations. (bdc4882)
        * locale: update translation files. (c5e0906)
        * Merge branch 'sunweaver-pr/locale-helper-scripts' (bd5008a)

2020-10-25 Mike Gabriel

        * Add locale helper scripts. (7930783)

2020-10-26 Mike Gabriel

        * debian/control: Add B-D: intltool. (3c2271b)
        * Merge branch 'sunweaver-pr/cmake-port' (a3c012d)

2020-10-25 Mike Gabriel

        * Port from autotools to CMake. (e672e51)

2020-10-26 Mike Gabriel

        * Merge branch 'sunweaver-pr/debian-amendments' (d720a79)

2020-10-25 Mike Gabriel

        * debian/control: Improve LONG_DESCRIPTION. (46a83f4)
        * debian/source/format: Add file (format 1.0). (2ae8a3e)

2020-10-26 Mike Gabriel

        * Merge branch 'sunweaver-pr/indicator-specific-fixes' (3404e45)

2020-10-25 Robert Tari

        * src/*: Switch to new activate state connect approach, rathern than
          using notify["state"].connect. (33860bf)
        * src/bluez.vala: Make BLUEZ_BUSNAME 'const string' (not 'static
          const string'). (fd44171)
        * src/*: Scope and white-space fixes. (89e7fc1)

2020-10-26 Mike Gabriel

        * Merge branch 'sunweaver-pr/mate-support' (d097481)

2020-10-25 Robert Tari

        * debian/control: Alternative dependency on mate-control-center.
          (aae2a1f)
        * Make indicator aware of running inside the MATE desktop
          environment. (c0de75c)

2020-10-26 Mike Gabriel

        * configure.ac: Regression fix for 49e87fdb. Drop reference to
          data/upstart/Makefile. The data/upstart/ folder has been
          removed in the referenced commit. (fc0145c)
        * Merge branch 'sunweaver-pr/fix-localedir-variable-name' (4105028)

2020-10-25 Robert Tari

        * Switch from GNOMELOCALEDIR to LOCALEDIR variable name. (447f27c)

2020-10-26 Mike Gabriel

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

2020-10-25 Mike Gabriel

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

2020-10-25 Robert Tari

        * Make dependency on liburl-dispatcher optional. (babfaba)

2020-10-26 Mike Gabriel

        * Merge branch 'sunweaver-pr/drop-ubuntuisms' (21b8f5e)

2020-10-25 Robert Tari

        * Drop bzr remnants. We are on Git these days. (611df0c)
        * Drop upstart support. (49e87fd)

2020-10-26 Robert Tari

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

2020-10-25 Robert Tari

        * debian/rules: Add --with autoreconf DH option. (6a5ff48)
        * debian/rules: Move --fail-missing DH flag into dh_missing override.
          (8a508b6)
        * debian/rules: Add dh_auto_test override that shows how to enable
          live test logs. (1d1dd40)
        * Switch over from Ubuntu System Indicator to Ayatana System
          Indicator. (67376d6)

2018-01-11 Dan Chapman

        * Update Jenkinsfile (5024aaf)

2017-11-01 Marius Gripsgard

        * Update Jenkinsfile (bcd3785)

2017-07-23 Marius Gripsgard

        * Update changelog (2a5ca18)
        * Imported to UBports (ec3f329)

2016-10-23 Bileto Bot

        * Releasing 0.0.6+17.04.20161023-0ubuntu1 (bebb187)

2016-10-23 Ted Gould

        * Adding an systemd user session unit (accdf32)

2016-10-22 Ted Gould

        * Fix variable name (2e85ab9)
        * Merging trunk (8a43e4a)

2016-10-03 Bileto Bot

        * Releasing 0.0.6+16.10.20161003-0ubuntu1 (285ce0f)

2016-10-03 Robert Ancell

        * Correctly use XDG_CURRENT_DESKTOP (LP: #1554878) (c41ef29)

2016-07-20 Ted Gould

        * Adding a restart rule (8d19980)

2016-07-19 Ted Gould

        * Install dep on indicator-common (7f2c3a6)

2016-07-18 Ted Gould

        * Adding an systemd user session unit (475e5e0)

2016-06-07 Robert Ancell

        * Correctly use XDG_CURRENT_DESKTOP (6578e27)

2016-05-26 CI Train Bot

        * Releasing 0.0.6+16.10.20160526-0ubuntu1 (eb2d435)

2016-05-26 Sebastien Bacher

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

2016-05-12 Sebastien Bacher

        * Remove the "browse" action since there is no working backend
          (04743cc)

2016-02-14 CI Train Bot

        * Releasing 0.0.6+16.04.20160214-0ubuntu1 (7be3a46)

2016-02-14 Charles Kerr

        * Change the indicator's Bluez class to watch for 'org.bluez' to
          appear/vanish on the system bus. (1c4b29c)
        * in bluez.vala, silence a startup g_warning by calling
          init_bluez_state_vars() before we start listening for
          org.bluez on the bus (20ea574)
        * in bluez.vala, update our state properties when org.bluez vanishes
          from the bus (4fc9eb3)
        * in bluez.vala, create a symbolic name for bluez' busname (55bd790)
        * (trivial) remove trailing whitespace (5262691)
        * in bluez.vala, watch for org.bluez to be owned/unowned on the
          system bus (1e38642)

2015-09-29 CI Train Bot

        * Releasing 0.0.6+15.10.20150929-0ubuntu1 (cb2ad7c)

2015-09-29 Robert Ancell

        * Check for NULL when getting cached properties Address and UUIDs.

          Fixes: #1497928 Approved by: PS Jenkins bot, Sebastien
          Bacher (b01126f)

2015-09-28 Robert Ancell

        * Check for NULL when getting cached properties Address and UUIDs
          (507aff2)

2015-09-15 CI Train Bot

        * Releasing 0.0.6+15.10.20150915-0ubuntu1 (99dc56c)

2015-09-15 Sebastien Bacher

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

          Fixes: #1489490 Approved by: Charles Kerr, PS Jenkins bot
          (3a835ef)

2015-08-27 Sebastien Bacher

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

2015-08-13 CI Train Bot

        * Releasing 0.0.6+15.10.20150813-0ubuntu1 (3d63ade)

2015-08-13 Robert Ancell

        * Support Bluez 5 (cf886e1)

2015-08-07 Robert Ancell

        * Remove unused argument in DBus interface (db3ee2a)

2014-12-11 Robert Ancell

        * Support Bluez 5 (682e614)

2014-10-06 CI bot

        * Releasing 0.0.6+14.10.20141006-0ubuntu1 (b60855a)

2014-10-06 Charles Kerr

        * Move the position of this indicator on the panel.
          Fixes: 1377294
          Approved by: Ted Gould, PS Jenkins bot (9231c13)
        * only rearrange the indicator position on the phone (2c5271e)
        * move bluetooth indicator as per the 'Indicator RTM Usability Fixes'
          document (280728d)

2014-09-22 CI bot

        * Releasing 0.0.6+14.10.20140922-0ubuntu1 (0a23919)

2014-09-22 Mathieu Trudel-Lapierre

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

2014-09-22 Ted Gould

        * Changlog for CI Train (816d353)

2014-09-22 Mathieu Trudel-Lapierre

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

2014-02-26 Ted Gould

        * Update for gnome-fallback (754b56d)

2014-02-19 Ted Gould

        * Putting the upstart directory in its own directory so it doesn't
          fight (df75643)
        * Add onlyshowin (514971d)

2014-02-14 Ted Gould

        * Start condition cleanup and respawn limits (3279417)

2014-02-07 CI bot

        * Releasing 0.0.6+14.04.20140207-0ubuntu1 (c23fc96)
        * Adding acceptance tests and merge review policies (06473b3)

2014-01-31 Ted Gould

        * Adding acceptance tests and merge review policies. (546f3c5)
        * Adding merge review policy (58ec03d)
        * Adding basic acceptance tests (6c339c1)

2014-01-24 Automatic PS uploader

        * Releasing 0.0.6+14.04.20140124-0ubuntu1 (revision 79 from
          lp:indicator-bluetooth). (869f373)
        * Releasing 0.0.6+14.04.20140124-0ubuntu1, based on r79 (8f8a2ea)

2014-01-22 Robert Ancell

        * Use unity-control-center if it is available.
          Fixes:
          https://bugs.launchpad.net/bugs/1257505. (8d51105)
        * Only run unity-control-center under unity (d364082)

2014-01-14 Robert Ancell

        * Recommend unity-control-center before gnome-control-center
          (722d610)

2014-01-10 Robert Ancell

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

2013-12-18 Charles Kerr

        * Switching DBus service to an Upstart Job. (7f23146)
        * sync with trunk (c2536fe)
        * remove NotShowIn=Unity from the main .desktop file (33dc5dc)
        * add a second .desktop file to be installed in
          /usr/share/upstart/xdg/autostart with Hidden=true
          (004680a)

2013-12-06 Charles Kerr

        * Gets us a little closer to the spec in two ways: (a996850)
        * Switching DBus service to an Upstart Job. (8c6f26a)
        * mark the 'Bluetooth' menuitem for translation (f1ebedf)
        * change the bluetooth.supported property whenever bluez' default
          adapter changes its object path. (1ada398)
        * support header icon states as per the spec -- different icons for
          disabled, enabled, and enabled-with-connected-devices
          (a3b7b1c)
        * add a 'connected' property as a simple hook to whether or not we
          have any connected bluetooth devices (abc3e28)
        * on the desktop, show a bluetooth indicator if the hardware supports
          bluetooth and if the user has chosen for the indicator to
          be visible. (9d183eb)

2013-10-29 Automatic PS uploader

        * Releasing 0.0.6+14.04.20131029.1-0ubuntu1 (revision 75 from
          lp:indicator-bluetooth). (a26756e)
        * Releasing 0.0.6+14.04.20131029.1-0ubuntu1, based on r75 (b08565f)

2013-10-28 Ted Gould

        * Adding a phone_greeter profile. (eab5e96)
        * Adding a phone_greeter profile (eb110a2)

2013-10-25 Charles Kerr

        * 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. (674cdd5)

2013-10-24 Charles Kerr

        * don't leak implicitly-created GVariants (1ad4f0f)

2013-10-24 Lars Uebernickel

        * Desktop menu: mark "Visible" menu item label as translatable.

          Fixes: https://bugs.launchpad.net/bugs/1242038. (506ae9c)

2013-10-21 Lars Uebernickel

        * Desktop menu: mark "Visible" menu item label for translation
          (d753f21)

2013-10-18 Dmitrijs Ledkovs

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

2013-10-16 Automatic PS uploader

        * Releasing 0.0.6+13.10.20131016-0ubuntu1 (revision 70 from
          lp:indicator-bluetooth). (329794c)
        * Releasing 0.0.6+13.10.20131016-0ubuntu1, based on r70 (c48b164)

2013-10-15 Charles Kerr

        * 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. (08f4099)

2013-10-14 Charles Kerr

        * make org.bluez.Adapter's set_property() call nonblocking (73cc5b0)
        * omit the rfkill killswitch altogether, leaving on/off to bluez via
          org.bluez.Adapter's Powered property (46d4ad6)
        * when listening to notify events from bluetooth to update desktop
          indicator visibility, add a specifier for which event to
          monitor (e15cd36)
        * if killswitch exists and is valid, prefer its use over toggling
          org.bluez.Adapter's Powered property (5a14c4f)

2013-10-11 Charles Kerr

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

2013-10-11 Automatic PS uploader

        * Releasing 0.0.6+13.10.20131011-0ubuntu1 (revision 68 from
          lp:indicator-bluetooth). (5fb7802)
        * Releasing 0.0.6+13.10.20131011-0ubuntu1, based on r68 (c0e9fd2)

2013-10-10 Charles Kerr

        * 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. (3145f10)
        * add an action whose state shows whether or not bluetooth is
          supported by the hardware, used by ubuntu-system-settings
          (0932c83)

2013-10-04 Automatic PS uploader

        * Releasing 0.0.6+13.10.20131004-0ubuntu1 (revision 66 from
          lp:indicator-bluetooth). (5165b13)
        * Releasing 0.0.6+13.10.20131004-0ubuntu1, based on r66 (b1e6e1a)

2013-10-03 Charles Kerr

        * Update settings URL to settings:///system.
          Fixes:
          https://bugs.launchpad.net/bugs/1231444. (ea3f6e9)
        * Update settings URL to settings:///system (d6b2ff5)

2013-10-02 Sebastien Bacher

        * Don't list autogenerated files as translation sources. (e099052)

2013-10-01 Ted Gould

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

2013-10-01 Sebastien Bacher

        * Don't list autogenerated files as translation sources (1fc501b)

2013-09-30 Automatic PS uploader

        * Releasing 0.0.6+13.10.20130930-0ubuntu1 (revision 62 from
          lp:indicator-bluetooth). (eeb4c22)
        * Releasing 0.0.6+13.10.20130930-0ubuntu1, based on r62 (ad40c38)

2013-09-26 Ted Gould

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

2013-09-25 Charles Kerr

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

          Fixes: https://bugs.launchpad.net/bugs/1230819. (dadbe9e)
        * use url-dispatcher instead of invoking system-settings directly.
          (760dc3b)

2013-09-24 Automatic PS uploader

        * Releasing 0.0.6+13.10.20130924.2-0ubuntu1 (revision 60 from
          lp:indicator-bluetooth). (acbd029)
        * Releasing 0.0.6+13.10.20130924.2-0ubuntu1, based on r60 (5333068)

2013-09-23 Charles Kerr

        * 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. (e440832)
        * use the change-state signal to handle bluetooth-enabled change
          requests. h/t larsu (2edd2fb)

2013-09-13 Automatic PS uploader

        * Releasing 0.0.6+13.10.20130913-0ubuntu1 (revision 58 from
          lp:indicator-bluetooth). (d42aa2d)
        * Releasing 0.0.6+13.10.20130913-0ubuntu1, based on r58 (e642f81)

2013-09-11 Charles Kerr

        * Adds a title in the header's action state.
          Fixes:
          https://bugs.launchpad.net/bugs/1223635. (2c2f7da)
        * add a title to the header's action state (ff2593f)

2013-08-23 Automatic PS uploader

        * Releasing 0.0.6+13.10.20130823-0ubuntu1 (revision 56 from
          lp:indicator-bluetooth). (cb5ce56)
        * Releasing 0.0.6+13.10.20130823-0ubuntu1, based on r56 (58126cd)

2013-08-23 Charles Kerr

        * Since we're not using the gnome-bluetooth vapi file, we shouldn't
          bundle it. (bf7ba1f)
        * Don't use deprecated GSimpleActionGroup APIs. (43c384d)

2013-08-22 Charles Kerr

        * Don't use deprecated GSimpleActionGroup APIs. (076c482)
        * remove vapi/gnome-bluetooth-1.0.vapi (8b2bc6c)

2013-08-12 Automatic PS uploader

        * Releasing 0.0.6+13.10.20130812.1-0ubuntu1 (revision 53 from
          lp:indicator-bluetooth). (2ee6f89)
        * Releasing 0.0.6+13.10.20130812.1-0ubuntu1, based on r53 (8f6e427)

2013-08-10 Charles Kerr

        * 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.
          (f28653e)

2013-08-09 Charles Kerr

        * remove the libindicator vapi file; it's no longer used. (a061690)
        * create Profile.root_action in Profile's constructor. (aacf0de)
        * on shutdown, unexport the menus and unown the bus name (c1d8ca0)
        * set indicatorsdir to $(datadir)/unity/indicators instead of
          $(prefix)/share/unity/indicators (654ce42)

2013-08-08 Charles Kerr

        * in debian/control, make the bluez dependency explicit (a6092a4)
        * change control s.t. either ubuntu-system-settings, or
          (gnome-control-center && gnome-bluetooth), are a
          Dependency (f77ffbd)

2013-08-06 Charles Kerr

        * copyediting: whitespace, type inference (b82c9a9)
        * templated strings need to begin with a '@' (df2bb30)
        * add src/bluez.c, src/desktop.c, src/phone.c to POTFILES.in
          (a5c2cb1)
        * copyediting: fix lines that wrap (bbca3ae)
        * add some extra comments (c920d6f)
        * copyediting: don't use 'this.' when it's not needed (cd19774)
        * bump version to 13.10.0 (d4432eb)
        * sync POTFILES.in with the new files in src/ (7c0143b)
        * add device.vala to the repo (afafeed)

2013-08-05 Charles Kerr

        * Remove dbusmenu, gtk, indicator dependencies. Only require
          gnome-bluetooth on the desktop. (6f6674a)
        * main() should return service.run() (90a5d3f)
        * copyediting: fix indentation in Service, fix copyright & author
          comments in bluez, service, main (bae23fb)
        * promote shared functions up from Desktop to Profile so that Phone
          can use it too (6492053)
        * in phone and desktop, make 'action_state_for_root' private -- it's
          no longer in the Profile superclass. (2d03420)
        * copyediting: readability + grouping related methods together
          (76efb05)
        * pass the SimpleActionGroup handle into the profile object so that
          dynamically-added actions can get added/exported (77e298f)
        * silence g_message scaffolding (fcf74c7)
        * edit killswitch for readability and to remove the iowatch in
          dispose() (ccc5657)
        * fully implement the bluez/device backend. in the desktop profile,
          add menuitems for the devices. (c1ce02f)

2013-08-03 Charles Kerr

        * initial support for individual devices in Bluetooth class (9837ce8)
        * tweak startup comments (d73ae64)
        * change the 'BluetoothMenu' superclass to 'Profile' (43059ed)

2013-08-01 Charles Kerr

        * move indicator3-0.4.vapi to the vapi dir. it'll go away soon
          enough... (dfd38e5)
        * improve documentation on Killswitch, Bluetooth, and Bluez (5bc8ff5)
        * add a bluetooth backend to track bluetooth being enabled, being
          hard/soft blocked, and its devices. (cf89430)
        * add per-profile icons and initial menus w/settings section
          (3cc732f)

2013-07-31 Charles Kerr

        * add main() to its own file (39263df)
        * add a vapi/ directory off the top package directory (761a9ff)
        * sync this indicator's i18n autoconf rules with the other indicators
          (143845e)
        * remove --enable-localinstall (5140c09)

2013-06-07 Automatic PS uploader

        * Releasing 0.0.6daily13.06.07-0ubuntu1 to ubuntu. (0391025)
        * Releasing 0.0.6daily13.06.07-0ubuntu1, based on r51 (387eca4)

2013-06-06 Jeremy Bicha

        * 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. (9cbe6f1)
        * debian/control:   - Build with valac (>= 0.18) instead of
          vala-0.18 for easier transitions (d80631e)

2013-02-19 Automatic PS uploader

        * Releasing 0.0.6daily13.02.19-0ubuntu1 to ubuntu. (ed790f8)
        * Releasing 0.0.6daily13.02.19-0ubuntu1, based on r49 (4087b18)

2013-02-15 Sebastien Bacher

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

2013-02-12 Robert Ancell

        * Releasing 0.0.6 (8bda5c9)

2013-02-11 Robert Ancell

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

2013-02-08 Robert Ancell

        * Support existing gsettings key to disable indicator (5ab20c1)
        * Only show indicator if Bluetooth adapter present (4643e10)
        * Add "Set Up New Device" menu item (0166a12)

2013-02-06 Michael Terry

        * A couple strings weren't marked for translation. (b4ead8b)
        * Add bootstrap message for Jenkins. (103c24e)

2013-02-05 Michael Terry

        * add autolanding bootstrap message (96acdc0)

2013-02-05 Mathieu Trudel-Lapierre

        * Fix up changelog to match what is in the archive (release 0.0.5).
          (9f7df98)
        * With debhelper compat level 9, libexecdir no longer includes the
          package name. So use pkglibexecdir instead. (c328f67)
        * Inline packaging, for autolanding. (ca53a57)

2013-02-04 Michael Terry

        * add bzr-builddeb (7112b9e)

2013-02-01 Robert Ancell

        * Update license header (f338093)

2013-01-31 Michael Terry

        * install service into pkglibexecdir, not libexecdir (e3d1f4a)
        * update POTFILES and pot (7471eb6)
        * translate accessible descriptions (ead9d50)
        * move debian/ inline (d2b21e0)
        * relicense as GPL-3, not GPL-3+ (e73d88a)
        * Add COPYING file and fix license to be GPL-3, not GPL-3+ (06e6079)

2013-01-31 Robert Ancell

        * Stop items being duplicated on resume from suspend (748795c)

2013-01-30 Robert Ancell

        * Update LINGUAS (842e578)

2013-01-24 Launchpad Translations on behalf of robert-ancell

        * Launchpad automatic translations update. (6efdf5f)

2013-01-15 Launchpad Translations on behalf of robert-ancell

        * Launchpad automatic translations update. (c96b557)

2013-01-11 Robert Ancell

        * Releasing 0.0.3 (0af35a7)
        * Fix indicator-bluetooth.service file having wrong library directory
          (9107c64)
        * Set useful values for accessible description (29eaa61)

2013-01-08 Launchpad Translations on behalf of robert-ancell

        * Launchpad automatic translations update. (f5413a1)

2013-01-08 Robert Ancell

        * Releasing 0.0.2 (1f12196)
        * Fix item disconnection (5619bd3)
        * Add start of accessible description (bc42915)
        * Hide items without options (3cdfd9a)
        * Stop feedback loop when switch settings changed from external
          sources (5430140)
        * Use ellipses in labels (6895fc9)
        * Add LINGUAS (a725295)
        * Merge in translations (df30168)
        * Fix reversed logic on visible menu item (c424971)

2012-12-16 Launchpad Translations on behalf of robert-ancell

        * Launchpad automatic translations update. (589700f)

2012-12-15 Launchpad Translations on behalf of robert-ancell

        * Launchpad automatic translations update. (b430c43)

2012-12-09 Launchpad Translations on behalf of robert-ancell

        * Launchpad automatic translations update. (237fa94)

2012-12-06 Robert Ancell

        * Make enable label 'Bluetooth' to match design (9a8b4ff)
        * Check in translations (07e85b5)
        * Ignore files (bf24e68)
        * Get distcheck working (b121a13)
        * Fix icon (0119cb8)
        * Make into a proper indicator (4993d0a)

2012-12-05 Robert Ancell

        * Add icons (34c7299)
        * Add connect button (6309b14)
        * Only add required elements to submenus (a958c28)
        * Add bug link for workaround (90a0f1b)
        * Workaround a bug in libappindicator3 (22bfe32)

2012-12-04 Robert Ancell

        * Fix visible toggle (904619d)
        * Only show devices, not adapters (5f29593)
        * Tidy up gnome-bluetooth-1.0.vapi (f2e15cb)
        * Correctly set icon (35ab354)
        * Use GnomeBluetooth.Killswitch instead of reading /dev/rfkill
          directly (7dd1e1a)
        * Use GnomeBluetooth instead of bluez directly (c9759cf)

2012-10-11 Robert Ancell

        * Check device class (de24772)
        * Fix visible toggle (8e5d7ea)
        * Abstract out bluez more (072e048)
        * Get killswitch working (ca444db)
        * First start on bluetooth-indicator (f14da3c)