~fboucault/ubuntu-ui-toolkit/dpr_rebase_qt_5.1

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
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-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