~ci-train-bot/ubuntu-ui-toolkit/ubuntu-ui-toolkit-ubuntu-xenial-landing-027

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

  [ Christian Dywan ]
  * Fix typo in runtest.sh: $? is the error code, not $*.
  * Document use of RegExpValidator for password/ PIN input.
  * Include filename derived QML class name in .api. Fixes LP: #1527138
  * Use edit-clear for clear button instead of the invalid clear search.
  * No transparency in focus outline.
  * Give the original Toolbar its name back.
  * Fix typo in runtest.sh: $? is the error code, not $*.
  * Use resolved filename but add fragment. Fixes LP: #1401920 

  [ Zoltán Balogh ]
  * Use build root for the Gestures library instead of relative path.
  * Fix the tests for the gallery change
  
  [ Zsombor Egri ]
  * Add mnemonics support to Action. Fixes LP: #1527527
  * Use original Image.source in image extension when no scaling is needed in 
    order to keep the formatting which would be otherwise removed from a 
    resolved file URL. Fixes LP: #1401920
  * Move UbuntuListView 1.3 code into one single file. Fixes LP: #1523815
 
  [ Albert Astals Cid ]
  * Add UCTestExtras::removeTimeConstraintsFromSwipeArea
    For that needed to move ucswipearea.cpp from UbuntuComponents to 
    UbuntuGestures but made it in a private header so we don't have to care much
    for the API/ABI stability for now.
  
  [ Andrea Bernabei ]
  * make scrollbars tests more robust.

  [ Tim Peeters ]
  * Update font sizes. Fixes LP: #1528263  

  [ CI Train Bot ]
  * No-change rebuild.

 -- Zoltan Balogh <zoltan.balogh@canonical.com>  Wed, 06 Jan 2016 04:27:02 +0000

ubuntu-ui-toolkit (1.3.1778+16.04.20151221-0ubuntu1) xenial; urgency=medium

  [ Tim Peeters ]
  * Fix issue with trigger() for ListItems.Standard. (LP: #1527811)

 -- Zoltan Balogh <zoltan.balogh@canonical.com>  Mon, 21 Dec 2015 21:09:04 +0000

ubuntu-ui-toolkit (1.3.1778+16.04.20151217.1-0ubuntu1) xenial; urgency=medium

  [ Andrea Bernabei ]
  * Rework Scrollbars and add ScrollView component.

  [ Zsombor Egri ]
  * Refactor UCSwipeAreaPrivate to use QQuickItemPrivate instead of being
    a QObject.

  [ Tim Peeters ]
  * Reduce toolbar height on phone in landscape orientation. 
    Fixes LP: #1336793.
  * Introduce the new Toolbar component for the header edit mode. 
  * Reduce the PageHeader height by 1 GU on phone in landscape orientation. 
    Fixes LP: #1336793
  * Fix AppHeader 1.2 to use the new MathUtils. This fixes a failing autopilot
    CPO test.

  [ Zoltan Balogh ]
  * Do not wipe when provisioning for normal use and improve 
    regression detection.
  * Try to link Gestures more explicitely. (kudos to xnox).

  [ Christian Dywan ]
  * Proper keyboard navigation and focus visuals for buttons. 
    Fixes LP: #1225139, LP: #1514850
  * Escape should close popover. Fixes LP: #1523828
  * Surround state overloading message with static boolean. Fixes LP: #1523399
  * Don't exit, return 1 from export_modules_dir.sh.

  [ Michael Sheldon ]
  * Set the activeFocus on the input component when a text input area receive
    focus. Fixes LP: #1518352

  [ Benjamin Zeller ]
  * Move PageTreeNode to C++.
  * Custom property flag needs to be set always even when the value itself does not change.

  [ Albert Astals Cid ]
  * Make some more members slots
    This way we can use them in unity8 to make the drag areas more easily 
    testable by making the times to recognize the gestures longer.

  [ CI Train Bot ]
  * No-change rebuild.

 -- Zoltan Balogh <zoltan.balogh@canonical.com>  Thu, 17 Dec 2015 17:13:56 +0000

ubuntu-ui-toolkit (1.3.1761+16.04.20151216.1-0ubuntu1) xenial; urgency=medium

  [ Zoltán Balogh ]
  * Drop dependency on qtc plugin script and wait for the shell with a local 
    function.

  [ Christian Dywan ]
  * runtest.sh needs to add subdirs to the libpath. Fixes: LP: #1524710.
  * Explicit click/ touch threshold beyond handler.
  * Enter/Return/Space should trigger() Button. Fixes: LP: #1523794.
  * Only set ppmm in SwipeArea if screen has valid dpi. Fixes: LP: #1525174.

  [ Tim Peeters ]
  * Implement header slot management for convergence:
    - Adapt the number of action slots to the width of the view.
    - When a new action appears, show a quick fade-in.
    - Reverse the order of the actions in the header.
    - Update icon width to 4GU. Fixes: LP: #1428757.
  * To prevent an invalid sectionIndex, reset the value of sectionIndex to -1
    when the model of Sections is changed. Fixes: LP: #1513933.

  [ Loïc Molinari ]
  * UbuntuShape - Cleaned up includes.
  
  [ Albert Astals Cid ]
  * Simplify logic for emitting draggingChanged/pressedChanged
    No need for a switch that considers the possible cases, just store the
    status before and check after
    Fixes an issue in which the SwipeArea pressedChanged signal was not emitted
    if switching directly from WaitingForTouch to Recognized.
  * Fix memory leak in SwipeArea
    SwipeAreaPrivate is not deleted directly so make it part of the qobject
    hierarchy so it's auto deleted on parent destruction.
   
  [ Zsombor Egri ]
  * Add reset functionality to Action.shortcut property. Fixes: LP: #1518420.
  * Add contentWidth and contentHeight to Dialog so foreground can be resized. 
    Fixes: LP: #1249325.
  * Fixing ListItem.selected and ListItem.selectMode bugs. 
    Fixes: LP: #1493880, LP: #1493882, LP: #1514928. 
  * Add private implementations to ActionItem, AbstractButton, BottomEdgeHint
    and BottomEdge. Fixes: LP: #1524234
  * Close Popups.Dialog when Esc key is pressed. Fixes LP: #1523833
  * Invoke the overridden trigger() function for Action and ActionItem 
    derivates. Fixes LP: #1524234
  * Fix BottomEdge assertion when the content is committed by clicking on the 
    hint. Fixes LP: #1524407

  [ CI Train Bot ]
  * No-change rebuild.

 -- Zoltan Balogh <zoltan.balogh@canonical.com>  Wed, 16 Dec 2015 10:01:47 +0000

ubuntu-ui-toolkit (1.3.1742+16.04.20151209-0ubuntu1) xenial; urgency=medium

  [ Zoltán Balogh ]
  * Enable building the UITK tests in any case.
  * Remove Q_Q(UCStyledItemBase) because of unused variable warning.
  * Resolve Trusty specific compiler issue not resolving QPointer data on 
    connections.
  * Use only the object name when selecting sections and labels in tests.

  [Zsombor Egri ]
  * Update BottomEdge with UI/UX agreed during the sprint. Fixes LP: #1368811.
  * BottomEdge component. Fixes LP: #1368811.
  * Remove build failure on Xenial caused by deprecated Qt functions.
  * Fix BottomEdgeHint consumes activeFocusOnPress handling. Fixes LP: #1517777
  * Migrate DirectionalDragArea from Unity8, named as SwipeArea. Original code 
    (from lp:unity8) by: Daniel d'Andrada <daniel.dandrada@canonical.com>.
  * Delete QQuickView when the application quits. Fixing segfault caused by the
    dangling objects in GestireDetector.
  * BottomEdgeHint API changes, deprecating state property, introducing locked
    property to drive visuals lock and click handling.
  * Fixing CheckBox and Switch getting checked property altered after clicked()
    signal is emitted. Fixes LP: #1510919.
  * Add ListItem.swipeEnabled property to block swiping when overlay MouseArea 
    is used to drag content. Fixes swiping when leading/trailing actions list 
    is empty. Fixes LP: #1500409, LP: #1500416.
  * Follow the new design in BottomEdgeHint.
  * Provide import version information for StyledItem and remove theme.version 
    obsolete property.
  * Use QQuickItemChangeListener to listen parent changes, skipping the meta 
    object model. Convert UCThemingExtension into a Q_INTERFACE so object_cast<>
    can work with it saving the need to memorise on an item whether it is an 
    extended item or not.
  * Set mouseAttached to false to revert regression in UITK gallery.
  * Remove BottomEdgeHint from UITK gallery's MainPage.qml which occludes with 
    the bottom-up dragging of the ListView.

  [ Benjamin Zeller ]
  * Avoid unnecessary updates for i18n strings.
  * "MathUtils.clamp, min value should not be bigger than the max value". 
    Fixes LP: #1520557.
  * Move MathUtils to Cpp.

  [ Loïc Molinari ]
  * UbuntuShape - Fixed deprecation logging issues.
  * This fix prevents logging a deprecation warning for "image", "color" and 
    "gradientColor" properties when the import version is less than 1.3. The 
    logging of properties used internally (through the old image wrapper) have 
    been removed too since the user might not even have used them. 
    Fixes LP: #1519414.

  [ Christian Dywan ]
  * Enable gallery target in qmake.
  * Don't set activeFocusOnPress on TextField but on child only. 
    Fixes LP: #1486274, LP: #1513897.
  * Make runtest.sh work out of the box again.
  * Explicitly handle keyboard anchoring in dialog foreground. 
    Fixes LP: #1376763.
  * Remove GestureDetector in favor of SwipeArea in BottomEdgeHint. Also make
    possible to assign Action to the component. Fixes LP: #1517771, LP: #1517798
  * Enforce !activeFocusOnPress on TextField primary/secondaryItem. 
    Fixes LP: #1513897.
  * Only run ActivityIndicator if visible. Fixes LP: #1513450.
  * Use wait_select_single for _get_button in Popover CPO.
  * Include composite types in .api again.
  * More forgiving QML plugin/ version discovery.
  * Update toolkit and gallery po templates. Fixes LP: #1512924.
  * Improve handling of list types in apicheck.
  * Smaller handlers, entirely draggable caret. Fixes LP: #1450222.
  * Special-case leaked QQuickImageBase properties. Fixes LP: #1473890.
  * Don't use UniqueConnection in the image extension
  * Sync the height of the Page header with the other subheaders in the 
    AdaptivePageLayout.

  [ Tim Peeters ]
  * Add extension property to PageHeader.
  * Don't set the header.moving property when flickable contents height changes 
    but the header does not actually move. Fixes LP: #1514143.
  * Fix the icon color in the AppHeader. Fixes LP: #1515593.
  * Use PageHeader in the UITK gallery.
  * Ensure PageHeader style works properly with run-time theme changes.
  * Add a back action to the Page.header automatically in PageStack and 
    AdaptivePageLayout.
  * Add a navigationActions property to PageHeader.
  * Fix links to Page in the documentation.
  * Fix several header CPO related issues.
  * Only select visible header label instance in checkPageHeader().

  [ Florian Boucault ]
  * DraggingArea: import Ubuntu.Components so that MathUtils is available and  
    no warning is output.

  [ Brendan Donegan ]
  * Account for presence of OSK in Flickable helpers and add a test for the same
  
  [ Andrea Bernabei ]
  * ListItemLayout: set QML context of the predefined labels. Fixes lp1514173.
    Fixes LP: #1514173.
  * Add the ignoreSynthesizedEvents property. When the property is enabled, the 
    Mouse filter ignores any synthesized mouse event, such as those created by 
    the touch-to-mouse events synthesis. Enabling this property makes it 
    possible to only trigger the hovering logic ONLY when using a mouse, and not
    when using a touchscreen (as it happens when using MouseArea).
  
  [ Timo Jyrinki ]
  * Change HandlerType from int[2] to QVector<int> to make it work with Qt 5.5 
    Fixes LP: #1484004, LP: #1450346
  * Workaround 'emit' declaration in Qt 5.5 Fixes LP: #1507910
  * Build depend on libxkbcommon-dev Fixes LP: #1508447

  [ CI Train Bot ]
  * No-change rebuild.

 -- Zoltan Balogh <zoltan.balogh@canonical.com>  Wed, 09 Dec 2015 14:44:07 +0000

ubuntu-ui-toolkit (1.3.1705+16.04.20151120.1-0ubuntu2) xenial; urgency=medium

  * Rebuild against Qt 5.5.1.
  * Cherry-pick required patches from staging branch:
    - externalimagetype.patch (LP: #1473890)
    - hack-qt55-int.patch (LP: #1484004)
    - workaround_emit.patch (LP: #1507910)

 -- Timo Jyrinki <timo-jyrinki@ubuntu.com>  Fri, 20 Nov 2015 15:16:08 +0200

ubuntu-ui-toolkit (1.3.1705+16.04.20151120.1-0ubuntu1) xenial; urgency=medium

  [ Timo Jyrinki ]
  * Update toolkit and gallery po templates and fixes LP: #1517829 (LP:
    #1517829)

  [ Zoltán Balogh ]
  * Update toolkit and gallery po templates and fixes LP: #1517829 (LP:
    #1517829)

 -- Zoltan Balogh <zoltan.balogh@canonical.com>  Fri, 20 Nov 2015 10:39:29 +0000

ubuntu-ui-toolkit (1.3.1705+16.04.20151118-0ubuntu1) xenial; urgency=medium

  [ Zoltán Balogh ]
  * Update toolkit and gallery po templates

 -- Zoltan Balogh <zoltan.balogh@canonical.com>  Wed, 18 Nov 2015 06:13:32 +0000

ubuntu-ui-toolkit (1.3.1705+16.04.20151103-0ubuntu1) xenial; urgency=medium

  [ Zsombor Egri ]
  * Fix Sections sync with PageHeadSections selectedIndex changes. (LP:
    #1511839)

 -- Zoltan Balogh <zoltan.balogh@canonical.com>  Tue, 03 Nov 2015 11:16:12 +0000

ubuntu-ui-toolkit (1.3.1705+16.04.20151031-0ubuntu1) xenial; urgency=medium

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

  [ Christian Dywan ]
  * Smaller handlers, entirely draggable caret (LP: #1450222)

  [ Zsombor Egri ]
  * Switch and CheckBox fix when checked is not toggled when clicked()
    signal is emitted. (LP: #1510919)

 -- Zoltan Balogh <zoltan.balogh@canonical.com>  Sat, 31 Oct 2015 04:59:31 +0000

ubuntu-ui-toolkit (1.3.1688+15.10.20151018.1-0ubuntu1) wily; urgency=medium

  [ Tim Peeters ] 
  * Add delegate property to ActionBar.
  * Introduce PageHeader component.
  * Add header property to Page. 
    Fixes LP: #1248898, LP: #1350893, LP: #1445016, LP: #1492328
  * Use the correct navigation overflow icon in PageHeader.
  
  [ Loïc Molinari ]
  * Fixed OpenGL ES 2 mipmap fallback. OpenGL ES 2 doesn't support 
    GL_TEXTURE_MAX_LEVEL by default, it is only available via an extension. It 
    was working on the devices where this extension is available but not on 
    the emulator. Fixes LP: #1505221.

  [ Christian Dywan ]
  * Handle incubateObject returning null in PageWrapperUtils. 
    Fixes LP: #1505197
  * Add module header to PageWrapperUtils.

  [ Zoltan Balogh ]
  * Improve test plan
    - Ad -q parameter to provision the device for normal use with a PPA
    - Fix up the camera and clock app on the device to acces services
    - Replace phablet tools with manual enabling writable image
    - Fix PPA pin up for staging and other regular PPAs.

  [ Zsombor Egri ]
  * Emit Dropped event for live ListItem drag'n'drop. Fixes LP: #1500118.

  [ Timo Jyrinki ]
  * Build dep on libinput-dev and libxkbcommon-dev (LP: #1437192). 

  [ Benjamon Zeller ]
  * Remove unused variables.
  
  [ CI Train Bot ]
  * No-change rebuild.

 -- Zoltan Balogh <zoltan.balogh@canonical.com>  Sun, 18 Oct 2015 03:47:27 +0000

ubuntu-ui-toolkit (1.3.1676+15.10.20151008-0ubuntu1) wily; urgency=medium

  [ Zsombor Egri ]
  * Fix corner case on Label having styled item. (LP: #1503901)

 -- Zoltan Balogh <zoltan.balogh@canonical.com>  Thu, 08 Oct 2015 10:57:10 +0000

ubuntu-ui-toolkit (1.3.1676+15.10.20151006.2-0ubuntu1) wily; urgency=medium

  [ Zsombor Egri ] 
  * StyledItem does no longer fall back to 1.2 style loading on mixed import
    versions.
  * Make primaryPage and primaryPageSource replaceable after component 
    completion. Fixes LP: #1500934

  [ Christian Dywan ]
  * Merge open_page and _open_page in GalleryTestCase.

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

 -- Zoltan Balogh <zoltan.balogh@canonical.com>  Tue, 06 Oct 2015 09:11:40 +0000

ubuntu-ui-toolkit (1.3.1672+15.10.20151002.1-0ubuntu1) wily; urgency=medium

  [ Tim Peeters ]
  * Use the new cpp Header in the internal AppHeader.
  * Don't use old Label type in AP tests for header.
  * Fix failing AP tests for actions and tabs overflow panels by using the 
    ActionSelectionPopover CPO.
  * Don't assume Label in ActionBarTestCase is of type Label.
  * Animate hidden header on app focus. Fixes LP: #1500483

  [ Zsombor Egri ]
  * AbstractButton.pressAndHold captured in Connection. Fixes LP: #1495554.
  * Introduce AdaptivePageLayout.primaryPageSource to load primary pages 
    asynchronously. Fixes LP: #1499179.
 
  [ Andrea Bernabei ]

  * Remove REVISION 1 from textSize property of UCLabel and add test in 
    ListItemLayout tests to avoid breaking textSize initialization again. 
    Fixes LP: #1501673

  [ Christian Dywan ]
  * Remove ' from ActionList - no separator here.
  * Accomodate gallery for moving to UbuntuListView and ListItem.

  [ Albert Astals Cid ]
  * Enable Efficient String Construction by default See 
    http://blog.qt.io/blog/2011/06/13/string-concatenation-with-qstringbuilder/

  [ Loïc Molinari ]
  * [UbuntuShape] Workaround Adreno 320's shader compiler bug.

  [ CI Train Bot ]
  * No-change rebuild.

 -- Zoltan Balogh <zoltan.balogh@canonical.com>  Fri, 02 Oct 2015 16:32:27 +0000

ubuntu-ui-toolkit (1.3.1658+15.10.20151001-0ubuntu1) wily; urgency=medium

  [ Zsombor Egri ]
  * Boosting ListItem performance by removing the workaround brought in for 1.3
    specific API.
  * Fix Picker's pathItemCount binding loops in 1.3. 
    Fixes LP: #1419667
  * Moving Label to cpp.
  * Separate theming from StyledItem to ease subtheming. 
    Prerequisite for Label optimisations.
  * Add pages to columns in AdaptivePageLayout only when the page loading 
    completes. Fixes LP: #1492343, LP: #1499178.
  * AdaptivePageLayout loads URL based Page Components asynchronously. 
    Fixes: LP: #1499174.

  [ Andrea Bernabei ]
  * Add init() to UCLabel so that C++ class can create *and* initialize UCLabel.

  [  Zoltan Balogh ]
  * Integrated application startup time profiling tool.

  [ Christian Dywan ]
  * Implement RTL switch in toolkit gallery. Fixes LP: #1496913.
  * wait_select_single in checkPageHeader. The page is being loading 
    asynchronously in an AdaptivePageLayout so it may not be instantly 
    available. Fixes LP: #1498863.
  * checkPageHeader mustn't assume OrientationHelper in MainView. 
    Fixes LP: #1498412.

  [ Ken VanDine]
  * Don't fail if AppHeader doesn't have a useDeprecatedToolbar property

  [ Loïc Molinari  ]
  * [UbuntuShape] Added mipmap based anti-aliasing fallback
    Some OpenGL implementations not supporting standard derivatives (like the 
    Ubuntu Touch emulator) need a fallback solution. This change implements 
    that using mipmaps. It also implied a change in the way y coordinates are 
    computed allowing to make the distance fields version perfectly anti-aliased
    under any rotation. Fixes LP: #1480199, LP: #1494272.

  [  Tim Peeters ]
  * New Header C++ component.

  [ CI Train Bot ]
  * New rebuild forced.
  * Resync trunk. added: examples/ubuntu-ui-toolkit-gallery/po/pt.po

 -- Zoltan Balogh <zoltan.balogh@canonical.com>  Thu, 01 Oct 2015 19:52:41 +0000

ubuntu-ui-toolkit (1.3.1641+15.10.20150922-0ubuntu1) wily; urgency=medium

  [ Zsombor Egri ]
  * ActionItem visible and enabled internal bindings not broken when the 
    property values are having new bindings or value assignments. 
    Fixes LP: #1495408
  * ListItem swipe over leading/trailing actions blocked.
    Fixes LP: #1486008, LP: #1496468, LP: #1497156

  [ Christian Dywan ]
  * Use new launcher path in gallery script and .bzrignore.
  * FragmentShader of Icon shouldn't activate when unwanted.
  * Unit test that popovers block mouse clicks. Fixes LP: #1488540
  * Install ubuntu-ui-toolkit-launcher under /usr/bin.
  * Register UCApplication and UCFontsUtils so they appear in .api.
  * Cope with different AbstractButton class name in 1.3.
  * Implement click_action_button in ActionSelectionPopover CPO. 
    Fixes LP: #1205144

  [ Albert Astals Cid ]
  * Make sure pageWrapper.incubator is set before manually calling 
    incubatorStatusChanged
  * Bring back pageComponent.createObject for sync pages Fixes regression in 
    unity8's unity8.settings_wizard.tests.test_settings_wizard.
    SkipThroughSettingsWizardTestCase.test_skipping_through_wizard autopilot

  [ Olivier Tilloy ]
  * Take custom key indexes into account in QSortFilterProxyModelQML::get(). 
    Fixes LP: #1495641

  [ Zoltan Balogh ]
  * Customize the UITK test plan and add silo pinning.
  * Disable crahsing gallery.test_gallery.OpenPagesTestCase.test_open_page

  [ CI Train Bot ]
  * No-change rebuild.

 -- Timo Jyrinki <timo.jyrinki@canonical.com>  Tue, 22 Sep 2015 01:28:56 +0000

ubuntu-ui-toolkit (1.3.1627+15.10.20150908-0ubuntu1) wily; urgency=medium

  [ Zsombor Egri ]
  * Implement list item expansion.
  * Turn AdaptivePageLayout page creation to be asynchronous.
  * Fix ListItem swipe handling when gesture is initiated over an overlay 
    MouseArea which does not accept pressed event. Fixes LP: #1484545
  * AbstractButton to C++. Fixes LP: #1365471, LP: #1458028
  * Haptics singleton moved to C++.
  * ActionItem moved to C++.
  * Making columns resizable in an AdaptivePageLayout.
  * Introducing column configuration into AdaptivePageLayout.

  [ Benjamin Zeller ]
  * Fix build inside qt and shadowbuild.

  [ Tim Peeters ]
  * Remove old and unused header-related files, and update unit test filenames. 
  * Don't unset the subheader style when Page.head changes because that unsets 
    the parent of Page.head.contents. Fixes LP: #1488922
  * Fix the theming of the MainView.
  * Fix the background color of the overflow panel.

  [ Christian Dywan ]
  * Include change signals with arguments in .api.
  * A public QML type with no version is an error. Rather than silently breaking
    as QML does normally at least apicheck can make this fatal.
  * UbuntuShape shouldn't emit redundant deprecation warnings. Fixes LP: #1481791
  * Update .bzrignore to new upstream style layout. Fixes LP: #1433308
  * Revert unnecessary change of Popover minimumWidth. Fixes LP: #1483708

  [ Ken VanDine ]
  * Fixed a few typos in the api docs for StateSaver.

  [ Olivier Tilloy ]
  * Take custom key indexes into account to allow sorting on custom roles. 
    Fixes LP: #1485674

  [ Albert Astals Cid ]
  * Properly free shapeTextures[index] The old code assumes that the UbuntuShape 
    will still be around when the opengl context is destroyed, but that seldom 
    happens so connect the signal to a lambda that will be there and does the 
    cleanup properly. Without this patch testDirectionalDragArea from unity8 was 
    hitting the qFatal because it ran out of space in shapeTextures.

  [ Richard Huddie ]
  * Remove all usage of the autopilot simulated keyboard when the OSK is being 
    used. Fixes LP: 31483668

  [ Gerry Boland ]
  * Compensate for Qt's device pixel ratio multiplier. 
    Fixes: LP: #1207270, LP: #1275748, LP: #1468402

  [ Nick Dedekind ]
  * Added relative date time i18n.

  [ CI Train Bot ]
  * Resync trunk.

 -- Zoltan Balogh <zoltan.balogh@canonical.com>  Tue, 08 Sep 2015 04:10:50 +0000

ubuntu-ui-toolkit (1.3.1603+15.10.20150824.1-0ubuntu1) wily; urgency=medium

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

  [ Christian Dywan ]
  * Make deprecation warnings from C++ opt-in (LP: #1467851)

 -- CI Train Bot <ci-train-bot@canonical.com>  Mon, 24 Aug 2015 20:49:45 +0000

ubuntu-ui-toolkit (1.3.1603+15.10.20150819.2-0ubuntu1) wily; urgency=medium

  [ CI Train Bot ]
  * Resync trunk.

  [ Tim Peeters ]
  * Do not use the GL_OES_standard_derivatives extension in the emulator
    (and other possible unsupported platforms). (LP: #1458694)

 -- CI Train Bot <ci-train-bot@canonical.com>  Wed, 19 Aug 2015 19:49:50 +0000

ubuntu-ui-toolkit (1.3.1603+15.10.20150812-0ubuntu1) wily; urgency=medium

  [ Tim Peeters ]
  * Use grid units in Icons in the showcase gallery. Fixes LP: #1481489
  * Disable header buttons when the header is animating. Fixes LP: #1478147
  * Add ActionBar examples to the gallery.
  * Make the default MainView background plain white. Fixes LP: #1481834 

  [ Zsombor Egri ]
  * Fixing swiping over active components. Fixes LP: #1479688.
  * Fixing broken BottomEdgeHint gallery page.

  [ Zoltán Balogh ]
  * Fix packaging question marks / issues. Fixes LP: #1481584

  [ Loïc Molinari ]
  * UbuntuShape - Added support drop shadow aspect support to UbuntuShapeOverlay
    Fixes LP: #1480197.
  * UbuntuShape - Removed content orientation work around.
    The shape was using a workaround to make it render correctly when the 
    content orientation was not the native one. This was perfect for the 
    OrientationHelper shipped with the toolkit but now that the Shell 
    implements the rotation, this is not needed anymore and causes some 
    rendering issues. Note that the shape will still needs to support 
    correct rendering when rotated using the rotation property of the Item, 
    but that is a different issue. Fixes LP: #1466656.
  * UbuntuShape - Added a DropShadow aspect. Fixes LP: #1478129.
  * Renamed ShellIcon to ProportionalShape.
  * UbuntuShape - Added an ShellIcon item. Fixes LP: #1478130

  [ Nick Dedekind ]
  * Added LiveTimer.

  [ Christian Dywan ]
  * Grab focus when Dialog is shown.
  * Set Qt.IBeamCursor on text component MouseArea's. Fixes LP: #1483823
  * Make automaticOrientation on MainView a no-op. Fixes LP: #1470258
  * Fix warnings on undefine theme.name in gallery
    examples/ubuntu-ui-toolkit-gallery/ubuntu-ui-toolkit-gallery.qml:48:
      TypeError: Cannot read property of null.

  [ Ken VanDine ]
  * Don't fail if MainView doesn't have a useDeprecatedToolbar property
    Fixes LP: #1451243

  [ CI Train Bot ]
  * Resync trunk. added: examples/ubuntu-ui-toolkit-gallery/po/uk.po

 -- CI Train Bot <ci-train-bot@canonical.com>  Wed, 12 Aug 2015 17:31:20 +0000

ubuntu-ui-toolkit (1.3.1584+15.10.20150730-0ubuntu1) wily; urgency=medium

  [ Florian Boucault ]
  * New BottomEdgeHint component to represent extra features available from the 
    bottom edge of an application.

  [ Loïc Molinari ]
  * [UbuntuShape] Added a big radius.
  * [UbuntuShape] Added relative radius support. Fixes LP: #1478124.
  * Ensured components, styles, examples and tests use the new UbuntuShape 
    properties (not deprecated). Fixes LP: #1437412.

  [ Benjamin Zeller ]
  * Make use of the official qt build macros to blend into the Qt buildprocess.
  * Fix debug builds, optimization is always enabled by the system qt build.

  [ Richard Huddie ]
  * Fix for autopilot bug lp:1476715. Don't throw an exception if maliit-server
    is not found. Fixes LP: #1476715.

  [ Tim Peeters ]
  * Clean up the MainView docs.
  * Set theme version for Sections component.
  * Implement AdaptivePageLayout.

  [ Zsombor Egri ]
  * Fix width for trailing and leading actions of a ListItem. Fixes LP: #1465582.
  * Button and Haptics import wrong toolkit versions, thus they break style 
    versioning. Moving Icon and ProgressBar to 1.0 and 1.1 version source folder.
  * SuruDark theme for ListItem style. Fixes LP: #1451225.
  * Swiping ListItem when no actions are defined for the gesture breaks 
    selectMode. Fixes LP: #1468100.
  * Fixing selected connection with the ListItem's select mode checkbox state. 
    Fixes LP: #1461501, LP: #1469471.

  [ Timo Jyrinki ]
  * Fix ucstylehints.cpp compilation with Qt 5.5. Fixes LP: #1473873.
  * Add PageHeadStyle 1.3 reference to fix install_plugins_qmltypes failure with 
    Qt 5.5. Fixes LP: #1466484.

  [ Christian Dywan ]
  * Avoid hard-coded skipping of members by name "type" can be a property name 
    regardless of also being a field in the JSON description of a property.
  * Add apicheck unit test for QML and Javascript.
  * Remove "do cleanup" comments. Fixes LP: #1369874.
  * Initialize defaultTypes later to avoid bogus types.
  * Implement Action.shortcut property. Fixes LP: #1202464.
  * Update text handler to 3gu assert.
  * Add a deprecated note to ListItems.ThinDivider. Fixes LP: #1470951.
  * Don't include overridden properties in API.
  * Clean-up API check wrapper scripts.
  * Track version members were introduced.
  * Implement ListItemPopover on right-click. Fixes LP: #1452676.
  * Move delegate's chevron into the row and size it explicitly. 
    Fixes LP: #1474418.
  * Enable (Shift)Tab via activeFocusOnTab. Fixes LP: #1276797.
  * Only swipe with left button and block timer otherwise. 
    Fixes LP: #1476300, LP: #1476310.
  * Include Javascript libraries in QML documentation. Fixes LP: #1466058.

  [ Albert Astals Cid ]
  * Fix warning if there's no __propagated
  * TypeError: Cannot call method 'hasOwnProperty' of null.

 -- CI Train Bot <ci-train-bot@canonical.com>  Thu, 30 Jul 2015 13:04:18 +0000

ubuntu-ui-toolkit (1.3.1549+15.10.20150710.1-0ubuntu1) wily; urgency=medium

  [ Timo Jyrinki ]
  * arch specific deps (LP: #1473035) (LP: #1473035)

 -- CI Train Bot <ci-train-bot@canonical.com>  Fri, 10 Jul 2015 06:31:57 +0000

ubuntu-ui-toolkit (1.3.1549+15.10.20150706-0ubuntu1) wily; urgency=medium

  [ Tim Peeters ]
  * Disable header animations to avoid bugs when popping a PageStack in a loop. 
    Fixes LP: #1461729
  * New header visuals, using the ActionBar and Sections components.  
  * Introduce the new Sections component.
  * Fix initialization for hidden and locked header.

  [ Benjamin Zeller ]
  * Fixes LP: #1461042 Qthelp documentation (pressing in F1) has no style in 
    qtcreator.
  
  [ Richard Huddie ]
  * Use the real OSK for keyboard input.

  [ Zsombor Egri ]
  * Fix AlamrModel segfault when updating elements. Fixes LP: #1463430

  [ Vincent Ladeuil ]
  * In the initctl test fixture,add the option to unset an environment variable
  
  [ Christian Dywan ]
  * QQmlContextData.url is a method in 5.5.0. Fixes LP: #1461897.
  * OrientationHelper shouldn't move depending on availableHeight. The 
    parentChanged/availableHeight change in OrientationHelper is the bug fix 
    itself. The new property UbuntuApplication.inputMethod defaults to 
    Qt.inputMethod and the unit test overrides it to reproduce the bug (fix) 
    regardless of device and input method setup - the mock keyboard is NOT 
    expected to be fully functional, buttons are but a placeholder irrelevant 
    for the test case.
    I removed hideInputPanel() as it's not being used anywhere, not essential 
    to the bug, but mainly unconfusing anyone working with the code as to what 
    actually affects inputMethod visibility. 
    Fixes LP: #1428206, LP: #1455406, LP: #1466222.
  * Use a custom sort function for type names.
  * Popover sizing should depend on whether it has a target.
  * Replace Styles page with a header action.

  [ Leo Arias ]
  * Updated the documentation of the autopilot click_element helpers. 
    Fixes LP: #1451945

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

ubuntu-ui-toolkit (1.3.1534+15.10.20150625-0ubuntu1) wily; urgency=medium

  [ Christian Dywan ]
  * Use TextField.write rather than keyboard.type.
  * Update normal.backgroundText in SuruDark to #5D5D5D. Fixes LP: #1413801.
  * Fix "runtest.sh: line 78: [: -eq: unary operator expected]".
  * Consider caret visibility to decide text menu anchor. Fixes LP: #1462419.
  * Remove text from header textinput AP test QML. Fixes LP: #1459632.
  * No deprecation notes for our own components. Fixes LP: #1457528.
 
  [ Leonardo Arias Fonseca ]
  * Add url protocols to the fake application.
  * Adds a dependency to url-dispatcher-tools in ubuntu-ui-toolkit-autopilot.
  * Use the test launcher for all the toolkit autopilot tests.
 
  [ Zsombor Egri ]
  * Remove property bindings before property write does it. Fixes LP: #1462738.
  * Introducing StyleHints to provide style specific property changes.
  * Remove ThemeSettings.createStyleComponent() and add styleName to StyledItem.
    Fixes LP: #1458845.
 
  [ Loïc Molinari ]
  * [UbuntuShape] Computed dfdt factors based on window content orientation.
  * Previous logic was based on screen orientation which is not in sync with 
    OrientationHelper.qml. Fixes LP: #1455567.
 
  [ Timo Jyrinki ] 
  * Change -html documentation runtime dependencies into Suggests only to limit
    ubuntu-sdk download size. We're switching to offering only .qch offline 
    documentation in SDK (inside of it), and they're being added to the seed. 
    Fixes LP: #1461034.
  * Licensecheck started complaining about a person name, change to Canonical. 
    Fixes LP: #1464549
 
  [ Andrea Bernabei ]
  * Modify ListItem.Caption label margins. Fixes LP: #1314672.
 
  [ Tim Peeters ]
  * Introduce IconButtonStyle. 

 -- CI Train Bot <ci-train-bot@canonical.com>  Thu, 25 Jun 2015 04:37:52 +0000

ubuntu-ui-toolkit (1.3.1517+15.10.20150523-0ubuntu3) wily; urgency=medium

  * Rebuild against Qt 5.4.2
  * debian/patches/fix_copyright.patch:
    - licensecheck started complaining about a person name, change to Canonical

 -- Timo Jyrinki <timo-jyrinki@ubuntu.com>  Fri, 12 Jun 2015 07:48:37 +0000

ubuntu-ui-toolkit (1.3.1517+15.10.20150523-0ubuntu1) wily; urgency=medium

  [ Christian Dywan ]
  * Expose textDocument of TextField. Fixes LP: #1392276
  * Unset GRID_UNIT_PX before checking default value. Fixes LP: #1457421
  * No cutting and copying of passwords. Fixes LP: #1438976
  * Implement new API tool based on qmlplugindump producing JSON. 
    Fixes LP: #1187010

  [ Leo Arias ]
  * Make explicit the dependency on upstart for the autopilot helpers.
  
  [ Timo Jyrinki ]
  * uitk_test_plan.sh: Switch to vivid-overlay & wily instead of rtm-14.09 & 
    vivid. Fixes LP: #1457015.


 -- CI Train Bot <ci-train-bot@canonical.com>  Sat, 23 May 2015 17:24:43 +0000

ubuntu-ui-toolkit (1.3.1510+15.10.20150519-0ubuntu1) wily; urgency=medium

  [ Loïc Molinari ]
  * Set QSGNode debug description on the shape-based nodes to ease renderer 
    debugging. Fixes LP: #1437270 
  * Ensured QSGLayer-based source textures (like ShaderEffectSource) are 
    updated before rendering. Fixes LP: #1447495

  [ Tim Peeters ]
  * Update sections test program.
  * Document the correct version when Page.head.visible and Page.head.locked
    were added.
  * Revert to use the old header in trunk.
  * Introduce the new ActionBar component.
  * Restore moving property on AppHeader 1.2.

  [ Zsombor Egri ]
  * Provide versioning for theme loading. Each toolkit must be released with a 
    well defined system theme version, and theme modules must have the same 
    version as the toolkit. Fixes LP: #1447113
  * Fix import versions in entire UITK and examples. Move example code under 
    1.3 folder. Fixes LP: #1447113
  * Separate 1.2 from 1.3 versions in all Ubuntu.Component modules. 
    Fixes LP: #1447113
 
  [ Zoltan Balogh ]
  * Fix header CPO for 1.2 without moving attribute. Let the header CPO try 
    both old and new buttons.

  [ Christian Dywan ]
  * Add version subfolder to benchmark test paths.
  * Only show handlers if text isn't empty. Fixes LP: #1450213.
  * Only print unique deprecation notes. Fixes LP: #1454281.

  [ CI Train Bot ]
  * New rebuild forced.

 -- CI Train Bot <ci-train-bot@canonical.com>  Tue, 19 May 2015 10:47:09 +0000

ubuntu-ui-toolkit (1.2.1485+15.04.20150421-0ubuntu1) vivid; urgency=medium

  [ Christian Dywan ]
  * Christian Dywan's change: Ship generated HTML and JSON docs for
    Autopilot helpers (LP: #1446533)

  [ Loïc Molinari ]
  * Christian Dywan's change: Ship generated HTML and JSON docs for
    Autopilot helpers (LP: #1446533)

  [ Tim Peeters ]
  * Christian Dywan's change: Ship generated HTML and JSON docs for
    Autopilot helpers (LP: #1446533)

  [ Zoltán Balogh ]
  * Christian Dywan's change: Ship generated HTML and JSON docs for
    Autopilot helpers (LP: #1446533)

 -- CI Train Bot <ci-train-bot@canonical.com>  Tue, 21 Apr 2015 16:31:51 +0000

ubuntu-ui-toolkit (1.2.1485+15.04.20150417.1-0ubuntu1) vivid; urgency=medium

  [ Christian Dywan]   
  * Use activeFocus rather than focus to determine that Text* has focus. 
    Fixes LP: #1378231
  
  [ Leo Arias ]   
  * Added a grids unit helper for autopilot tests.
  * Make it possible to overwrite the bottom margin for the flickable autopilot
    helper. Fixes  LP: #1401517.
  * Removed python2 support from autopilot tests and helpers. Fixes LP: #1429163 
 
  [ Loïc Molinari ]   
  * Bumped matrix precision in vertex shaders. mediump, which should actually be
    enough, was interpreted as lowp on arale (PowerVR Rogue G6200).
  * Fixed build.
  * Synchronized license checking script with PBuilder Jenkins.
    Fixes  LP: #1441580.
  * [UbuntuShape] Added support for resolution independent rendering. 
    Fixes  LP: #1427253.
  * Updated unknown Makefiles in .bzrignore.
  
  [ Sebastien Bacher ] 
  * Change cursor when over the documentation urls to show they can be clicked.

  [ Timo Jyrinki ]  
  * Clean up cruft from build dependencies. Fixes  LP: #1441499.
  * uitk_test_plan.sh: Remove terminal app before trying to run the tests.
    Fixes  LP: #1434537.

  [ Tim Peeters ] 
  * Add UbuntuTestCase.waitForHeaderAnimation().
  * Add visible and locked properties to Page.head.
    Fixes LP: #1402054, LP: #1424592.
  * Create Page 1.3.
  * Merge header tests in resources with header unit tests.
  * Move duplicate code for the overflows that was in PageHeadStyle twice
    (for Tabs and Actions overflows) into OverflowPanel.
  * New header visuals.
  * Re-introduce the panel color properties to Ambience PageHeadStyle.

  [ Zsombor Egri ]
  * Applying sub-theming on toolkit.
  * Introducing StyledItem.theme and ThemeSettings.parentTheme properties
    into v1.3.
  * Introducing ThemeSettings component, exported to UI Toolkit version 1.3.
  * Make ThemeSettings.palette writable to configure individual colors as well
    as Palette as a whole.
  * Separating Theme context property from theme engine, giving the possibility 
    to use the theming engine by multiple instances. Preparations for deprecation. 
    Theming unit tests fixed. Fixes  LP: #1248982.
  * Theming tutorial
  * Remove extra StyledItem.qml layer for styled items, keep only UCStyledItemBase.

 -- CI Train Bot <ci-train-bot@canonical.com>  Fri, 17 Apr 2015 16:22:53 +0000

ubuntu-ui-toolkit (1.2.1458+15.04.20150422-0ubuntu1) vivid; urgency=medium

  [ Christian Dywan ]
  * Ship generated HTML and JSON docs for Autopilot helpers, and drop
    python-autopilot build dependency which is in universe.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Wed, 22 Apr 2015 09:57:40 +0100

ubuntu-ui-toolkit (1.2.1458+15.04.20150327-0ubuntu1) vivid; urgency=medium

  [ By Tim Peeters ]
  * Remove the deprecated toolbar example from the gallery. 
    Fixes LP: #1430904

  [ Nekhelesh Ramananthan ]
  * Fixes the slider bubble width to be dynamic and dependent 
    on the label width. Fixes LP: #1228575

  [ Leo Arias ]
  * Added a scenario for autopilot tests without live dragging.
    Fixes LP: #1435698
  * Added a helper to reorder items in a list view.
    Fixes LP: #1435700

  [ Christian Dywan ]
  * Add tests/autopilot to sys.path of sphinx config. 
  * Build-depend on python-autopilot used by sphinx-build
    Fixes LP: #1431749

  [ Zsombor Egri ]
  * Fixing crashes when AlarmModel::get() returned valid stock alarm
    ends up to be NULL in QML. Fixes LP: #1429273

  [ CI Train Bot ]
  * New rebuild forced.

 -- CI Train Bot <ci-train-bot@canonical.com>  Fri, 27 Mar 2015 12:35:55 +0000

ubuntu-ui-toolkit (1.2.1450+15.04.20150318-0ubuntu1) vivid; urgency=medium

  [ Timo Jyrinki ]
  * Clean QML cache after updating package, before reboot. LP: #1431228

  [ Zoltán Balogh ]
  * Improved test plan script. Fixes LP: #1430201

  [ Christian Dywan ]
  * New text handler visuals and improved behavior. 
    Fixes LP: #1391335, LP: #1407723, LP: #1415548
  * Split off test verification and run it once only for 'make check'.
    Fixes LP: #1431698
  * Tweak assert_discard_popover to work better with textfield in header. 
    Fixes LP: #1432611

  [ Tim Peeters ] 
  * Make the filenames for header and navigation tests consistent and 
    split up the big tabbed header.qml into multiple smaller test files.
    Fixes LP: #1429838

  [ Loïc Molinari ]
  * Optimized Slider and ProgressBar components. Switched to the native 
    UbuntuShapeOverlay instead of PartialColorizeUbuntuShape to render 
    the progression in the Slider and ProgressBar components. The 
    rendering is now faster since it removes an FBO indirection and 
    enables batching by the QtQtuick renderer. 
    Fixes LP: #1398370, LP: #1427169
  * Added a dedicated overlay shape. Made use of the new UbuntuShape 
    architecture to create an extended shape with efficient overlay 
    rendering. Fixes LP: #1396170
  * Removed misleading statement from UbuntuShape documentation.
    Fixes LP: #1430198
  * Renamed the overlayGeometry property to overlayRect. The 
    overlayGeometry being of type QRect, using overlayRect instead 
    makes it more precise, less generic. Fixes LP: #1430278
  * Converted sourceOpacity from float to qreal. Respect the same
    guideline QtQuick items use to expose floating-point properties.
    That doesn't break the QML API since there's no precision loss 
    from single to double precision, the cast is implicit. 
    Fixes LP: #1430267
  * Fixed embedded QML code snippets indentation. Fixes LP: #1430274

  [ Florian Boucault ]
  * CheckBox: apply clipping to the Ubuntu shape and not to the CheckBox 
    itself so that the tick never overflows. Fixes LP: #1430191

  [ Daniel Holbach ]
  * A number of links changed on design.ubuntu.com - let's make sure 
    they're fixed in our docs. Fixes LP: #1428051

  [ CI Train Bot ]
  * New rebuild forced.

 -- CI Train Bot <ci-train-bot@canonical.com>  Wed, 18 Mar 2015 12:23:35 +0000

ubuntu-ui-toolkit (1.2.1433+15.04.20150306-0ubuntu2) vivid; urgency=medium

  * No-change rebuild against Qt 5.4.1.

 -- Timo Jyrinki <timo-jyrinki@ubuntu.com>  Wed, 11 Mar 2015 09:01:34 +0200

ubuntu-ui-toolkit (1.2.1433+15.04.20150306-0ubuntu1) vivid; urgency=medium

  [ Albert Astals Cid ]
  * Fix infinite icon size grow when asked for a non square icon
    Fixes: LP: #1422835
  * IconProvider: Make sure icons fit in the given size
  [ Christian Dywan ]
  * Skip select_text_longtap_when_active under opengles2.
    Fixes: LP: #1401140
  * Support for multiple devices with push_to_phone.sh.
  * Take OrientationHelper y coordinate from real parent height.
    Fixes: LP: #1413194
  * Update popover position upon pointer movement.
    Fixes: LP: #1199502, LP: #1415532
  * Change <code> to be inline-block. Fixes LP: #1427534
  * Set right anchor on tab overflow buttons. Fixes LP: #1425433
  * Add tst_listitems_itemselector.qml to EXCEPTIONS. So warnings are 
    no longer fatal for unit test.
  [ Sebastien Bacher ]
  * document that MainView's applicationName is used to set the gettext
    domain. Fixes: LP: #1421661.
  [ Tiago Salem Herrmann ]
  * Drop cache once properties are successfully restored.
  [ Timo Jyrinki ]
  * Add dist-upgrade option to the UITK Test Plan script. Output the
    selected parameters in the beginning.
  [ Tim Peeters ]
  * Add MainView 1.2 which removes the deprecated toolbar support.
  * Enable PageStack header animations for MainView 1.2.
  * Fix the size and anchors of a Page that is loaded inside a Loader.
    This is useful when a Page is Loaded by a Tab. Fixes: LP: #1424635
  * Fix UITK gallery content page width.
    Fixes: LP: #1424635, LP: #1425470
  * Set objectName for MainView int est_textinput.header.qml and fix 
    scenarios in test_textinput.py
  [ Zsombor Egri ]
  * Alarm services regression fix. Fixes: LP: #1401883
  * Implement ListItem dragging support in ListView.
    Fixes: LP: #119535
  * Introducing select/multiselect mode in ListItem.
  * Moving the tst_focus.qml under exceptions till we fix DatePicker
    binding loops.
  * RTL (Right To Left) support in ListItem.
  * RTM branch diff merge. Fixes: LP: #1358610.
  * Second stage of simplification - divider group property is an item,
    simplifying the anchoring of the contentItem. PropertyChange does
    not backup the property binding, uses QQmlPropertyPrivate::write()
    with parameter to keep bindings. ListItemAnimator uses behavior to
    animate snapping. Styling got "styledItem" context property to obey
    general styling rules. clicked() and pressAndHold() emission fix
    when content is swiped.
  * Transferring the ListItem attached properties to ListItemStyle API.
    Most of the style API became redundant, and removed. Few API from
    ListItem were also removed as not needed. ListItemAnimator,
    UCListItemAttached and UCActionPanel classes removed.
    Panel swiping overshoot made elastic. Snapping animation transformed
    into SmoothedAnimation, uses velocity of 60GU/second. Turning
    warnings to be reported in the error property.
    SHOW_SERVICEPROPERTIES_WARNINGS environment variable set will
    display them in the console. Fixes: LP: #1423203.
  * Updating documentation and imports for 1.2 & Vivid (Qt 5.4). 
  * Captions component dedicated to ListItem layouts, a ColumnLayout
    holding two Layouts pre-configurable for fixed or rest of content 
    filling behavior.
  [ Loïc Molinari ]
  * Refactored UbuntuShape base component.
    The UbuntuShape needed a rework in order to propose more features 
    while keeping efficiency high and maintenance easy. 
    Fixes LP: #1396098, LP: #1396101, LP: #1396104, LP: #1396113, 
    LP: #1396114, LP: #1396119, LP: #1396124, LP: #1396162, 
    LP: #1396165, LP: #1396168, LP: #1396178

 -- CI Train Bot <ci-train-bot@canonical.com>  Fri, 06 Mar 2015 08:23:35 +0000

ubuntu-ui-toolkit (1.1.1403+15.04.20150206-0ubuntu2) vivid; urgency=medium

  * No-change rebuild against Qt 5.4.0.

 -- Timo Jyrinki <timo-jyrinki@ubuntu.com>  Mon, 09 Feb 2015 10:47:17 +0200

ubuntu-ui-toolkit (1.1.1403+15.04.20150206-0ubuntu1) vivid; urgency=medium

  [ Albert Astals Cid ]  
  * Adapt to behaviour change in handling of QVariants from QML to 
    C++ in Qt 5.4    
  * Don't use Qt::PopupFocusReason to change the focus Even if it
    is the correct reason QtQuick is since 5.4 ignoring  focus changes
    due to PopupFocusReason. Fixes LP: #1395014.    
  * Fix test failure with Qt 5.4 ExpandablesColumn::test_expandedItem()
    In Qt 5.4 an alias to a null variable is correctly null instead of 
    undefined like it was in 5.3, since we still want 5.3 support i'm 
    conveting it to a verify with ==  that uses JS loose comparison to
    accept both null and undefined. Fixes LP: #1395012.    

  [ Alexandre Abreu ]  
  * Remove the unecessary DBUS bindingi to global address 
    org.freedesktop.Application by the UriHAndler. It actually fails 
    for confined apps and the uri-dispatcher anyway does not work by 
    directly calling into the exposed "well known names" exposed on 
    the bus as TEd explains here LP: #1342129  but by directly calling
     into the process dbus connection. Fixes LP: #1378823.    

  [ Benjamin Zeller ]  
  * Fix scripts to work in shadowbuild mode.    
  * Shadowbuild support for ubuntu-ui-toolkit.    

  [ Christian Dywan ]  
  * Abort export_modules_dir.sh and ergo run_tests.sh if binaries are
    absent. Fixes LP: #1415973.    
  * Asterisk are needed for cp -R.    
  * Ensure adb is running (and fallback arch if dpkg-dev is missing). 
    Fixes LP: #1417997.    
  * Get arch for push_to_phone.sh from device and handle adb refusal.    
  * Implement and unit-test i18n.(c)tag. Fixes LP: #1417031.    
  * Print component creation errors in popupUtils.open. 
    Fixes LP: #1418507.    
  * Use correct unfocussed text field color. Fixes LP: #1396062.    

  [ Daniel d'Andrada ]
  * Refactor OrientationHelper Simplify animation code and make it 
    more robust. It now survives changes in Screen.primaryOrientation
    and Screen.orientation happening one right after the other.  

  [ Daniel Holbach ]
  * Fix broken link to developer site.    

  [ Giulio Collura ]
  * This is a bugfix for bug LP: #1341814 and bug LP: #1400297. 
    Essentially we have to force the removal of the previous 
    'contents' item by removing its parent. This way we ensure that 
    the contents are correctly hidden, focused and removed, without 
    destroying them.    

  [ Loïc Molinari ]  
  * Removed unused variables breaking debug builds.    

  [ Michael Sheldon ]
  * Only use stableOrientationAngleTimer in the OrientationHelper when
    the orientationAngle has been set automatically. 
    Fixes LP: #1409027. 

  [ Niklas Wenzel ]
  *  Fixes LP: #1395118 

  [ nskaggs ]
  * Re-add autopilot helper documentation and update. Fixes 
    LP: #1409778, LP: #1410477.    

  [ Tim Peeters ] 
  * Add a preview of the new list items to the UITK component gallery.  
  * Add performance test for MainView.    
  * Clean python code to follow pep257 standards.    
  * Fix incorrect header contents width when navigating back from a 
    page with a lot of actions. Fixes LP: #1408481.    
  * Split up MainView in MainView and MainViewBase. Move docs to 
    MainView.qdoc.    
  * Use objectName for the MainViews in our autopilot tests.    

  [ Zoltán Balogh ] 
  * Added Dialog CPO to test if OSK pushes up the the dialog.    
  * Update the test plan and fix the PPA string in case it contains
    backslash.    

  [ Zsombor Egri ]  
  * CPOs
  * Include ServiceProperties component into the module and the 
    missing test case - inclusion messed up due to broken mainline in 
    the previous branch. Fixes LP: #1391877.    
  * Introducing action property in ListItem. 
    Fixes LP: #1362305, LP: #1369935.    
  * Introducing pressAndHold signal into ListItem.    
  * ListItem highlight is driven also by the connection of a slot to 
    the clicked() signal. This will also be applied when pressAndHold
    signal will be introduced. Fixes LP: #1399025.    
  * Small refactoring to follow upstream concept on naming attached 
    properties. Panels visualising ListItemActions are owned by 
    ListItem and not being shared by the ListItemActiomns. In this way
    the same ListItemActions instance can be used on both leading and 
    trailing side. Fixes LP: #1403005.    

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

ubuntu-ui-toolkit (1.1.1376+15.04.20150111-0ubuntu1) vivid; urgency=medium

  [ Tim Peeters ]
  * Add a preview of the new list items to the UITK component gallery.

  [ Zoltan Balogh ]
  * Update the test plan and fix the PPA string in case it contains backslash.
  * Added Dialog CPO to test if OSK pushes up the the dialog.

  [ Zsombor Egri ]
  * ListItem highlight is driven also by the connection of a slot to 
    the clicked() signal. This will also be applied when pressAndHold 
    signal will be introduced. Fixes LP: #1399025

  [ Giulio Collura ]
  * Force the removal of the previous 'contents' item by removing its parent. 
    This way we ensure that the contents are correctly hidden, focused and 
    removed, without destroying them. Fixes LP: #1341814 LP: #1400297

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Sun, 11 Jan 2015 18:57:02 +0000

ubuntu-ui-toolkit (1.1.1370+15.04.20141217-0ubuntu1) vivid; urgency=medium

  [ Zoltán Balogh ]
  * fixing gles dependency for ubuntu-ui-toolkit-autopilot, so we can
     have functional tests on x86 emulator

  [ Christian Dywan ]
  * Asterisk are needed for cp -R.
  * Use correct unfocussed text field color. Fixes LP: #1396062

  [ Zsombor Egri ]
  * CPOs

  [ Daniel d'Andrada ]
  * Refactor OrientationHelper
    Simplify animation code and make it more robust. It now survives 
    changes in Screen.primaryOrientation and Screen.orientation 
    happening one right after the other.

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

  [ Ubuntu daily release ]
  * New rebuild forced

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

ubuntu-ui-toolkit (1.1.1364+15.04.20141209-0ubuntu1) vivid; urgency=medium

  [ Zsombor Egri ]
  * Theming fixes: application theming, binding loop fix, auto-theming 
    moved into MainView and it is applicable only on Ambiance and 
    SuruDark, SuruGradient is no longer auto-themed. 
    Fixes: LP: #1213043, LP: #1277647, LP: #1330510, LP: #1356779, 
           LP: #1389792.
  * ServiceProperties component to Ubuntu.Components 1.1. 
    Fixes: LP: #1391877.
  * New ListItem component base. Support for leading/trailing actions. 
    Exported in Ubuntu.Components 1.2 UNSTABLE release. 
    Fixes: LP: #1097728, LP: #1372592, LP: #1383870.
  * removing failing ServiceProperties and app-theming branches
  * Application theming ant other theming related binding loop fixes
  * ServiceProperties DBus property watcher

  [ Christian Dywan ]
  * Do the default theme check properly: for non-debug and without 
    build errors.
  * Don't activate the control in ListItem.Standard implicitly. 
    Fixes: LP: #1372563.
  * Improve AutoPilot caret dragging test cases.
  * Use new qt_gl_set_global_share_context setter with Qt 5.4. 
    Fixes: LP: #1397979.
  * Add sortCaseSensitivity to the SortFilterModel example. 
    Fixes: LP: #1391034.
  * Change offending links into bold font. Fixes: LP: #1395011.

  
  [ Daniel d'Andrada ]
  * This is needed by unity8 for the "shell rotation" feature (ie 
    shell does all the rotation work instead of apps rotating
    themselves). unity8's dialogs (like the power dialog when you 
    long press the power button) should follow its parent item 
    rotation and size, as one would expect, and not be sneakily 
    reparented to the scene root item, in which case the shell 
    UI would be rotated but its dialog would not. 
    Related bug LP: #1394511. Fixes: LP: #1394511.

  [ Tim Peeters ]
  * Remove the old header separator style. Fixes: LP: #1372590.
  
  [ Loïc Molinari ]
  * Made the UCAlarmPrivate destructor private.

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 09 Dec 2014 11:47:33 +0000

ubuntu-ui-toolkit (1.1.1347+15.04.20141126-0ubuntu1) vivid; urgency=medium

  [ Zsombor Egri ]
  * Expose refresh() function in revision 1 (Ubuntu.Components 1.1). 
    Fixes LP: #1380559
  * Alarm adaptation refactored to support change granular model 
    updates. Fixes LP: #1322558, LP: #1360359, LP: #1370649, 
    LP: #1380553
  * Fix Header thin divider margins, restored to original no-margins. 
    Fixes LP: #1380766.

  [ Tim Peeters ]
  * Add ensure_visible() function to header AP helper. 
    Fixes LP: #1363591

  [ Albert Astals Cid ] 
  * Add context support for i18n.tr calls. This allows to have strings 
    like "All" translated to two different strings in the translated 
    language if different contexts are given. Fixes LP: #1394904

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 26 Nov 2014 08:33:25 +0000

ubuntu-ui-toolkit (1.1.1341+15.04.20141124-0ubuntu1) vivid; urgency=medium

  [ Christian Dywan ]
  * Re-introduce NOTIFY to Image under a different name.
   Fixes LP: #1395690 LP: #1395793

  [ Florian Boucault ] 
  * TextArea/TextField: make sure that the copy/paste popup is far
    enough from the finger for it to be visible and legible. 
    Fixes LP: #1384422

  [ Zoltán Balogh ]
  * Updated test plan executer script

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 24 Nov 2014 22:14:25 +0000

ubuntu-ui-toolkit (1.1.1338+15.04.20141121-0ubuntu1) vivid; urgency=medium

  [ Loïc Molinari ]
  * [UbuntuShape] Added detailed doc for borderSource. Fixes LP: #1354753
  * [Gallery] Fixed bad object naming. Fixes LP: #1240555
  
  [ Chris Gagnoni ]
  * fix compare string in
    ubuntuuitoolkit.tests.gallery.test_textinput.DisabledTextInputTestCase.
    Fixes LP: #1388896

  [ Christian Dywan ]
  * autopilot package needs to depend on python-autopilot-trace.
    Fixes LP: #1385326
  * Check if pressed is a property before using its value.
    Fixes LP: #1384376
  * Fix toolkit gallery translation template.
    Ignore expected warnings in unit tests. Fixes LP: #1272431
  * Make it clear that ToolbarItems is deprecated.
  * Always append QML2 import path regardless of QML2_IMPORT_PATH
  * Depend on dbus to ensure /etc/machine-id exists.
  * Allow manual execution of unit tests using Qt.Test.
  * Autopilot package needs to depend on QtTest

  [ Tim Peeters]
  * Add color properties to PageHeadStyle.
  * Fix the ItemSelector style for SuruDark and SuruGradient themes.
    Fixes LP: #1389112
  * Fix the panel colors for the tabs and actions overflow in the
    header. Fixes LP: #1386208
  * Fix the size of the highlight when clicking a section in the header
    divider. Fixes LP: #1372932.
  * Fix untranslated "In Progress" label. Fixes LP: #1391617
  * Remove \preliminary tags and "under heavy development" text in
    docs. Fixes LP: #1389119.
  * Small fix in documentation for PageHeadConfiguration.
  * Update the CheckBox style:
      - Expose color and padding properties
      - Make icon themable
      - use theme icon by default
      - Update default size.
    Fixes LP: #1372582, LP: #1390440.
  * Various tweaks to SwitchStyle:
      - Scaling of icons when changing the size of the Switch,
      - Smaller default Switch size, Use icons from theme,
      - Make check/uncheck animation faster, Prevent animations on
        width change (during initialization),
      - Expose SwitchStyle in Themes.Ambience, Add all visualization
        parameters as properties to SwitchStyle.
    Fixes LP: #1211483, LP: #1332092, LP: #1368711, LP: #1372582,
    LP: #1381008

  [ Zoltán Balogh ]
  * Use absolute path for the UITK Gallery icon. Fixes LP: #1304874

  [ Zsombor Egri ]
  * Fixing typo in the Label test case. Refactoring tests to use data
    driven test. Fixes LP: #1076771.
  * Ignore QT_IM_MODULE values like ibus, none or compose.
    Fixes LP: #1382121.
  * Remove overloaded signal, we should use the default signals
    whenever we override a property. Fixes LP: #1194778.

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

ubuntu-ui-toolkit (1.1.1311+15.04.20141111-0ubuntu1) vivid; urgency=low

  [ Zsombor Egri ]
  * Zsombor Egri's "Ignore QT_IM_MODULE values like ibus, none or
    compose." for Qt 5.3.2 specific fix.

  [ Christian Dywan ]
  * Update po/ubuntu-ui-toolkit.pot

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 11 Nov 2014 06:06:52 +0000

ubuntu-ui-toolkit (1.1.1311+15.04.20141102-0ubuntu1) vivid; urgency=medium

  [ Zoltán Balogh ]
  [ Christian Dywan ]
  * Explicitly use Orange in Slider and ProgressBar. 
    Fixes: LP: #1372585.
  * Copy components correctly in push_to_phone.sh and make copy.sh 
    more robust.
  * Make push_to_phone.sh use a temporary folder and sudo.
  [ Zoltán Balogh ]
  [ Zsombor Egri ] 
  * ThinDivider margins rolled back to edge-to-edge. Divider colors
    adjusted with design. Fixes: LP: #1380766.
  [ Zoltán Balogh ]
  [ Tim Peeters ] 
  * Add updated header divider to use rectangles instead of images,
    and to auto-detect its color. Fixes: LP: #1372590.
  * Add internal property to hide the header separator. 
    Needed in Unity8.
  [ Zoltán Balogh ]
  [ Leonardo Arias Fonseca ] 
  * Fixed the infinite loop when running flickable tests. 
    Fixes: LP: #1384703.
  * Added an autopilot helper for expandable list items. 
    Fixes: LP: #1340227.
  * The autopilot helpers to swipe to show more now get the flickable
    containers by default. Fixes: LP: #1365674.
  * Replaced the tabs for spaces in UbuntuTestCase. 
   Fixes: LP: #1324469.
   Fixes: LP: #1324469.
 

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Sun, 02 Nov 2014 13:01:56 +0000

ubuntu-ui-toolkit (1.1.1298+15.04.20150209~rtm-0ubuntu1) 14.09; urgency=medium

  [ Zsombor Egri ]
  * isHapticsFeedbackEnabled context property exposed to drive
    HapticsFeedback in AbstractButton. (LP: #1391877)
  * Haptics singleton component to provide toolkit wide default and
    custom feedback functionaity controlled by system settings. (LP:
    #1391877)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 09 Feb 2015 13:10:45 +0000

ubuntu-ui-toolkit (1.1.1298+15.04.20150202~rtm-0ubuntu1) 14.09; urgency=medium

  [ Tim Peeters ]
  * Port "In Progress" translation fix from staging to rtm. (LP:
    #1391617, #1081607)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 02 Feb 2015 09:11:21 +0000

ubuntu-ui-toolkit (1.1.1298+15.04.20150116~rtm-0ubuntu1) 14.09; urgency=low

  [ Florian Boucault ]
  * ActivityIndicator: make its animation rely solely on the rendering
    thread so that it does not stop spinning if the main thread is
    blocked. (LP: #1411376)

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

ubuntu-ui-toolkit (1.1.1298+15.04.20141111.2~rtm-0ubuntu1) 14.09; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Florian Boucault ]
  * Many TextField/TextArea fixes improving user experience greatly and
    making it more in line with the design:

  [ Christian Dywan ]
  * Update po/ubuntu-ui-toolkit.pot

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 11 Nov 2014 11:25:44 +0000

ubuntu-ui-toolkit (1.1.1298+15.04.20141107.2~rtm-0ubuntu1) 14.09; urgency=low

  [ Florian Boucault ]
  * TextField: make sure that a long press always works even when the
    field is empty by ensuring the TextInput's size is set properly.
    (LP: #1384403)

  [ Christian Dywan ]
  * Update po/ubuntu-ui-toolkit.pot

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 07 Nov 2014 12:35:11 +0000

ubuntu-ui-toolkit (1.1.1298+14.10.20141030~rtm-0ubuntu1) 14.09; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Timo Jyrinki ]
  * Modify test .desktop file (LP: #1382414) (LP: #1382414)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 30 Oct 2014 07:39:12 +0000

ubuntu-ui-toolkit (1.1.1298+14.10.20141016.1-0ubuntu1) 14.09; urgency=medium

  [ Jussi Pakkanen]
  * Remove the thumbnailer image provider here, because thumbnailer 
    provides it by itself Fixes LP: #1368492

  [ Lars Uebernickel ]
  * Icon: size correctly even if no or only one dimension is given

  [ Michael Sheldon] 
  * Check that orientation changes are acceptable before applying new
    orientation based on active window change. Fixes LP: #1375306

  [ Zoltán Balogh ]
  * Updated test plan executer

  [ Zeller Benjamin ]
  * RenderTimer includes EGL platform files in the rendertime header,
    which can cause problems when included after QDataStream. The 
    EGL headers pull the XLib files which define the Symbol Status.
  * Preparing qmlapicheck to support out of source builds for the 
    cmake migration

  [ Renato Filho ]
  * Save alarms in invalid time zone. Use invalid time zone to 
    floating time alarms.

  [ Tim Peeters ]
  * Make icons from theme in showcase gallery scrollable. 
    Fixes: LP: #1336279.
  * Fix width of header contents. Fixes LP: #1378261.

  [ Sebastien Bacher ]
  * Don't use simple quotes around translatable strings, xgetting 
    ignore those. Fixes LP: #1378774.

  [ Zsombor Egri ] 
  * Alarm update regression caused by EDS changes. Also fixes Tags 
    update. Requires qtorganizer5-eds updates as well!. 
    Fixes LP: #1364949.
  * Forgotten Interface declaration in objects. Fixes LP: #1378298

  [ Christian Dywan ]
  * Make dialog contents scrollable. Fixes LP: #1376763
  * Make mouseMoveSlowly work with a negative distance. 
    Fixes LP: #1343334
  * Read-only text entries don't blink or visibly take focus 
    Fixes LP: #1370571
  * Anchor overflow button labels to the right. 
    Fixes LP: #1354812 LP: #1378247
  * Don't allow inserting a line break into readOnly text areas. 
    Fixes LP: #1334344

  [ Ubuntu daily release ]
  * New rebuild forced

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

ubuntu-ui-toolkit (1.1.1286+14.10.20141007-0ubuntu2) UNRELEASED; urgency=medium

  [ Renato Filho ]
  * Save alarms in invalid time zone. Use invalid time zone to 
    floating time alarms.

  [ Tim Peeters ]
  * Make icons from theme in showcase gallery scrollable. 
    Fixes: LP: #1336279.
  * Fix width of header contents. Fixes LP: #1378261.

  [ Sebastien Bacher ]
  * Don't use simple quotes around translatable strings, xgetting 
    ignore those. Fixes LP: #1378774.

  [ Zsombor Egri ] 
  * Alarm update regression caused by EDS changes. Also fixes Tags 
    update. Requires qtorganizer5-eds updates as well!. 
    Fixes LP: #1364949.

  [ Christian Dywan ]
  * Make dialog contents scrollable. Fixes LP: #1376763
  * Make mouseMoveSlowly work with a negative distance. 
    Fixes LP: #1343334

 -- Zoltán Balogh <zoltan@bakter.hu>  Fri, 10 Oct 2014 11:19:10 +0300

ubuntu-ui-toolkit (1.1.1279.1+14.10.20141014-0ubuntu1) 14.09; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Tim Peeters ]
  * Fix margins in header contents.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 14 Oct 2014 14:40:58 +0000

ubuntu-ui-toolkit (1.1.1279+14.10.20141007-0ubuntu1) 14.09; urgency=medium

  [ Michael Sheldon ]
  * Removes the keyboard anchor animation as this is now implemented
    in the keyboard.

  [ Tim Peeters ]
  * PageStack push returns the pushed page. Fixes LP: #1361919
  * Add selection mode as a preset to the header configuration. 
    Fixes LP: #1370146.

  [ Zsombor Egri ]
  * Fix Dialog foreground sizing. Fixes LP: #1337555, LP: #1337556.
  * Workaround for StateSaver to fall back to use qgetenv() when 
    QStandardPaths fails to return XDG_RUNTIME_DIR path. 
    Fixes LP: #1363112.

  [ Christian Dywan ]
  * Add unit tests for MathUtils API. 
    Fixes LP: #1244685.
  * Text field hint should use the same font as the editor. 
    Fixes LP: #1237400.
  * Read-only text fields mustn't have a clear button. 
    Fixes LP: #1337257.
  * autopilot package should source-depend on QML plugin. 
    Fixes LP: #1236085.

  [ CI bot ]
  * Resync trunk

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 07 Oct 2014 12:09:39 +0000

ubuntu-ui-toolkit (1.1.1269+14.10.20141001-0ubuntu1) 14.09; urgency=medium

  [ Tim Peeters ]
  * Add Autopilot wait_for_animation() dummy function.
  * Implement header animations in PageHeadStyle and prepare 
    PageStack for enabling the animations.

  [ Loïc Molinari ]
  * [UbuntuShape] Removed useless dirty flags.

  [ Zsombor Egri ]
  *  Use tags as workaround for an alarm and an additional one for a 
     disabled alarm. The alarm should always save the visual and 
     audible reminder attachments no matter if disabled or not. 
     Fixes LP: #1361702

  [ Christian Dywan ]
  * Selection handler should be centered and not blinking. 
    Fixes LP: #1371205
  * Hide pop over when changing orientation. 
    Fixes LP: #1369506 and LP: #1375837

  [ CI bot ]
  * Resync trunk

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 01 Oct 2014 08:21:27 +0000

ubuntu-ui-toolkit (1.1.1262+14.10.20140922.2-0ubuntu1) utopic; urgency=medium

  [ Leo Arias ]
  * Add logging to the textfield autopilot helpers Fixes LP: #1361750

  [ Zsombor Egri ]
  * Sheet header button space reservation made button presence
    dependent. Fixes: LP: #1356636
  * Tweaks for ListItem dividers. Header margins and font weight
    updated.
  * Exclude UbuntuColors dumped erroneously by qmlplugindump as it
    would be a C++ type.
  * Organizer audible reminder wasn't updated when Alarm sound
    changed.
  * Fix for a wrong Action reference
  * Removing dependency towards Unity.Action, ActionContext and 
    ActionManager QML API transferred to UI Toolkit. 
    Fixes LP: #1234339, LP: #1294298.
  * Fixing wrong path used in saving state file. Fixes LP: #1363112

  [ Loïc Molinari ]
  * Fixed parallel build, tests/unit_x11 had no rules.
    Fixes LP: #1367850

  [ Zoltán Balogh ]
  * Updated test plan execution for RTM images and for new phablet
    tools.
  * New test plan script

  [ Christian Dywan ]
  * Specify /sbin when calling initctl just like autopilot does.
  * Change gallery to use launcher to allow -touch argument.
  * Overflow panel button 0.5 opacity if disabled Fixes LP: #1369640
  * Open text context menu when pressing Menu key.
  * Do not open context menu when dragging.
  * Hide text input handlers while typing. Fixes LP: #1343821

  [ Albert Astals ]
  * Make the scaling provider respect requestedSizes with one of the
    values 0 

  [ Leo Arias ]
  * On autopilot tests launched by upstart, use the local modules
    if running from a branch.

  [ Christian Dywan ]
  * Change gallery to use launcher to allow -touch argument.

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

ubuntu-ui-toolkit (1.1.1239+14.10.20140908-0ubuntu1) utopic; urgency=medium

  [ Zsombor Egri ]
  * Use proper QML Singleton structure introduced in Qt 5.2.
  * Move to use QQmlExtensionPlugin::baseUrl(), remove workaround. 
    Prerequisite for transitioning to proper QML singleton use and 
    new ListItem.
  * Focus should not be taken by a component if disabled. Complete 
    child filtering properly.
  * Organizer audible reminder was not updated when Alarm sound 
    changed
  * Exclude UbuntuColors dumped erroneously by qmlplugindump as it
    would be a C++ type.

  [ Christian Dywan ]
  * Handle singleton in qmldir and explicitly skip unknown keywords.

  [ Tim Peeters ]
  * Revert Icon10 change from header animations MR to fix coloring 
    of icons.
  * Update tabs AP tests. By moving the qml code in separate files, 
    it is easier to modify them individually and to execute them with
    qmlscene for testing. 
  * Ensure active and current pages are always updated in the same 
    order in PageStack.
  * Update qml files in tests/resources.

  [ Lars Uebernickel ]
  * unitythemeiconprovider: manually load icons
    Previously, UnityThemeIconProvider used QIcon::fromTheme() to 
    lookup and load icons. That function uses fdo's default icon 
    lookup algorithm: it looks at the current theme and all parent
    themes for each icon in turn. We'd prefer a breadth-first search,
    where all icon names are looked up in the current theme before 
    falling back to the parent themes. This change implements fdo's 
    FindBestIcon() algorithm, which behaves like that.
    It also now properly support rectangular icons and always returns
    an icon with the requested size (adjusted for preserving the 
    aspect ratio).
    As a result, the Icon component is much simpler and only requires 
    height to be set for rectangular icons. Fixes LP: #1324184

  [ Ubuntu daily release ]
  * New rebuild forced

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

ubuntu-ui-toolkit (1.1.1227+14.10.20140904-0ubuntu1) utopic; urgency=medium

  [ Zsombor Egri ]
  * Thin divider adjustments.
  * Dialog title is wrapped into maximum two lines, then elides. 
    Fixes LP: #1354376

  [Florian Boucault ]
  * Page: only compile and load ToolbarItems if strictly necessary.
  * Fixed usage of images across the board:
    - Made images as small as possible:
      - ListItemDivider6px.png
      - bubble_shadow*.png
      - header_overflow_dropshadow.png
  * Removed direct references to @GU in OptionSelector
  * Button's stroke_button.png now loaded only when necessary, 
    asynchronously and not cached.
  * Removed unused ListItemDivider24px.png.

  [ Ugo Riboni ]
  * Disable the mousearea on top of the content when using the new
    header, as it is useless and it interferes with other input 
    elements in the content area. Fixes LP: #1358327


  [ Christian Dywan ]
  * Update caret visuals and position.
  * Use iconSource for actions in the overflow panel. 
    Fixes LP: #1354036, LP: #1354811
  * Replace off white with pure white. Fixes LP: #1354077
  * Push Python3 dist-packages to Phone in addition to Python2.7
  * Fix wrong sheet labels and pick up dtr strings. Fixes LP: #1354485

  [ Tim Peeters ]
  * Fix header test

  [ CI bot ]
  * Resync trunk

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 04 Sep 2014 07:57:06 +0000

ubuntu-ui-toolkit (1.1.1214+14.10.20140826-0ubuntu1) utopic; urgency=medium

  [ Tim Peeters ]
  * Push modules/Ubuntu/Components/qmldir in push_to_phone.sh.
  * Add PageStack tests that use the new header.
  * Add tabs unit tests using the new header.

  [ Leo Arias ]
  * On autopilot helpers, take into account that text areas can have
    multiple lines when deleting the text. Fixes LP: #1359167
  * Fixed the four failing autopilot open page tests.
  * Added an autopilot custom proxy for QQuickGridView. 
    Fixes LP: #1351670
  * Fixed the autopilot helper to search elements on lists, that 
    failed when the element searched is on the first page of the list. 
    Fixes LP: #1342521
  * On the autopilot scrollbar tests, we should not assume that the
    window is on the top left.

  [ Benjamin Zeller ]
  * Add a more stable regression test for bug LP: #1338602 

  [ Zsombor Egri ]
  * Introducing Ubuntu Components FocusScope which extends QtQuick 
    FocusScope with the ability to focus by mouse clicks.
  * Slider blocks Flickable while sliding. Fixes LP: #1353966
  * Save alarms data into JSON format. Affects test environments 
    using fallback memory manager. Does not affect EDS backend 
    functionality. Prerequisite for further alarm changes.
  * Focus handling on components. Fixes LP: #1234982
  * Fixing alarm disabling issue. Change organiser item fields 
    only if those were marked as changed. Fixes LP: #1360101
  * AlamrModel is no longer reset when individual alarm is changed.
    This avoids UI flickering in Clock app. Fixes LP: #1359112

  [ Florian Boucault ]
  * Publish palettes of the themes.
  * Removed workaround that forced relayout when layout mirroring was
    enabled since bug was fixed in Qt. Fixes LP: #1353863
  * Visual feedback upon press for Header.
  * Better visual feedback upon press for List Items. 
    Fixes LP: #1354036
  * Three startup optimisations that lead to saving 160ms
      MainView: load background asynchronously and do not cache it.
      MainView: delay popover menus creation until when necessary.
      Page: removed useless instantiation of ToolbarItems.

  [ Christian Dywan ]
  * Set organizationDomain which Qt.labs.settings uses. 
    Fixes LP: #1241424 and LP: #1354321
  * Allow context menu buttons to grow wider for non-English locales
    to fit.

  [ Zoltán Balogh ]
  * Add a script to execute the test plan on a device.
  * Fix the desktop file for the UITK Gallery 
    Fixes LP: #1357205 and LP: #1176918

  [ Martin Pitt ]
  * The autopilot-qt was split into Qt4 and Qt5 packages2. The 
    libautopilot-qt used to pull qt4 packages. Avoid pulling qt4 
    packages by depending on the Qt5 specific packages only.

  [ Nicholas Skaggs ]
  * Fix the warning for the emulators module. The warning will now 
    only appear if you use the module directly. Fixes LP: #134169

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 26 Aug 2014 16:59:18 +0000

ubuntu-ui-toolkit (1.1.1188+14.10.20140813.4-0ubuntu1) utopic; urgency=medium

  [ Tim Peeters ]
  * Document the default anchors of PageStack. LP: #1349366

  [ Leo Arias ]
  * Made public the swipe methods in the flickable autopilot helper

  [Michael Zanetti ]
  * Properly parent UCAlarm objects. LP: #1337405

  [ Zsombor Egri ]
  * Alarm sounds lost during fetch fix. LP: #1338697
  * TextField clear button size changed to 2.5 GU, artwork mosified
    to use "clear-search" from icon-theme. LP: #1350797

  [ CI bot ]
  * Resync trunk

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

ubuntu-ui-toolkit (1.1.1181+14.10.20140806-0ubuntu1) utopic; urgency=medium

  [ Florian Boucault ]
  * Ubuntu Shape: store geometry before redrawing can occur so that 
    the geometry is more reliably respected. 
    Fixes: https://bugs.launchpad.net/bugs/1353493

  [ Christian Dywan ]
  * Square overflow panel style for header pop overs. 
    Fixes: https://bugs.launchpad.net/bugs/1336789
 
 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 06 Aug 2014 16:37:33 +0000

ubuntu-ui-toolkit (1.1.1179+14.10.20140804-0ubuntu1) utopic; urgency=medium

  [ Florian Boucault ]
  * UbuntuShape: removed QML proxy.

  [ Loïc Molinari ]
  * [UbuntuShape] Implemented QSGMaterial::compare() methods so that 
    Ubuntu shapes can be batched. 
    Fixes: https://bugs.launchpad.net/bugs/1350863.
  * Disconnected from old texture provider signals (Ubuntushape)


  [ Tim Peeters ]
  * Make header text color configurable, and always match the header
    icon colors to the header text color. 
    Fixes: https://bugs.launchpad.net/bugs/1315884
           https://bugs.launchpad.net/bugs/1317816.

  [ Christian Dywan ]
  * Move QSKIP for test_updateAlarm_Repeating one line up.

  [ Zsombor Egri ]
  * Text input context menu facelift.

  [ Michał Sawicz ]
   * Add "source" property to the Icon component.
     Fixes: https://bugs.launchpad.net/bugs/1284233

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 04 Aug 2014 16:00:56 +0000

ubuntu-ui-toolkit (0.1.51+14.10.20140731.1-0ubuntu1) utopic; urgency=medium
  [ Michał Sawicz ]
  * Add "source" property to the Icon component.

  [ Tim Peeters ]
  * Reduce header height by 0.5 grid units.
  * Visual updates: colors, icon sizes, semi-transparent buttons.
  * Allow app developers to disable the back button by setting an 
    invisible back action for the page.
  * Fix icon loading problems. 
    Fixes: https://bugs.launchpad.net/bugs/1349769
  * New visuals for sections in the header divider.

  [ Christian Dywan ] 
  * Implement optional strokeColor in AbstractButton. 
    Fixes: https://bugs.launchpad.net/bugs/1332580

  [ Florian Boucault]
  * StateSaver: also save the type of each property along with its 
    value so that we can convert them back to the right type during
    state restoration. This makes some problematic cases such as 
    enumeration to work.

  [ Albert Astals ]
  * Placeholder is also shown on focus

  [ Martin Pitt ]
  * Fix installability of ubuntu-ui-toolkit-examples with 
    qtdeclarative5-ubuntu-ui-toolkit-plugin-gles. 
    Fixes: https://bugs.launchpad.net/bugs/1346650

  [ Omer Akram ]
  * Add helper methods for TextArea. There is a separate 'clear' 
    method because the one that exists in TextField class checks
    the property hasClearButton which TextArea does not have.
    Fixes: https://bugs.launchpad.net/bugs/1327354

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 31 Jul 2014 11:12:39 +0000

ubuntu-ui-toolkit (0.1.50+14.10.20140724.2-0ubuntu1) utopic; urgency=medium

  [ Christian Dywan ]
  * Wrap tempfile.NamedTemporaryFile to discard underscored 
    filenames
  * Print errors and help to sys.stderr
  * Fixes false positives where buttons say for example Anrufen 
    as opposed to Call depending on the local
  * Use memory alarm backend for API/ deployment and don't warn 
    about it
  * Update selection and cursor to blue 
  * Suppress error output from dpkg-architecture.

  [ Tim Peeters ]
  * New sizes for icons and touch areas in header.
  * Workaround for large-timestamp autopilot bug
  * Push modules/Ubuntu/Components/qmldir in push_to_phone.sh
  * Various design tweaks:
    - Update CheckBox/Switch colors
    - Use new header by default in UITK gallery
    - Add margins for left and rightmost buttons in header
  * Updateed font sizes
  * Don't automatically close a Panel when the user presses next 
    to it, and update Panel position when its height changes.
  * Support sections in header divider.
  * Add new colors to UbuntuColors. 
    Fixes: https://bugs.launchpad.net/bugs/1335826.

  [ Renato Filho ]
  * Reset item state if the cancelItemRemoval() function was 
    called after the item be removed.

  [ Zeller Benjamin ]
  * Work around LP: #1338602, RotationAnimator crashes application

  [ Michael Zanetti ]
  * Add typeString to UbuntuTestCase

  [ Ugo Riboni ]
  * Add a boolean property to allow hiding the ProgressBar label. 
    Fixes: https://bugs.launchpad.net/bugs/1317377.

  [ Nekhelesh Ramananthan ]
  * Adds examples to Actions, backAction and fixed the contents 
    example in the PageHeadConfiguration.

  [ Leo Arias ]
  * Simulate the supported devices on gallery autopilot tests.
  * Remove the hiding of the toolbar on the option selector 
    gallery autopilot tests.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 24 Jul 2014 14:45:50 +0000

ubuntu-ui-toolkit (0.1.49+14.10.20140715-0ubuntu1) utopic; urgency=low

  [ Dimitri John Ledkov ]
  * Build in parallel by default.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 15 Jul 2014 11:41:34 +0000

ubuntu-ui-toolkit (0.1.49+14.10.20140710-0ubuntu1) utopic; urgency=low

  [ Florian Boucault ]
  * Move keyboard anchoring logic of OrientationHelper from MainView to
    OrientationHelper itself. (LP: #1339616)

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

ubuntu-ui-toolkit (0.1.49+14.10.20140709-0ubuntu1) utopic; urgency=low

  [ Zoltán Balogh ]
  * Match the theme package version with the plugin's binary-package
    version

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

ubuntu-ui-toolkit (0.1.49+14.10.20140707-0ubuntu1) utopic; urgency=medium

  * Increase upstream version to 0.1.49 due to API additions in previous
    release, which did not make it to utopic release.

 -- Iain Lane <iain@orangesquash.org.uk>  Tue, 08 Jul 2014 14:41:49 +0100

ubuntu-ui-toolkit (0.1.48+14.10.20140707-0ubuntu1) utopic; urgency=medium

  [ Tim Peeters ]
  * Fix API doc links in UITK gallery.
  * Allow the developer to specify custom header contents. 
    Fixes: https://bugs.launchpad.net/bugs/1324084.
  * Close actions popover when pushing new page using the new API.
  * Add tests for new header API.
  * Get rid of an unneeded deprecation warning.
  * Expose PageHeadStyle.
  * Expose PageHeadConfiguration.
  * New header API. Fixes: https://bugs.launchpad.net/bugs/1316676.
  * Print a warning when using deprecated Header component.
  * Fix empty toolbar bug with Qt 5.3. 
    Fixes: https://bugs.launchpad.net/bugs/1327189.
  * Use icons from the new suru icon theme only
  * Add PageHeadState component.

  [ Christian Dywan ]
  * Use orange and no translucency for links in the gallery.
  * Commit input changes on focus change in text components. 
    Fixes: https://bugs.launchpad.net/bugs/1324955.
  * Add a section for the Toolbar to the gallery. 
    Fixes: https://bugs.launchpad.net/bugs/1312713.
  * Add a page Tweaks to change theme and header style in the 
    gallery. Fixes: https://bugs.launchpad.net/bugs/1211382.
  * Multi-arch aware alternative launcher.

  [ Andrea Cimitan ]
  * Add "fadeStyle" property to the CrossFadeImage component.

  [ Leo Arias ]
  * Deprecate the swipe to delete from r2l on the autopilot helpers. 
    Fixes: https://bugs.launchpad.net/bugs/1330352.
  * Moved the regression autopilot test for the actions popover to 
    the components module.

  [ Zsombor Egri ]
  * PullToRefresh component that can be used in Flickable and all 
    its derivates to initiate model refresh.
  * Text input UX updates Changes:
    - text cursor carets (handlers) are shown only in touch 
      environment
    - long press handling
      - long tap selects the word under pressed area (if not 
        previously selected) and opens context menu - same as 
        right mouse click
      - long tap does not focus the non-focused component
      - long mouse press with left button does not do anything
    - tap and drag scrolls the content
    - left mouse button press and drag selects the text
    - text can be scrolled with mouse wheel and scrollbar only 
      beside the touchAndDrag
    NOTE: text caret tests are skipped when XVFB, as the 
          activeFocusItem is not set on that environment, which 
          causes text cursor not to be created. 
    Fixes: https://bugs.launchpad.net/bugs/1276176.
  * Exposing touch functions to QML test.
  * Default font for the toolkit: Ubuntu, medium sized and light 
    weight. Fixes: https://bugs.launchpad.net/bugs/1263963.
  * Extend launcher to convert mouse to touch events. 
    MouseTouchAdaptor taken from unity8 launcher.

  [ Michał Sawicz ]
  * Prefer new package names for QML modules. This fixes 
    cross-building of dependants.

  [ Florian Boucault]
  * OrientationHelper: made rotation animation visually smoother.
  * Icon: remove warning when Icon.visible is set to false:
  * ShaderEffect: Property 'source' is not assigned a valid texture 
    provider (QQuickImage*).
  * OrientationHelper: prevent unnecessary changes of width and 
    height with a workaround.

  [ CI bot ]
  * Resync trunk

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 07 Jul 2014 11:05:59 +0000

ubuntu-ui-toolkit (0.1.48+14.10.20140701.2-0ubuntu1) utopic; urgency=medium

  [ Michał Sawicz ]
  * Bump version to indicate requirement for new theme icons.
  * Change "not…in" to "…not in" in qmlapicheck.py.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 01 Jul 2014 15:47:29 +0000

ubuntu-ui-toolkit (0.1.47+14.10.20140619-0ubuntu1) utopic; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Timo Jyrinki ]
  * Fix empty toolbar bug with Qt 5.3.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 19 Jun 2014 06:55:24 +0000

ubuntu-ui-toolkit (0.1.47+14.10.20140618-0ubuntu1) utopic; urgency=medium

  [Leo Arias ]
  * On the autopilot helper for the header, fix the swipe to show 
    when hidden.
  * Added a fixture for autopilot tests to use a fake home directory.
    Fixes: https://bugs.launchpad.net/bugs/1317639
  * Cleaned the containers in unity test using the alternate 
    launcher.
  * Fixed the creation of the fake Xauthority file on mako for the 
    fixture tests. Fixes: https://bugs.launchpad.net/bugs/1326072
  * Fixed the swipe to delete on the list item autopilot helper.
    Fixes: https://bugs.launchpad.net/bugs/1311392.
  * clean ups to the autopilot tests for the widget gallery.

  [ Christian Dywan ]   
  * Add a launcher with a switch for the QQMLEngine.
  * The presence of a mouse enables the interactive thumb. 
    Fixes: https://bugs.launchpad.net/bugs/1165173
  * Initialize sort.order explicitly. 
    Fixes: https://bugs.launchpad.net/bugs/1324087
  * Swiping from Left to Right to Delete only.
  * Show explicit failure when test wasn't built yet.
  * Add push_to_phone script to push QML/ Python/ artwork.


  [ Tim Peeters ]
  * Anchor the internal PageTreeNode of PageStack to fill its parent. 
    Fixes: https://bugs.launchpad.net/bugs/1322527
  * Deprecate sheets. Fixes: https://bugs.launchpad.net/bugs/1304541
  * Fix bug where header overflow action popover does not close when 
    the associated action pushes a new page on the pagestack. 
    Fixes: https://bugs.launchpad.net/bugs/1326963.

  [ Zsombor Egri]
  * Adding touch functions to UbuntuTestCase.
  * Qt5.3 related fixes. Fixes: 
    https://bugs.launchpad.net/bugs/1324070, 
    https://bugs.launchpad.net/bugs/1324088, 
    https://bugs.launchpad.net/bugs/1324089.
  * Reverting InverseMouseAreaType updateArea() method to update(). 
    Calling shadowed superclass' update() method.


 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 18 Jun 2014 17:10:43 +0000

ubuntu-ui-toolkit (0.1.46+14.10.20140602-0ubuntu1) utopic; urgency=low

  [ Christian Dywan ]   
  * Tweak API parsing to include the Button.font property. 
    Fixes: https://bugs.launchpad.net/bugs/1322169
  * Call bindtextdomain on /usr if APP_DIR is not defined. 
    Fixes: https://bugs.launchpad.net/bugs/1322630

  [ Tim Peeters ]
  * On the autopilot Header helper, do not assume that the top 
    container will be a MainView
  * Make Header component internal as it was always documented.

  [ Zsombor Egri ]
  * Missing "default" keyword added to children property of Base,
    causing rendering and test case failures on Qt 5.3. 
    Fixes: https://bugs.launchpad.net/bugs/1317881

  [ Ugo Riboni ]
  * Allow requesting extra large thumbnails.

  [ Florian Boucault ]
  * AnimatedItem: deprecated as it was not used and still costly.
 
  [ Zoltán Balogh ]
  * Replace split with match to work around failing split() 
    function usage.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 02 Jun 2014 11:33:42 +0000

ubuntu-ui-toolkit (0.1.46+14.10.20140527-0ubuntu1) utopic; urgency=medium

  [ Timo Jyrinki ]
  * Allow using the renamed QML packages. Allow also old names 
    for eg. trusty backporting. For additional cross-building 
    friendliness, add :any to python build dependencies.

  [ Leo Arias ]
  * Rewrite OptionSelector tests using new helpers.
  * Added autopilot helpers to pick a time from a date picker.
  * In autopilot select all text only if not already selected.
    Fixes: https://bugs.launchpad.net/bugs/1321222.

  [ Christian Dywan ]
  * Skip flaky test_updateAlarm_Repeating.
  * Skip test_ubuntushape which is flakey and add a FIXME.
  * Read ubuntu-ui-toolkit.ini from $XDG_CONFIG_HOME.
  * More unit tests and property corrections for SortFilterModel.

  [ Tim Peeters ]
  * Fix bug where header actions are painted in the middle 
    of the page. Fixes: https://bugs.launchpad.net/bugs/1319861
  * Add header demo program to the resources.
  * Show header if it was not visible before clicking header 
    button in autopilot test. 

  [ Florian Boucault ]
  * ActivityIndicator: do not rely on the main thread to animate
    by using an Animator.
  * ThinDivider: use a Rectangle instead of an Image. 
    5x faster creation.
  * Label: default font weight is now light.

  [ Zsombor Egri ]
  * Ubuntu Layouts reparents those default layout components which
    are not subject of layout instead of altering their visible and
    enabled properties. 
    Fixes: https://bugs.launchpad.net/bugs/1204834
    https://bugs.launchpad.net/bugs/1298886
    https://bugs.launchpad.net/bugs/1300668.

  [ Alberto Mardegan ]
  * Keep a map of windows and associated textures. 
    Fixes: https://bugs.launchpad.net/bugs/1296728.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 27 May 2014 07:51:29 +0000

ubuntu-ui-toolkit (0.1.46+14.10.20140520-0ubuntu1) utopic; urgency=medium

  [ Leo Arias ]
  * Added the swipe_into_view method to autopilot helpers.
    Fixed the name of the QQuickFlickable autopilot helper. 
    Fixes: https://bugs.launchpad.net/bugs/1286479 
    https://bugs.launchpad.net/bugs/1314433.
  * On the autopilot helpers, find the top container starting from
    the flickable. Fixes: https://bugs.launchpad.net/bugs/1314390.

  [ Christian Dywan ] 
  * Use i18n.dtr for toolkit-owned translations. 
    Fixes: https://bugs.launchpad.net/bugs/1317539
  * Introduce QML bindings for SortFilterModel. 
    Fixes: https://bugs.launchpad.net/bugs/1266529
  * Pick data path if .click is present. 
    Fixes: https://bugs.launchpad.net/bugs/1317772

  [ Tim Peeters ]
  * Quick fix for TabBarStyle.qml:119: TypeError: Cannot 
    read property of null.

  [ Zsombor Egri ]
  * One time alarms omit dayOfWeek value changes. 
    Fixes: https://bugs.launchpad.net/bugs/1319401

  [ CI bot ]
  * Resync trunk

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 20 May 2014 08:35:48 +0000

ubuntu-ui-toolkit (0.1.46+14.10.20140516-0ubuntu1) utopic; urgency=medium

  [ Tim Peeters ]
  * Take visibility of actions into account when determining whether 
    an overflow is needed in header. 
    Fixes: https://bugs.launchpad.net/bugs/1316631
  * Improve automatic setting of the active property of Pages, 
    Tabs, PageStack.
    Pages defined as children of PageStack are now not active by 
    default until they are pushed on the stack, and inactive pages 
    are not visible. Fixes: https://bugs.launchpad.net/bugs/1225079 
    https://bugs.launchpad.net/bugs/1260116
    https://bugs.launchpad.net/bugs/1317902
  * Elide titles in the header that are too long to fit.
  * Add documentation and print a warning when apps put 
    PageStack/Tabs/Page inside a Page.

  [ Christian Dywan ]
  * Add a Theme section to the Icon section in the gallery. 
    Fixes: https://bugs.launchpad.net/bugs/1312710

  [ Zsombor Egri ]
  * Right selection caret positioning fix.

  [ Andrew Hayzen ]
  * Block wheel events to items below PopupBase.qml
    Fixes: https://bugs.launchpad.net/bugs/1315775.

  [ Oliver Grawert ]
  * Improve the haptics button feedback to be more like other 
    on mobile architectures (less rattling, more realistic).
    Fixes: https://bugs.launchpad.net/bugs/1290201.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 16 May 2014 11:58:25 +0000

ubuntu-ui-toolkit (0.1.46+14.10.20140512-0ubuntu1) utopic; urgency=low

  [ Tim Peeters ]
  * Make it possible to replace the title in the header with a
    custom Item. Fixes: https://bugs.launchpad.net/bugs/1314948
  * Use selectedIndex of the tabs model instead of the TabBar
    everywhere in TabBarStyle to fix a bug that uses Tabs on a
    PageStack. Fixes: https://bugs.launchpad.net/bugs/1316736
  * Fix the positioning of a popover pointer on a small screen
    in portrait mode. Fixes: https://bugs.launchpad.net/bugs/1208833

  [ Christian Dywan ]
  * Export to load modules from source and allow arguments.
  * linearSecondsPicker check it's not resetting and
    count is correct

  [ Zsombor Egri ]
  * Text input caret positioning fix for the cases when TextField
    has overlay primary items and when RTL is enabled.

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

ubuntu-ui-toolkit (0.1.46+14.10.20140508-0ubuntu1) utopic; urgency=low

  [ Christian Dywan ]
  * Export to load modules from source and allow arguments.
  * linearSecondsPicker check it's not resetting and count is correct
  * Add a section for the ThinDivider to the gallery.
    Fixes: https://bugs.launchpad.net/bugs/1312716.
  * Use locale format specifier in textfield_numbers.
    Fixes: https://bugs.launchpad.net/bugs/1311907.

  [ Zsombor Egri ]
  * PageUp/PageDown fix in text inputs.
    Fixes: https://bugs.launchpad.net/bugs/1180188.
  * Text input caret handler visuals and functionality.
    Fixes: https://bugs.launchpad.net/bugs/1183257.
  * Introducing Ubuntu.Components.Styles 1.1 module.

  [ Tim Peeters ]
  * Add the possibility to override the back button in the header.
    Fixes: https://bugs.launchpad.net/bugs/1314945.
  * Simplify code by setting header and toolbar properties in
    MainView instead of Page.
  * Move toolbar tools that were defined using an Action to header
    Fixes: https://bugs.launchpad.net/bugs/1273185.
  * Remove already inherited properties from OptionSelectorDelegate,
    ValueSelector, Subtitled, Standard and Base list item components
  * Change parent of OptionSelectorDelegate from Standard to Empty,
    because it effectively disabled all the visuals of Standard.

  [ Andrew Hayzen ]
  * Currently there is no animation of the listItem when
    cancelItemRemoval() is called, which causes a 'jump' in the
    listItem, this allows for the animation to occur.

  [ Leo Arias ]
  * Deprecated the ubuntuuitoolkit.emulators namespace. Split the
    autopilot helpers in smaller files.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 08 May 2014 10:54:32 +0000

ubuntu-ui-toolkit (0.1.46+14.10.20140502.6-0ubuntu1) utopic; urgency=low

  [ Zoltán Balogh]
  * Skip tests only for powerpc

  [ Christian Dywan ]
  * Use locale format specifier in textfield_numbers. Fixes: (LP: #1311907)
  * Resolve QList<QQmlError> warnings by porting to UbuntuTestCase.warnings.

  [Andrew Hayzen]
  * Animation of the listItem when cancelItemRemoval() is called

  [ Zsombor Egri ]
  * Introducing Ubuntu.Components.Styles 1.1 module.
  * Text inputs show context menu when right-clicked on desktop. Fixes: (LP: #1276821)
  * Fixes TextField and TextArea selection and scrolling behaviors. Fixes: (LP: #1168914), (LP: #1183255)
  * Dismiss Popovers when any of the mouse buttons is pressed.
  * ComboButton component. Fixes: (LP: #1276172)
  * QuickUtils::rootItem() to return the actual root object in case the internal root item is reached.
  * Moving to import version 1.0, which is the same as version 0.1.
  * Fix for alarm dates to occur in the same time in all timezones. Fixes: (LP: #1283236)
  * Mouse filters forwarding fix to proxy items.
  * Fix for arm64 test failure. Fixes: (LP: #1308086)
  * Fix alarm fetching order and interval. Fixes: (LP: #1283212, (LP: #1285958)
  * Flick and mouse long press simulation added to UbuntuTestCase. Fixes: (LP: #1288937)

  [ Tim Peeters ]
  * Remove already inherited properties from OptionSelectorDelegate, ValueSelector, Subtitled, Standard and Base list item components.
  * Change parent of OptionSelectorDelegate from Standard to Empty, because it effectively disabled all the visuals of Standard.
  * Back button in new header. Fixes: (LP: #1256424)
  * First version of the tabs in a drawer. Fixes: (LP: #1228042), (LP: #1273187)
  * Put the TabBar inside of the HeaderStyle instead of directly in the style. Fixes: (LP: #1292601)
  * Make the panel draggable again instead of opening completely on press.
  * Create a new entry in CHANGES to record the changes for Ubuntu.Components 1.1.
  * Move the property to keep track of the selected tab to the tabs model.

  [ Leo Arias ]
  * Deprecated the ubuntuuitoolkit.emulators namespace. Split the autopilot helpers in smaller files.

  [ Chris Gagnon ]
  * autopilot emulator for OptionSelector.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 02 May 2014 16:31:41 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20140408.1-0ubuntu1) trusty; urgency=low

  [ Zoltán Balogh ]
  * Change Ubuntu API links in the docs (LP: #1303535) (LP: #1303535)

  [ Leo Arias ]
  * Improve the check of tab selection mode by moving to it first.
  * On the autopilot helpers to click a toolbar button, check that the
    toolbar is opened first. (LP: #1302706)

  [ tpeeters ]
  * Improve toolbar handling on desktop by opening it on mouse hover.
    (LP: #1182734)
  * If a Page is inside a Tab and has no title set, get it automatically
    from the Tab. (LP: #1289695)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 08 Apr 2014 14:47:06 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20140404.1.is.0.1.46+14.04.20140404-0ubuntu1) trusty; urgency=medium

  * Revert to previous version as it's making gallery-app AP tests
    failing on the CI dashboard

 -- Didier Roche <didrocks@ubuntu.com>  Tue, 08 Apr 2014 13:34:12 +0200

ubuntu-ui-toolkit (0.1.46+14.04.20140404.1-0ubuntu1) trusty; urgency=low

  [ tpeeters ]
  * Move the property to keep track of the selected tab to the tabs
    model. (LP: #1290121)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 04 Apr 2014 15:08:22 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20140404-0ubuntu1) trusty; urgency=low

  [ Michael Zanetti ]
  * fix collapseOnClick in combination with UbuntuListView (LP:
    #1293996)

  [ Leo Arias ]
  * Added a helper for autopilot tests to override the values of initctl
    vars during tests.
  * Take into account the visibility of the container when making list
    elements visible on the autopilot helpers. (LP: #1275060)

  [ Christian Dywan ]
  * Set the window title based on the Header title (LP: #1289695)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 04 Apr 2014 11:03:59 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20140331-0ubuntu1) trusty; urgency=low

  [ Zoltán Balogh ]
  * Separate the online and offline documentation and install the QtC
    help file

  [ Zsombor Egri ]
  * Move state data file to temp folder (LP: #1276760)
  * StateSaver does cleanup if the app is closed due to SIGTERM. This is
    needed as upstart sends this signal when the application is closed
    from app scope. SIGINT saves the state. (LP: #1259498)
  * MainView binding loop fix when backgroundColor is changed runtime.
    (LP: #1204453)

  [ Loïc Molinari ]
  * [Perf metrics] Considered number of CPU cores for CPU usage.

  [ tpeeters ]
  * Add useDeprecatedToolbar property to MainView which can be used to
    disable the current toolbar. Unsetting that property will in future
    also enable new features in the header. (LP: #1273184)
  * Close panel on contents press instead of click, so that composed
    events are not eaten by the InverseMouseArea of the Panel. (LP:
    #1295720)

  [ Christian Dywan ]
  * Treat QML warnings as fatal except for explicitly listed tests

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 31 Mar 2014 18:26:59 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20140321.1-0ubuntu1) trusty; urgency=low

  [ Bartosz Kosiorek ]
  * Fix selection and coping text from TextFields (LP: 1130369) (LP:
    #1130369)
  * "Cut" operation do not shows for "ReadOnly's" TextField and TextArea
    (LP: 1293149) (LP: #1293149, #1267821)

  [ Zsombor Egri ]
  * InverseMouseArea not getting mouse events converted from touch when
    set as topmost item. (LP: #1288876)

  [ Michael Zanetti ]
  * drop BottomBarVisiblityCommunicator as it has gone from unity8 - no
    more HUD from the lower edge

  [ Christian Dywan ]
  * Introduce UbuntuTestCase API for C++ (LP: #1261396)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 21 Mar 2014 11:29:53 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20140317-0ubuntu1) trusty; urgency=low

  [ Didier Roche ]
  * remove the doc generation for UITK autopilot emulator. Autopilot is
    in universe for now, it needs MIRing first

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

ubuntu-ui-toolkit (0.1.46+14.04.20140314-0ubuntu1) trusty; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Colin Watson ]
  * With Qt 5.2, QtDeclarative now supports all architectures, at least
    in principle. Switch back to trying to build everywhere, since
    ubuntu-ui-toolkit has no intrinsic reason to be non-portable.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 14 Mar 2014 15:07:46 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20140306.1-0ubuntu1) trusty; urgency=low

  [ Zsombor Egri ]
  * DatePicker flaky test fix. (LP: #1287009)

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Michael Zanetti ]
  * Make the UbuntuListView tests more stable (LP: #1288597)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 06 Mar 2014 12:46:50 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20140304-0ubuntu1) trusty; urgency=low

  [ CI bot ]
  * Ship python3 autopilot emulators/tests.

  [ Florian Boucault ]
  * More compact visual style for a few widgets: Button: switched
    default color to plain instead of gradient. Height from 5gu to 4gu.
    OptionSelector: row height from 6gu to 5gu. Slider: much thinner
    visual style. Switch: size from 10gu x 5gu to 8gu x 4gu. CheckBox:
    size from 4.25gu x 4gu to 3.25gu x 3gu. smaller 'x-large' font size.
    (LP: #1276173)

  [ tpeeters ]
  * Expose a position property in Panel to make it more useful for
    implementing new bottom-edge behavior.

  [ Christian Dywan ]
  * The wrapper is intended to make API test more visible in the output
    regardless of failure or success. A semi-related fix increases
    coverage so that UbuntuTestCase and Layouts are also checked.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 04 Mar 2014 13:01:40 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20140301-0ubuntu1) trusty; urgency=low

  [ Zsombor Egri ]
  * StateSaver does no longer save the component states upon
    destruction. State is saved when the application is deactivated
    (looses focus) and cleaned once the application gets re-activated
    (gains focus). Discards saved states when the application closes
    properly. Ignores state saving when the app is launched thru content
    pickers. (LP: #1276174)

  [ Ugo Riboni ]
  * Allow appending query strings (which are then ignored) to the image
    id to allow a workaround for QT's inability to selectively clean the
    image cache.

  [ Leo Arias ]
  * Add a common autopilot test to try load pages in gallery (LP:
    #1231265)

  [ Michael Zanetti ]
  * Introduce the almighty UbuntuListView. So far not /that/ mighty tho.
    Can only deal with Expandables. (LP: #1169258)

  [ CI bot ]
  * On the autopilot listview emulator, scroll to the bottom to try to
    find elements not yet created. (LP: #1270200)

  [ tpeeters ]
  * Always use the ubuntu-mobile icon theme in UITK apps. (LP: #1284218)
  * Fix autopilot and unit tests for TabBar.

  [ Christian Dywan ]
  * Look for locale folder in the same prefix as the app data (LP:
    #1259540)
  * Remove activeFocus hack for OSK from QuickUtils (LP: #1259476)
  * Add a common autopilot test to try load pages in gallery (LP:
    #1231265)
  * Use PIPESTATUS to avoid getting the wrong return value (LP:
    #1284699)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Sat, 01 Mar 2014 12:53:03 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20140224-0ubuntu1) trusty; urgency=low

  [ Renato Araujo Oliveira Filho ]
  * [alarms] Filter only alarms of the current week. This is necessary
    because query for events without a valid date interval will return
    all events on the database, including the recurrence ones. Ex. A
    alarm that recurs every day, will be returned infinite times. (LP:
    #1282129)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 24 Feb 2014 21:54:01 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20140220-0ubuntu1) trusty; urgency=low

  [ Michael Zanetti ]
  * use data instead of children In ListItems.Base to allow having
    QtObjects as childs. In findChild() to be able to find invisible
    things like QtObject and Animations. Changes the return value from
    undefined to null as that's more correct.
  * Fix some issues in DatePicker's docs

  [ CI bot ]
  * Resync trunk

  [ Iain Lane ]
  * Support building with DEB_BUILD_OPTIONS=nocheck to skip the
    testsuite, per Debian policy.

  [ Leo Arias ]
  * Refactor the fake application used by the autopilot emulator tests
    to make a fixture that can be reused by other projects.

  [ Zsombor Egri ]
  * Mouse filters attacheable to mouse handling primitives.
  * Item instances set as property values were excluded from layouting,
    causing segfaults when re-layouting was performed or when the
    component got deleted due to or during re-layouting. (LP: #1280359)
  * ItemSelector regression fix. (LP: #1275861)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 20 Feb 2014 10:04:25 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20140212-0ubuntu1) trusty; urgency=low

  [ Andrew Hayzen ]
  * Fixed text not aligned at vertical centre if the listitem height has
    changed dynamically. Fixed no removeItemAnimation if the listitem
    height has been set. (LP: #1263688, #1263682)

  [ CI bot ]
  * Trunk as is, for CI Train release.

  [ William Hua ]
  * Also update LANGUAGE when setLanguage is called for dynamic
    translation. (LP: #1263163). (LP: #1263163)

  [ Timo Jyrinki ]
  * A qtdeclarative5-private-dev packaging change adding a dependency on
    libqt5v8-5-private-dev has been backported to all Ubuntu versions
    now, so this workaround can now be dropped - building both against
    Qt 5.2 and 5.0.2 works.
  * Add #include for QDebug to fix Qt 5.2 build.

  [ Christian Dywan ]
  * Split build and install steps in debian/rules.
  * Use integer Date constructor in date picker tests for Qt 5.2.
  * Run unit_x11 test cases via Xvfb and address failures. (LP:
    #1258017, #1237812, #1242646)
  * Don't redirect output of the input file in itself.
  * Don't try to deploy non-existing qml and js files. (LP: #1259228)
  * Assert textField focus, button visibility and pressed after tapping
    clear.
  * Split documentation for previously group properties. (LP: #1266842)
  * Suppress errors to work-around font error messages. (LP: #1256999)
  * ListItems.Empty's default property needs to be data not children.
    (LP: #1190509)

  [ Pete Woods ]
  * Handle the unity-action-api quit signal. (LP: #1269409)

  [ Zsombor Egri ]
  * Date picker component. Provides full date and month only picking
    functionality.
  * DatePicker test case fix, setting the minimum limit to value that is
    earlier than the date value set. (LP: #1266515)
  * Fixing state restoration when nested dynamic component properties
    are restored. (LP: #1267039)
  * Removing obsolete functionality from QuickUtils. (LP: #1266707)
  * StateSaver failure with Repeater fixed. Indirectly fixes StateSaver
    with ListView and GridView. (LP: #1267900)
  * TabBar test case failure fix for Qt5.2. (LP: #1256930)
  * InverseMouseArea API test removed, being a duplicate of the other
    InverseMouseArea tests. Connecting to th eproper enabledChanged
    signal in InverseMouseArea resolves the warning in Qt5.2 stating
    enabledChanged was overwritten in QQuickMouseArea. (LP: #1266707)
  * Panel implementation for DatePicker. Presents the DatePicker either
    in a panel covering the OSK area or in a Popover, depending on the
    form factor and presence of input method provider.
  * Layout tests now wait for the currentLayout change completion. (LP:
    #1266707)
  * Extra QQmlEngine instance removed from plugin, which seemed to cause
    some race conditions with Qt5.2. As result UbuntuColors got
    transferred from context property into singleton object, Theme's
    palette creation delayed till its first access. (LP: #1266707)
  * DateUtils test failure fix. (LP: #1273893)

  [ Florian Boucault ]
  * Ubuntu UI Toolkit Gallery: reimplemented in a cleaner way the
    responsiveness of the UI. That will allow for working right-to-left
    support. (LP: #1172652, #1182599)
  * Added Right-to-Left languages support to most widgets and to the UI
    Toolkit Gallery. The following widgets now behave properly in RTL
    environments: - List Items - Popups - Slider - TextArea - TextField
    - Button - ProgressBar - Toolbar - Header - Switch Tabs still need
    to be reversed. Relayout issues had to be workarounded (QTBUG 35095)
    for Label and Row. . (LP: #1181740, #35095)

  [ Leo Arias ]
  * Added an autopilot emulator for list views, with tests.
  * Added the TextField autopilot emulator.
  * Use the autopilot text field helper in the gallery test cases. (LP:
    #1274240, #1259476)

  [ Andrea Cimitan ]
  * Use integer Date constructor in date picker tests for Qt 5.2.

  [ tpeeters ]
  * Date picker component. Provides full date and month only picking
    functionality.
  * Fix the positioning of a flickable in a Page which has a parent that
    is not a PageTreeNode. (LP: #1261907)
  * Fix the height of a Page in case its parent is a Loader. (LP:
    #1259917)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 12 Feb 2014 10:56:52 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20131216-0ubuntu1) trusty; urgency=low

  [ Zsombor Egri ]
  * Layouting fails with Qt5.2 if the tests and components are not
    rendered upon testing. Layout unit tests have been transferred to
    X11 unit tests and tests on layout changes all wait till the layout
    change completes. Tested with Qt 5.0.2 and Qt 5.2 RC1. (LP:
    #1256235)
  * Picker visuals facelift, prepared for Date- and TimePicker
    components.
  * Picker selectedIndex miss-behavior fix when model is
    cleared/cropped/reset.

  [ Florian Boucault ]
  * List item progression: use appropriate icon (same as Tabs' arrow)
    and fixes the issue of it being the wrong color in Dark and Gradient
    themes. (LP: #1236777)

  [ Albert Astals ]
  * tst_arguments: Do not use QTEST_MAIN QTEST_MAIN is 99.99% of the
    times what you want when running a Qt testcase but it creates a
    Q*Application and in this case that is not wanted since we are
    creating and destroying them as part of the test and Qt doesn't like
    when there's more than one Q*Application at the same time, so do
    without creating a Q*Application in main. This can of course have
    some implications but it seems that for this testcase all is fine.
    (LP: #1254747)
  * Make the model a var and not a ListModel ListModel is bound
    specifically to QQuickListModel By using a var we can use other
    QAbstractItemModel subclasses in the model.

  [ Nic ]
  * Removed stop animation on text every time an expansion/collapse is
    made. Fixes bug #1231939. (LP: #1231939)
  * Fixed scrolling in selector when parent widget's height is less than
    the selector's ListView height. Fixes bug #1256356. (LP: #1256356)

  [ Timo Jyrinki ]
  * Require either Qt 5.2 or libqt5v8-5-private-dev.

  [ tpeeters ]
  * Reset hide timer when user interacts with toolbar or toolbar
    buttons. (LP: #1249031)
  * Improve detection of tab bar interaction. Now using the new
    TabBar.pressed property instead of TabBar.selectionMode property,
    because selectionMode may be changed without user interaction (for
    example, when resuming an app in a following MR), and then the
    toolbar should not automatically hide.
  * Open the toolbar and tabbar (without animating) when the app is
    resumed. (LP: #1246790)

  [ Christian Dywan ]
  * Accept qmldir files in qmlapicheck and skip internal components.
    (LP: #1256045)
  * Suppress qdoc warnings coming from upstream API.
  * Conditionally define doc folder containing resources. (LP: #1256779)
  * Move doc commands to shellscript and add success output lines.
  * Use Eventually when checking that the textfield is empty There's
    always a delay so we can't just compare it. (LP: #1259476)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 892

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 16 Dec 2013 08:17:31 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20131129-0ubuntu1) trusty; urgency=low

  [ Zsombor Egri ]
  * Tabs to react on model changes when a Repeater is used to populate
    with Tab components. . (LP: #1255544)

  [ Leo Arias ]
  * Added a ComposerSheet autopilot emulator. (LP: #1248740)

  [ Nic ]
  * Made currentlyExpanded property writeable. Fixed up comments for
    incorrectly documented properties. Added a positionViewAtIndex to
    refocus the list on the first index when it's externally collapsed.
    (LP: #1252718)

  [ Nicolas d'Offay ]
  * Made currentlyExpanded property writeable. Fixed up comments for
    incorrectly documented properties. Added a positionViewAtIndex to
    refocus the list on the first index when it's externally collapsed.
    (LP: #1252718)

  [ tpeeters ]
  * Detect interaction with contents (in order to close toolbar/tabbar)
    from Page to MainView.
  * Close the toolbar when user activates tabbar. (LP: #1223600)
  * Close tabbar on toolbar interaction. (LP: #1223606)
  * Disable header animations at app startup. (LP: #1246792)

  [ Christian Dywan ]
  * Elaborate on why OrientationHelper's internal must be Item.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 872

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 29 Nov 2013 20:24:58 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20131126.1-0ubuntu1) trusty; urgency=low

  [ Nic ]
  * Renamed state assignment to correct "expanded" instead of
    "alwaysExpanded". (LP: #1252717)

  [ Nicolas d'Offay ]
  * Renamed state assignment to correct "expanded" instead of
    "alwaysExpanded". (LP: #1252717)

  [ Christian Dywan ]
  * Merge stateWrapper and internal so Screen isn't used in an Object.
    (LP: #1254888)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 862

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 26 Nov 2013 22:25:55 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20131126-0ubuntu1) trusty; urgency=low

  [ Loïc Molinari ]
  * [UbuntuShape] Informed renderer of index and vertex data patterns.
  * [UbuntuShape] Transformed coordinates of textures packed in atlases.
    (LP: #1252736)

  [ Jani Monoses ]
  * Avoid reference errors in OrientationHelper. (LP: #1244631)

  [ Albert Astals ]
  * Do not include the QtQml catch-all include header Include the
    headers we need instead .
  * Compile properly with make -j10 Otherwise tries to compile the tests
    before the components.so is there and fails.

  [ Christian Dywan ]
  * Only inspect left hand for keywords and omit identifier. (LP:
    #1250653)
  * Merge pot update scripts and tweak 'make pot'. (LP: #1186250)
  * Add dependencies and indexes to link Qt5 and Ubuntu.Unity.Action
    docs. (LP: #1202561)
  * Implement BUILTINS in qmlapicheck to exclude built-in types.
  * Move ubuntu-ui-toolkit-doc dep from -examples to Recommends This way
    it's possible to run autopilot tests without docs.

  [ Zsombor Egri ]
  * Tabs are controlled independently by TabBar from Tabs component.
    (LP: #1246758)

  [ Florian Boucault ]
  * Conditionally disable v8-private dependency if Qt's version >= 5.2.
  * TextArea: added missing MathUtils import. (LP: #1248731)
  * Homogenized the icon related APIs. Everywhere where an icon can be
    set 2 properties are defined: url iconSource: url of any image file
    that can be used as the icon. string iconName: name of the icon in
    the theme. Redundant APIs are now deprecated. Action, ActionItem,
    OptionSelectorDelegate, ListItems.Base and ListItems.Standard have
    been modified. (LP: #1191054)

  [ Leo Arias ]
  * Add the .py files to the qtcreator project. (LP: #1244615)
  * Added logging for all the public methods on the autopilot emulators.

  [ Robert Bruce Park ]
  * Fix indicator tabs ordering.

  [ Michael Zanetti ]
  * fix typo in ListItems.Empty doc string.

  [ tpeeters ]
  * Align ListView header with MainView header. (LP: #1202403, #1202277)
  * Support initial value of selectionMode that is not equal to false.
    (LP: #1250194)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 859

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 26 Nov 2013 01:11:34 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20131118-0ubuntu1) trusty; urgency=low

  [ Zsombor Egri ]
  * Support for dynamically inserting/moving/removing tabs in Tabs. .
    (LP: #1124071)

  [ Leo Arias ]
  * Fixes for swipe_to_delete on autopilot list items emulator: Take
    into account items without confirmation. Take into account items
    that are destroyed on removal. (LP: #1245651, #1249221)

  [ Albert Astals ]
  * InverseMouseArea: Do not filter events if disabled.

  [ Robert Bruce Park ]
  * Support both Python 2 and 3 in the autopilot tests.

  [ Christian Dywan ]
  * Track magic window with a property signal instead of defining it.
    (LP: #1251436)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 837

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 18 Nov 2013 17:13:33 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20131108.4-0ubuntu1) trusty; urgency=low

  [ Robert Bruce Park ]
  * (no message)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 830

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

ubuntu-ui-toolkit (0.1.46+14.04.20131108.3-0ubuntu1) trusty; urgency=low

  [ Leo Arias ]
  * Add a check for the autopilot version on the emulator init. (LP:
    #1248570)
  * Ensure the toolbar is opened when clicking a toolbar in autopilot
    tests. (LP: #1248487)

  [ Nicolas d'Offay ]
  * Reverted API break on the selectors. (LP: #1248646)

  [ tpeeters ]
  * Ensure the toolbar is opened when clicking a toolbar in autopilot
    tests. (LP: #1248487)
  * before fixing the actual bug, the test gives me these errors: QWARN
    : tst_MainView::testNoWarnings_bug186065()
    unity::action::ActionManager::ActionManager(QObject*): Could not
    determine application identifier. HUD will not work properly.
    Provide your application identifier in $APP_ID environment variable.
    QWARN : tst_MainView::testNoWarnings_bug186065()
    file:///home/tim/dev/ubuntu-ui-
    toolkit/fix1244660/modules/Ubuntu/Components/MainView.qml:257:
    TypeError: Cannot call method 'hasOwnProperty' of null **
    (process:27191): CRITICAL **: Unable to get session bus: Operation
    was cancelled QWARN : tst_MainView::testNoWarnings_bug186065() Don't
    know how to handle 'QList<QQmlError>', use qRegisterMetaType to
    register it. PASS : tst_MainView::testNoWarnings_bug186065() PASS :
    tst_MainView::cleanupTestCase() Totals: 8 passed, 0 failed, 0
    skipped ********* Finished testing of tst_MainView ********* I get
    the same when I execute unit_x11/tst_orientation/tst_orientation:
    QWARN : tst_OrientationTest::test_defaults() Don't know how to
    handle 'QList<QQmlError>', use qRegisterMetaType to register it.
    PASS : tst_OrientationTest::test_defaults() Should I execute the
    tests in a different way?. (LP: #186065, #1244660)

  [ Robert Bruce Park ]
  * (no message)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 828

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 08 Nov 2013 22:02:57 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20131106-0ubuntu1) trusty; urgency=low

  [ Leo Arias ]
  * Update the tests to work with autopilot 1.4.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 822

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 06 Nov 2013 05:08:45 +0000

ubuntu-ui-toolkit (0.1.46+14.04.20131105.1-0ubuntu1) trusty; urgency=low

  [ Albert Astals ]
  * Minor optimzations Add const & to foreach to save copies of
    "complex" types Remove initializations of QStrings to "" since they
    do nothing Return QString instead of "" since its faster Pass
    "complex" types as const & instead of copy to functions Not an
    optimization: Added const qualifier to two functions .

  [ Lars Uebernickel ]
  * Remove GIconProvider Use urls for file and data icons and the theme
    image provider (image://theme/) for themed icons.

  [ Kaleo ]
  * [visual design] Updated tabs chevron asset.

  [ Christian Dywan ]
  * Install translations for UI toolkit and gallery. (LP: #1239627)
  * Support checkbox used with an action.
  * Install autopilot modules in qmake not debian packaging.
  * Drop the $$ from system calls where output isn't needed.
  * Look for locale folder as per XDG basedir spec and rewrite test The
    new test case covers the whole range of changing languages, checking
    the strings from both QML and C++ and binding to a folder. (LP:
    #1175726, #1233071)
  * Define window within OrientationHelper to avoid a race condition.
    (LP: #1239760)

  [ Zsombor Egri ]
  * Support for taking themes from XDG_DATA_DIRS as well as from
    ~/.local/share. These paths are also added as import paths.
    UBUNTU_UI_TOOLKIT_THEMES_PATH overrules these import paths, and can
    have more than one path specified, each separated with column. (LP:
    #1221813)
  * Warnings treated as errors in all types of builds (debug or
    release). (LP: #1246290)
  * Introducing topmostItem property to drive whether InverseMouseArea
    should filter sensingArea events or to stay in the normal z-
    order/stack order of its parent. (LP: #1240460)

  [ Leo Arias ]
  * Added the go back method to the autopilot emulators. (LP: #1239751)
  * On the autopilot emulator, drag the toolbar to its full height. (LP:
    #1235060)
  * Initially show toolbar, but automatically hide after timeout. (LP:
    #1207369)
  * Added the change_state method to the CheckBox autopilot emulator.
    Cleaned up the autopilot gallery toggles tests.
  * Added the objectNames to the ComposerSheet buttons. (LP: #1244518)

  [ tpeeters ]
  * Update CrossFadeImage API so that sourceSize can be set by the
    applications. CHANGED in CrossFadeImage: readonly property size
    sourceSize TO property size sourceSize. (LP: #1227783)
  * Initially show toolbar, but automatically hide after timeout. (LP:
    #1207369)
  * Put tab bar in selection mode when apps are launched. (LP: #1223597)
  * Close tabbar and toolbar when user interacts with app contents. (LP:
    #1223604)

  [ Nicolas d'Offay ]
  * Added multiSelection bool and supporting code to OptionSelector and
    ItemSelector. This turns either component into a multiple choice
    selector. Fixed linked bugs. (LP: #1231936)

  [ Renato Araujo Oliveira Filho ]
  * Implemented emulator for swipe to remove. (LP: #1236464)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 820

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 05 Nov 2013 16:51:13 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20131011.2-0ubuntu2) UNRELEASED; urgency=low

  * add sphinx documentation

 -- Nicholas Skaggs <nicholas.skaggs@canonical.com>  Tue, 29 Oct 2013 17:28:30 -0400

ubuntu-ui-toolkit (0.1.46+13.10.20131011.2-0ubuntu1) saucy; urgency=low

  [ Zsombor Egri ]
  * Tests proving component state saving added, minor fix disabling
    state saving when attachee ID is not specified or absolute ID cannot
    be computed.
  * Member initialization order fixed. This causes build error when
    built with QtCreator 2.8.1, as that one builds with -Werror
    parameter. It is highly recommended to all to use QtCreator when
    developing for Touch.

  [ Jussi Pakkanen ]
  * Return a default image if thumbnailing does not work.

  [ Leo Arias ]
  * Added a public function to get the command to launch qmlscene from
    autopilot tests.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 792

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 11 Oct 2013 17:18:50 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20131007-0ubuntu1) saucy; urgency=low

  [ Zoltán Balogh ]
  * Add default tools (LP: #1233709). (LP: #1233709)

  [ Loïc Molinari ]
  * Added URI handler support.
  * Fixed UbuntuShape warnings when using a ShaderEffectSource as an
    image.

  [ iftikhar.ahmad@canonical.com ]
  * Added test cases for text field testing.
  * Minor change to make the OptionSelector more testable by adding
    objectName property to uniquely identify the object. (LP: #1234020)

  [ Christian Dywan ]
  * Set offline storage path and add a unit test. (LP: #1231863)
  * Emit domainChanged from bindtextdomain to trigger updates. (LP:
    #1220395)
  * Support TextArea used with an action.
  * Support option selector used with an action.
  * Add haptic feedback to AbstractButton. (LP: #1189537)

  [ Zsombor Egri ]
  * Fix Picker module deployment.
  * index property added to Tab to be able to reference the Tab number.
    Fixes bug #1233402. (LP: #1233402)

  [ Jussi Pakkanen ]
  * Adds thumbnailer image provider.

  [ Christopher Lee ]
  * Preparing autopilot tests for an upcoming update in autopilot 1.3.

  [ Andrea Cimitan ]
  * Export a position value of the toolbar through dbus, setting the
    value of the dbus service created by the shell. (LP: #1224480)

  [ Guenter Schwann ]
  * Better handle the case of dismissing the OSK and focusing the text
    again fixes LP: #1228155. (LP: #1228155)

  [ Renato Araujo Oliveira Filho ]
  * Added "confirmRemoval" in ListItem.Empty This will ask for
    confirmation before remove the item. (LP: #1213046)
  * Disabled confirmation on swipe to delete as default.

  [ Leo Arias ]
  * index property added to Tab to be able to reference the Tab number.
    Fixes bug #1233402. (LP: #1233402)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 786

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 07 Oct 2013 04:36:33 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130925.1-0ubuntu2) saucy; urgency=low

  * Cherry pick changes from the ap-test-fixes-for-updated-autopilot branch
    to fix working with the newer autopilot

 -- Łukasz 'sil2100' Zemczak <lukasz.zemczak@canonical.com>  Thu, 03 Oct 2013 11:38:44 +0200

ubuntu-ui-toolkit (0.1.46+13.10.20130925.1-0ubuntu1) saucy; urgency=low

  [ Timo Jyrinki ]
  * Temporarily disable the jokes example in order to not have
    qtmultimedia dependency from examples that is not used otherwise.
    This lessens the dependency chains of packages. It can be added back
    after Ubuntu 13.10.
  * Fix regression in qmlscene usage (LP: #1229541). (LP: #1229541)

  [ Christian Dywan ]
  * Set QCoreApplication::applicationName based on MainView. (LP:
    #1197056, #1197051, #1224126)
  * Include subfolders of Components in api check.

  [ Zsombor Egri ]
  * Organizer EDS (Evolution Data Server) integration.
  * StateSaver attached component.
  * Fix alarm status reporting, updating documentation on asynchronous
    behavior of save and cancel operations. Alarm status notification
    reports the operation the status refers to. (LP: #1226516)
  * Dialer + DialerHand components required for TimePicker. .

  [ Leo Arias ]
  * Added UbuntuUIToolkitAppTestCase as a base test case for the
    autopilot tests. (LP: #1227355)
  * Added the autopilot emulator for toggles.

  [ Nick Dedekind ]
  * Added clipping to tab bar. (LP: #1226104)

  [ Alberto Mardegan ]
  * Support re-attaching to a different QQuickView Make the plugin
    correctly handle the case when the QQuickView is destroyed and a new
    one is created: this is done by avoiding using static variables, and
    instead binding the data to the QQmlEngine, QQmlContext or QWindow
    as appropriate. . (LP: #1221707)

  [ Dennis O'Flaherty ]
  * Reword the description for easier reading.

  [ tpeeters ]
  * Fix warnings when running gallery-app autopilot tests. (LP:
    #1223329, #1223326)
  * Smarter automatic updating of Panel's opened property. Panel.open()
    and Panel.close() should be used to open/close a Panel, or when
    using a toolbar with ToolbarItems from a Page, set Page.tools.opened
    to open/close the toolbar. No API or behavior changes since the
    panel-open-close branch. Toolbar behavior changes will be done in a
    following MR.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 765

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 25 Sep 2013 07:08:56 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130916-0ubuntu1) saucy; urgency=low

  [ Zsombor Egri ]
  * Picker component, a tumbler style value selector.

  [ Leo Arias ]
  * Do not duplicate the pointer instantiation on the autopilot
    emulators. (LP: #1220346)

  [ Nicolas d'Offay ]
  * Fixed bug in the selectors that happened with the "nudging"
    behaviour which occurred when the selector was scrolled. It used to
    nudge past boundaries and if the same index was selected. This has
    been fixed. Fixed SuruDark and SuruGradient ListItemSelector themes.

  [ tpeeters ]
  * Add Panel.open() and Panel.close() functions so that applications
    can be adapted to use those instead of setting Panel.opened. The
    behavior of the panel was not changed, this will be done in a
    following MR. Also note that applications with a Toolbar do not need
    to use Panel.open()/close()/opened directly, they can use the opened
    property of the Page.tools, so they should not be affected by the
    upcoming changes.

  [ Lars Uebernickel ]
  * giconprovider: warn about image://gicon being deprecated.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 748

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 16 Sep 2013 11:35:05 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130903.4-0ubuntu1) saucy; urgency=low

  [ Nicolas d'Offay ]
  * Hide header label if no label is input. Fix for:
    OptionSelector.qml:205: ReferenceError: UbuntuAnimation is not
    defined Fixed containerHeight affecting the entire Selector's height
    even if the contentHeight was less. (LP: #1220130)

  [ Guenter Schwann ]
  * Fixes tab switching with open toolbar fixes
    https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1220064. (LP:
    #1220064)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 741

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 03 Sep 2013 15:16:50 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130903.3-0ubuntu1) saucy; urgency=low

  [ Zoltán Balogh ]
  * Reverse cherrypicking rev734.

  [ Zsombor Egri ]
  * Branch 734 removed, causing Unity test failures.

  [ Nicolas d'Offay ]
  * Added ItemSelector. Extend OptionSelector and fixed various bugs.
    Added tests for both OptionSelector and ItemSelector. (LP: #1169258,
    #1218250, #1218247)

  [ tpeeters ]
  * New toolbar reveal/hide behavior, as specified by design. (LP:
    #1207369)

  [ iftikhar.ahmad@canonical.com ]
  * This MP contains some fixes to autopilot test cases. Two test cases
    are commented for now as they were giving inconsistent results on
    phone. .

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 738

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

ubuntu-ui-toolkit (0.1.46+13.10.20130830.1-0ubuntu1) saucy; urgency=low

  [ tpeeters ]
  * Quick fix, completely untested. Might mess up apps with list items
    that do not use popovers. Have a look to see if you can use this
    code and it doesn't break anything. (LP: #1205094)
  * Clean toolbar code by removing deprecated properties and updating
    tests.

  [ iftikhar.ahmad@canonical.com ]
  * ajusted the buttons laytout to make it fit to phone screen size.
    https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1218749 . (LP:
    #1218749)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 731

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 30 Aug 2013 12:44:49 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130829.2-0ubuntu1) saucy; urgency=low

  [ Olivier Tilloy ]
  * Fix a typo in Panel.qml. (LP: #1218331)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 727

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 29 Aug 2013 15:22:45 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130829.1-0ubuntu1) saucy; urgency=low

  [ Michal Hruby ]
  * Add UnityThemeIconProvider - A QQuickImageProvider that loads icons
    from the current icon theme, following the xdg icon spec.

  [ Zsombor Egri ]
  * Tick artwork reverted into Ambiance theme breaking Switch and
    CheckBox components. .

  [ Antti Kaijanmäki ]
  * Add UnityThemeIconProvider - A QQuickImageProvider that loads icons
    from the current icon theme, following the xdg icon spec.

  [ Nick Dedekind ]
  * Add UnityThemeIconProvider - A QQuickImageProvider that loads icons
    from the current icon theme, following the xdg icon spec.

  [ Lars Uebernickel ]
  * Add UnityThemeIconProvider - A QQuickImageProvider that loads icons
    from the current icon theme, following the xdg icon spec.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 725

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 29 Aug 2013 11:09:48 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130829-0ubuntu1) saucy; urgency=low

  [ Nicolas d'Offay ]
  * Fixed output issue: CrossFadeImage.qml:39: Unable to assign QSize to
    QSizeF. (LP: #1217848)
  * Themed UbuntuShape OptionSelector. (LP: #1202170)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 722

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 29 Aug 2013 02:45:45 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130828.1-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * add a test for PopoverForegroundStyle.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 719

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

ubuntu-ui-toolkit (0.1.46+13.10.20130828-0ubuntu1) saucy; urgency=low

  * Automatic snapshot from revision 717

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 28 Aug 2013 08:19:49 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130827-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * Themed UbuntuShape OptionSelector. (LP: #1202170)

  [ Omer Akram ]
  * Themed UbuntuShape OptionSelector. (LP: #1202170)

  [ Nicolas d'Offay ]
  * Themed UbuntuShape OptionSelector. (LP: #1202170)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 714

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 27 Aug 2013 19:11:59 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130826.1-0ubuntu1) saucy; urgency=low

  [ Zsombor Egri ]
  * Alarm backend turned to asynchronous implementation. Status enum and
    corresponding property added to Alarm element to reflect the pending
    operation status.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 712

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 26 Aug 2013 18:34:52 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130823-0ubuntu1) saucy; urgency=low

  [ Zsombor Egri ]
  * AlarmModel got a role named model to solve ambiguous role accessing
    situations. Test application added.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 710

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 23 Aug 2013 10:10:02 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130822.1-0ubuntu1) saucy; urgency=low

  [ Alexandre Abreu ]
  * Add an actionmanager property that let clients be more flexible with
    their actions at runtime. (LP: #1207804)

  [ tpeeters ]
  * Do not trigger a ToolbarButton that is not enabled. (LP: #1202245)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 707

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 22 Aug 2013 18:55:49 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130821-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * Make Popover themable and allow inheriting Popover's default style.

  [ Omer Akram ]
  * make the input device detection logic inside autopilot emulators
    actually work.
  * first step for autopilot tests to run on touch devices.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 703

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 21 Aug 2013 16:19:11 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130819.3-0ubuntu1) saucy; urgency=low

  [ Zsombor Egri ]
  * Alarm management QML API.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 699

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 19 Aug 2013 18:37:52 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130819-0ubuntu1) saucy; urgency=low

  [ tpeeters ]
  * Add a drag threshold to Panel (and Toolbar) so that unintentional
    movements while clicking are not detected as a drag to open/close
    the panel. (LP: #1179569)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 697

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 19 Aug 2013 02:11:54 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130815.1-0ubuntu1) saucy; urgency=low

  [ Leo Arias ]
  * Added a safeguard to prevent the tabs autopilot emulator to loop for
    ever. (LP: #1211619)

  [ tpeeters ]
  * Fix bug 1209403 where Tabs header does not become invisible when
    another page is pushed on the PageStack and a gradient background is
    used. (LP: #1209403)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 695

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 15 Aug 2013 06:33:50 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130812-0ubuntu1) saucy; urgency=low

  [ Timo Jyrinki ]
  * Depend on ttf-ubuntu-font-family from the qtdeclarative5-ubuntu-ui-
    toolkit-plugin (LP: #1181176) qtdeclarative5-ubuntu-ui-toolkit-
    plugin has Label.qml which uses Ubuntu font directly. (LP: #1181176)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 691

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 12 Aug 2013 06:46:52 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130809.2-0ubuntu1) saucy; urgency=low

  [ Kaleo ]
  * Updated visual design of ActivityIndicator.
  * Switch: implemented new version of visual design.
  * Slider: animate thumb movement when pressing the slider.
  * ProgressBar: design tweaks to indeterminate mode.

  [ Leo Arias ]
  * Added the objectName property to the top header. (LP: #1209405)
  * Moved the ActionSelectionPopover autopilot emulator from the
    filemanager app. Added tests. (LP: #1205205)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 689

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 09 Aug 2013 15:36:16 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130808.2-0ubuntu1) saucy; urgency=low

  * New rebuild forced
  * Automatic snapshot from revision 682

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 08 Aug 2013 10:00:11 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130808.1-0ubuntu1) saucy; urgency=low

  [ Leo Arias ]
  * Fixed the opening of tabs on the autopilot test Emulators. (LP:
    #1206251)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 681

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 08 Aug 2013 06:05:03 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130807-0ubuntu1) saucy; urgency=low

  [ Zsombor Egri ]
  * InverseMouseArea derives now from MouseArea being in this way kept
    in sync with the MouseArea behavior. No API change other than base
    class and the extra API it brings occured. (LP: #1207426)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 678

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 07 Aug 2013 04:02:21 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130806-0ubuntu1) saucy; urgency=low

  [ Guenter Schwann ]
  * During tests, make sure the toolbar does not move before opening it.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 676

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 06 Aug 2013 07:38:20 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130805-0ubuntu1) saucy; urgency=low

  [ Kaleo ]
  * Popover: updated show/hide animations to match design. Slider's
    bubble: added show/hide animations.
  * ProgressBar: new visual design. Indeterminate progress bar's design
    is not worked out yet. Simple placeholder animation for now. (LP:
    #1195866)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 674

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 05 Aug 2013 04:02:18 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130802-0ubuntu1) saucy; urgency=low

  [ tpeeters ]
  * Restructure tab bar code and improve autopilot tests: - Split up
    NewTabBar into TabBar (Components) and TabBarStyle (Themes). -
    Expose tabBar property in Tabs - Make Header.contents an Item
    instead of Component - Improve autopilot tests not to rely on
    arbitrary sleep times The goal of this change is to prepare for
    additional properties that will be added to TabBar in a following MR
    in order to support behavior that is needed for the indicators.
  * Add bool properties alwaysSelectionMode and animate to TabBar for
    greater control of its behavior. (LP: #1204121, #1203685)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 671

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 02 Aug 2013 04:02:19 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130731-0ubuntu1) saucy; urgency=low

  [ Ugo Riboni ]
  * Make InverseMouseArea and MouseArea behave the same way when the
    mouse is moved between a click and release event, i.e. they both
    generate a click. (LP: #1189825)

  [ Timo Jyrinki ]
  * Add Yahoo copyright on the CSS file, fix the "*" section to be first
    one (latter ones override).

  [ Christian Dywan ]
  * Ignore generated qml.xml files.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 668

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 31 Jul 2013 04:02:34 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130730-0ubuntu1) saucy; urgency=low

  [ Kaleo ]
  * OrientationHelper: report the current orientation of the application
    via QWindow::contentOrientation. This is a remerge of a previous
    merge that was reverted because of a segfault. The segfault has been
    fixed by ensuring that setWindowContextProperty is called in the
    same thread (the main thread). (LP: #1187321, #1205556)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 663

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 30 Jul 2013 04:02:22 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130729-0ubuntu1) saucy; urgency=low

  [ Kaleo ]
  * OrientationHelper: report the current orientation of the application
    via QWindow::contentOrientation. (LP: #1187321)
  * Reverted revision 658 introducing reporting of content orientation.
    Was causing crashes on x86. (LP: #1205615)

  [ Thomas Moenicke ]
  * OrientationHelper: report the current orientation of the application
    via QWindow::contentOrientation. (LP: #1187321)

  [ Michał Sawicz ]
  * Depend on devscripts for licensecheck.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 661

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 29 Jul 2013 04:02:12 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130726.1-0ubuntu1) saucy; urgency=low

  [ Zoltán Balogh ]
  * The UI Toolkit has theme with artworks what should be under creative
    common license.

  [ Leo Arias ]
  * Renamed the UbuntuUiToolkit python package to ubuntuuitoolkit. (LP:
    #1204281)

  [ Juhapekka Piiroinen ]
  * Added Ubuntu Test module which contains UbuntuTestCase.
  * Use qmltestrunner for qml tests.
  * Adds missing dependency to devscripts which is required for the make
    license which uses licensecheck. (LP: #1205259)

  [ Luke Yelavich ]
  * Ship the components required for the calculator example.

  [ tpeeters ]
  * Allow combination of Tabs and PageStack: - Fix header behavior for
    Tabs inside PageStack - Add test for Tabs inside PageStack header
    bug - Replace deprecated components in PageStack tests - Add test
    program that combines PageStack and Tabs - Update Tabs
    documentation. (LP: #1187850)

  [ Christian Dywan ]
  * Refactor checklicense and include CSS files This also makes the test
    work on precise. (LP: #1195250)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 657

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 26 Jul 2013 12:23:40 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130725-0ubuntu1) saucy; urgency=low

  [ Leo Arias ]
  * Added fixes for the static errors detected by pyflakes, to the
    branch by Juhapekka that fixes the remaining pep8 errors. (LP:
    #1204674)

  [ Juhapekka Piiroinen ]
  * Added fixes for the static errors detected by pyflakes, to the
    branch by Juhapekka that fixes the remaining pep8 errors. (LP:
    #1204674)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 648

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 25 Jul 2013 06:01:15 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130722-0ubuntu1) saucy; urgency=low

  [ Kaleo ]
  * Popover rendering improvements: - created a reusable component used
    in Popover's style and later in the Slider - replaced dynamic shadow
    with a 9-patch bitmap - moved pointer rendering inside the
    BubbleShape - removed now unused Pointer, PointerStyle and
    associated artwork.
  * Refreshed Slider: - removed unused commented code - removed
    deprecated FIXMEs - removed deprecated documentation - do not
    inherit from AbstractButton anymore - greatly simplified
    computations by making better use of property bindings - implemented
    new design of Slider (in SliderStyle.qml) using BubbleShape Improved
    slider page layout in widgets gallery. (LP: #1202683)

  [ Leo Arias ]
  * Replaced the MainWindow emulator for autopilot tests with a MainView
    emulator that the uses the custom emulator features of autopilot.
  * Added the Toolbar Autopilot emulator.
  * Added the Tabs autopilot emulator.

  [ tpeeters ]
  * Fix a bug where contentY of a flickable was reset when the title of
    the header is unset and set again. (LP: #1201452)

  [ Christian Dywan ]
  * Ignore test results, executables and mo files.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 645

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 22 Jul 2013 04:03:04 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130719-0ubuntu1) saucy; urgency=low

  [ Kaleo ]
  * [Theme] Accept relative paths in UBUNTU_UI_TOOLKIT_THEMES_PATH. (LP:
    #1201842)

  [ Leo Arias ]
  * Isolated and cleaned the button tests. (LP: #1201822)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 637

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 19 Jul 2013 05:26:49 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130718-0ubuntu1) saucy; urgency=low

  [ Kaleo ]
  * Popover: added manual test program.
  * Popover simplifications: - simplified pointer positioning by only
    computing the position of the tip; it's up to the pointer to
    rotate/translate adequately. - fixed implementation of
    Popover.callerMargin and set default value to 0. - removed unused
    parameter 'pointerMargin' from InternalPopupUtils.CallerPositioning.

  [ tpeeters ]
  * Fix bug where toolbarActions.opened was not properly updated when
    the user swipes to show/hide the toolbar. (LP: #1192673)
  * Improve code examples in documentation.
  * Use UnityActions to make Actions available to HUD: - Action now
    inherits UnityActions.Action - Added "actions" property to MainView
    to contain global actions that are available in HUD as long as the
    app is running. - Added "actions" property to Page to contain local
    actions that are available in HUD when the Page is active. (LP:
    #1187869)

  [ Renato Araujo Oliveira Filho ]
  * Make sure that the keyboard does not obscure the contents of main
    window. (LP: #1131249)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 633

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 18 Jul 2013 06:07:54 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130716-0ubuntu1) saucy; urgency=low

  [ Kaleo ]
  * Dialog: removed clipping that not clipping anything.
  * Removed unused PointerStyleShader.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 626

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 16 Jul 2013 04:01:54 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130714-0ubuntu1) saucy; urgency=low

  [ Kaleo ]
  * MainView: new API to choose the background colors. That requires: -
    HeaderStyle: removed background. - MainView: clip the contents when
    necessary. - PageTreeNode: new properties 'isLeaf' and
    'activeLeafNode'.

  [ Leo Arias ]
  * Fixed the pep8 errors and copyright notices.

  [ Didier Roche ]
  * fix icon -> iconSource for toolbar doc.

  [ tpeeters ]
  * Fix bug where Header did not get linked to the new Flickable when
    Page.flickable is automatically detected. (LP: #1200642, #1192591)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 623

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Sun, 14 Jul 2013 04:02:43 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130712-0ubuntu1) saucy; urgency=low

  [ Kaleo ]
  * Removed unused artwork.
  * Added experimental dark & gradient themes.
  * Reverted standard easings to Quad because it seems
    QEasingCurve::BezierSpline does not ensure the target value is
    always reached. (LP: #1199662)

  [ Loïc Molinari ]
  * [UbuntuShape] Prevented dangling nodes in the scene graph. (LP:
    #1180794)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 618

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 12 Jul 2013 04:02:24 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130711-0ubuntu1) saucy; urgency=low

  [ Kaleo ]
  * Introduce new theme color palette API centralising the definition of
    the colors used by the widgets to draw themselves. Adapted most
    widgets to use the theme color palette. The color palette defined in
    the Ambiance theme is the one from the new visual design. (LP:
    #1186968, #1197853)
  * Switch: refresh to match new visual design.
  * Tabs: more robust binding of the header component.
  * CheckBox: refresh to match new visual design.

  [ Loïc Molinari ]
  * Added support for -Werror flagged debug builds and fixed warnings.
  * [UbuntuShape] Fixed alignment support.

  [ tpeeters ]
  * Add API tests for MainView.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 613

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 11 Jul 2013 04:02:09 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130710.1-0ubuntu1) saucy; urgency=low

  [ Kaleo ]
  * ListItems Base & Standard: prevent the icon from going taller than
    5GU. . (LP: #1187128)

  [ Timo Jyrinki ]
  * Remove qmlrunner. On saucy, the less complicated way is to just use
    qmlscene with either environment variable set or with a command line
    parameter.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 605

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 10 Jul 2013 12:48:26 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130710-0ubuntu1) saucy; urgency=low

  [ Kaleo ]
  * Add a CrossFadeImage component which crossfades when its source is
    updated.
  * Standard animation durations adapted for new design: - SnapDuration
    goes from 125ms to 100ms - FastDuration goes from 250ms to 165ms -
    new BriskDuration is introduced at 333ms.
  * GIconProvider: avoid using QPixmap which is not re-entrant. Fixes
    crashes. (LP: #1197784)
  * Fine tuned UbuntuAnimation.StandardEasing to match design.
    Introduced new standard Ubuntu easing
    UbuntuAnimation.StandardEasingReverse.
  * Panel.animating: do not rely on comparing real values that sometimes
    have rounding errors. (LP: #1199550)

  [ Iain Lane ]
  * Add a CrossFadeImage component which crossfades when its source is
    updated.

  [ Loïc Molinari ]
  * [UbuntuShape] Moved content flagging before implicit sizing to
    prevent assertion.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 602

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 10 Jul 2013 06:23:17 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130709-0ubuntu1) saucy; urgency=low

  [ Kaleo ]
  * Pass import paths from main QQmlEngine to QQuickUtils' QQmlEngine.
    Fixes case where qmlscene is passed import paths via the -I
    argument.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 593

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 09 Jul 2013 04:02:55 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130705.3-0ubuntu1) saucy; urgency=low

  [ Kaleo ]
  * Latest fix in ButtonStyle had 3 typos. Fixing them. .
  * ListItem.SingleControl: Ensure that there is always enough vertical
    padding around the control. (LP: #1198116)

  [ Christian Dywan ]
  * Include alias types in qmlapicheck. (LP: #1192540)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 589

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 05 Jul 2013 18:09:33 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130705-0ubuntu1) saucy; urgency=low

  [ Kaleo ]
  * Reintroduced QML proxy for ShapeItem C++ class in order to
    workaround CPU hog when no image was set to ShapeItem. (LP:
    #1197801)

  [ Loïc Molinari ]
  * Added workaround for QML buggy support for color props in ternary
    ops. (LP: #1197802)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 584

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 05 Jul 2013 04:01:41 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130703.1-0ubuntu1) saucy; urgency=low

  [ Zsombor Egri ]
  * Fix for re-parenting items that are anchor filled to an item in
    default layout.
  * TextField API extended with API left out from TextInput. wrapMode is
    not inlcuded as does not make sense to be used in single line input.
    (LP: #1183265)
  * Calculator example which turns from simple calculator (phone
    portrait mode) into scientific one (phone landscape mode) reflecting
    the use of Ubuntu.Layouts. .
  * Removing common.pri from Layouts.pro and Layouts\plugin.pro causing
    qmake warnings when Ubuntu UI toolkit project is opened in
    QtCreator.

  [ Leo Arias ]
  * Replaced the MainWindow emulator for autopilot tests with a MainView
    emulator that the uses the custom emulator features of autopilot.
  * Added the Toolbar Autopilot emulator. (LP: #1177341)

  [ Juhapekka Piiroinen ]
  * Fixed broken ubuntu-ui-toolkit-gallery.qmlproject file, which had an
    invalid value in mainFile field.

  [ tpeeters ]
  * Update header behavior: - Do not automatically hide the header when
    scrolling in a flickable that is not anchored to the top of the
    page. - Automatically show the header when flickable's contentHeight
    becomes less than flickable.height. - Update documentation for
    Page.flickable. (LP: #1156573, #1160175)

  [ Kaleo ]
  * Removed common.pri and coverage.pri files that were cluttering
    QtCreator making it harder to understand the real structure of the
    project. coverage.pri has been transformed into a feature file
    (coverage.prf) which works the same way as before.
  * Removed antiquated TextCustom class.
  * Removed unused old-style tabs delegate.
  * Removed UbuntuShape.qml and transferred code & documentation to
    shapeitem.cpp ShapeItem: renamed baseColor property into color.
  * UbuntuShape: simplified gradient implementation; gradientColor is
    now the same as color by default. .
  * Simplified theming infrastructure. There are no stylesheets anymore
    (.qmltheme file), only delegates remain. A theme is a QML module
    containing delegates whose names are standardized. The default theme
    is called 'Ambiance' and available from QML through 'import
    Ubuntu.Components.Themes.Ambiance 0.1'. The name of the current
    theme is set in ~/.config/ubuntu-ui-toolkit/theme.ini Writing a new
    theme is done by creating a QML module and adding it in the
    Ubuntu/Components/Themes folder. A theme inherits from another theme
    by containing a text file name 'parent_theme' whose first and only
    line is the name of the parent theme. * Moved themes/ directory to
    Ubuntu/Components/Themes so that themes are importable. * Simplified
    ThemeEngine and ThemeSettings class, removed the rest of the theming
    infrastructure (ItemStyle, Style, QmlThemeLoader, Selector,
    StyleCache). * Adapted all widgets to use the simplified theming
    technique: - new StyledItem class that has a 'style' Component
    property representing the delegate - all widgets that have delegates
    inherit from StyledItem - all widgets set the 'style' property to
    the corresponding delegate in the current theme by using
    Theme.createStyleComponent() - Ambiance's stylesheet property/values
    have been moved to where they are used (mostly to the delegates) -
    TextAreaDelegate: exposed background as Component property - Added a
    delegate specific to TextField: TextFieldDelegate - Renamed
    delegates so that they match their widget's name (e.g.
    EditorCursorDelegate.qml renamed to TextCursorDelegate.qml since
    it's the delegate of TextCursor.qml) * Renamed UITK_THEME_PATH into
    UBUNTU_UI_TOOLKIT_THEMES_PATH. (LP: #1152160, #1152161, #1152162,
    #1185950, #1081038, #1167998, #1137210, #1152154, #1152158)
  * New UbuntuColors singleton defining the standard Ubuntu color
    palette. (LP: #1098209)
  * debian/control: specify same architecture for ubuntu-ui-toolkit-
    theme as for qtdeclarative5-ubuntu-ui-toolkit-plugin so that the
    files end up in the same folder. (LP: #1197164)
  * Button: - implementation clean up - updated visual design - new
    'gradient' property.
  * When looking up the plugin's directory
    (UbuntuComponentsPlugin::baseUrl), a case was omitted: if another
    Ubuntu/Components directory exists and is present in the
    QML2_IMPORT_PATH then the lookup failed. This fix is temporary until
    Qt 5.1. (LP: #1197293)
  * Reverted revisions 562 & 569 that broke the autopilot tests. Fixed
    button related autopilot test. (LP: #1197355)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 580

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 03 Jul 2013 19:53:27 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130628-0ubuntu1) saucy; urgency=low

  [ Kaleo ]
  * Button: do not display a background when the color set is fully
    transparent.
  * TextField: new clear icon imported from the icon theme (lp:ubuntu-
    themes).

  [ Christian Dywan ]
  * Implement bread crumbs in API docs. (LP: #1168026)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 560

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

ubuntu-ui-toolkit (0.1.46+13.10.20130627-0ubuntu1) saucy; urgency=low

  [ Sebastien Bacher ]
  * List.Item.Standard: set the height and verticalCenter of the
    control. (LP: #1190196)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 555

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 27 Jun 2013 04:01:22 +0000

ubuntu-ui-toolkit (0.1.46+13.10.20130626-0ubuntu1) saucy; urgency=low

  [ Zsombor Egri ]
  * [layouts] Layout factoring.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 552

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 26 Jun 2013 04:01:25 +0000

ubuntu-ui-toolkit (0.1.46daily13.06.20-0ubuntu1) saucy; urgency=low

  [ tpeeters ]
  * Replace ToolbarActions by ToolbarItems and use ActionItem as a
    visual representation of Actions. (LP: #1177123)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 550

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 20 Jun 2013 04:01:27 +0000

ubuntu-ui-toolkit (0.1.46daily13.06.19-0ubuntu1) saucy; urgency=low

  [ Sebastien Bacher ]
  * ListItem.Standard: use the correct import in the example.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 548

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

ubuntu-ui-toolkit (0.1.46daily13.06.18-0ubuntu1) saucy; urgency=low

  [ Nicolas d'Offay ]
  * Added alias to expose animation running and exposed orientationAngle
    in OrientationHelper.qml.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 545

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 18 Jun 2013 04:01:14 +0000

ubuntu-ui-toolkit (0.1.46daily13.06.17-0ubuntu1) saucy; urgency=low

  [ tpeeters ]
  * Add ActionItem component that copies the Action API, but adds a
    visual representation of the Action.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 542

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 17 Jun 2013 04:02:19 +0000

ubuntu-ui-toolkit (0.1.46daily13.06.14-0ubuntu1) saucy; urgency=low

  [ tpeeters ]
  * Tools are now Items: - Make ToolbarActions a subclass of Item - Move
    the visualization of Actions in Toolbar from Toolbar to
    ToolbarActions - Allow the tools properties of Toolbar and Page to
    be any Item.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 540

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 14 Jun 2013 04:02:15 +0000

ubuntu-ui-toolkit (0.1.46daily13.06.05.1-0ubuntu1) saucy; urgency=low

  [ Zoltán Balogh ]
  * update the example app for the latest UI Toolkit.
  * A simple app to check few locales.
  * Add qttools5-dev-tools to build dependencies to provide
    qhelpgenerator for creating QtC help files from documentation.
  * Build documentation and publish the qch file.
  * Offer symlinks for qmlscene via 'qmlrunner' package. See package
    description for usage instructions. (LP: #1155634). (LP: #1155634)

  [ Loïc Molinari ]
  * [UbuntuShape] Correctly stored the current material. (LP: #1132771)
  * [UbuntuShape] Ensured the texture is available in updatePaintNode().
    (LP: #1171437)

  [ Kaleo ]
  * QML_IMPORT_PATH is deprecated for QtQuick 2.0. Switch to
    QML2_IMPORT_PATH.
  * Added syntax description for CHANGES file in CHANGES.syntax.
  * UCScalingImageProvider: respect 'requestedSize' parameter. That
    ensures that the 'sourceSize' property of Image is respected even
    when the toolkit automatically scales the asset for the device. (LP:
    #1130120)
  * Added documentation for bitmap suffixes in the resolution
    independence page. (LP: #1092051)
  * Revamped component showcase now called 'Ubuntu UI Toolkit Gallery'.
    Works on Ubuntu Touch. (LP: #1130603)
  * Benchmarks for time critical components.
  * Added ListItem.ValueSelector example. Fixed incorrect 'Multi value'
    label. (LP: #1172663)
  * Toolkit Gallery: added examples for Sheets.
  * Automatic rotation of applications depending on the device
    orientation. For applications that are using MainView, they opt-in
    by setting 'automaticOrientation' to true. New component
    OrientationHelper for applications that do not use MainView but
    still need an easy way to automatically rotate.
  * UbuntuShape: fix slight distortion of image when set. This
    distortion was quite disturbing when the content has text in it, as
    it is often the case in Popups and Popovers. (LP: #1170878)
  * Use standard animation ubuntu snap beat for popups fade in.
  * Removed unnecessary clipping from Tabs, Popover, Dialog and
    MainView.
  * All ListItems: set default contents right and left margins to 2 gu.
    ListItems Base, Standard and ValueSelector: deprecated private
    properties __leftIconMargin and __rightIconMargin IconVisual
    (private): removed properties leftIconMargin and rightIconMargin
    Standard: removed ugly progression highlight background when there
    is no split.
  * ListItems: constrain size of the icon by default. Deprecated private
    properties __iconWidth and __iconHeight.
  * Ubuntu UI Toolkit Gallery tweaks: - Made window wider and left
    column the width of the phone: 40gu. - Removed 'slider.' from Slider
    example's labels. - Renamed 'Switches' into 'Toggles'. Renamed
    'Progress Bars' into 'Progress and activity'. - Use resolution
    independence for navigation example screenshots.
  * Support source with quotes in .sci files. (LP: #1080719)
  * Reverted unjustified changes to ubuntu-ui-toolkit-gallery.desktop.
  * Popover: simplified computation of height: - contentHeight to be the
    height of the content not of the delegate - delegate to always be
    the height of the Popover. (LP: #1178227)
  * New UbuntuAnimation durations and easing constants. New
    UbuntuNumberAnimation.
  * Document type for alias properties of the following classes: -
    TextArea - TextField - ListItems.Empty - ListItems.SingleValue -
    Popups.Dialog - Popups.Popover - Popups.SheetBase. (LP: #1169919)
  * Added new API to retrieve command line arguments: Arguments.
  * Reduced size of the x-large font size per design.

  [ Timo Jyrinki ]
  * Fix autopilot tests and add autopilot package. (LP: #1169556) (LP:
    #1170659) This branch makes the five autopilot tests to run again
    with newest autopilot packages, and adds a ubuntu-ui-toolkit-
    autopilot package to install for CI or other purposes. The tests are
    runnable both from an installed package or source directory. (LP:
    #1170659, #1169556)
  * autopilot: Switch mouse -> pointing_device for phablet-test-run (LP:
    #1175363). (LP: #1175363)
  * Remove one old rename transition, add a new one, add the split
    plugins dependency. The split multimedia plugins only as recommends
    to be on the safe side during the transition period to 5.0.2.
  * Port to autopilot 1.3 and update test content to match UI.
  * Depend on dpkg-dev from ubuntu-ui-toolkit-autopilot, as long as
    dpkg-architecture is used.
  * Offer symlinks for qmlscene via 'qmlrunner' package. See package
    description for usage instructions. (LP: #1155634). (LP: #1155634)
  * qmlrunner for archs amd64 i386 armhf instead of any.
  * Add python dependency and use the python command explicitly to fix
    FTBFS. (LP: #1183198). (LP: #1183198)
  * Use dpkg-architecture instead of '*' for qmlrunner's symlinks.
    Something has broken the latter recently and dpkg-architecture is
    more trustworthy anyway.

  [ Christian Dywan ]
  * Add a base URL to qdocconf file. (LP: #1175389)
  * Introduce QML API check; if API changes, check components.api.new.
  * Refer checkbox docs to design guide. (LP: #1174958)
  * Use offline documentation as a basis for online docs. (LP: #1183013)
  * Save qdoc error log and fail if it's not empty. (LP: #1185402)

  [ Zsombor Egri ]
  * Workaround for TextArea and TextField removing OSK when active focus
    is transferred from one instance to another using focus property. .
    (LP: #1163371)
  * Fixing disabled text input delegate background color theming when
    userValue is set to TextField or TextArea color property. (LP:
    #1169601)
  * Fix for text inputs staying disabled after being re-enabled. The
    previous workaround for removing input panel was blocking re-
    enabling a previously enabled input. (LP: #1164634)
  * Fix for auto expanding TextArea eating flick events from Flickables.
    (LP: #1144077)
  * Benchmarks for time critical components.
  * Memory leak fixes lost from a previous MR.
  * [theming] Building selector for a styled item moved into Selector
    class. Previous functionality present in
    ItemStyleAttachedPrivate::updateStyleSelector() was moved into
    Selector class, class being responsible of building up the selectors
    from different sources. A selector can now be built up from a
    QQuickItem, in which case the item becomes the owner of the
    selector. Any additional update on the selector made by calling
    update() method will fetch the latest information from the owner and
    update the last node of the selector.
  * [theming] Style update optimization. - updateCurrentStyle() renamed
    to updateTheme() - resetStyle() ad resetDelegate() removed from
    updateStyle() and updateDelegate() respectively to avoid unnecessary
    calls on reset - updateTheme() checks whether the style rule has
    been changed, and compares whether style objects are different in
    the new style rule (this second part is more like prerequisite for
    an upcomming delegate detection MR) - setName() and setStyleClass()
    doe snot update the entire styleSelector - setName() and
    setStyleClass() apply styling changes on children -
    updateStyleSelector() became redundant, removed.
  * Fixing crash on custom style objects previously owned by other
    styled items. (LP: #1168006)
  * Unit converter example updated to use the latest UITK components.
  * [theming] Cache delegates separately from style objects and store
    the style object and the delegate type string in the style rule. In
    this way the theme engine can sort out unnecessary re-creation of
    delegates on a styled item when the style rule on the styled item
    gets changed and the previous and the new style rules share the same
    delegate component.
  * [theming] ItemStyle attached object detects now the time when the
    first styled item's attached component gets completed. In this way
    first time style object and delegate creation can be moved from re-
    parenting to completion.
  * Fix for crash in theme engine when loading application specific
    theme file in an app having a Popover instantiated. (LP: #1175394)
  * [theming] Removing deprecated functionality.
  * [theming] Changing stateful libraries to stateless to decrease time
    spent each time Ubuntu.Components module is imported. (LP: #1170638)
  * [theming] FontUtils converted from stateful JS library to native
    module due to its dependency to "units" context property.
  * [inversemaousearea] Fixing sensingArea not updated on phablet. (LP:
    #1166127)
  * InverseMouseArea sensingArea and Popovers' dismissArea works now
    when included in Window. (LP: #1182673)
  * [inversemousearea] Default sensing area not set on the proper time.
    (LP: #1185397)

  [ Juhapekka Piiroinen ]
  * Added missing QML2_IMPORT_PATH to unit test runner script.
  * Add a new Panel component that can be swiped in and out from an edge
    of the window by the user. As opposed to the default toolbar (which
    inherits from the Panel), a Panel can be attached to any edge of the
    screen, and the developer is free to define its contents. For
    standard cases, the automatic toolbar from the MainView and Page can
    still be used. API changes: * CHANGED IN Toolbar: property bool
    active TO property bool opened * CHANGED IN Toolbar: property bool
    lock TO property bool locked * CHANGED IN ToolbarActions: property
    bool active TO property bool opened * CHANGED IN ToolbarActions:
    property bool lock TO property bool locked. (LP: #1131209, #1116578,
    #1163395)
  * Adds Help file for Qt Creator usage. After this you can access
    documentation using F1.
  * Fix rules for qch files.
  * Build qch on qmake execution.
  * Fixes bug #1176132 [i18n] Set up the translation domain
    automatically Sets i18n.domain = applicationName on
    MainView::onApplicationNameChanged. (LP: #1176132)
  * Added depends for the docs install target. (LP: #1187006)
  * Improving autopilot tests.
  * Fix runtest.sh, it was missing xml argument on fallback execution.
    Removed testparser execution Added README file for unit tests. Added
    new targets: make test-performance <= runs performance tests make
    test-components <= runs functional tests for components make test-
    api <= runs api tests for components.
  * Fix failing textarea autopilot test by commenting out textarea tests
    for now.

  [ Olivier Tilloy ]
  * Added property TextField.inputMethodHints. (LP: #1185392)
  * When the clear button is not visible, ensure the text can use its
    space. (LP: #1186247)

  [ Michael Zanetti ]
  * enable horizontalAlignment for TextField and make the hint text
    follow its properties .

  [ tpeeters ]
  * Disable swiping to switch tabs by default. This is a preparation for
    the complete removal of the swipe-to-switch-tabs functionality cf.
    https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1166709.
  * Disable events on disabled controls inside list items. (LP:
    #1166982)
  * Add a new Panel component that can be swiped in and out from an edge
    of the window by the user. As opposed to the default toolbar (which
    inherits from the Panel), a Panel can be attached to any edge of the
    screen, and the developer is free to define its contents. For
    standard cases, the automatic toolbar from the MainView and Page can
    still be used. API changes: * CHANGED IN Toolbar: property bool
    active TO property bool opened * CHANGED IN Toolbar: property bool
    lock TO property bool locked * CHANGED IN ToolbarActions: property
    bool active TO property bool opened * CHANGED IN ToolbarActions:
    property bool lock TO property bool locked. (LP: #1131209, #1116578,
    #1163395)
  * Remove Toolbars.qml.THIS which was added by unintentionally.
  * Add a new Panel component that can be swiped in and out from an edge
    of the window by the user. As opposed to the default toolbar (which
    inherits from the Panel), a Panel can be attached to any edge of the
    screen, and the developer is free to define its contents. For
    standard cases, the automatic toolbar from the MainView and Page can
    still be used. API changes: * CHANGED IN Toolbar: property bool
    active TO property bool opened * CHANGED IN Toolbar: property bool
    lock TO property bool locked * CHANGED IN ToolbarActions: property
    bool active TO property bool opened * CHANGED IN ToolbarActions:
    property bool lock TO property bool locked. (LP: #1131209, #1116578,
    #1163395)
  * Update remaining components to use new component properties instead
    of deprecated properties.
  * Fix small documentation errors. (LP: #1174985)
  * Remove VisualItemModel from Tabs internals, and make it work with a
    Repeater to define the tabs. (LP: #1167568, #1096969, #1166709,
    #1124065)
  * Extend ActionList API so that Actions can be re-used by toolbars on
    multiple Pages. (LP: #1122864)
  * fix error in documentation of Action.
  * Combine the propagated properties of PageTreeNode in a single
    property propagated that contains all the other properties.
  * documentation fix.
  * Remove preliminary and deprecated HUD integration. Internal __hud
    property removed from MainView. (LP: #1129966)
  * Generate documentation for i18n. (LP: #1078631)
  * Add a test program that shows panels on different edges of the
    application view to tests/resources/toolbar. Like the other test
    programs in resources, this will come in handy for testing changes
    to the components.
  * revert changes to PageWrapperUtils.jp from revision 501 because it
    breaks phone-app. (LP: #1183456)
  * Properly internalize PageTreeNode's propagated property and tweak
    header behavior so that propagated.header does not need to be used
    by any of the apps: - CHANGED IN PageTreeNode: propagated TO
    __propagated - CHANGED IN Tabs: Automatically show the header when
    the title of the active tab changes - CHANGED IN Page/MainView: Only
    enable auto-hide behavior of header when the Page's flickable can be
    flicked vertically, so that manual setting of anchors is no longer
    needed for flickables that only flick horizontally (calendar-app).
  * comment on pragma library in PageWrapperUtils.js.
  * Add action property to AbstractButton, and use it in the toolbar.
    (LP: #1167232)
  * Enable UI Toolkit translations in Launchpad. (LP: #1175724)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 537

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 05 Jun 2013 09:06:50 +0000

ubuntu-ui-toolkit (0.1.46daily13.06.04ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ Kaleo ]
  * Reduced size of the x-large font size per design.

  [ Olivier Tilloy ]
  * When the clear button is not visible, ensure the text can use its
    space. (LP: #1186247)

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

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

ubuntu-ui-toolkit (0.1.46daily13.06.02ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ tpeeters ]
  * Enable UI Toolkit translations in Launchpad. (LP: #1175724)

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

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

ubuntu-ui-toolkit (0.1.46daily13.05.31ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ Olivier Tilloy ]
  * Added property TextField.inputMethodHints. (LP: #1185392)

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 31 May 2013 04:02:58 +0000

ubuntu-ui-toolkit (0.1.46daily13.05.29.1ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ Zsombor Egri ]
  * [inversemousearea] Default sensing area not set on the proper time.
    (LP: #1185397)

  [ Timo Jyrinki ]
  * Use dpkg-architecture instead of '*' for qmlrunner's symlinks.
    Something has broken the latter recently and dpkg-architecture is
    more trustworthy anyway.

  [ Christian Dywan ]
  * Save qdoc error log and fail if it's not empty. (LP: #1185402)

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 29 May 2013 19:55:27 +0000

ubuntu-ui-toolkit (0.1.46daily13.05.29ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ Zsombor Egri ]
  * [inversemaousearea] Fixing sensingArea not updated on phablet. (LP:
    #1166127)
  * InverseMouseArea sensingArea and Popovers' dismissArea works now
    when included in Window. (LP: #1182673)

  [ Christian Dywan ]
  * Refer checkbox docs to design guide. (LP: #1174958)
  * Use offline documentation as a basis for online docs. (LP: #1183013)

  [ tpeeters ]
  * comment on pragma library in PageWrapperUtils.js.
  * Add action property to AbstractButton, and use it in the toolbar.
    (LP: #1167232)

  [ Kaleo ]
  * Added new API to retrieve command line arguments: Arguments.

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 29 May 2013 04:02:36 +0000

ubuntu-ui-toolkit (0.1.46daily13.05.24ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ tpeeters ]
  * revert changes to PageWrapperUtils.jp from revision 501 because it
    breaks phone-app. (LP: #1183456)
  * Properly internalize PageTreeNode's propagated property and tweak
    header behavior so that propagated.header does not need to be used
    by any of the apps: - CHANGED IN PageTreeNode: propagated TO
    __propagated - CHANGED IN Tabs: Automatically show the header when
    the title of the active tab changes - CHANGED IN Page/MainView: Only
    enable auto-hide behavior of header when the Page's flickable can be
    flicked vertically, so that manual setting of anchors is no longer
    needed for flickables that only flick horizontally (calendar-app).

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

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

ubuntu-ui-toolkit (0.1.46daily13.05.23.2ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ Zoltán Balogh ]
  * Offer symlinks for qmlscene via 'qmlrunner' package. See package
    description for usage instructions. (LP: #1155634). (LP: #1155634)

  [ Zsombor Egri ]
  * Fix for crash in theme engine when loading application specific
    theme file in an app having a Popover instantiated. (LP: #1175394)
  * [theming] Removing deprecated functionality.
  * [theming] Changing stateful libraries to stateless to decrease time
    spent each time Ubuntu.Components module is imported. (LP: #1170638)
  * [theming] FontUtils converted from stateful JS library to native
    module due to its dependency to "units" context property.

  [ Michael Zanetti ]
  * enable horizontalAlignment for TextField and make the hint text
    follow its properties .

  [ Kaleo ]
  * New UbuntuAnimation durations and easing constants. New
    UbuntuNumberAnimation.
  * Document type for alias properties of the following classes: -
    TextArea - TextField - ListItems.Empty - ListItems.SingleValue -
    Popups.Dialog - Popups.Popover - Popups.SheetBase. (LP: #1169919)

  [ Timo Jyrinki ]
  * Depend on dpkg-dev from ubuntu-ui-toolkit-autopilot, as long as
    dpkg-architecture is used.
  * Offer symlinks for qmlscene via 'qmlrunner' package. See package
    description for usage instructions. (LP: #1155634). (LP: #1155634)
  * qmlrunner for archs amd64 i386 armhf instead of any.
  * Add python dependency and use the python command explicitly to fix
    FTBFS. (LP: #1183198). (LP: #1183198)

  [ tpeeters ]
  * fix error in documentation of Action.
  * Combine the propagated properties of PageTreeNode in a single
    property propagated that contains all the other properties.
  * documentation fix.
  * Remove preliminary and deprecated HUD integration. Internal __hud
    property removed from MainView. (LP: #1129966)
  * Generate documentation for i18n. (LP: #1078631)
  * Add a test program that shows panels on different edges of the
    application view to tests/resources/toolbar. Like the other test
    programs in resources, this will come in handy for testing changes
    to the components.

  [ Christian Dywan ]
  * Introduce QML API check; if API changes, check components.api.new.

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 23 May 2013 10:56:50 +0000

ubuntu-ui-toolkit (0.1.46daily13.05.14ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ Zsombor Egri ]
  * [Theming] custom styling objects which are owned by other styled
    items should be detached from their previous owners (LP: #1168006)

  [ Juhapekka Piiroinen ]
  * [i18n] Set up the translation domain automatically (LP: #1176132)

  [ Kaleo ]
  * Visual glitch in the popover when contentHeight changes (LP:
    #1178227)
  * [ResIndep] BorderImage source error using double-quotes and various
    grid unit sizes (LP: #1080719)

  [ Timo Jyrinki ]
  * autopilot tests should use pointing_device instead of mouse (LP:
    #1175363)

  [ tpeeters ]
  * ListItem.Standard requires a Button control (LP: #1174985)
  * [actions] Actions in Page's tools property cannot be re-used in
    other Pages (LP: #1122864)
  * [toolbar] Provide abstract component for edge swipe (LP: #1163395)
  * [tabs] Slider does not work in tab with swipeToSwitchTabs enabled
    (LP: #1096969)
  * [toolbar] Need a more generic toolbar component (LP: #1131209)
  * [tabs] Can't create Tabs from a ListModel (LP: #1167568)
  * [tabs] WebView as a Tab child does not work reliably and sometimes
    crashes (LP: #1124065)
  * [toolbar] GenericToolbar does not support dragable components (LP:
    #1116578)
  * [tabs] Tabs should only be navigated by swiping or tapping on the
    header area (LP: #1166709)

  [ Christian Dywan ]
  * Docs need a base URL in qdocconf file (LP: #1175389)

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 14 May 2013 04:02:02 +0000

ubuntu-ui-toolkit (0.1.46daily13.05.01ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [Zoltan Balogh]
  * Component gallery app is moved to examples
  * All examples made QtC compliant

  [ Florian Boucault ]
  * New release

  [ Zsombor Egri ]
  * ItemStyle.path is (null) on start, gets reevaluated on theme change
    (LP: #1081038)

  [ Loïc Molinari ]
  * [UbuntuShape] Image's fillMode works only first time (LP: #1171437)
  * [UbuntuShape] after first unloading of Image, UbuntuShape is black
    (LP: #1132771)

  [ tpeeters <tim.peeters@canonical.com>, Juhapekka Piiroinen ]
  * [toolbar] GenericToolbar does not support dragable components (LP:
    #1116578)
  * [toolbar] Provide abstract component for edge swipe (LP: #1163395)
  * [toolbar] Need a more generic toolbar component (LP: #1131209)

  [ Kaleo ]
  * remove phone component showcase demo (LP: #1130603)
  * Missing list item examples in new gallery (LP: #1172663)
  * [UbuntuShape] image content is slightly distorted by the shape (LP:
    #1170878)

  [ Timo Jyrinki ]
  * autopilot package needed for CI (LP: #1170659)
  * 5 autopilot tests fail (LP: #1169556)

  [ tpeeters ]
  * Disabling the control in a ListItem should also disable clicks on
    the ListItem itself (LP: #1166982)
  * [toolbar] GenericToolbar does not support dragable components (LP:
    #1116578)
  * [toolbar] Provide abstract component for edge swipe (LP: #1163395)
  * [toolbar] Need a more generic toolbar component (LP: #1131209)

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 01 May 2013 07:51:21 +0000

ubuntu-ui-toolkit (0.1.45) raring; urgency=low

  * New release

 -- Florian Boucault <florian.boucault@canonical.com>  Fri, 26 Apr 2013 10:05:09 -0300

ubuntu-ui-toolkit (0.1.44) raring; urgency=low

  * New release

 -- Tim Peeters <tim.peeters@canonical.com>  Tue, 23 Apr 2013 16:33:20 +0200

ubuntu-ui-toolkit (0.1.43daily13.04.23ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ Kaleo ]
  * [ubuntu-ui-toolkit] Image.sourceSize does not work for images using
    the @px notation (LP: #1130120)
  * Resolution independence docs don't mention the @size suffix (LP:
    #1092051)

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 23 Apr 2013 04:03:26 +0000

ubuntu-ui-toolkit (0.1.43daily13.04.22ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ Zsombor Egri ]
  * Auto expanding TextArea should not eat flick events (LP: #1144077)

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 22 Apr 2013 04:01:54 +0000

ubuntu-ui-toolkit (0.1.43daily13.04.19ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ Zsombor Egri ]
  * [TextArea] setting color property disables styling (LP: #1169601)
  * Re-enabling a TextField doesn't work (LP: #1164634)

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 19 Apr 2013 04:09:00 +0000

ubuntu-ui-toolkit (0.1.43) raring; urgency=low

  * Fix for text inputs staying disabled after being re-enabled. The previous 
    workaround for removing input panel was blocking re-enabling a 
    previously enabled input. (LP: #1164634)
  * Fixing disabled text input delegate background color theming when userValue
    is set to TextField or TextArea color property. (LP: #1169601)
  * Workaround for TextArea and TextField removing OSK when active focus is 
    transferred from one instance to another using focus property (LP: #1163371)
  * Fix for TextArea Enter/Return keys being stolen when embedded in 
    ListItems.Empty. (LP: #1166840)

 -- Ken VanDine <ken.vandine@canonical.com>  Thu, 18 Apr 2013 10:18:52 -0400

ubuntu-ui-toolkit (0.1.42daily13.04.18ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ Zsombor Egri ]
  * [textarea] TextArea focus is not handled correctly (LP: #1163371)

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 18 Apr 2013 05:25:55 +0000

ubuntu-ui-toolkit (0.1.42daily13.04.17ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ Timo Jyrinki ]
  * Automatic snapshot from revision 421 (bootstrap)
    - The Empty list item conflicts with TextArea handling of enter key
      (LP: #1166840)
    - Slide to delete behaviour should use SDK component (LP: #1099455)
    - Memory leaks (LP: #1152151)

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 17 Apr 2013 04:01:52 +0000

ubuntu-ui-toolkit (0.1.42) raring; urgency=low

  [ Loïc Minier ]
  * Drop ubuntu-sdk package; now generated from sdk ubuntu-touch seed in
    ubuntu-touch-meta package.

  [ Timo Jyrinki ]
  * Sync with raring packaging, separate meta also in the PPA again
  * New upstream snapshot
    - Update documentation html styles
    - Fix the clamping of sheet width on narrow screens.
    - Added "make license" target
    - Added online and offline API documentation configurations, both with
      Ubuntu styling.

  [ Tim Peeters ]
  * Rewrite of theming engine. See CHANGES for details and deprecated APIs.

 -- Tim Peeters <tim.peeters@canonical.com>  Fri, 12 Apr 2013 13:58:19 +0200

ubuntu-ui-toolkit (0.1.41) raring; urgency=low

  * Update documentation html styles
  * Automatic license checking for source files
  * Fix clamping bug for sheets on narrow screens 

 -- Tim Peeters <tim.peeters@canonical.com>  Wed, 10 Apr 2013 19:16:52 +0200

ubuntu-ui-toolkit (0.1.40) raring; urgency=low

  * Improve header and toolbar documentation for MainView/Page/PageStack/Tabs.
  * Fix bug in header (hide it when the header is empty) 

 -- Tim Peeters <tim.peeters@canonical.com>  Fri, 05 Apr 2013 15:12:25 +0200

ubuntu-ui-toolkit (0.1.39) quantal; urgency=low

  * New Icon component that displays icons from the icon theme.
  * Added libqt5svg5 as a dependency thus allowing use of SVGs in icon themes.
  * Fix bug in list items. 

 -- Florian Boucault <florian.boucault@canonical.com>  Mon, 01 Apr 2013 10:03:49 -0300

ubuntu-ui-toolkit (0.1.38) raring; urgency=low

  * Drop ubuntu-sdk package; now generated from sdk ubuntu-touch seed in
    ubuntu-touch-meta package.

 -- Loïc Minier <loic.minier@ubuntu.com>  Thu, 21 Mar 2013 03:07:40 +0100

ubuntu-ui-toolkit (0.1.37) raring; urgency=low

  * Compatibility Breaks
    - Page, PageStack and Tabs automatically determine their anchors and height
      inside a MainView, so there is no need to set them explicitly.
    - It is now recommended to always use Pages inside Tabs or PageStack.
      Non-Page items can still be used, but their margins will not automatically
      be set-up to align with the header of the MainView.
  * API Changes (LP: #1157191)
    - Property tools was deprecated for MainView, Tabs and PageStack. Pages now automatically
      update MainView.toolbar.tools when they become active.
    - Property page of Tab can no longer be a URL, but must be an Item (Page recommended).
      Use a Loader if you were using a URL first.

 -- Tim Peeters <tim.peeters@canonical.com>  Wed, 20 Mar 2013 19:15:08 +0100

ubuntu-ui-toolkit (0.1.36.2-0ubuntu2) raring; urgency=low

  * debian/control
    - libqt5v8-5-dev only supports amd64, i386 and armhf so setting
      Architecture to just those

 -- Ken VanDine <ken.vandine@canonical.com>  Wed, 20 Mar 2013 12:44:41 -0400

ubuntu-ui-toolkit (0.1.36.2-0ubuntu1) raring; urgency=low

  * New snapshot release (LP: #1157191)
  * Add more recommended packages
  * Co-exist better with PPAs

 -- Timo Jyrinki <timo-jyrinki@ubuntu.com>  Wed, 13 Mar 2013 11:21:06 +0200

ubuntu-ui-toolkit (0.1.36.1-0ubuntu1) raring; urgency=low

  * debian/control:
    - drop qtpim5-dev dep on the metapackage, not supported upstream and not
      in distro

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 27 Feb 2013 10:19:43 +0100

ubuntu-ui-toolkit (0.1.36-0ubuntu1) raring; urgency=low

  * Initial release 

 -- Timo Jyrinki <timo-jyrinki@ubuntu.com>  Tue, 26 Feb 2013 09:52:05 +0200