~mardy/ubuntu-system-settings-online-accounts/listitems

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
ubuntu-system-settings-online-accounts (0.7+17.04.20170126-0ubuntu3) UNRELEASED; urgency=medium

  * debian/control:
    - Bump dependency version on libmirclient-dev
    - Add build dependency on UAL
  * Remove calls to deprecated mir_wait_handle() function.
  * Use ubuntu-app-launch to retrieve the client application's name and icon

 -- Alberto Mardegan <alberto.mardegan@canonical.com>  Wed, 22 Feb 2017 15:19:46 +0300

ubuntu-system-settings-online-accounts (0.7+17.04.20170126-0ubuntu1) zesty; urgency=medium

  * debian/control:
    - Add dependency for QML client library (LP: #1659486)

 -- Alberto Mardegan <mardy@users.sourceforge.net>  Thu, 26 Jan 2017 06:46:36 +0000

ubuntu-system-settings-online-accounts (0.7+17.04.20170116-0ubuntu1) zesty; urgency=medium

  * Look for .application files in all XDG directories (LP: #1656806)

 -- Alberto Mardegan <mardy@users.sourceforge.net>  Mon, 16 Jan 2017 13:27:02 +0000

ubuntu-system-settings-online-accounts (0.7+17.04.20170109-0ubuntu1) zesty; urgency=medium

  [ Alberto Mardegan ]
  * Use AdaptivePageLayout and new header in SystemSettings plugin (LP:
    #1651183)

 -- Jonas G. Drange <jonas.drange@canonical.com>  Mon, 09 Jan 2017 10:41:34 +0000

ubuntu-system-settings-online-accounts (0.7+17.04.20161118-0ubuntu1) zesty; urgency=medium

  [ Alberto Mardegan ]
  * Support running inside a snap (LP: #1642225)

 -- Marcus Tomlinson <marcus.tomlinson@canonical.com>  Fri, 18 Nov 2016 06:09:50 +0000

ubuntu-system-settings-online-accounts (0.7+17.04.20161101-0ubuntu1) zesty; urgency=medium

  * Re-enable tests on arm64
  * Update icon in System Settings. (LP: #1289401)

 -- Alberto Mardegan <mardy@users.sourceforge.net>  Tue, 01 Nov 2016 07:11:00 +0000

ubuntu-system-settings-online-accounts (0.7+16.10.20161006.2-0ubuntu1) yakkety; urgency=medium

  * Use GetConnectionCredentials() method instead of the deprecated
    apparmor-specific method. (LP: #1489489)
  * Re-enable tests for powerpc, disable arm64

 -- Alberto Mardegan <mardy@users.sourceforge.net>  Thu, 06 Oct 2016 09:59:28 +0000

ubuntu-system-settings-online-accounts (0.7+16.10.20161004-0ubuntu1) yakkety; urgency=medium

  * Tests: create runtime directory, fix execution under pbuilder (LP:
    #1614108)
  * Build-Depend on upstart to avoid s390x builds on yakkety.

 -- Alberto Mardegan <mardy@users.sourceforge.net>  Tue, 04 Oct 2016 09:33:35 +0000

ubuntu-system-settings-online-accounts (0.7+16.10.20160929-0ubuntu1) yakkety; urgency=medium

  * Properly handle early termination of account access requests (LP:
    #1594944)

 -- Alberto Mardegan <mardy@users.sourceforge.net>  Thu, 29 Sep 2016 09:08:00 +0000

ubuntu-system-settings-online-accounts (0.7+16.10.20160928-0ubuntu1) UNRELEASED; urgency=medium

  * debian/control, debian/libonline-accounts-plugin-dev.install:
    - Don't depend on main package, don't allow linking to
      libonline-accounts-plugin.so (LP: #1612299)

 -- Alberto Mardegan <alberto.mardegan@canonical.com>  Thu, 28 Sep 2016 15:15:04 +0300

ubuntu-system-settings-online-accounts (0.7+16.10.20160830.2-0ubuntu1) yakkety; urgency=medium

  [ Alberto Mardegan ]
  * debian/rules:
    - Don't run tests on powerpc (LP: #1606927)

  [ Gary.Wzl ]
  * add a new property "userAgent" for OAuth item. (LP: #1587282)

  [ Timo Jyrinki ]
  * Add qttools5-dev-tools build dependency (LP: #1608814)

 -- Alberto Mardegan <mardy@users.sourceforge.net>  Tue, 30 Aug 2016 08:37:06 +0000

ubuntu-system-settings-online-accounts (0.7+16.10.20160718-0ubuntu1) yakkety; urgency=medium

  [ Alberto Mardegan ]
  * Fix desktop file name for scopes: they use their short app ID (LP:
    #1541717)

  [ Florian Boucault ]
  * Crossbuilding fixes

 -- Alberto Mardegan <mardy@users.sourceforge.net>  Mon, 18 Jul 2016 12:15:06 +0000

ubuntu-system-settings-online-accounts (0.7+16.10.20160628.2-0ubuntu1) yakkety; urgency=medium

  * Read time from symlink file, not target (LP: #1596478)

 -- Alberto Mardegan <mardy@users.sourceforge.net>  Tue, 28 Jun 2016 09:53:46 +0000

ubuntu-system-settings-online-accounts (0.7+16.10.20160616.1-0ubuntu1) yakkety; urgency=medium

  [ Alberto Mardegan ]
  * Treat the Unity8 dash as an unconfined process (LP: #1589444)

 -- Pawel Stolowski <pawel.stolowski@canonical.com>  Thu, 16 Jun 2016 11:41:30 +0000

ubuntu-system-settings-online-accounts (0.7+16.10.20160610-0ubuntu1) yakkety; urgency=medium

  [ Alberto Mardegan ]
  * Immediately accept degenerate requests from unconfined processes
    (LP: #1582824)
  * Replace incorrect usage of UbuntuColors (LP: #1581047)
  * Update pot file for translations (LP: #1533091)
  * Open popups in an overlaid webview (LP: #1428591)
  * Skip tests on arm64 (LP: #1585942)

  [ Alberto Mardegan, Timo Jyrinki ]
  * Stop depending on transitional packages. (LP: #1583079)

 -- Alberto Mardegan <mardy@users.sourceforge.net>  Fri, 10 Jun 2016 09:46:37 +0000

ubuntu-system-settings-online-accounts (0.7+16.04.20160420-0ubuntu1) xenial; urgency=medium

  [ Alberto Mardegan ]
  * Allow configuring verbosity level from configuration file (LP:
    #1570735)
  * Use provider name as page title (LP: #1567435)

 -- David Barth <david.barth@canonical.com>  Wed, 20 Apr 2016 13:58:51 +0000

ubuntu-system-settings-online-accounts (0.7+16.04.20160331-0ubuntu1) xenial; urgency=medium

  [ Alberto Mardegan ]
  * Always show the UbuntuOne provider in the providers list (LP:
    #1559506)
  * Enable scrolling in authorization page. (LP: #1561031)

  [ CI Train Bot ]
  * Resync trunk.

 -- David Barth <david.barth@canonical.com>  Thu, 31 Mar 2016 10:28:57 +0000

ubuntu-system-settings-online-accounts (0.7+16.04.20160322-0ubuntu1) xenial; urgency=medium

  [ Alberto Mardegan ]
  * Fix false positive in duplicate account detection (LP: #1560494)

  [ CI Train Bot ]
  * Resync trunk.

 -- David Barth <david.barth@canonical.com>  Tue, 22 Mar 2016 14:23:16 +0000

ubuntu-system-settings-online-accounts (0.7+16.04.20160308-0ubuntu1) xenial; urgency=medium

  [ Alberto Mardegan ]
  * Bind flickable to page. (LP: #1544033)
  * Don't crash on invalid providers (LP: #1554254)
  * Don't use deprecated onLoadingChanged signal. (LP: #1544063)
  * ProviderRequest: fix single account handling in authorization page
    (LP: #1552762)
  * Update authorisation prompt (LP: #1544919)

  [ CI Train Bot ]
  * Resync trunk.

 -- David Barth <david.barth@canonical.com>  Tue, 08 Mar 2016 08:48:44 +0000

ubuntu-system-settings-online-accounts (0.7+16.04.20160226-0ubuntu1) xenial; urgency=medium

  [ Alberto Mardegan ]
  * Add check for duplicate account detection (LP: #1468599)

  [ CI Train Bot ]
  * Resync trunk.

 -- David Barth <david.barth@canonical.com>  Fri, 26 Feb 2016 08:40:18 +0000

ubuntu-system-settings-online-accounts (0.7+16.04.20160111-0ubuntu1) xenial; urgency=medium

  [ Alberto Mardegan ]
  * Hooks: allow only one plugin per manifest (LP: #1520605)

  [ CI Train Bot ]
  * Resync trunk.

 -- David Barth <david.barth@canonical.com>  Mon, 11 Jan 2016 17:00:13 +0000

ubuntu-system-settings-online-accounts (0.7+16.04.20151127-0ubuntu1) xenial; urgency=medium

  [ Alberto Mardegan ]
  * Don't handle window closing more than once. (LP: #1517253)
  * Fix label style and page scrolling (LP: #1289433)
  * Strip trailing "/" when comparing URLs (LP: #1173926)

  [ CI Train Bot ]
  * New rebuild forced.

 -- David Barth <david.barth@canonical.com>  Fri, 27 Nov 2015 08:57:10 +0000

ubuntu-system-settings-online-accounts (0.7+16.04.20151126-0ubuntu1) xenial; urgency=medium

  [ Alberto Mardegan ]
  * Fixes to the password dialog and tests: Correct layout, by setting a
    height on the button row Don't handle the finished() signal more
    than once Fix click hook tests, by using a sincle D-Bus connection
    for all tests (LP: #1418090, #1508935)
  * Hide providers which no application can use (LP: #1495531)

  [ CI Train Bot ]
  * New rebuild forced.

 -- David Barth <david.barth@canonical.com>  Thu, 26 Nov 2015 16:06:02 +0000

ubuntu-system-settings-online-accounts (0.7+16.04.20151102-0ubuntu1) xenial; urgency=medium

  [ Alberto Mardegan ]
  * Retry authentication on network errors (LP: #1504099, #1349975)

 -- David Barth <david.barth@canonical.com>  Mon, 02 Nov 2015 07:29:24 +0000

ubuntu-system-settings-online-accounts (0.7+16.04.20151030.1-0ubuntu1) xenial; urgency=medium

  [ Alberto Mardegan ]
  * Use version 1.3 of Ubuntu.Components (LP: #1508363, #1511055)

  [ CI Train Bot ]
  * Resync trunk.

 -- David Barth <david.barth@canonical.com>  Fri, 30 Oct 2015 15:41:24 +0000

ubuntu-system-settings-online-accounts (0.7+16.04.20151028.1-0ubuntu1) xenial; urgency=medium

  [ Alberto Mardegan ]
  * Regenerate hooks whenever file time changes (LP: #1510640)

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

 -- David Barth <david.barth@canonical.com>  Wed, 28 Oct 2015 14:00:46 +0000

ubuntu-system-settings-online-accounts (0.7+15.10.20150928-0ubuntu1) wily; urgency=medium

  [ Alberto Mardegan ]
  * Simplify hooks, load v2api library added: click-hooks/accounts.cpp
    click-hooks/accounts.hook.in click-hooks/acl-updater.cpp click-
    hooks/acl-updater.h click-hooks/click-hooks.pro click-hooks/online-
    accounts-hooks2.pro online-accounts-
    service/com.ubuntu.OnlineAccounts.Manager.service.in tests/click-
    hooks/click-hooks.pro tests/click-hooks/fake_signond.h tests/click-
    hooks/signond.py tests/click-hooks/tst_online_accounts_hooks2.cpp
    tests/click-hooks/tst_online_accounts_hooks2.pro renamed: click-
    hooks/click-hooks.pro => click-hooks/online-accounts-hooks.pro
    tests/click-hooks/click-hooks.pro => tests/click-
    hooks/tst_online_accounts_hooks.pro

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

 -- David Barth <david.barth@canonical.com>  Mon, 28 Sep 2015 14:38:43 +0000

ubuntu-system-settings-online-accounts (0.7+15.10.20150806-0ubuntu1) wily; urgency=medium

  [ Alberto Mardegan ]
  * New release
    - Add new "serviceId" property to the Ubuntu.OnlineAccounts.Client Setup
      class.
    - Support shadow builds

 -- CI Train Bot <ci-train-bot@canonical.com>  Thu, 06 Aug 2015 13:07:08 +0000

ubuntu-system-settings-online-accounts (0.6+15.10.20150804-0ubuntu1) wily; urgency=medium

  * Resync trunk.

 -- CI Train Bot <ci-train-bot@canonical.com>  Tue, 04 Aug 2015 09:05:45 +0000

ubuntu-system-settings-online-accounts (0.6+15.10.20150716-0ubuntu2~gcc5.1) wily; urgency=medium

  * No-change test rebuild for g++5 ABI transition

 -- Steve Langasek <steve.langasek@ubuntu.com>  Fri, 17 Jul 2015 22:43:27 +0000

ubuntu-system-settings-online-accounts (0.6+15.10.20150716-0ubuntu1) wily; urgency=medium

  [ Andreas Pokorny ]
  * rebuild for libmirclient9 part of mir release 0.14.0 - removes
    architecture restrictions imposed by previous mir releases.

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

 -- CI Train Bot <ci-train-bot@canonical.com>  Thu, 16 Jul 2015 18:35:01 +0000

ubuntu-system-settings-online-accounts (0.6+15.10.20150715-0ubuntu1) wily; urgency=medium

  [ Alberto Mardegan ]
  * Inject the APP_ID into the child process's environment. (LP:
    #1468792)

  [ CI Train Bot ]
  * New rebuild forced.
  * Resync trunk.

 -- CI Train Bot <ci-train-bot@canonical.com>  Wed, 15 Jul 2015 11:13:52 +0000

ubuntu-system-settings-online-accounts (0.6+15.10.20150624-0ubuntu1) wily; urgency=medium

  [ Alberto Mardegan ]
  * Fix build with Qt 5.5 (LP: #1387537, #1421009, #1448878, #1447175)
  * Return the error name to the client (LP: #1441873)

  [ CI Train Bot ]
  * New rebuild forced.

 -- CI Train Bot <ci-train-bot@canonical.com>  Wed, 24 Jun 2015 13:36:39 +0000

ubuntu-system-settings-online-accounts (0.6+15.04.20150417-0ubuntu1) vivid; urgency=medium

  [ Alberto Mardegan ]
  * Update pot file (LP: #1445072, #1432613)

  [ CI Train Bot ]
  * New rebuild forced.

 -- CI Train Bot <ci-train-bot@canonical.com>  Fri, 17 Apr 2015 14:57:06 +0000

ubuntu-system-settings-online-accounts (0.6+15.04.20150409-0ubuntu1) vivid; urgency=medium

  [ Alberto Mardegan ]
  * Flush writes to the JSON cookie file before telling to online-
    accounts-service that we are ready. Otherwise there is the risk of
    having online-accounts-service read that file before it has been
    written. (LP: #1440034)

  [ CI Train Bot ]
  * New rebuild forced.
  * Resync trunk.

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

ubuntu-system-settings-online-accounts (0.6+15.04.20150327-0ubuntu1) vivid; urgency=medium

  * New rebuild forced.

 -- CI Train Bot <ci-train-bot@canonical.com>  Fri, 27 Mar 2015 11:13:26 +0000

ubuntu-system-settings-online-accounts (0.6+15.04.20150319-0ubuntu1) vivid; urgency=medium

  [ Alberto Mardegan ]
  * Merge from upstream
    - Add account data as search keywords (LP: #1373279)
    - Delete accounts when their plugin is removed (LP: #1413542)
    - More fixes for plugin confinement (LP: #1219644)
    - Fail initialization if trust session cannot be setup (LP: #1420847)

  [ CI Train Bot ]
  * Resync trunk
  * Resync trunk
  * Resync trunk
  * Resync trunk

 -- CI Train Bot <ci-train-bot@canonical.com>  Thu, 19 Mar 2015 10:52:45 +0000

ubuntu-system-settings-online-accounts (0.6+15.04.20150211-0ubuntu1) vivid; urgency=medium

  [ CI Train Bot ]
  * Fix tests with Qt 5.4

  [ Timo Jyrinki ]
  * Use qt_gl_set_global_share_context with Qt 5.4 (LP: #1398372) (LP:
    #1398372)

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

ubuntu-system-settings-online-accounts (0.6+15.04.20150210-0ubuntu1) vivid; urgency=medium

  [ Albert Astals Cid ]
  * Fix tests with Qt 5.4
  * Remove declared but undefined function

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 10 Feb 2015 13:40:44 +0000

ubuntu-system-settings-online-accounts (0.6+15.04.20150126-0ubuntu1) vivid; urgency=medium

  [ Alberto Mardegan ]
  * Merge from upstream
    - Anchor the webview directly to the OSK (LP: #1413765)
    - Fix click hook to rebuild service list in the accounts DB
        
 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 26 Jan 2015 17:22:45 +0000

ubuntu-system-settings-online-accounts (0.6+15.04.20150116-0ubuntu1) vivid; urgency=medium

  [ Alberto Mardegan ]
  * New upstream release
    - Make sure app items are not overlaid on top of each other (LP: #1384314)
    - Remove snap decision fallback
    - Make account plugins confinable (LP: #1219644)

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 16 Jan 2015 17:18:06 +0000

ubuntu-system-settings-online-accounts (0.5+15.04.20141209-0ubuntu1) vivid; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Alberto Mardegan ]
  * Load testability driver if QT_LOAD_TESTABILITY is set (LP: #1400619)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 09 Dec 2014 13:45:40 +0000

ubuntu-system-settings-online-accounts (0.5+15.04.20141127.1-0ubuntu1) vivid; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Alberto Mardegan ]
  * Merge from upstream:

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 27 Nov 2014 10:50:18 +0000

ubuntu-system-settings-online-accounts (0.5+15.04.20141031-0ubuntu2) vivid; urgency=medium

  * No-change rebuild against Qt 5.3.2.

 -- Timo Jyrinki <timo-jyrinki@ubuntu.com>  Mon, 03 Nov 2014 15:03:22 +0200

ubuntu-system-settings-online-accounts (0.5+15.04.20141031-0ubuntu1) vivid; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Alexandre Abreu ]
  * Setup the shared GL context needed to trigger the HW compositor path
    in Oxide (LP: #1377181)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 31 Oct 2014 12:05:55 +0000

ubuntu-system-settings-online-accounts (0.5+14.10.20141023~rtm-0ubuntu1) vivid; urgency=medium

  [ Alberto Mardegan ]
  * Use trusted prompts for SignOnUi (LP: #1378660)
  * Implement QML dialog for password queries (LP: #1347771) (LP: #1379863)

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 23 Oct 2014 15:08:55 +0000

ubuntu-system-settings-online-accounts (0.5+14.10.20141009.3-0ubuntu1) 14.09; urgency=medium

  [ Alberto Mardegan ]
  * Rename QML package (LP: #1342031)
  * Create the Ubuntu.OnlineAccounts.Plugin module (LP: #1377062)
  * Fix typo on component name (LP: #1378726)

  [ Ubuntu daily release ]
  * New rebuild forced

  [ David Barth ]
  * Improve the layout of the authorization page (LP: #1378332)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 09 Oct 2014 20:20:54 +0000

ubuntu-system-settings-online-accounts (0.4+14.10.20141006-0ubuntu1) utopic; urgency=low

  [ Ken VanDine ]
  * Provide more keywords to make search useful (LP: #1370219) (LP:
    #1370219)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 06 Oct 2014 08:06:12 +0000

ubuntu-system-settings-online-accounts (0.4+14.10.20141001-0ubuntu1) utopic; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Alberto Mardegan ]
  * Minor improvements

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 01 Oct 2014 13:31:34 +0000

ubuntu-system-settings-online-accounts (0.4+14.10.20140925-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Alberto Mardegan ]
  * Enforce the limit on single accounts even when the request comes
    from an app .

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

ubuntu-system-settings-online-accounts (0.4+14.10.20140917-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Alberto Mardegan ]
  * Don't go back to SystemSettings when creating the first account.
    Keep listening to account model changes. Set QML import path for
    click plugins. Enable automatic orientation .

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 17 Sep 2014 09:05:56 +0000

ubuntu-system-settings-online-accounts (0.4+14.10.20140908-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Alberto Mardegan ]
  * Handle stopping of trusted sessions. Use new Oxide cookie API .

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 08 Sep 2014 08:55:20 +0000

ubuntu-system-settings-online-accounts (0.4+14.10.20140903-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Alberto Mardegan ]
  * Make locating of icons more robust

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

ubuntu-system-settings-online-accounts (0.4+14.10.20140827-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Alberto Mardegan ]
  * Implement the D-Bus method to export cookies. Updated the list of
    files to translate and the template. Fix autopilot tests .

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

ubuntu-system-settings-online-accounts (0.4+14.10.20140819.1-0ubuntu1) utopic; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Alberto Mardegan ]
  * Add desktop file information to .application files. Make the click
    hook work even without D-Bus. better feedback while waiting for the
    Trusted Session Prompt to appear .
  * Fix autopilot tests Change the name of the main page, which is now
    the one from System Settings. Remove the test case for account
    creation, because the implementation has moved into a separate
    process and is not easily testable.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 19 Aug 2014 14:43:48 +0000

ubuntu-system-settings-online-accounts (0.4+14.10.20140818.1-0ubuntu1) utopic; urgency=low

  [ Alberto Mardegan ]
  * New version - Use signon-ui-service, to fix co-installation with of
    signon-ui.- Implement reauthentication (via snap-decisions) (LP:
    #1346950)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 18 Aug 2014 13:46:44 +0000

ubuntu-system-settings-online-accounts (0.4+14.10.20140708-0ubuntu2) utopic; urgency=medium

  * Add forgotten test-dep on ubuntu-ui-toolkit-autopilot.

 -- Iain Lane <iain@orangesquash.org.uk>  Tue, 08 Jul 2014 15:13:08 +0100

ubuntu-system-settings-online-accounts (0.4+14.10.20140708-0ubuntu1) utopic; urgency=low

  [ Leo Arias ]
  * Refactored the autopilot tests to use the page object pattern. Added
    the method go to add account to be used in UX tests.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 08 Jul 2014 11:05:35 +0000

ubuntu-system-settings-online-accounts (0.4+14.10.20140701-0ubuntu1) utopic; urgency=low

  [ MichaƂ Sawicz ]
  * New icon from suru theme.

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

ubuntu-system-settings-online-accounts (0.4+14.10.20140612-0ubuntu1) utopic; urgency=medium

  [ Alberto Mardegan ]
  * Add signon-ui-service, to fix co-installation of signon-ui.

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 12 Jun 2014 13:37:54 +0000

ubuntu-system-settings-online-accounts (0.3+14.10.20140530.1-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Release development branch Features landing with this branch:
    Updating the ACL when applications are enabled/disabled in System
    Settings. Write profile information in the XML files installed by
    click hooks. Run tests with Python 3 autopilot. Merge signon-ui into
    online-accounts-ui .

  [ Alberto Mardegan ]
  * Release development branch Features landing with this branch:
    Updating the ACL when applications are enabled/disabled in System
    Settings. Write profile information in the XML files installed by
    click hooks. Run tests with Python 3 autopilot. Merge signon-ui into
    online-accounts-ui .

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 30 May 2014 13:30:35 +0000

ubuntu-system-settings-online-accounts (0.3+14.10.20140516.1-0ubuntu1) utopic; urgency=low

  [ Martin Pitt ]
  * Fix wrong title check in autopilot test. Run autopilot under Xvfb
    and dbus-launch in the autopkgtest, and add missing autopilot-
    desktop test dependency. (LP: #1320175)

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

ubuntu-system-settings-online-accounts (0.3+14.10.20140506.1-0ubuntu1) utopic; urgency=medium

  [ Alberto Mardegan ]
  * Complete the service-side implementation of the access request API.

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 06 May 2014 12:50:51 +0000

ubuntu-system-settings-online-accounts (0.3+14.04.20140328-0ubuntu3) trusty; urgency=medium

  * debian/control: alternatively depend on the OpenGLES version of
    qtdeclarative5-ubuntu-ui-toolkit-plugin

 -- Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>  Tue, 15 Apr 2014 20:50:36 -0300

ubuntu-system-settings-online-accounts (0.3+14.04.20140328-0ubuntu2) trusty; urgency=medium

  * No-change rebuild for shlib changes in qtbase and qtdeclarative.

 -- Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>  Mon, 14 Apr 2014 14:05:08 -0300

ubuntu-system-settings-online-accounts (0.3+14.04.20140328-0ubuntu1) trusty; urgency=low

  [ Alberto Mardegan ]
  * Fix a few UI issues: Application title should be "Accounts".
    Explanatory text should use the Caption style. Cancel button when
    starting the OAuth process moved to the bottom of the page. (see the
    linked bugs for details) (LP: #1289406)

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

ubuntu-system-settings-online-accounts (0.3+14.04.20140307.1-0ubuntu1) trusty; urgency=low

  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 07 Mar 2014 08:37:17 +0000

ubuntu-system-settings-online-accounts (0.3+14.04.20140304.is.0.2~+14.04.20131205-0ubuntu1) trusty; urgency=medium

  * Reverting as desktop image isn't installable (main/universe
    mismatch) and causing all signon-ui tests on Touch failing

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 05 Mar 2014 12:20:04 +0100

ubuntu-system-settings-online-accounts (0.3+14.04.20140304-0ubuntu1) trusty; urgency=low

  [ Alberto Mardegan ]
  * Implement access request API for applications.

  [ Timo Jyrinki ]
  * Use extra xvfb parameters to fix tests (LP: #1272198). (LP:
    #1272198)

  [ Scott Sweeny ]
  * Support loading the qml page for an account service from
    ~/.local/share/accounts/qml-plugins if one does not exist in the
    system-wide directory.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 04 Mar 2014 15:12:42 +0000

ubuntu-system-settings-online-accounts (0.3-0ubuntu1) UNRELEASED; urgency=low

  * Implement access request API for applications.

 -- Alberto Mardegan <alberto.mardegan@canonical.com>  Tue, 12 Nov 2013 14:44:35 +0200

ubuntu-system-settings-online-accounts (0.2~+14.04.20131205-0ubuntu1) trusty; urgency=low

  [ Alberto Mardegan ]
  * Use new iconName property for list items Also, avoid using the
    deprecated model roles from accounts-qml-module: account ->
    accountHandle accountService -> accountServiceHandle Introducing a
    new Item as root item in the ServiceItem component is needed in
    order to hide the Repeater's "model" property, which would otherwise
    conflict with the homonymous context property in
    ServiceSwitches.qml. . (LP: #1257028)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 85

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

ubuntu-system-settings-online-accounts (0.2~+14.04.20131129-0ubuntu1) trusty; urgency=low

  [ Alberto Mardegan ]
  * Disable autopilot test on the phone We have to do this because of
    https://bugs.launchpad.net/bugs/1252294. (LP: #1252294)
  * Test, setUp(): don't launch the app on the phone.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 82

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 29 Nov 2013 14:05:40 +0000

ubuntu-system-settings-online-accounts (0.2~+14.04.20131108-0ubuntu1) trusty; urgency=low

  [ Alberto Mardegan ]
  * Move OnlineAccounts into its own process Create the
    com.canonical.OnlineAccountsUI D-Bus service, whose task is to show
    the Online Accounts UI when clients request it. The SystemSettings
    plugin for Online Accounts becomes just one of these clients. The
    rationale for the change is that it has been decided by design that
    multiple instances of Online Accounts can be running at the same
    time (because the Online Accounts UI will be modal to the
    application which invoked it), yet they need to coordinate in order
    to avoid the creation of the same account in two different places.
    Using a single process with multiple windows and exposing a D-Bus
    API seems to be the best approach and is also flexible enough to
    accomodate for most of the design changes that might pop up. It's
    also a proved approach, used already by signon-ui (in fact, most of
    the code is taken from there). .
  * Implement window transiency Let the service know what QWindow is
    active in the client process, and use that one as parent window for
    the transiency.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 77

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 08 Nov 2013 11:39:33 +0000

ubuntu-system-settings-online-accounts (0.2~+13.10.20131016-0ubuntu1) saucy; urgency=low

  [ Alberto Mardegan ]
  * Fix OAuth authentication with parameters Fix an obvious JS error. .
    (LP: #1240513)
  * Enforce single-account for providers who require it . (LP: #1234282)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 70

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 16 Oct 2013 14:02:41 +0000

ubuntu-system-settings-online-accounts (0.2~+13.10.20131011-0ubuntu1) saucy; urgency=low

  [ Ken VanDine ]
  * Put the cancel button in a ListItem to ensure consistent spacing
    with other elements in system-settings.

  [ Andrew Starr-Bochicchio ]
  * Add loading indicator to OAuth page. (LP: #1235004)

  [ Alberto Mardegan ]
  * Delay destruction of the delegate until the edit page is popped Use
    ListView.delayRemove feature to delay the destruction of the
    delegate until we have removed the edit page from the stack. . (LP:
    #1231729)
  * Add a Cancel button to the OAuth authentication pages Use signon-
    ui's new X-PageComponent key to specify a QML page to be used. (LP:
    #1231691)
  * Close the WebView when the authentication is cancelled. (LP:
    #1231680)
  * AccountCreationPage: look for a "flickable" property from the
    plugin. (LP: #1221845)
  * Stop using deprecated gicon image provider .

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 65

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

ubuntu-system-settings-online-accounts (0.2~+13.10.20131004-0ubuntu1) saucy; urgency=low

  [ Alberto Mardegan ]
  * By default, only let unconfined apps access Online Accounts. (LP:
    #1234099)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 52

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

ubuntu-system-settings-online-accounts (0.2~+13.10.20131002-0ubuntu1) saucy; urgency=low

  [ Alberto Mardegan ]
  * Add autopilot tests.

  [ Ɓukasz 'sil2100' Zemczak ]
  * Fix to use dh_python2 for the -autopilot package

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 48

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 02 Oct 2013 04:09:06 +0000

ubuntu-system-settings-online-accounts (0.2~+13.10.20130925-0ubuntu1) saucy; urgency=low

  [ Alberto Mardegan ]
  * Pop the correct number of pages after account creation Let the
    calling page decide how many times pageStack.pop() should be called.
    (LP: #1223963)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 45

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 25 Sep 2013 11:12:16 +0000

ubuntu-system-settings-online-accounts (0.2~+13.10.20130910.3-0ubuntu1) saucy; urgency=low

  * Automatic snapshot from revision 42

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 10 Sep 2013 19:19:58 +0000

ubuntu-system-settings-online-accounts (0.2~+13.10.20130808.3-0ubuntu1) saucy; urgency=low

  [ Ken VanDine ]
  * multiarch fixes.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 39

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 08 Aug 2013 15:27:04 +0000

ubuntu-system-settings-online-accounts (0.2~+13.10.20130808.2-0ubuntu1) saucy; urgency=low

  [ Ken VanDine ]
  * Add OnlineAccountsClient library and QML module This library can be
    used by applications to invoke the Online Accounts panel in order to
    request the creation of accounts, by provider or by service-type. On
    the panel side, only the initiation of account creation by provider
    name is implemented; the service-type filtering requires some more
    work and will come later.

  [ Alberto Mardegan ]
  * Add OnlineAccountsClient library and QML module This library can be
    used by applications to invoke the Online Accounts panel in order to
    request the creation of accounts, by provider or by service-type. On
    the panel side, only the initiation of account creation by provider
    name is implemented; the service-type filtering requires some more
    work and will come later.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 37

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 08 Aug 2013 09:28:31 +0000

ubuntu-system-settings-online-accounts (0.2~+13.10.20130712-0ubuntu1) saucy; urgency=low

  [ Sebastien Bacher ]
  * Use SingleControl again, the toolkit margin issues have been fixed.
  * set up for translations (based on the system settings example).

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 30

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 12 Jul 2013 07:01:46 +0000

ubuntu-system-settings-online-accounts (0.2~+13.10.20130628.1-0ubuntu1) saucy; urgency=low

  [ Ken VanDine ]
  * set category to personal to match designs .
  * set priority .
  * Set boundsBehavior on the flickables .

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 27

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 28 Jun 2013 19:40:37 +0000

ubuntu-system-settings-online-accounts (0.2~+13.10.20130628-0ubuntu1) saucy; urgency=low

  [ Ken VanDine ]
  * Don't include the example provider and plugin in the installed
    package .

  [ Sebastien Bacher ]
  * Use Base items for buttons, instead of SingleControl ones (until bug
    #1194844 is fixed in the ui toolkit). That should give us correct
    margins for those items. Use the same spacing for the labels. (LP:
    #1194844)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 23

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 28 Jun 2013 07:01:01 +0000

ubuntu-system-settings-online-accounts (0.2~+13.10.20130626.1-0ubuntu1) saucy; urgency=low

  [ Alberto Mardegan ]
  * Account editing: show applications, not services
  * Allow plugins to override the authentication parameters This is
    going to be needed for google, at least (to get the refresh token).
    .

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 20

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 26 Jun 2013 19:36:34 +0000

ubuntu-system-settings-online-accounts (0.2~daily13.06.25-0ubuntu1) saucy; urgency=low

  [ Sebastien Bacher ]
  * Small visual tweaks: - use listitems for list buttons, that gives
    visual consistency - use the same margin for labels in list than
    other items - some tweaks to strings to match the design
    recommendations.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 17

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 25 Jun 2013 07:01:02 +0000

ubuntu-system-settings-online-accounts (0.2~daily13.06.19-0ubuntu1) saucy; urgency=low

  [ Ken VanDine ]
  * Updated icon color to match the default for keyColor .

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 15

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 19 Jun 2013 07:01:00 +0000

ubuntu-system-settings-online-accounts (0.2~daily13.06.17-0ubuntu1) saucy; urgency=low

  [ Ken VanDine ]
  * Added icon and updated name to "Accounts" to match designs .

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 13

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 17 Jun 2013 07:01:57 +0000

ubuntu-system-settings-online-accounts (0.2~daily13.06.10.1-0ubuntu1) saucy; urgency=low

  * Automatic snapshot from revision 11

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 10 Jun 2013 14:56:10 +0000

ubuntu-system-settings-online-accounts (0.2~daily13.06.10-0ubuntu1) saucy; urgency=low

  * Automatic snapshot from revision 10

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 10 Jun 2013 07:01:49 +0000

ubuntu-system-settings-online-accounts (0.2~daily13.06.09-0ubuntu1) saucy; urgency=low

  * Automatic snapshot from revision 9

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Sun, 09 Jun 2013 07:01:48 +0000

ubuntu-system-settings-online-accounts (0.2~daily13.06.08.1-0ubuntu1) saucy; urgency=low

  * Automatic snapshot from revision 8

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Sat, 08 Jun 2013 07:01:49 +0000

ubuntu-system-settings-online-accounts (0.2~daily13.06.08-0ubuntu1) saucy; urgency=low

  * Automatic snapshot from revision 7

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Sat, 08 Jun 2013 04:50:02 +0000

ubuntu-system-settings-online-accounts (0.2~daily13.06.07-0ubuntu1) saucy; urgency=low

  [ Ken VanDine ]
  * New upstream version
    - Add support for account plugins
    - Provide classes to enable writing OAuth-based plugins.
  * debian/rules
    - use fail-missing

  [ Alberto Mardegan ]
  * First iteration Show existing accounts and providers list
  * packaging tweaks
  * Add support for account plugins Provide classes to enable writing
    OAuth-based plugins.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 6

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 07 Jun 2013 15:57:24 +0000

uoa-setup-touch (0.1daily13.05.30ubuntu.unity.next-0ubuntu1) saucy; urgency=low

  [ Alberto Mardegan ]
  * Initial release.
  * First iteration Show existing accounts and providers list
  * packaging tweaks

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 3 (ubuntu-unity/next)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 30 May 2013 18:20:28 +0000