~phablet-team/telephony-service/midori-workaround

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
telephony-service (0.1+16.10.20160601.1-0ubuntu1) yakkety; urgency=medium

  * Contact name now checks for QContactDisplayLabel to display full
    name when possible. (LP: #1585634)

 -- Renato Araujo Oliveira Filho <renato.filho@canonical.com>  Wed, 01 Jun 2016 16:08:55 +0000

telephony-service (0.1+16.10.20160520-0ubuntu1) yakkety; urgency=medium

  [ CI Train Bot ]
  * Resync trunk. added: po/sq.po

  [ Renato Araujo Oliveira Filho ]
  * Update PhonNumber components to use the new SDK 1.3

 -- Renato Araujo Oliveira Filho <renato.filho@canonical.com>  Fri, 20 May 2016 14:23:59 +0000

telephony-service (0.1+16.04.20160415.1-0ubuntu1) xenial; urgency=medium

  * do not set SimNames if it's empty use a config file to avoid running
    the script instead of an account service property

 -- Tiago Salem Herrmann <tiago.herrmann@canonical.com>  Fri, 15 Apr 2016 21:21:41 +0000

telephony-service (0.1+16.04.20160411-0ubuntu1) xenial; urgency=medium

  [ Tiago Salem Herrmann ]
  * Fix HandlerTest flaky test.
  * Initial work moving properties from gsettings to accounts service.
    (LP: #1418040)

 -- Alfonso Sanchez-Beato <alfonso.sanchez-beato@canonical.com>  Mon, 11 Apr 2016 17:38:50 +0000

telephony-service (0.1+16.04.20160331.4-0ubuntu1) xenial; urgency=medium

  * Do not change power mode on incoming MMS'. This is done by unity
    now. (LP: #1562923)
  * Fix duplicate tasks launched during tests

 -- Tiago Salem Herrmann <tiago.herrmann@canonical.com>  Thu, 31 Mar 2016 22:17:43 +0000

telephony-service (0.1+16.04.20160321.2-0ubuntu1) xenial; urgency=medium

  [ Jim Hodapp ]
  * Make sure the sound preview uses the correct audioRole API.

 -- Timo Jyrinki <timo.jyrinki@canonical.com>  Mon, 21 Mar 2016 20:11:11 +0000

telephony-service (0.1+16.04.20160307-0ubuntu1) xenial; urgency=medium

  * Compare target id to check if this is a channel to the self contact.
    (LP: #1546369)
  * Display notifications for sms's where sender phone number matches
    the sim card phone number that received the message. (LP: #1547462)
  * Only add notifications to messaging-menu if ack didn't happen in the
    meantime.

 -- Tiago Salem Herrmann <tiago.herrmann@canonical.com>  Mon, 07 Mar 2016 20:13:48 +0000

telephony-service (0.1+16.04.20160122-0ubuntu1) xenial; urgency=medium

  [ Arthur Mello ]
  * Enable video support for mms

  [ Gustavo Pichorim Boiko ]
  * Enable audio support for mms.
  * Expose extra information about the protocols we support.
  * Make it possible to send messages to "multimedia" accounts and
    fallback to ofono accounts when not possible.
  * Remove protocol files that are not supposed to be shipped.

  [ Tiago Salem Herrmann ]
  * Add test for account fallback.
  * Add tests for sending messages with attachments
  * Make sendMessage() return the actual accountId used to send the
    message.

 -- Gustavo Pichorim Boiko <gustavo.boiko@canonical.com>  Fri, 22 Jan 2016 02:58:04 +0000

telephony-service (0.1+16.04.20160105-0ubuntu1) xenial; urgency=medium

  [ CI Train Bot ]
  * Resync trunk. added: po/ne.po

  [ Tiago Salem Herrmann ]
  * Update mms flag so telephony-service-indicator can correctly manage
    attachments. (LP: #1529903)

 -- Bill Filler <ci-train-bot@canonical.com>  Tue, 05 Jan 2016 17:18:22 +0000

telephony-service (0.1+16.04.20151207-0ubuntu1) xenial; urgency=medium

  [ CI Train Bot ]
  * New rebuild forced.
  * Resync trunk. added: po/be.po

  [ Tiago Salem Herrmann ]
  * Fill notifications with attachments info when no text is received.
    (LP: #1517654)
  * Improve notifications on multi-sim devices. (LP: #1487528, #1460301)

 -- Tiago Salem Herrmann <tiago.herrmann@canonical.com>  Mon, 07 Dec 2015 17:55:49 +0000

telephony-service (0.1+16.04.20151202.1-0ubuntu1) xenial; urgency=medium

  [ CI Train Bot ]
  * New rebuild forced.

  [ Tiago Salem Herrmann ]
  * Support new audio role api. (LP: #1493851)

 -- Tiago Salem Herrmann <tiago.herrmann@canonical.com>  Wed, 02 Dec 2015 21:38:51 +0000

telephony-service (0.1+16.04.20151119-0ubuntu1) xenial; urgency=medium

  [ Gustavo Pichorim Boiko ]
  * Add tests for the NotificationMenu and AuthHandler.
  * Make sure telephony-service QML plugin does not use uninstalled
    paths to look for protocol information.

  [ Tiago Salem Herrmann ]
  * Add initial support for the ChatState interface.
  * Add support for sending attachments to regular IM accounts.
  * Create new QMediaPlayer instances on every incoming call.
  * Fix notifications and messaging menu for generic IM accounts.
  * Implement PresenceRequest qml component.
  * Implement simple authentication handler.
  * Refactor TelepathyHelper initialization Refactor AccountEntry
    initialization

 -- Gustavo Pichorim Boiko <gustavo.boiko@canonical.com>  Thu, 19 Nov 2015 12:59:41 +0000

telephony-service (0.1+16.04.20151103-0ubuntu1) xenial; urgency=medium

  [ Tiago Salem Herrmann ]
  * Enable cross compiling.

 -- Gustavo Pichorim Boiko <gustavo.boiko@canonical.com>  Tue, 03 Nov 2015 14:26:55 +0000

telephony-service (0.1+16.04.20151029.2-0ubuntu1) xenial; urgency=medium

  [ CI Train Bot ]
  * New rebuild forced.
  * Resync trunk. added: po/hr.po

  [ Tiago Salem Herrmann ]
  * Keep reference of observer pointer so it doesn't get deleted. (LP:
    #1484300)

 -- Tiago Salem Herrmann <tiago.herrmann@canonical.com>  Thu, 29 Oct 2015 19:15:54 +0000

telephony-service (0.1+15.10.20151013-0ubuntu1) wily; urgency=medium

  [ Gustavo Pichorim Boiko ]
  * Make it possible to set all fields in the contact matcher. Some
    components (like HistoryService's events and threads) provide a
    cached contact match value and are just interested in watching for
    changes.
  * Use smooth scaling when resizing image files to send via MMS.

  [ Tiago Salem Herrmann ]
  * Convert x-ofono-unknown to "Unknown contact" Set proper icon for
    group chats in messaging-menu

 -- CI Train Bot <ci-train-bot@canonical.com>  Tue, 13 Oct 2015 20:36:15 +0000

telephony-service (0.1+15.10.20150925-0ubuntu1) wily; urgency=medium

  [ CI Train Bot ]
  * New rebuild forced.

  [ Gustavo Pichorim Boiko ]
  * Make it possible to acknowledge all pending messages of a given
    conversation at once. (LP: #1488498)

 -- Gustavo Pichorim Boiko <gustavo.boiko@canonical.com>  Fri, 25 Sep 2015 13:06:14 +0000

telephony-service (0.1+15.10.20150818-0ubuntu1) wily; urgency=medium

  [ CI Train Bot ]
  * Resync trunk.

  [ Tiago Salem Herrmann ]
  * Change existingChat() to existingChannels(). (LP: #1482401,
    #1347906)

 -- CI Train Bot <ci-train-bot@canonical.com>  Tue, 18 Aug 2015 13:35:42 +0000

telephony-service (0.1+15.10.20150814-0ubuntu1) wily; urgency=medium

  [ Gustavo Pichorim Boiko ]
  * Make GreeterContacts thread safe. (LP: #1471338)

 -- CI Train Bot <ci-train-bot@canonical.com>  Fri, 14 Aug 2015 20:38:56 +0000

telephony-service (0.1+15.10.20150810.1-0ubuntu1) wily; urgency=medium

  [ Tiago Salem Herrmann ]
  * Check contact results on the client side. Phone comparison in the
    server side is not reliable. (LP: #1476833)
  * Use libphonenumber for phone number validation, normalization and
    comparison. (LP: #1471545, #1444883, #1334860)

 -- CI Train Bot <ci-train-bot@canonical.com>  Mon, 10 Aug 2015 22:45:07 +0000

telephony-service (0.1+15.10.20150727-0ubuntu2~gcc5.1) wily; urgency=medium

  * No change upload built with GCC 5.

 -- Matthias Klose <doko@ubuntu.com>  Thu, 30 Jul 2015 11:51:41 +0200

telephony-service (0.1+15.10.20150727-0ubuntu1) wily; urgency=medium

  [ CI Train Bot ]
  * Resync trunk. added: po/cy.po

  [ Gustavo Pichorim Boiko ]
  * Make sure outgoing calls are not set as accepted by the approver.
    (LP: #1476826)

 -- CI Train Bot <ci-train-bot@canonical.com>  Mon, 27 Jul 2015 19:38:59 +0000

telephony-service (0.1+15.10.20150717-0ubuntu1) wily; urgency=medium

  [ Gustavo Pichorim Boiko ]
  * Specify the domain when translating unknown and private number
    strings. (LP: #1470938)

 -- CI Train Bot <ci-train-bot@canonical.com>  Fri, 17 Jul 2015 18:20:41 +0000

telephony-service (0.1+15.10.20150709-0ubuntu1) wily; urgency=medium

  [ Gustavo Pichorim Boiko ]
  * Sync the fixes that were released in OTA5: (LP: #1384274, #1433068,
    #1412709, #1427286, #1453004)

 -- CI Train Bot <ci-train-bot@canonical.com>  Thu, 09 Jul 2015 13:46:05 +0000

telephony-service (0.1+15.10.20150706.1-0ubuntu1) wily; urgency=medium

  [ Alberto Aguirre ]
  * No change rebuid against platform-api 3

 -- CI Train Bot <ci-train-bot@canonical.com>  Mon, 06 Jul 2015 22:06:19 +0000

telephony-service (0.1+15.10.20150701-0ubuntu1) wily; urgency=medium

  [ CI Train Bot ]
  * Resync trunk.

  [ Tiago Salem Herrmann ]
  * Update to telepathy-qt 0.9.6.1

 -- CI Train Bot <ci-train-bot@canonical.com>  Wed, 01 Jul 2015 14:16:47 +0000

telephony-service (0.1+15.10.20150617-0ubuntu1) wily; urgency=medium

  [ CI Train Bot ]
  * New rebuild forced.

  [ Gustavo Pichorim Boiko ]
  * Make it possible to specify the list of supported protocols
    dynamically by installing .protocol files in /usr/share/telephony-
    service/protocols

  [ Tiago Salem Herrmann ]
  * Add multimedia connection manager support
  * Remove slashes when normalizing phone numbers. (LP: #1462090)

 -- CI Train Bot <ci-train-bot@canonical.com>  Wed, 17 Jun 2015 20:39:47 +0000

telephony-service (0.1+15.10.20150608.4-0ubuntu1) wily; urgency=medium

  [ Gustavo Pichorim Boiko ]
  * Make it possible to remove call notifications from the messaging
    menu (LP: #1455408)

  [ Tiago Salem Herrmann ]
  * Fix TelepathyHelperTest and HandlerTest.

 -- CI Train Bot <ci-train-bot@canonical.com>  Mon, 08 Jun 2015 23:04:10 +0000

telephony-service (0.1+15.04.20150521.1-0ubuntu1) vivid; urgency=medium

  [ CI Train Bot ]
  * Resync trunk. added: po/cs.po

  [ Tiago Salem Herrmann ]
  * Properly move ringtone calls to a separate thread.

 -- CI Train Bot <ci-train-bot@canonical.com>  Thu, 21 May 2015 18:45:49 +0000

telephony-service (0.1+15.04.20150511.1-0ubuntu1) vivid; urgency=medium

  [ CI Train Bot ]
  * Resync trunk.

  [ Gustavo Pichorim Boiko ]
  * Fix voicemail detection on CallEntry. (LP: #1449710)

 -- CI Train Bot <ci-train-bot@canonical.com>  Mon, 11 May 2015 13:47:20 +0000

telephony-service (0.1+15.04.20150430.1-0ubuntu1) vivid; urgency=medium

  [ CI Train Bot ]
  * Resync trunk.

  [ Gustavo Pichorim Boiko ]
  * Add an initial set of tests to make sure USSD is working.
  * Make it possible to clear the notifications. This is intended to be
    used by application tests.

  [ Tiago Salem Herrmann ]
  * Add an USSDManager instance to each OfonoAccountEntry. (LP:
    #1438273)

 -- CI Train Bot <ci-train-bot@canonical.com>  Thu, 30 Apr 2015 15:55:24 +0000

telephony-service (0.1+15.04.20150421-0ubuntu1) vivid; urgency=medium

  [ Gustavo Pichorim Boiko ]
  * Add unit tests for the ToneGenerator class. added:
    tests/libtelephonyservice/ToneGeneratorMock.cpp
    tests/libtelephonyservice/ToneGeneratorTest.cpp

  [ You-Sheng Yang ]
  * Class ToneGenerator creates a oneshot timer to keep track of when to
    send a StopTone req after successfully sending a StartEventTone one.
    However, when playDTMFTone() is called the second time within the
    timeout interval (0.2s), it's currently completely ignored and no
    tone will ever be generated. As a result, when someone presses
    dialpad buttons very quickly, some of them sound missed because not
    each of them is accompanied by a DTMF tone. (LP: #1403600)

 -- CI Train Bot <ci-train-bot@canonical.com>  Tue, 21 Apr 2015 13:07:12 +0000

telephony-service (0.1+15.04.20150416.2-0ubuntu1) vivid; urgency=medium

  [ Gustavo Pichorim Boiko ]
  * Another attempt to fix the failures that happen only on jenkins.

  [ Tiago Salem Herrmann ]
  * Add sanity check to ofono-setup. (LP: #1439566)

 -- CI Train Bot <ci-train-bot@canonical.com>  Thu, 16 Apr 2015 16:47:13 +0000

telephony-service (0.1+15.04.20150414-0ubuntu1) vivid; urgency=medium

  [ CI Train Bot ]
  * Resync trunk.

  [ Gustavo Pichorim Boiko ]
  * Expose the account type to QML. (LP: #1439718)

 -- CI Train Bot <ci-train-bot@canonical.com>  Tue, 14 Apr 2015 17:37:11 +0000

telephony-service (0.1+15.04.20150330.1-0ubuntu1) vivid; urgency=medium

  [ Gustavo Pichorim Boiko ]
  * Move all tests to root/tests to make it easier to share components
    Add tests to existing components Add tests to make sure supporting
    non-phone based accounts works Fix problems found while writing the
    tests. Fix coverage reports removed: handler/tests/dbus-test-
    wrapper.sh.in handler/tests/telepathyhelper.cpp
    handler/tests/telepathyhelper.h added:
    cmake/modules/GenerateTest.cmake tests/ tests/CMakeLists.txt
    tests/common/ tests/common/CMakeLists.txt tests/common/dbus-
    services/ tests/common/dbus-services/CMakeLists.txt
    tests/common/dbus-session.conf.in
    tests/common/mock/emergencymodeiface.cpp
    tests/common/mock/emergencymodeiface.h
    tests/common/mock/ussdiface.cpp tests/common/mock/ussdiface.h
    tests/common/mock/voicemailiface.cpp
    tests/common/mock/voicemailiface.h tests/common/telepathytest.cpp
    tests/common/telepathytest.h
    tests/libtelephonyservice/AccountEntryFactoryTest.cpp
    tests/libtelephonyservice/AccountEntryTest.cpp
    tests/libtelephonyservice/ChatManagerTest.cpp
    tests/libtelephonyservice/OfonoAccountEntryTest.cpp
    tests/libtelephonyservice/TelepathyHelperTest.cpp renamed:
    Ubuntu/Telephony/tests/ => tests/Ubuntu.Telephony/ handler/tests/ =>
    tests/handler/ handler/tests/mock/ => tests/common/mock/
    handler/tests/mockcontroller.cpp => tests/common/mockcontroller.cpp
    handler/tests/mockcontroller.h => tests/common/mockcontroller.h
    libtelephonyservice/tests/ => tests/libtelephonyservice/
  * Support accounts not based on phone numbers.

 -- CI Train Bot <ci-train-bot@canonical.com>  Mon, 30 Mar 2015 20:56:48 +0000

telephony-service (0.1+15.04.20150227-0ubuntu1) vivid; urgency=medium

  [ CI Train Bot ]
  * New rebuild forced.

  [ Tiago Salem Herrmann ]
  * Check if default sim is active before sending messages. (LP:
    #1423942)
  * Do not create instance of GreeterContacts to avoid dealock with
    unity. (LP: #1426399)

 -- CI Train Bot <ci-train-bot@canonical.com>  Fri, 27 Feb 2015 15:28:57 +0000

telephony-service (0.1+15.04.20150217-0ubuntu1) vivid; urgency=medium

  [ Tiago Salem Herrmann ]
  * Don't remove the call channel if hangup() does not succeed.

 -- CI Train Bot <ci-train-bot@canonical.com>  Tue, 17 Feb 2015 17:24:10 +0000

telephony-service (0.1+15.04.20150211-0ubuntu1) vivid; urgency=medium

  [ Gustavo Pichorim Boiko ]
  * Ignore accounts not explicitly supported for now. (LP: #1340758)

  [ Tiago Salem Herrmann ]
  * Initialize variables to avoid randomly showing the voicemail
    indicator for telepathy accounts that do not support the voicemail
    interface.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 11 Feb 2015 18:18:25 +0000

telephony-service (0.1+15.04.20150205.1-0ubuntu1) vivid; urgency=medium

  [ Tiago Salem Herrmann ]
  * Avoid using ofono to get the list of modems in ofono-setup. (LP:
    #1413316)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 05 Feb 2015 20:22:09 +0000

telephony-service (0.1+15.04.20150205-0ubuntu1) vivid; urgency=medium

  [ Tiago Salem Herrmann ]
  * Add initial MMS group chat support. (LP: #1415458)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 05 Feb 2015 12:19:35 +0000

telephony-service (0.1+15.04.20150203-0ubuntu1) vivid; urgency=medium

  [ CI Train Bot ]
  * Resync trunk

  [ Gustavo Pichorim Boiko ]
  * Move the serial to be a property on account entry, and make sure it
    is read even when the account is not connected.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 03 Feb 2015 18:45:35 +0000

telephony-service (0.1+15.04.20150124-0ubuntu1) vivid; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Notify errors when creating conference calls and putting calls on
    hold. (LP: #1410365)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Sat, 24 Jan 2015 02:03:16 +0000

telephony-service (0.1+15.04.20150120.2-0ubuntu1) vivid; urgency=low

  [ CI Train Bot ]
  * Resync trunk

  [ Tiago Salem Herrmann ]
  * Invoke LiveCall view when answering incoming calls. (LP: #1410961)
  * Silence incoming calls when power button is pressed. (LP: #1376240)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 20 Jan 2015 16:53:13 +0000

telephony-service (0.1+15.04.20150116-0ubuntu1) vivid; urgency=low

  [ Tiago Salem Herrmann ]
  * Expose HandleMediaKey(bool doubleClick) to DBus. (LP: #1398427)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 16 Jan 2015 10:28:07 +0000

telephony-service (0.1+15.04.20150109-0ubuntu1) vivid; urgency=low

  [ CI Train Bot ]
  * Resync trunk

  [ Tiago Salem Herrmann ]
  * Check if the account exists before accessing the pointer. (LP:
    #1408029)
  * Only register telepathy clients and observers after TelepathyHelper
    is ready. (LP: #1408103)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 09 Jan 2015 13:44:26 +0000

telephony-service (0.1+15.04.20141219-0ubuntu1) vivid; urgency=low

  [ CI Train Bot ]
  * Resync trunk

  [ Tiago Salem Herrmann ]
  * Dynamically add and remove telepathy accounts.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 19 Dec 2014 15:25:02 +0000

telephony-service (0.1+15.04.20141212-0ubuntu1) vivid; urgency=low

  [ CI Train Bot ]
  * Resync trunk

  [ Renato Araujo Oliveira Filho ]
  * Added support for [',', ';', '+', '*', '#'] on phone number fields.
    (LP: #1399011, #1372548)

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 12 Dec 2014 20:34:51 +0000

telephony-service (0.1+15.04.20141210-0ubuntu1) vivid; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Tiago Salem Herrmann ]
  * Only set voicemail is the phone number is not empty. (LP: #1398431)
  * Use dbus-send to get the list of modems from ofono.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 10 Dec 2014 18:01:56 +0000

telephony-service (0.1+15.04.20141121.1-0ubuntu1) vivid; urgency=low

  [ Alexandre Abreu ]
  * Add phone number match to phone utils from libphonenumber. This is
    mostly useful in phone number replacement cases like:

  [ Tiago Salem Herrmann ]
  * Provide the translated strings to messaging-menu. Update pot file
    (LP: #1389234)
  * Use only active accounts to send messages. (LP: #1389708)
  * Make sure to always use the selected ringtone on every new incoming
    call. (LP: #1392222)

  [ CI bot ]
  * Resync trunk

  [ Timo Jyrinki ]
  * Merge also lp:~tiagosh/telephony-service/swipe-to-answer

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Gustavo Pichorim Boiko ]
  * Update the snap decision to support more actions.
  * Do not crash if the account manager preparation job does not
    succeed.
  * Wait until the contact match request finishes before showing the
    OSDs. (LP: #1359849)
  * Do not enable quick replying for icoming calls from unknown or
    private numbers. (LP: #1394297)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 21 Nov 2014 17:30:02 +0000

telephony-service (0.1+15.04.20141110.2-0ubuntu1) vivid; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Update the snap decision to support more actions. (LP: #1218289)
  * Do not crash if the account manager preparation job does not
    succeed.

  [ Tiago Salem Herrmann ]
  * Use swipe to answer/reject calls (LP: #1358343)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 10 Nov 2014 18:29:26 +0000

telephony-service (0.1+14.10.20141025~rtm-0ubuntu1) 14.09; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Tiago Salem Herrmann ]
  * Emit a sound feedback when all calls are ended. Play a waiting tone
    instead of regular ringtone for waiting calls. (LP: #1372973)
  * Wake up the screen on incoming mms's. (LP: #1347856)

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Sat, 25 Oct 2014 18:24:27 +0000

telephony-service (0.1+14.10.20141007.1-0ubuntu1) 14.09; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Gustavo Pichorim Boiko ]
  * Report the emergency calls availability to QML. (LP: #1369774)

  [ Tiago Salem Herrmann ]
  * Add simLocked() property to AccountEntry.

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 07 Oct 2014 17:04:51 +0000

telephony-service (0.1+14.10.20140918.1-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Tiago Salem Herrmann ]
  * Avoid displaying on screen notifications for messages if the message
    thread is open. (LP: #1347906)
  * Fix messaging-menu for handling voicemail correctly on dual sim
    phones.

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 18 Sep 2014 13:21:37 +0000

telephony-service (0.1+14.10.20140911-0ubuntu1) utopic; urgency=low

  [ Tiago Salem Herrmann ]
  * Enable dialpad sounds only when enabled in the system-settings. (LP:
    #1365583)
  * Add support for sending silent sms's (skip history service) (LP:
    #1340255)
  * Fix crash on the desktop. Use default account for messaging as a
    fallback. Display a dialog asking the user to choose a sim card when
    sending a message from messaging-menu and no default sim card is
    defined. (LP: #1367270)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 11 Sep 2014 21:29:06 +0000

telephony-service (0.1+14.10.20140905-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Michał Sawicz ]
  * Add :any to python build dependency and rely on debhelper instead of
    direct make calls.

  [ Gustavo Pichorim Boiko ]
  * Add a runtime dependency on gsettings-ubuntu-schemas needed by the
    SIM label settings.

  [ Renato Araujo Oliveira Filho ]
  * Improve contact watcher.

  [ Dimitri John Ledkov ]
  * Add :any to python build dependency and rely on debhelper instead of
    direct make calls.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 05 Sep 2014 13:47:32 +0000

telephony-service (0.1+14.10.20140903-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Ricardo Salveti de Araujo ]
  * ringtone: adding media role for both ringtone and message

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 03 Sep 2014 06:28:35 +0000

telephony-service (0.1+14.10.20140828-0ubuntu1) utopic; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Add a method to invoke greeter.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 28 Aug 2014 23:45:12 +0000

telephony-service (0.1+14.10.20140827-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Tiago Salem Herrmann ]
  * Initial support for AudioOutputs interface.

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 27 Aug 2014 16:39:51 +0000

telephony-service (0.1+14.10.20140825-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Martin Pitt ]
  * Mark for using language packs.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 25 Aug 2014 06:40:43 +0000

telephony-service (0.1+14.10.20140821-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Tiago Salem Herrmann ]
  * Report network name and sim presence to apps.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 21 Aug 2014 21:21:55 +0000

telephony-service (0.1+14.10.20140820-0ubuntu1) utopic; urgency=low

  [ Albert Astals ]
  * Update .pot
  * Mark User Metrics strings for translation and extract them so they
    can get translated (LP: #1353755)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 20 Aug 2014 14:07:22 +0000

telephony-service (0.1+14.10.20140818.1-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Tiago Salem Herrmann ]
  * Do not connect/disconnect signals if the connection is not ready.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 18 Aug 2014 17:45:07 +0000

telephony-service (0.1+14.10.20140814-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Tiago Salem Herrmann ]
  * Fix USSDManager for multiple accounts

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 14 Aug 2014 20:21:37 +0000

telephony-service (0.1+14.10.20140813.1-0ubuntu1) utopic; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Gustavo Pichorim Boiko ]
  * Check if the self contact actually exists before getting its
    presence. (LP: #1355388)
  * Do not update the .po files during `make`, update only the .pot
    file.

  [ Martti Piirainen ]
  * Adding support for tone generator (LP: #1187453). (LP: #1187453)

  [ Tiago Salem Herrmann ]
  * Use system settings to retrieve sim card display names.
  * Reduce vibration duration for text messages. Fix vibration in silent
    mode options for calls/messages (LP: #1347908)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 13 Aug 2014 22:31:48 +0000

telephony-service (0.1+14.10.20140807-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Tiago Salem Herrmann ]
  * Check if there is an account instance before actually accessing it.

  [ Mirco Müller ]
  * Added the use of the symbolic icon for the incoming-call as the
    secondary icon as requested by Design. (LP: #1346838)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 07 Aug 2014 18:46:01 +0000

telephony-service (0.1+14.10.20140730-0ubuntu1) utopic; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Expose the telepathy accounts to QML as objects. This allows us to
    centralize the information about each and every account. This also
    fixes the problem that the voicemail and emergency numbers were only
    being retrieved for the first account.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 30 Jul 2014 18:01:18 +0000

telephony-service (0.1+14.10.20140725.2-0ubuntu1) utopic; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Tiago Salem Herrmann ]
  * Use correct label for blocked and private numbers on messaging-menu.
    (LP: #1340386)
  * Listen for VoicemailNumberChanged() signal (LP: #1347085)
  * Recover mute state. (LP: #1346995)
  * Fix smil file generation (LP: #1347079)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 25 Jul 2014 21:33:01 +0000

telephony-service (0.1+14.10.20140717.1-0ubuntu1) utopic; urgency=low

  [ Tiago Salem Herrmann ]
  * Add isAccountConnected() so apps can track status of individual
    accounts. Fix crash when sending acks during the app startup .

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 17 Jul 2014 18:24:00 +0000

telephony-service (0.1+14.10.20140715.1-0ubuntu1) utopic; urgency=low

  [ Renato Araujo Oliveira Filho ]
  * Export PhoneNumber.PhoneUtils.defaultRegion with the region code
    based on the application locale. (LP: #1331515)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 15 Jul 2014 22:12:05 +0000

telephony-service (0.1+14.10.20140715-0ubuntu1) utopic; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Make sure the handler gets registered to DBus even when there is no
    compatible telepathy account configured. (LP: #1340086)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 15 Jul 2014 16:31:49 +0000

telephony-service (0.1+14.10.20140709.2-0ubuntu1) utopic; urgency=low

  [ Michael Terry ]
  * Don't run tests during build if nocheck is in DEB_BUILD_OPTIONS.

  [ Tiago Salem Herrmann ]
  * Sort list-modems output so /ril_0 is set to account0 on first boot.
  * Add support for vibration on incoming calls/messages. (LP: #1232350)
  * Reduce image sizes before sending them to telepathy. MMS's have a
    limit of 300k (LP: #1337585)

  [ Renato Araujo Oliveira Filho ]
  * Update PhoneNumber formatter text if the autoFormat property
    changes.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 09 Jul 2014 17:41:55 +0000

telephony-service (0.1+14.10.20140709-0ubuntu1) utopic; urgency=low

  [ Tiago Salem Herrmann ]
  * Fix message token to properly remove read messages from the
    messaging menu. (LP: #1236895)

  [ Renato Araujo Oliveira Filho ]
  * Added uninstall rule in CMake. Implemented formattedText in
    AsYouTypeFormatter class that return the cursor position after the
    number format. Fixed PhoneNumberField cursor position after editing.
    .

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 09 Jul 2014 00:58:42 +0000

telephony-service (0.1+14.10.20140703-0ubuntu1) utopic; urgency=low

  [ Michael Terry ]
  * Fix failing GreeterContactsTest by not overriding getuid(), which
    confuses Qt 5.3 unless we also override geteuid(), which we don't
    want to do because it confuses dbus. So instead, we'll just use the
    test runner's UID.

  [ Gustavo Pichorim Boiko ]
  * Expose the greeter being active to the QML plugin.
  * Expose the emergency numbers to the QML plugin

  [ Tiago Salem Herrmann ]
  * Use g_variant_unref() instead of g_object_unref() to avoid crash.
  * Implement MMS sending support.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 03 Jul 2014 03:59:10 +0000

telephony-service (0.1+14.10.20140618-0ubuntu1) utopic; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Add the callIndicatorVisible property to callManager so that dialer-
    app can control the active call indicator visibility.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 18 Jun 2014 20:46:54 +0000

telephony-service (0.1+14.10.20140613.1-0ubuntu1) utopic; urgency=low

  [ Tiago Salem Herrmann ]
  * Delete notifications from mNotifications when actions are performed.

  [ Renato Araujo Oliveira Filho ]
  * [PhoneNumber] Initialize m_formatter with 0. (LP: #1327970)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 13 Jun 2014 18:31:33 +0000

telephony-service (0.1+14.10.20140612.1-0ubuntu1) utopic; urgency=low

  [ Ricardo Mendoza ]
  * Migrate to Platform API V2

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 12 Jun 2014 15:32:48 +0000

telephony-service (0.1+14.10.20140609-0ubuntu1) utopic; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Try to postpone the handler initialization as much as we can. It is
    still launched when the approver is started, but that is probably
    because of the telepathy introspection. (LP: #1325702)

  [ Tiago Salem Herrmann ]
  * Clear pending snap decision when rejecting an incoming call. (LP:
    #1325702)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 09 Jun 2014 20:52:51 +0000

telephony-service (0.1+14.10.20140604-0ubuntu1) utopic; urgency=low

  [ Tiago Salem Herrmann ]
  * Use a new instance of QMediaPlayer on every call. (LP: #1325627)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 04 Jun 2014 15:53:07 +0000

telephony-service (0.1+14.10.20140526-0ubuntu1) utopic; urgency=low

  [ Michael Terry ]
  * Support PA_DISABLED in telephony-service to support running without
    sound.

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Tiago Salem Herrmann ]
  * start indicator only after ofono-setup has finished its execution.
    stop only when the desktop session ends. (LP: #1317692)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 26 May 2014 15:43:45 +0000

telephony-service (0.1+14.10.20140515-0ubuntu1) utopic; urgency=low

  [ Tiago Salem Herrmann ]
  * make indicator recover channels during startup. workaround bugs in
    qmediaplayer/media-hub that is reporting wrong status. fix
    AcknowledgeMessages signature (LP: #1318724)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 15 May 2014 23:17:06 +0000

telephony-service (0.1+14.10.20140514-0ubuntu1) utopic; urgency=low

  [ Renato Araujo Oliveira Filho ]
  * Implemented Telephony.PhoneNumber QML plugin. (LP: #1267250)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 14 May 2014 13:15:39 +0000

telephony-service (0.1+14.10.20140512.1-0ubuntu1) utopic; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Tiago Salem Herrmann ]
  * update po and pot files

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 12 May 2014 23:00:44 +0000

telephony-service (0.1+14.10.20140512-0ubuntu1) utopic; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Expose the telepathy accounts' connectivity status via DBus. (LP:
    #1309143)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 12 May 2014 19:25:30 +0000

telephony-service (0.1+14.10.20140507-0ubuntu1) utopic; urgency=low

  [ Michael Terry ]
  * Tie telephony-service-indicator lifecycle to indicator-messages.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 07 May 2014 19:24:07 +0000

telephony-service (0.1+14.10.20140429-0ubuntu1) utopic; urgency=low

  [ Tiago Salem Herrmann ]
  * use connectedChanged() instead of connectionChanged(). remove
    connectionChanged() as it is not used anywhere (LP: #1234989)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 29 Apr 2014 21:38:36 +0000

telephony-service (0.1+14.04.20140415-0ubuntu1) trusty; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Do not use the TelepathyHelper::accounts(), and use the
    ::accountIds() instead as this might be called before the telepathy
    stuff is prepared. (LP: #1286358)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 15 Apr 2014 19:57:05 +0000

telephony-service (0.1+14.04.20140411-0ubuntu1) trusty; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Make sure the calls still dialing are returned as foregroundCalls
    even when they are not the only ones available.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 11 Apr 2014 12:52:39 +0000

telephony-service (0.1+14.04.20140410.1-0ubuntu1) trusty; urgency=low

  [ Tiago Salem Herrmann ]
  * get accountIds from handler when appropriate to start apps faster.
    set application names .

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 10 Apr 2014 16:19:50 +0000

telephony-service (0.1+14.04.20140407-0ubuntu1) trusty; urgency=low

  [ CI bot ]
  * Add initial USSD support (LP: #1195398)

  [ Tiago Salem Herrmann ]
  * Add class 0 SMS support

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 07 Apr 2014 23:11:52 +0000

telephony-service (0.1+14.04.20140402.1-0ubuntu1) trusty; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Gustavo Pichorim Boiko ]
  * Add support for handling conference calls.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 02 Apr 2014 12:41:39 +0000

telephony-service (0.1+14.04.20140328.1-0ubuntu1) trusty; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Make sure to check the connection object before accessing it.
  * Expose to QML not only background and foreground calls, but a list
    of available calls so that the UI can decide how to display that to
    the user.

  [ Tiago Salem Herrmann ]
  * Fix telephony-service tests.
  * Add upstart job to launch telephony-service indicator at startup.
    (LP: #1296787)
  * Call voicemail when message Id matches the voicemail action.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 28 Mar 2014 18:06:02 +0000

telephony-service (0.1+14.04.20140319-0ubuntu1) trusty; urgency=low

  [ Michael Terry ]
  * Add support for sharing contact info of incoming texts with the
    greeter.
  * Consolidate ringtone code and greeter code so that the service can
    listen to which user is selected in the greeter, and use their
    ringtone.

  [ Gustavo Pichorim Boiko ]
  * Make it possible to handle multiple telepathy accounts.
  * Cleanup the build deps.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 19 Mar 2014 02:49:40 +0000

telephony-service (0.1+14.04.20140306-0ubuntu1) trusty; urgency=low

  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 06 Mar 2014 09:31:29 +0000

telephony-service (0.1+14.04.20140303-0ubuntu1) trusty; urgency=low

  [ Iain Lane ]
  * Read the user's ringtone, message tone and silent mode settings from
    AccountsService instead of GSettings (LP: #1265528)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 03 Mar 2014 17:13:40 +0000

telephony-service (0.1+14.04.20140228.1-0ubuntu1) trusty; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Fix building against Qt 5.2.1 (LP: #1280281)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 28 Feb 2014 23:26:09 +0000

telephony-service (0.1+14.04.20140228-0ubuntu1) trusty; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Avoid flickering the UI on client apps by addressing the following
    points: Get the "hasCalls" property value from the handler even
    before the telepathy observer is properly registered. Delay the
    cleaning up of manager data when unregistering the observer. (LP:
    #1277762)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 28 Feb 2014 14:59:08 +0000

telephony-service (0.1+14.04.20140217.1-0ubuntu1) trusty; urgency=low

  [ Tiago Salem Herrmann ]
  * Add group chat support.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 17 Feb 2014 13:44:49 +0000

telephony-service (0.1+14.04.20140214.1-0ubuntu1) trusty; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Disable the displaying of notifications for calls. This is not
    required anymore in the new designs.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 14 Feb 2014 16:16:29 +0000

telephony-service (0.1+14.04.20140206-0ubuntu1) trusty; urgency=low

  [ Michael Terry ]
  * Share current call contact info with the greeter.

  [ Gustavo Pichorim Boiko ]
  * Get the active timestamp for calls from the handler, as the observer
    is unregistered every time the application goes out of focus. This
    ensures that the call duration will always be correct. Save also the
    DTMF string so that the application can restore that info too after
    it is send to background and back to foreground. (LP: #1225939)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 06 Feb 2014 14:19:38 +0000

telephony-service (0.1+14.04.20140130-0ubuntu1) trusty; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Add the infrastructure to write tests for the handler, and write
    tests for the most important bits of it.
  * Make the dbus-based tests more robust. (LP: #1270778)
  * Improve the support for handling multiple calls by: Using a
    different approach to detect background calls in the QML plugin.
    Make it possible to hangup the active call to answer an incoming
    one. Show notifications when calls are put on hold, when they are
    rejected and when they end. .

  [ Timo Jyrinki ]
  * Use QT_QPA_PLATFORM=minimal to fix test failures (LP: #1270770).
    (LP: #1270770)

  [ Tiago Salem Herrmann ]
  * Fix default action for missed calls. Add voicemail entries to the
    messaging menu.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 30 Jan 2014 17:08:38 +0000

telephony-service (0.1+14.04.20131205-0ubuntu1) trusty; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Test ContactWatcher's "interactive" property.

  [ Tiago Salem Herrmann ]
  * Accept non numeric id's.
  * Add support for private and unknown phone numbers.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 761

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 05 Dec 2013 08:42:04 +0000

telephony-service (0.1+13.10.20131015.2-0ubuntu1) saucy; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Create the GFile from URIs to make sure the percent encoding gets
    properly preserved.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 757

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 15 Oct 2013 20:24:14 +0000

telephony-service (0.1+13.10.20131011-0ubuntu1) saucy; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Make the existence of messaging-menu-message.h mandatory, failing
    the build if it is not there.
  * Use the URL dispatcher to invoke the dialer and messaging apps. (LP:
    #1234903)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 755

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 11 Oct 2013 08:47:29 +0000

telephony-service (0.1+13.10.20131004.1-0ubuntu1) saucy; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Improve the placing of items in the messaging menu by addressing the
    following points: - Add messages to the messaging menu even before
    the contact matching happens for the OSD notifications - Add only
    missed calls to the messaging menu (instead of adding all calls).
    (LP: #1220848)
  * Make it possible to click in the OSD notifications. (LP: #1227718)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 752

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 04 Oct 2013 07:23:24 +0000

telephony-service (0.1+13.10.20131001.4-0ubuntu1) saucy; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Handle exceptions that might occur as a result of metric service
    usage.
  * Properly encode the contact avatar image path. (LP: #1224095)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 749

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 01 Oct 2013 21:20:46 +0000

telephony-service (0.1+13.10.20130926.1-0ubuntu1) saucy; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Add support for user metrics.

  [ Ugo Riboni ]
  * Add support for user metrics.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 746

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 26 Sep 2013 08:46:15 +0000

telephony-service (0.1+13.10.20130919.3-0ubuntu1) saucy; urgency=low

  * Automatic snapshot from revision 744

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 19 Sep 2013 15:47:23 +0000

telephony-service (0.1+13.10.20130830.3-0ubuntu1) saucy; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Reload the ringtone file path from settings every time the playing
    of it is requested to make sure it uses the latest preferences.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 742

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 30 Aug 2013 20:33:17 +0000

telephony-service (0.1+13.10.20130830.2-0ubuntu1) saucy; urgency=low

  [ Loïc Minier ]
  * Let telephony-service depend on dconf-cli as /usr/bin/ofono-setup
    calls /usr/bin/dconf.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 740

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 30 Aug 2013 13:26:54 +0000

telephony-service (0.1+13.10.20130828.1-0ubuntu1) saucy; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Run the mediaplayer calls in a separate thread to avoid locking the
    approver.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 738

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 28 Aug 2013 11:48:47 +0000

telephony-service (0.1+13.10.20130827.2-0ubuntu1) saucy; urgency=low

  [ Bill Filler ]
  * Add Conflicts and Replaces phone-app such that both can't be
    installed at the same time.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 736

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 27 Aug 2013 14:55:22 +0000

telephony-service (0.1+13.10.20130827-0ubuntu1) saucy; urgency=low

  * Automatic snapshot from revision 734

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 27 Aug 2013 02:43:17 +0000

telephony-service (0.1+13.10.20130826.1-0ubuntu1) saucy; urgency=low

  [ Gustavo Pichorim Boiko ]
  * Initial release

  [ Timo Jyrinki ]
  * Automatic snapshot from revision 730 (bootstrap) 

  [ Gustavo Pichorim Boiko ]
  * Create a new daemon to host the indicators and OSD to get that code
    out of the approver.

  [ Tiago Salem Herrmann ]
  * register observer only when necessary add
    unregisterChannelObserver() method. (LP: #1208869)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 733

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 26 Aug 2013 19:14:38 +0000