~paulliu/unity8/lp1378469_MessageMenu

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

  [ Michael Zanetti ]
  * improve snapping after dragging
  * Make the launcher BFB rounded on one end (LP: #1382596)
  * disable swipeToClose while some snapping is happening (LP: #1378938)
  * increase threshold and avoid jumping in SpreadDelegate dragging (LP:
    #1352842, #1350803)

  [ Ying-Chun Liu ]
  * Notifications should be on right side when wide. (LP: 1379384) (LP:
    #1379384)

  [ Albert Astals ]
  * Fix qml warnings
  * Fix some qmluitests

  [ Lars Uebernickel ]
  * Use Icon instead of StatusIcon

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

unity8 (8.01+15.04.20141117-0ubuntu1) vivid; urgency=low

  [ josharenson ]
  * Return focus to the application after a tusted session overlay is
    closing. (LP: #1381292)

  [ Josh Arenson ]
  * Return focus to the application after a tusted session overlay is
    closing. (LP: #1381292)

  [ Albert Astals ]
  * Remove unused ResponsiveFlowView
  * Fix a few cmake warnings when running ./build.sh in a clean checkout

  [ Mirco Müller ]
  * Make sure non-square icons are not cropped. (LP: #1378417)

  [ Michael Terry ]
  * Drop the "EARLY ALPHA" scare label when running in testing mode.

  [ Michael Zanetti ]
  * unify Greeter and Lockscreen wallpaper again
  * hide quicklist when launcher hides (LP: #1387088)
  * Keep applications suspended while lockscreen is shown (LP: #1378126)
  * change spread background color to 111111

  [ Omer Akram ]
  * show password when tapped on the 'Show password' label, not just the
    checkbox. (LP: #1389832)

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

unity8 (8.01+15.04.20141107.2-0ubuntu2) vivid; urgency=medium

  * No-change rebuild against Qt 5.3.2.

 -- Timo Jyrinki <timo-jyrinki@ubuntu.com>  Sat, 08 Nov 2014 13:50:11 +0200

unity8 (8.01+15.04.20141107.2-0ubuntu1) vivid; urgency=low

  [ Michael Terry ]
  * Skip second SIM unlock dialog if user presses Emergency Call on
    first one (LP: #1387925)

  [ Michael Zanetti ]
  * fix positive/negative answer order on the new swipe notification
    (LP: #1358343)
  * Update PageHeader to use new SDK api
  * antialias surfaces when in spread (LP: #1351559)

  [ Albert Astals ]
  * Remove Hud

  [ Mirco Müller ]
  * Replace ComboButton in snap-decision notifications, used for
    additional actions (> 3 actions), with custom widget immune to
    accidental taps. (LP: #1384730)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 07 Nov 2014 14:33:02 +0000

unity8 (8.01+15.04.20141104-0ubuntu1) vivid; urgency=low

  [ Sebastien Bacher ]
  * Drop workaround, it's not needed and create issues for desktop-next
    (LP: #1387671)

  [ Albert Astals ]
  * Do not append integer to char *
  * Remove unused end() function
  * Update build.sh
  * Fix i18n

  [ Michael Zanetti ]
  * rework launcher quicklist visuals to fit new design (LP: #1368660)
  * Fix DBusVariant conversion for launcher emblems (LP: #1387261)
  * Fix desktop file encoding in launcher (LP: #1387083)
  * Add a hinting animation to indicate changes in the backend (LP:
    #1376707)

  [ Alberto Aguirre ]
  * Add audioRole to QtMultimedia mock
  * Add a plugin to take screenshots on vol up + vol down

  [ CI bot ]
  * Fix relative time formatter when using non-UTC timezone. (LP:
    #1378821)

  [ Leo Arias ]
  * Removed the tests for the alternate paths of the autopilot helpers.

  [ Nick Dedekind ]
  * Fix relative time formatter when using non-UTC timezone. (LP:
    #1378821)
  * Reset current item selection on deleted. (LP: #1378462)
  * Added timer to re-assert server value after indicator menu item
    activation. (LP: #1336715)

  [ Mirco Müller ]
  * Added dedicated swipe-to-act button for snap-decisions, which avoids
    accidental taps/button-presses. (LP: #1358343)

  [ Chris Gagnon ]
  * add missing unity-scope-click dependancy to unity8-autopilot package
    (LP: #1336276)

  [ Michael Terry ]
  * Don't lock phone if user tries to switch back to an active call.
    (LP: #1388156)

  [ Daniel d'Andrada ]
  * DirectionalDragArea: Update TODO comment in light of new events
  * TouchDispatcher: synthesize MouseButtonDblClick events

  [ Leonardo Arias Fonseca ]
  * Removed the tests for the alternate paths of the autopilot helpers.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 04 Nov 2014 12:56:08 +0000

unity8 (8.01+15.04.20141030-0ubuntu1) vivid; urgency=medium

  [ Michael Terry ]
  * Provide 'passphrase' as a field of Components.Lockscreen
  * Fix a race between Qml loading and DBus registration that caused
    problems when jenkins tried to unlock the phone.
  * Set domain explicitly for the Dialogs component because the welcome
    wizard wants to import it. (LP: #1381731)
  * When greeter or lockscreen has focus, show active call panel. (LP:
    #1378872)

  [ Ted Gould ]
  * Set the default OOM score for the dash (LP: #1379786)

  [ Michał Sawicz ]
  * Revert lp:~unity-team/unity8/flickables-speed-workaround to avoid
    risk in RTM.
  * Updated behaviour for zoomable image, workaround for sourcesize (LP:
    #1333187)

  [ Michael Frey ]
  * Added a check for Proximity to determine if we show the lock screen.
    (LP: #1378012)

  [ Ying-Chun Liu ]
  * Add non-interactive code into GenericScopeView. (LP: #1384441)

  [ Mirco Müller ]
  * Also use modal nature of snap-decision notifications when
    greeter/lockscreen is shown. This fixes LP: #1378827. (LP: #1378827)

  [ Michael Zanetti ]
  * Make the launcher update on dconf changes (LP: #1376707)
  * exit spread on background tap (LP: #1368261)
  * Use an index instead of a scope id in DashCommunicator (LP:
    #1376044)

  [ Andrea Cimitan ]
  * Updated behaviour for zoomable image, workaround for sourcesize (LP:
    #1333187)

  [ Daniel d'Andrada ]
  * Make TouchGate synthesize QMouseEvents for mouse-based target items
  * Don't specify a distanceThreshold as it conflicts with
    hintDisplacment

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 30 Oct 2014 21:43:42 +0000

unity8 (8.00+15.04.20141030-0ubuntu1) vivid; urgency=low

  [ josharenson ]
  * Fix lp:1370240 by making stages interactive when a snap decision is
    dismissed. (LP: #1370240)

  [ Nick Dedekind ]
  * remove qml ownership confusion for caching unitymenumodels (LP:
    #1368856)
  * Implementation of expandable panel design (LP: #1368856)

  [ Albert Astals ]
  * CardAttributes: Specify column and row since the gridlayout gets
    confused sometimes (LP: #1381092)
  * Reset VerticalJournal until the cardTool settles (LP: #1381255)

  [ Mirco Müller ]
  * Added synchronous/confirmation notification support to unity8. (LP:
    #1232633)

  [ Michael Zanetti ]
  * Fix lp:1370240 by making stages interactive when a snap decision is
    dismissed. (LP: #1370240)
  * Drop all visual indication of "pinning" (LP: #1381054)

  [ Antti Kaijanmäki ]
  * Unlock all modems on boot. (LP: #1333121)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 30 Oct 2014 10:51:17 +0000

unity8 (8.00+14.10.20141013.2-0ubuntu1) utopic; urgency=low

  [ Michael Terry ]
  * Don't show initial lockscreen during the edge demo. The user just
    set up their phone with a password, it's pointless to ask them
    again. (LP: #1358283)
  * Distinguish between incoming calls and other dialer-app opens. (LP:
    #1378218) (LP: #1378218)

  [ Andrea Cimitan ]
  * Fix flickable speed to be resolution independent, by subclassing
    components (LP: #1348557)

  [ Michał Sawicz ]
  * Fix the ShellWithPin test and some functionality.

  [ Albert Astals ]
  * Move Base.qml to DashCategoryBase
  * Fix first item positioning when m_clipItem->y() is not 0 (LP:
    #1251597)
  * Fix some small qml warnings

  [ Daniel d'Andrada ]
  * Add touch ownership logic on top of qt input handling

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 13 Oct 2014 15:43:03 +0000

unity8 (8.00+14.10.20141009.4-0ubuntu1) utopic; urgency=low

  [ Michał Sawicz ]
  * Rename datetime indicator in test

  [ Albert Astals ]
  * Close overview temp scope on show dash (LP: #1373819)
  * Enable QT_STRICT_ITERATORS
  * Make Base not clickable, since we don't use it in anywhere clickable
    (we only use it for Category delegates in the LVWPH) (LP: #1300709)
  * Hide preview if it was visible when going to a scope (LP: #1374548)
  * Remove contentScale variable

  [ Andrea Cimitan ]
  * Fix card implicitHeight when summary is declared, but its text is
    empty. Also fixes vertical journal height and clipping (LP:
    #1362160)
  * Redesign for pinned apps. Remove thindivider on top of ubuntu dash
    button (not needed anymore) (LP: #1377100)

  [ Ying-Chun Liu ]
  * Fix run_on_device.sh to let it run again.

  [ Nick Dedekind ]
  * Fixed indicator menu bindings to server toggle value broken by user
    interaction. (LP: #1336715)
  * Force rendering so we don't get stuck in "waitForRendering" loop in
    tests.

  [ Daniel d'Andrada ]
  * PhoneStage: focus the new topmost app after the current one closes
    itself (LP: #1375267)

  [ Michael Terry ]
  * Fix some security issues with the tablet greeter, which allowed the
    lockscreen to be bypassed. (LP: #1367715) (LP: #1367715)

  [ Michael Zanetti ]
  * scale down errorText label if necessary (LP: #1378848)

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

unity8 (8.00+14.10.20141008-0ubuntu1) utopic; urgency=low

  [ Michael Zanetti ]
  * Dual SIM pin unlocking. Hook up the UI to the backend. (LP:
    #1267135)

  [ Antti Kaijanmäki ]
  * Dual SIM pin unlocking. Hook up the UI to the backend. (LP:
    #1267135)

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 08 Oct 2014 09:41:32 +0000

unity8 (8.00+14.10.20141006-0ubuntu1) utopic; urgency=low

  [ Andrea Cimitan ]
  * Tweak card header to match the spec
  * Add preview image slideshow (LP: #1351537)

  [ Michał Sawicz ]
  * Cache more things in memory, so flicking scopes should be faster
    (LP: #1336724)
  * Tweak card header to match the spec
  * Save texture memory by limiting sourceSize (LP: #1338430)

  [ Ying-Chun Liu ]
  * Add attributes to Preview. (LP: #1282460)

  [ Albert Astals ]
  * Update pot
  * Cache more things in memory, so flicking scopes should be faster
    (LP: #1336724)
  * Save texture memory by limiting sourceSize (LP: #1338430)
  * Clip the settings list
  * Fix unlocking from the left again
  * Add wait_ makes tests more reliable

  [ Michael Zanetti ]
  * fix fading out the launcher instead of sliding it out on left-edge
    minimizing an app.
  * Make the DashCommunicator async and more flexible to handle a
    lifecycle-suspended dash (LP: #1339883)

  [ Michael Terry ]
  * Retry unlock-device script if it fails, as there is always a risk of
    a small race with boot-up. (LP: #1370644)
  * Add pull-to-refresh functionality to scopes. (LP: #1368336)

  [ CI bot ]
  * Resync trunk

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

unity8 (8.00+14.10.20140930.2-0ubuntu1) utopic; urgency=low

  [ Alexandros Frantzis ]
  * Remove stale trusted socket before starting unity8 from upstart (LP:
    #1371597) (LP: #1371597)

  [ CI bot ]
  * Resync trunk

  [ Andrea Cimitan ]
  * Move activity indicator on top of keyboard (LP: #1354519)

  [ Gerry Boland ]
  * Cleanup: Remove unused member and fix small syntax error in
    OrientationLock

  [ josharenson ]
  * Fix lp:1367894 by correcting how the minute value is calculated in
    the panel. (LP: #1367894)

  [ Nick Dedekind ]
  * Fixed DefaultIndicatorPage test. Fixed warnings from test.

  [ Ying-Chun Liu ]
  * Remove maxLineCount in preview. (LP: 1328513) (LP: #1328513)

  [ Michael Terry ]
  * Fix some code that accidentally landed in trunk before it got
    cleaned up. The current code just has some duplication to it that
    should be unified.
  * Implement latest visual designs for passphrase lockscreen.
  * Make it easier to use the Lockscreen component from the welcome
    wizard.
  * Limit how much memory we reserve for the greeter background image,
    allowing giant images to appear correctly.

  [ Daniel d'Andrada ]
  * Add gdbTestComponentName build targets

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 30 Sep 2014 16:57:28 +0000

unity8 (8.00+14.10.20140926-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Nick Dedekind ]
  * Visual changes for indicator RTM polishing (LP: #1329289)

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 26 Sep 2014 19:12:39 +0000

unity8 (8.00+14.10.20140923-0ubuntu1) utopic; urgency=low

  [ Michael Zanetti ]
  * fix swiping away the launcher from the left edge
  * fix indicators AP test

  [ Florian Boucault ]
  * New Splash screen implementation that fakes real app

  [ Albert Astals ]
  * We need this in build-depends so that qmluitests pass in CI

  [ Daniel d'Andrada ]
  * New Splash screen implementation that fakes real app

  [ Michael Terry ]
  * Fix LC_ALL and test harder by making both manual runs of
    timeformattertest and the whole test suite use the same locale
    settings.

  [ CI bot ]
  * Resync trunk

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 23 Sep 2014 09:26:18 +0000

unity8 (8.00+14.10.20140918.3-0ubuntu1) utopic; urgency=low

  [ Michał Sawicz ]
  * Add -windowgeometry option to the Dash and drop any user-visible
    mentions of Dash
  * Dash: Fix issue when expanding a category and collapsing another one
    at the same time.

  [ Albert Astals ]
  * Dash: Fix issue when expanding a category and collapsing another one
    at the same time.
  * Make the categoryView invisible when we are in the preview mode (LP:
    #1341205)
  * Pixel pushing in the dash header (LP: #1365929)

  [ Ying-Chun Liu ]
  * Re-add restart button for power menu. (LP: 1358197) (LP: #1358197)

  [ Marcus Tomlinson ]
  * Don't show a preview if a null response is returned from
    scope.preview(result)

  [ Mirco Müller ]
  * Don't limit the number of text-lines for body-text. (LP: #1369438)

  [ Michael Zanetti ]
  * Don't hide launcher when nothing happens on long left edge swipes
    (LP: #1357333)
  * Rework LauncherBackend

  [ Michael Terry ]
  * When running qmluitests, make sure that they use LANGUAGE=C, fixing
    a test failure when running locally in the US.

  [ Daniel d'Andrada ]
  * Some ApplicationWindow test improvements

  [ Rodney Dawes ]
  * Check purchase state to determine if purchase was cancelled and hide
    progress. (LP: #1362622)

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

unity8 (8.00+14.10.20140918-0ubuntu1) utopic; urgency=low

  [ Michael Zanetti ]
  * Focus first app if there are already some running when we're
    starting up (LP: #1339883)

  [ Michał Sawicz ]
  * Don't play empty urls in Notification.qml

  [ Daniel d'Andrada ]
  * Improve tst_Shell
  * Build without any warnings
  * Make tst_Card work from outside the source tree (LP:1359201) (LP:
    #1359201)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 18 Sep 2014 09:44:06 +0000

unity8 (8.00+14.10.20140910.1-0ubuntu1) utopic; urgency=low

  [ Pete Woods ]
  * Disable OEM and Click scopes when system scopes are disabled

  [ CI bot ]
  * Resync trunk

  [ Pawel Stolowski ]
  * Set UNITY_SCOPES_NO_FAVORITES environment variable to make scopes
    plugin ignore favorite scopes and fix basic functionality of unity-
    scope-tool.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 10 Sep 2014 08:53:57 +0000

unity8 (8.00+14.10.20140908.1-0ubuntu1) utopic; urgency=low

  [ Michał Sawicz ]
  * Use a single white pixel instead of the heavier checkers image.
  * Add support to unlock-device for the new adbd coming down the
    pipeline. Also fix autopilot tests and run scripts for that.
  * Make LVWPH non interactive while on header animation
  * Improve references to scope/scopeStyle in PreviewListView and
    PageHeader, add tests.

  [ Nick Dedekind ]
  * Support for nested prompt session. (LP: #1358388)

  [ Albert Astals ]
  * Remove unused hasAttributes variable
  * Disable dash overview if in temp scope preview
  * Block mouse events under scope overview bottombar (LP: #1362206)
  * Fix regression in focus handling due to SDK change
  * Fix warning 'Background.qml:81:21: Unable to assign bool to QUrl'
  * Fix launcher internationalization
  * Make swipe and home button press in the launcher dismiss the
    overview
  * GSV: Use proper variable since altnav renames
  * Fix some "Cannot read property 'luminance' of null" warnings
  * Make LVWPH non interactive while on header animation

  [ Mirco Müller ]
  * Implemented the needed visual updates on notifications requested by
    Design for RTM. (LP: #1348092)

  [ Michael Terry ]
  * Don't show greeter when screen turns off during a call, even if
    proximity sensor isn't active. (LP: #1347001)
  * Add support to unlock-device for the new adbd coming down the
    pipeline. Also fix autopilot tests and run scripts for that.

  [ Michael Zanetti ]
  * open the application when clicking on the title entry in the
    quicklist (LP: #1336380)
  * Don't animate x while dragging apps from the left edge (LP:
    #1360105)

  [ Diego Sarmentero ]
  * Reset button state on cancel (LP: #1362622)

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

unity8 (8.00+14.10.20140903.1-0ubuntu1) utopic; urgency=low

  [ Nick Dedekind ]
  * Support for nested prompt session. (LP: #1358388)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 03 Sep 2014 07:58:49 +0000

unity8 (8.00+14.10.20140828.1-0ubuntu1) utopic; urgency=low

  [ Michael Terry ]
  * Reverse default for the user option "allow launcher/panel in greeter
    when locked." And allow that property to be controlled by an
    AccountsService property. (LP: #1358340) (LP: #1358340)
  * With recent password support, we want to be able to unlock the
    device even with a password set. And we need to be able to do this
    once the new adbd lands. So I've added a DBus command to hide the
    greeter. This should be secure because all apps are constrained and
    if you're on the local session bus unconstrained, you already have
    access to anything you want.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 28 Aug 2014 20:06:41 +0000

unity8 (8.00+14.10.20140827.2-0ubuntu1) utopic; urgency=low

  [ Michał Sawicz ]
  * Implement scope header customization options
  * Don't ignore empty attributes in CardAttributes.qml and improve its
    encapsulation (LP: #1355901)
  * Add support for preview button color customization. Deprecate
    support for action icons.
  * Add table preview widget
  * Make "See Less" get stuck at the bottom of the view
  * Support alternative navigation in the dash.
  * Add scope settings UI
  * Add scope favoriting support
  * Passcode, not PIN (LP: #1361114)

  [ Jussi Pakkanen ]
  * Use nullptr instead of NULL.

  [ Albert Astals ]
  * Add table preview widget
  * Make "See Less" get stuck at the bottom of the view
  * Support alternative navigation in the dash.
  * Make the PageHeaderLabelTest pass under valgrind

  [ Benjamin Zeller ]
  * Add support for scope:// url in the dash (LP: #1361349)

  [ Marcus Tomlinson ]
  * Handle the openScope signal in "tempScopeItem" (ScopesOverview.qml)
    as is done with "scopeItem" (Dash.qml) (LP: #1356410)

  [ Daniel d'Andrada ]
  * Make "See Less" get stuck at the bottom of the view

  [ Andrea Cimitan ]
  * Fix right padding on overlay card
  * Add scope settings UI

  [ Michael Zanetti ]
  * use a smaller asset for the app's dropshadow (LP: #1359157)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 27 Aug 2014 15:37:05 +0000

unity8 (8.00+14.10.20140825.3-0ubuntu1) utopic; urgency=low

  [ Daniel d'Andrada ]
  * SpreadDelegate - properly transition between splash screen, surface
    and screenshot

  [ Michał Sawicz ]
  * Rename Ubuntu.Connectivity to Unity.Connectivity to avoid name clash

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 25 Aug 2014 13:10:57 +0000

unity8 (8.00+14.10.20140822-0ubuntu1) utopic; urgency=low

  [ Albert Astals ]
  * More stable dash overview tests
  * PreviewExpandable: "widgets" is a model, not an array

  [ Alberto Aguirre ]
  * Proxy inactivity timeout values from gsettings into Unity.Screen
    (LP: #1230345)

  [ Gerry Boland ]
  * Cancel open PAM interactions on shutdown - fixes hang on logout on
    desktop (LP: #1353041)

  [ Diego Sarmentero ]
  * Show progress bar on payment button click The payment process has a
    small delay before the UI comes up which might cause confusion. Show
    a progress bar with unknown value to indicate activity. (LP:
    #1354139)

  [ Mirco Müller ]
  * Made notification qml-test pass again by using Component.onCompleted
    instead of onOpacityChanged for the time being.

  [ Michael Zanetti ]
  * Implement new lockscreen designs

  [ Michael Terry ]
  * Show the SIM unlock dialog immediately after booting, and enable its
    emergency call button.
  * Always keep indicator/launcher locked state in sync with whether the
    user is authenticated. (LP:# 1357230) (LP: #1357230)
  * Allow logging into a desktop or tablet session again, by properly
    dismissing old PAM conversations. (LP: #1350878) In a desktop or
    tablet, we were accidentally starting two PAM conversations in
    sequence on startup. Which is a small bug; it shouldn't normally be
    a problem, since each new PAM conversation should kill the old
    one.But the way we were killing the old one was subject to a thread
    race condition. See, a PAM conversation thread won't exit until all
    its prompts are answered. And what we do when we kill a PAM
    conversation is to answer all prompts with empty strings.But it's
    possible that when we want to kill a PAM conversation that it hasn't
    actually gotten to the point of prompting us yet. And when those
    prompts do come through, we were treating them as prompts for the
    new PAM conversation.So I've changed the PAM conversation logic to
    include a pam_handle and compare the handle with the current handle
    when being prompted. If it's an old handle, we just dismiss the
    prompt with an empty string response.Oh, and I fixed the bug that
    caused two prompts on startup in the first place. (But we still need
    the above logic anyway, for when you switch users quickly.) (LP:
    #1350878)

  [ Martin Pitt ]
  * Mark for using language packs.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 22 Aug 2014 09:29:41 +0000

unity8 (8.00+14.10.20140820-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Nick Dedekind ]
  * Fixed CachedUnityMenuModel destruction unhinging indicators. (LP:
    #1328646)

  [ Mirco Müller ]
  * Temporarily disable any opacity-animation for notifications to
    unblock the train due to LP: 1354406. (LP: #1354406)

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

unity8 (8.00+14.10.20140817-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Michał Sawicz ]
  * Fix dash overview test and prevent crash in mock ApplicationInfo's
    d'tor. tryCompareFunction didn't work because .item threw.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Sun, 17 Aug 2014 00:37:35 +0000

unity8 (8.00+14.10.20140815.1-0ubuntu1) utopic; urgency=low

  [ Michael Terry ]
  * Bring dialer to front on incoming call even when device is locked
    (LP: #1354532)

  [ CI bot ]
  * Resync trunk

  [ Michał Sawicz ]
  * Use palette's baseText for text colour in dash.
  * Update qmltypes definitions
  * Move PageHeader out of qml/Components into qml/Dash
  * Reshuffle and update dependencies
  * Fix cardtool test and make card creator output debugging info on
    errors.
  * Support previews for scopes in overview and hook up preview
    processing to activity indicator.
  * Fix notifications indicator title
  * Fix horizontal list activation and add test for it.

  [ Ying-Chun Liu ]
  * Add button colors and i18n for power off dialog. (LP: #1354506)

  [ Mirco Müller ]
  * Force plain-text rendering for summary- and body-text. (LP:
    #1335787)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 15 Aug 2014 17:38:07 +0000

unity8 (8.00+14.10.20140814.1-0ubuntu1) utopic; urgency=low

  [ Michael Terry ]
  * Add --lightdm= argument to ./run.sh that lets developers choose
    which lightdm backend to use. Stop letting a user that is
    immediately denied via PAM into the shell by fixing some assumptions
    that a user which was not prompted was successfully authenticated.
    This is not a common situation, you'd have to manually change your
    PAM config. Fix a small console warning .
  * Make wrong-password handling much nicer by showing a pretty spinner
    while we wait for PAM, by improving the prompt text to match
    designs, by forcing the user to wait five seconds after every five
    failed attemps, and by supporting (but not yet enabling) an opt-in
    "factory-reset your phone after X failed attemps" feature.

  [ Michael Zanetti ]
  * bring back network caching in dash (LP: #1355729)

  [ Michał Sawicz ]
  * Add --lightdm= argument to ./run.sh that lets developers choose
    which lightdm backend to use. Stop letting a user that is
    immediately denied via PAM into the shell by fixing some assumptions
    that a user which was not prompted was successfully authenticated.
    This is not a common situation, you'd have to manually change your
    PAM config. Fix a small console warning .
  * Fix anchor in PreviewListView.qml.
  * Make wrong-password handling much nicer by showing a pretty spinner
    while we wait for PAM, by improving the prompt text to match
    designs, by forcing the user to wait five seconds after every five
    failed attemps, and by supporting (but not yet enabling) an opt-in
    "factory-reset your phone after X failed attemps" feature.
  * Add new horizontal list category layout. (LP: #1352226)
  * Fix qml tests - loader around PageHeader, more retries for selecting
    a scope and undefined attributes in mock overview scope.

  [ Leo Arias ]
  * Added autopilot helpers and tests for the launcher and dash icon.
  * Added an autopilot helper to click a scope item.
  * Added an autopilot test for focusing an app clicking the icon on the
    launcher.

  [ Mirco Müller ]
  * Allow ENTER/RETURN in a TextField to accept a snap-decision
    notification. (LP: #1305885)

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

unity8 (8.00+14.10.20140811-0ubuntu1) utopic; urgency=low

  [ Andrea Cimitan ]
  * Add emblem support in dash cards.

  [ Michael Terry ]
  * Fix a variety of design nits with the current lockscreen: * disable
    indicators and launcher when locked * when reversing the direction
    of a greeter flick, treat it as a cancel * don't animate dots when
    changing the infographic data source * make cancelling a login
    nicer: * reduce the delay before greeter starts animating * show the
    greeter from the same side of the screen that it hid to * don't re-
    animate the infographic (LP: #1351027)

  [ Stephen M. Webb ]
  * enables the unity8 upstart job for desktop sessions (LP: #1353041)

  [ Albert Astals ]
  * Dash Overview (LP: #1317683)
  * GenericScopeView: On click only activate scope:// uris and
    clickscope items The rest of clicks result in a preview, also
    scope:// uris don't get a preview
  * Pass the scope search hint up to the search line

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 11 Aug 2014 19:03:41 +0000

unity8 (8.00+14.10.20140808-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Nick Dedekind ]
  * Added application prompt surfaces to allow prompting application
    which have not yet created a surface.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 08 Aug 2014 12:15:05 +0000

unity8 (8.00+14.10.20140806.1-0ubuntu1) utopic; urgency=low

  [ Michal Hruby ]
  * Work with the scopes-v4 branch + departments->navigation renaming

  [ Michał Sawicz ]
  * Hardcode art shape size for click scope local and predefined
    categories While at it, drop the fillmode of cards
  * Use the correct API in PageHeader. (LP: #1353048)
  * Refactor dash activity indicator. (LP: #1351539)

  [ Albert Astals ]
  * Dash Departments fixes Update maxHeight manually since it depends on
    the position of the item and its parents and it can't know when the
    binding has to be updated Make parent stuff non interactive when the
    department list is shown
  * PageHeader: when on search clip y-coordinates otherwise the
    background spills out when on search (LP: #1350398)
  * Dash: Implement OverlayColor support in Cards
  * Hardcode art shape size for click scope local and predefined
    categories While at it, drop the fillmode of cards
  * Make test_departments test more stable There's various
    DashDepartments on the dash, make sure we're working over the one
    that is on screen, otherwise clicks don't end up where they should
  * Work with the scopes-v4 branch + departments->navigation renaming
  * Fixes for dash as app Load i18n catalog Process command line options
    Add the posibility to have a mouse touch adaptor (LP: #1353351)
  * Implement the Expandable Preview Widget Now TextSummary is not
    expandable by itself anymore, you have to use it inside an
    Expandable to get the behaviour
  * Add test prefix to xml output, seems CI needs it

  [ Antti Kaijanmäki ]
  * Indicators: Adds new ModemInfoItem to be used with indicator-network
    (LP: #1329204)

  [ Michael Terry ]
  * When the edge demo is running, don't show the greeter if the screen
    is turned off. This avoids an odd interaction where parts of the
    greeter are disabled but the edge demo isn't visible until you slide
    the greeter away. (LP: #1283425)
  * Don't hardcode the phablet password in our testing script.

  [ Ying-Chun Liu ]
  * Add divider dots.

  [ Mirco Müller ]
  * Make sure the TextField of a snap-decision notification has the
    active focus upon creation, thus the osk shows up right away. (LP:
    #1346867)

  [ Andrea Cimitan ]
  * Add touchdown effect to dash cards.
  * Import Ubuntu.Components for preview image gallery to pick up
    default flicking speeds.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 06 Aug 2014 19:40:05 +0000

unity8 (8.00+14.10.20140805-0ubuntu1) utopic; urgency=low

  [ Michael Zanetti ]
  * Split the dash from the shell into a separate app (LP: #1232687)

  [ Leo Arias ]
  * Update the autopilot tests to work with the new dash app.

  [ Daniel d'Andrada ]
  * Split the dash from the shell into a separate app (LP: #1232687)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 05 Aug 2014 12:06:31 +0000

unity8 (8.00+14.10.20140731.1-0ubuntu1) utopic; urgency=low

  [ Gerry Boland ]
  * Fix the run.sh script - pretend to be running with qtmir and emit
    SIGSTOP at the right time

  [ Ying-Chun Liu ]
  * Implement Attribute UI. (LP: #1282460)

  [ Albert Astals ]
  * Hide search history popup as soon as you start typing As discussed
    with Mike and Saviq
  * Compile with for scopes-v3 unity-api
  * PageHeader: Unfocus search field when search entry is selected
  * Show search field if the search query changes
  * Test: Add a condition for art.height being > 0 means stuff has
    already been layouted a bit without it it can happen that we get 0
    for everything at startup and tests still pass
  * Remove leftover in test of an old headerless implementation

  [ Michael Zanetti ]
  * Drop Recent apps category from Dash (LP: #1281092)
  * update launcher count emblems to match new spec (LP: #1338984)

  [ Bill Filler ]
  * disable predictive text for dash search field (LP: #1340409)

  [ CI bot ]
  * Resync trunk

  [ Antti Kaijanmäki ]
  * DefaultIndicatorPage: use Loader status to determine the visible
    property. (LP: #1350555)

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

unity8 (8.00+14.10.20140729.1-0ubuntu1) utopic; urgency=low

  [ Michael Terry ]
  * Check user's pin/password using PAM, instead of a plaintext keyfile.
    New build dependency: libpam0g-dev for phone unlock with PAM (LP:
    #1234983)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 29 Jul 2014 23:36:30 +0000

unity8 (8.00+14.10.20140729-0ubuntu1) utopic; urgency=medium

  [ Gerry Boland ]
  [ Daniel d'Andrada ]
  * Re-architecture unity8 to use the QtMirCompositor library so that
    the Qt scenegraph renderer is used as the Mir compositor, and
    application surfaces are added to the QML scene as items.
    
  [ Michael Zanetti ]
  * Port phone right-edge spread code to use QtCompositor
  * Add right-edge spread animation for tablet

  [ Ubuntu daily release ]
  * New rebuild forced

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

unity8 (7.90+14.10.20140725-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Michał Sawicz ]
  * Fix the ap test for applications.

  [ Albert Astals ]
  * Use deleteLater instead of a direct delete We are seeing a crash in
    QQuickWindowPrivate::polishItems because LVWPH is deleting items to
    polish from it's updatePolish which means the set in
    QQuickWindowPrivate::polishItems may end up with some yet-to-
    process-but-now-deleted items. Switching to deleteLater fixes this

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 25 Jul 2014 10:47:34 +0000

unity8 (7.90+14.10.20140724.1-0ubuntu1) utopic; urgency=low

  [ Michael Zanetti ]
  * properly parent launcher items (LP: #1347902)

  [ Michał Sawicz ]
  * Move the PyDev project files to the root, supporting .py scripts
    outside of tests/autopilot. Add Autopilot Run and List launch
    configurations to easily support debugging in Eclipse. Use
    add_unity8_mock macro in the Telephony plugin.
  * Drop FilterGrid and refactor height animations in GenericScopeView.
    Also implement forced category expansion. (LP: #1326470)
  * Move expansion button from section header to category footer. (LP:
    #1261300)
  * Fix expect-sigstop enviroment variable name. (LP: #1346819)
  * Make headerless categories easier Instead of having no header
    category (which is a bit confusing since the LVWPH code was designed
    so that when a category has no header it is because it shares the
    category with the previous one) what we have for headerless
    categories is a header of height 0, this way everything works as it
    should and results in cleaner code in the LVWPH and in
    GenericScopeView
  * Add support for header links.
  * Add dash PageHeader styling.

  [ Albert Astals ]
  * Make headerless categories easier Instead of having no header
    category (which is a bit confusing since the LVWPH code was designed
    so that when a category has no header it is because it shares the
    category with the previous one) what we have for headerless
    categories is a header of height 0, this way everything works as it
    should and results in cleaner code in the LVWPH and in
    GenericScopeView

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 24 Jul 2014 20:41:29 +0000

unity8 (7.90+14.10.20140723.4-0ubuntu1) utopic; urgency=low

  [ thomas-voss ]
  * Explicitly select gcc version.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 23 Jul 2014 15:32:41 +0000

unity8 (7.90+14.10.20140721.1-0ubuntu1) utopic; urgency=low

  [ Michael Terry ]
  * Allow running the dialer-app in emergency mode when the screen is
    locked.

  [ Michał Sawicz ]
  * Add missing nameOwner property to mock UnityMenuModel.

  [ Albert Astals ]
  * Fix name, There's nothing called pageHeader in this file

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 21 Jul 2014 14:57:08 +0000

unity8 (7.90+14.10.20140717.3-0ubuntu1) utopic; urgency=low

  [ Nick Dedekind ]
  * Added environment variable to upstart conf for mir trusted socket
  * Removed indicator menu dismissal on menu activation (LP: #1337771)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 17 Jul 2014 16:35:52 +0000

unity8 (7.90+14.10.20140717.1-0ubuntu1) utopic; urgency=low

  [ Michał Sawicz ]
  * Only generate .qmltypes files manually, no need to do it build-time.
    It didn't work when cross-compiling either, and required builders to
    have otherwise unnecessary environment.
  * Fix CardCreator test. It got broken with a merge that got landed
    along side of it.

  [ Ying-Chun Liu ]
  * Add reboot/shutdown (LP: #1234062)

  [ Albert Astals ]
  * Make the departments test more stable

  [ Mirco Müller ]
  * Fixes gap at top of sim-unlock/fullscreen notification (point 1.),
    fixes blocking overlay if underlying UnityMenuModel vanishes from
    DBus (point 2.). The third bullet-point of the bug-report, lockup of
    shell-UI, could not be reproduced. (LP: #1308011)

  [ Michael Terry ]
  * Expose a new greeter DBus property, IsActive, which tells apps and
    indicators when the integrated-greeter screen is active. Useful for
    switching UI modes when the screen is locked.
  * Allow the session to bring up the greeter/lockscreen over DBus. The
    emergency dialer will need this support in order to cancel bringing
    it up.

  [ Michael Zanetti ]
  * Fixes gap at top of sim-unlock/fullscreen notification (point 1.),
    fixes blocking overlay if underlying UnityMenuModel vanishes from
    DBus (point 2.). The third bullet-point of the bug-report, lockup of
    shell-UI, could not be reproduced. (LP: #1308011)

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

unity8 (7.90+14.10.20140714-0ubuntu1) utopic; urgency=low

  [ Michał Sawicz ]
  * Activate all results in click scope by default. (LP: #1341262)

  [ Mirco Müller ]
  * Added support for utilization of the ComboButton SDK-element for
    snap-decision notifications with many actions.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 14 Jul 2014 18:20:25 +0000

unity8 (7.90+14.10.20140709.2-0ubuntu1) utopic; urgency=low

  [ Michal Hruby ]
  * Fix FTBFS when using latest unity-api.

  [ Michał Sawicz ]
  * Refactor carousel item activation.
  * Refactor ScopeItem into GenericScopeView.
  * Add initial support for scope customizations.
  * Make rating stars in PreviewReviewDisplay.qml non-interactive. (LP:
    #1337508)

  [ Nick Dedekind ]
  * Added active call hint A hint is displayed in the indicator panel
    when an call is active on the Telephony Serivce

  [ Albert Astals ]
  * We need to boostrap height also when we have 1 item ^_^ (LP:
    #1337408)
  * Add initial support for scope customizations.
  * CardCreator: Give a correct implicitHeight if we only have art The
    hasSubtitle change is really unrelated and not needed here, just
    sneaking it in to not create yet another review. (LP: #1330899)
  * Fake Scopes Plugin: Register PreviewModelInterface

  [ Michael Zanetti ]
  * make the launcher's drag'n'drop indicator more prominent (LP:
    #1332042)
  * make launcher items live having them non-live is not really required
    and reveals an issue in combination with UbuntuShape (LP: #1302761)
  * Fade out launcher in place instead of moving it to the left on long
    left edge swipes. (LP: #1332096)
  * update launcher icon glow as requested by design (LP: #1336725)
  * update header in dash to use the new header from the SDK (LP:
    #1335491)
  * fix testPreview with larger GRID_UNIT_PX values
  * clip the corner of pinned icons in the launcher as per new design
  * update launcher background according to latest design (LP: #1336314)
  * Update Launcher's home button design according to new spec. (LP:
    #1329331)

  [ CI bot ]
  * make launcher items live having them non-live is not really required
    and reveals an issue in combination with UbuntuShape (LP: #1302761)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 09 Jul 2014 19:46:11 +0000

unity8 (7.90+14.10.20140707-0ubuntu1) utopic; urgency=low

  [ Nick Dedekind ]
  * Added support for TransferMenu

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

unity8 (7.90+14.10.20140703.1-0ubuntu1) utopic; urgency=low

  [ Michał Sawicz ]
  * Initial code for a payment button widget, to handle purchasing apps
    from the click scope.

  [ Nick Dedekind ]
  * Moved [Message]MenuItemFacotory from Unity.Indicators plugin to qml
    folder.

  [ Albert Astals ]
  * EasingCurve: Initialize members
  * Fix valgrind warning by not emitting reset on model destructor That
    won't be supported until Qt 5.4 More info at https://bugreports.qt-
    project.org/browse/QTBUG-39780 Warning was ==16693== Invalid read of
    size 8 ==16693== at 0x72B19A0: QQmlContext::isValid() const
    (qqmlcontext.cpp:231) ==16693== by 0x736C82B:
    QQmlDelegateModelPrivate::emitChanges() (qqmldelegatemodel.cpp:1412)
    ==16693== by 0x7372AE6: QQmlDelegateModel::_q_modelReset()
    (qqmldelegatemodel.cpp:1463) ==16693== by 0x7397224:
    QQmlDelegateModel::qt_static_metacall(QObject*, QMetaObject::Call,
    int, void**) (moc_qqmldelegatemodel_p.cpp:196) ==16693== by
    0x739769E: QQmlDelegateModel::qt_metacall(QMetaObject::Call, int,
    void**) (moc_qqmldelegatemodel_p.cpp:292) ==16693== by 0x66379CC:
    QMetaObject::activate(QObject*, int, int, void**) (in
    /usr/lib/x86_64-linux-gnu/libQt5Core.so.5.3.0) ==16693== by
    0x65AEEFD: QAbstractItemModel::endResetModel() (in /usr/lib/x86_64-
    linux-gnu/libQt5Core.so.5.3.0) ==16693== by 0x23461EFD:
    FakeIndicatorsModel::unload() (fakeindicatorsmodel.cpp:53) ==16693==
    by 0x23461E13: FakeIndicatorsModel::~FakeIndicatorsModel()
    (fakeindicatorsmodel.cpp:34) ==16693== by 0x2345C073:
    QQmlPrivate::QQmlElement<FakeIndicatorsModel>::~QQmlElement() (in
    /home/tsdgeos_work/phablet/unity8/investigate_test_shell_crash/build
    dir/tests/mocks/Unity/Indicators/libIndicatorsFakeQml.so) ==16693==
    by 0x2345C0A3:
    QQmlPrivate::QQmlElement<FakeIndicatorsModel>::~QQmlElement()
    (qqmlprivate.h:106) ==16693== by 0x663636B:
    QObjectPrivate::deleteChildren() (in /usr/lib/x86_64-linux-
    gnu/libQt5Core.so.5.3.0) ==16693== Address 0x1862d448 is 8 bytes
    inside a block of size 16 free'd ==16693== at 0x4C2C2BC: operator
    delete(void*) (vg_replace_malloc.c:503) ==16693== by 0x72B21B8:
    QQmlContextData::destroy() (qqmlcontext.cpp:647) ==16693== by
    0x7293458: QQmlPrivate::qdeclarativeelement_destructor(QObject*)
    (qqmlengine.cpp:612) ==16693== by 0x6C0CADD:
    QQmlPrivate::QQmlElement<QQuickItem>::~QQmlElement()
    (qqmlprivate.h:105) ==16693== by 0x663636B:
    QObjectPrivate::deleteChildren() (in /usr/lib/x86_64-linux-
    gnu/libQt5Core.so.5.3.0) ==16693== by 0x663F0EB: QObject::~QObject()
    (in /usr/lib/x86_64-linux-gnu/libQt5Core.so.5.3.0) ==16693== by
    0x6BF64B5: QQuickItem::~QQuickItem() (qquickitem.cpp:2064) ==16693==
    by 0x6C0CAE5: QQmlPrivate::QQmlElement<QQuickItem>::~QQmlElement()
    (qqmlprivate.h:106) ==16693== by 0x663636B:
    QObjectPrivate::deleteChildren() (in /usr/lib/x86_64-linux-
    gnu/libQt5Core.so.5.3.0) ==16693== by 0x663F0EB: QObject::~QObject()
    (in /usr/lib/x86_64-linux-gnu/libQt5Core.so.5.3.0) ==16693== by
    0x6BF64B5: QQuickItem::~QQuickItem() (qquickitem.cpp:2064) ==16693==
    by 0x6C0CAE5: QQmlPrivate::QQmlElement<QQuickItem>::~QQmlElement()
    (qqmlprivate.h:106) (LP: #1332598)

  [ Michael Zanetti ]
  * drop launcher item spacing (LP: #1332022)
  * change wording in launcher quicklist (LP: #1332035)

  [ Alejandro J. Cura ]
  * Initial code for a payment button widget, to handle purchasing apps
    from the click scope.

  [ Rodney Dawes ]
  * Initial code for a payment button widget, to handle purchasing apps
    from the click scope.

  [ Renato Araujo Oliveira Filho ]
  * Create IndicatorsLight.qml component used to control indicator led.
    A blue led will pulse if the message indicator is blue and screen is
    off.

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

unity8 (7.90+14.10.20140701.2-0ubuntu2) utopic; urgency=medium

  * debian/control: 
    list qtdeclarative5-ubuntu-ui-toolkit-plugin-gles as an alternative 
    choice, since provides are not versionned, should restore installability
    on amd64 and i386

 -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 03 Jul 2014 13:26:38 +0200

unity8 (7.90+14.10.20140701.2-0ubuntu1) utopic; urgency=medium

  [ Michał Sawicz ]
  * Adapt to suru theme.

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

unity8 (7.89+14.10.20140627-0ubuntu1) utopic; urgency=low

  [ Michael Terry ]
  * Fix path in launcher mock after moving our mock icons, to avoid a
    lot of "icon not found" warnings during qmluitests.
  * Fix the testMultiGreeter qmluitest. Incoming method variables are
    apparently read-only in Qt5.3. (LP: #1332488)

  [ CI bot ]
  * Resync trunk

  [ Michał Sawicz ]
  * Adapt scope mock to new api and quiet unused variable warnings.
  * Fix dynamic overlay height. (LP: #1334879)
  * Don't center items in CardVerticalJournal, kind of beats the
    purpose... Also don't bind unnecessarily.

  [ Ying-Chun Liu ]
  * Fix LP:1330957 Fix some failed test cases. (LP: #1330957)

  [ Albert Astals ]
  * Don't seem to need this waitForRendering And makes test fail in 5.3

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 27 Jun 2014 08:47:58 +0000

unity8 (7.89+14.10.20140624.1-0ubuntu1) utopic; urgency=low

  [ Alberto Aguirre ]
  * Update Powerd plugin and Shell.qml to accommodate changes in the
    display power state notification.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 24 Jun 2014 17:11:08 +0000

unity8 (7.89+14.10.20140624-0ubuntu1) utopic; urgency=low

  [ Ying-Chun Liu ]
  * Add logout support. Reviewed by: Daniel d'Andrada (LP: #1302213)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 24 Jun 2014 08:17:09 +0000

unity8 (7.89+14.10.20140623.1-0ubuntu1) utopic; urgency=low

  [ Michał Sawicz ]
  * Make so that fixedArtShapeSize actually fixes artShapeSize.

  [ Albert Astals ]
  * Add VerticalJournal integration to Dash/scopes/QML (LP: #1326467)
  * Make so that fixedArtShapeSize actually fixes artShapeSize.

  [ Mirco Müller ]
  * Added the frontend-part of sound-hint support for notifications with
    updated QML-tests.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 23 Jun 2014 11:17:12 +0000

unity8 (7.89+14.10.20140619.3-0ubuntu1) utopic; urgency=low

  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 19 Jun 2014 16:02:41 +0000

unity8 (7.89+14.10.20140619.2-0ubuntu1) utopic; urgency=low

  [ Albert Astals ]
  * Departments support (LP: #1320847)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 19 Jun 2014 11:17:40 +0000

unity8 (7.89+14.10.20140616.1-0ubuntu1) utopic; urgency=low

  [ Pawel Stolowski ]
  * Extend the hack for click scope categories with the upcoming 'store'
    category: single-tap on results from the 'store' category should
    activate them, instead of requesting a preview. (LP: #1326292)

  [ Albert Astals ]
  * Drop the " Preview" suffix from Preview title As requested in
    https://bugs.launchpad.net/unity8/+bug/1316671 (LP: #1316671)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 16 Jun 2014 14:43:01 +0000

unity8 (7.89+14.10.20140613-0ubuntu1) utopic; urgency=medium

  [ Michael Terry ]
  * Revert split greeter for now.  We will bring it back as an option
    for Desktop, but use a big hammer revert right now to get Touch back
    in shape.

  [ CI bot ]
  * Fix build problems. Reviewed by: Michael Terry (LP: #1328850)

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

unity8 (7.88+14.10.20140606-0ubuntu1) utopic; urgency=low

  [ Michał Sawicz ]
  * Make lockscreen buttons translatable.

  [ Albert Astals ]
  * Correctly mark these functions as overrides
  * Remove connections to non existant signal
  * Better test name
  * Improvements for headerless categories LVPWH: No section name -> no
    header LVPWH: New hasSectionHeader context property for delegates
    GSV: Add topMargin if no hasSectionHeader (LP: #1326415)
  * Make tryVerticalJournal, tryHorizontalJournal and tryOrganicGrid
    work again

  [ Michael Zanetti ]
  * Don't crash when we get an invalid app from ApplicationManager (LP:
    #1309162)

  [ Andrea Cimitan ]
  * Workaround for lp1324159 (LP: #1322233, #1324159)

  [ CI bot ]
  * Resync trunk

  [ Florian Boucault ]
  * Application startup: changed splash rectangle to be black instead of
    white and added a neat little animation. (LP: #1124265)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 06 Jun 2014 11:38:53 +0000

unity8 (7.88+14.10.20140603.1-0ubuntu1) utopic; urgency=medium

  [ Michael Terry ]
  * Bump version so ubuntu-touch-session can reference this one

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 03 Jun 2014 20:31:00 +0000

unity8 (7.87+14.10.20140603.1-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Michał Sawicz ]
  * Move env setup past session init in greeter wrapper. (LP: #1325882)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 03 Jun 2014 10:33:11 +0000

unity8 (7.87+14.10.20140530.1-0ubuntu3) utopic; urgency=medium

  * no change rebuild

 -- Oliver Grawert <ogra@ubuntu.com>  Mon, 02 Jun 2014 16:19:10 +0200

unity8 (7.87+14.10.20140530.1-0ubuntu2) utopic; urgency=medium

  * drop dbus-x11 dependency of unity8-greeter, it makes us end up with
    multiple session dbus daemons which breaks many AP tests in the lab

 -- Oliver Grawert <ogra@ubuntu.com>  Mon, 02 Jun 2014 14:50:59 +0200

unity8 (7.87+14.10.20140530.1-0ubuntu1) utopic; urgency=medium

  [ Michael Terry ]
  * Bump version for Breaks due to unity8-greeter
  * In split mode, determine whether the application identifiers in
    AccountsService are click packages or not, so we know the correct
    url prefix to use.
  * Start logrotate in the greeter's session.

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

unity8 (7.86+14.10.20140527-0ubuntu1) utopic; urgency=low

  [ Andrea Cimitan ]
  * Passes to make tryCommand -qmljsdebugger=port:3768 to enable
    debug/profiling test apps
  * Fixes carousel shadow

  [ Michał Sawicz ]
  * Use dpkg-architecture, not gcc, to determine the machine triplet.

  [ Ying-Chun Liu ]
  * Fix ZoomableImage test failure. (LP: #1317254)

  [ Albert Astals ]
  * We don't need iconutils in this mock
  * Don't reserve space for mascot if no mascot is specified (LP:
    #1319343)
  * CardHeader is no more, remove stale line in CMakeLists.txt
  * GenericScopeViewTest: Wait a bit more Otherwise sometimes we end
    getting up the wrong delegate (maybe one that will be garbage
    collected?) (LP: #1322279)
  * Fix crash in organicgridtest

  [ Daniel d'Andrada ]
  * Remove Shell's underlay background image as it cannot be seen
    anymore Now that the Dash has its own, opaque, background, the
    underlay's background image can no longer be seen. So it's just a
    waste of resources to have it.

  [ Michael Terry ]
  * Use the same animation when dismissing a greeter slide from the
    launcher as from a normal greeter drag. (LP: #1316513)

  [ Michael Zanetti ]
  * enhance lockscreen add a retry indication label (e.g. 3 attempts
    left). add an additional label (e.g. phone number for multi sim).
    add a infoPopup (e.g. to display a warning for last retry). add min
    and max limit values. add tests for the above (LP: #1302050)

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

unity8 (7.86+14.10.20140522-0ubuntu1) utopic; urgency=low

  [ Albert Astals ]
  * Use Interface classes from unity-api

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

unity8 (7.86+14.10.20140519-0ubuntu1) utopic; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Albert Astals ]
  * Use the new displayMargin feature Also port our DashViews to use
    same naming and behaviour + update tests

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

unity8 (7.86+14.10.20140516.5-0ubuntu1) utopic; urgency=low

  [ Michal Hruby ]
  * Updated scope tool to create proper config files after recent
    libunity-scopes-api changes.

  [ Michał Sawicz ]
  * Refactor export_qmlfiles and export_qmlplugins to be more generic
    and clean up installed mocks.

  [ Albert Astals ]
  * Remove empty dirs
  * Set the tabbarmodel index as we do on real code It works better :D
    (LP: #1317255)

  [ Thomi Richards ]
  * Use new import location for ProcessSearchError in process_helpers
    script.

  [ Andrea Cimitan ]
  * Adds shadow for the carousel

  [ Daniel d'Andrada ]
  * Remove Revealer component It's not used anywhere anymore. It's been
    replaced by DragHandle.

  [ Andy Doan ]
  * unlock_device: support more complex reboot/wait cycles Currently
    this script only allows you to override how to "wait" on the device.
    This changes the logic to also support how you go about rebooting
    the device. This is handy for the ubuntu-emulator because adb-reboot
    is not currently supported. However, we also have a more
    sophisticated, fool-proof way we reboot/wait in the CI lab that
    would be nice to take advantage of:
    http://bazaar.launchpad.net/~ubuntu-test-case-dev/ubuntu-test-
    cases/touch/view/head:/scripts/reboot-and-wait

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 16 May 2014 18:46:32 +0000

unity8 (7.86+14.10.20140516.2-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Michael Zanetti ]
  * support appid:// entries in gsettings schema and make
    findDesktopFile work with short-appid (LP: #1239750)

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

unity8 (7.86+14.10.20140514.1-0ubuntu1) utopic; urgency=low

  [ Antti Kaijanmäki ]
  * Indicators/RootActionState: use g_variant_iter_loop to extract
    icons.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 14 May 2014 11:43:55 +0000

unity8 (7.86+14.10.20140513-0ubuntu1) utopic; urgency=low

  [ Andrea Cimitan ]
  * Improve padding in Text preview widget. (LP: #1316683)

  [ CI bot ]
  * Resync trunk

  [ Nick Dedekind ]
  * Removed binding loop from Unity.Indicators.MenuContentActivator
    Change handler for QMLListProperty used by MenuContent.qml:
    menuActivator.content[index].active If we're already asking for the
    index, we know it exists already. No need to send a
    changeNotification on an implied creation.

  [ Josh Arenson ]
  * Implements usage-style documentation for unity8 executable. Fixes
    lp:1269282 (LP: #1269282)

  [ Albert Astals ]
  * Create specialized Card code in Javascript instead of having various
    copied&pasted files (LP: #1297197)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 13 May 2014 08:34:02 +0000

unity8 (7.86+14.10.20140507.3-0ubuntu1) utopic; urgency=low

  [ Michał Sawicz ]
  * Remove HUD from the bottom edge. Again.

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

unity8 (7.86+14.10.20140505-0ubuntu1) utopic; urgency=low

  [ Ted Gould ]
  * Provide a dbus interface for setting the count and countVisible
    properties. (LP: #1301400)

  [ Michał Sawicz ]
  * Pass env variables to initctl start.
  * Suffix .sh to our scripts and clean up debian/rules.
  * Adapt to Debian Qt package renames and drop unneeded Dee plugin
    dependency.

  [ Ying-Chun Liu ]
  * Add Zoomable Image for Preview widgets.

  [ Albert Astals ]
  * Remove support for Qt <= 5.2.1

  [ Mirco Müller ]
  * Implemented feature-request from Design for modal snap-decision
    notifications on the phone. See LP #1285712 (LP: #1285712)

  [ Andrea Cimitan ]
  * Make progressbas in preview widget big as the button

  [ CI bot ]
  * Resync trunk

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

unity8 (7.86+14.10.20140502.6-0ubuntu1) utopic; urgency=low

  [ tpeeters ]
  * Adapt to new TabBar

  [ Tim Peeters ]
  * Adapt to new TabBar

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

unity8 (7.86+14.10.20140429.2-0ubuntu1) utopic; urgency=medium

  [ Andrea Cimitan ]
  * Update upstart job to reflect latest unity-mir changes
  * Fix locale in qml tests and fixtimeformattertest (LP: #1301038)
  * Fix 1309135 (LP: #1309135)

  [ Michał Sawicz ]
  * Split out unity8-common package
  * Don't wait for indicator services to start, and drop Scope Tool's
    .desktop file. (LP: #1310172)

  [ Michael Terry ]
  * Stop clock from hiding when the 'show dash' button is pressed in
    greeter. (LP: #1308139)
  * Make swipe teases in the greeter more helpful and obvious (LP:
    #1267623)

  [ Nick Dedekind ]
  * Fixed datetime indicator appointment colour (LP: #1307048)

  [ Albert Astals ]
  * Improve Card creation time by adding loaders that make sure only
    what's needed is loaded (LP: #1297197)
  * CategoryDelegateRange: Fix condition for detecting overshooting
  * Make xvfbtests work in the DashView plugins
  * Fix binding loop in FilterGrid height

  [ Victor R. Ruiz ]
  * Move autopilot notification code to a helper method.

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

unity8 (7.85+14.04.20140416-0ubuntu1) trusty; urgency=low

  [ Albert Astals ]
  * Fix last item X position Fixes clicking on the last item sometimes
    not working (LP: #1301871)
  * Use upstart in ./run Makes it so that you can use the lock button on
    the device without getting that nasty hwc crash
  * Remove AnimationControllerWithSignals.
  * Use the correct delegate base item for the Carousel test
  * Some simplification in DashContent Kill the ScopeDelegateMapper in
    favour of a simple if (that will eventually go away). Removal of all
    the fake scopes in the tests that added nothing of value to the
    tests. Removal of movementEnded signal that was unused. Removal of
    movementStarted and positionedAtBeginning signals that were being
    used as function calls. Rework DashContent tests so they what the
    function does what it is supposed to do instead of just making sure
    QML signals work .
  * Improve Card creation time by adding loaders that make sure only
    what's needed is loaded In my computer it goes from RESULT :
    qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotSummaryMode
    l": 3.217 msecs per iteration (total: 3,218, iterations: 1000)
    RESULT :
    qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotModel":
    1.647 msecs per iteration (total: 1,648, iterations: 1000) RESULT :
    qmltestrunner::benchmark_time:"cardTitleArtSubtitleModel": 1.514
    msecs per iteration (total: 1,515, iterations: 1000) RESULT :
    qmltestrunner::benchmark_time:"cardTitleArtModel": 1.471 msecs per
    iteration (total: 1,471, iterations: 1000) RESULT :
    qmltestrunner::benchmark_time:"cardArtModel": 1.447 msecs per
    iteration (total: 1,448, iterations: 1000) RESULT :
    qmltestrunner::benchmark_time:"cardTitleModel": 1.276 msecs per
    iteration (total: 1,276, iterations: 1000) to RESULT :
    qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotSummaryMode
    l": 2.916 msecs per iteration (total: 2,917, iterations: 1000)
    RESULT :
    qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotModel":
    1.504 msecs per iteration (total: 1,504, iterations: 1000) RESULT :
    qmltestrunner::benchmark_time:"cardTitleArtSubtitleModel": 1.060
    msecs per iteration (total: 1,061, iterations: 1000) RESULT :
    qmltestrunner::benchmark_time:"cardTitleArtModel": 1.052 msecs per
    iteration (total: 1,053, iterations: 1000) RESULT :
    qmltestrunner::benchmark_time:"cardArtModel": 0.727 msecs per
    iteration (total: 728, iterations: 1000) RESULT :
    qmltestrunner::benchmark_time:"cardTitleModel": 0.817 msecs per
    iteration (total: 818, iterations: 1000) (LP: #1297197)

  [ Allan LeSage ]
  * DashApps emulator get_applications should return a list ordered by
    visible y, x.

  [ Andrea Cimitan ]
  * Workaround for lp1301309 until fixes for palette in ui toolkit (LP:
    #1301309)

  [ Leo Arias ]
  * Reverted the change that returns application cards instead of
    titles.

  [ Nick Dedekind ]
  * Indicator services started by unity8 upstart configuration rather
    than manual emmision from indicator manager.

  [ Mirco Müller ]
  * Fix notification ap-test assertions.

  [ Michael Terry ]
  * Use new tablet and phone backgrounds from Design.

  [ Michael Zanetti ]
  * workaround the QTestLogger assertion issue with make tryXyz and our
    custom uqmlscene

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

unity8 (7.85+14.04.20140415.2-0ubuntu1) trusty; urgency=low

  [ Michael Terry ]
  * When an application requests focus, handle it in Shell.qml by hiding
    the greeter and stopping any edge demo. (LP: #1227753)

  [ Leo Arias ]
  * Use subprocess.check_call when caling url-dispatcher, so an error
    will be raised if it fails.
  * Test application life cycle with fake apps, instead of messaging and
    address book.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 15 Apr 2014 12:47:11 +0000

unity8 (7.85+14.04.20140410.1-0ubuntu1) trusty; urgency=medium

  [ Didier Roche ]
  * Resync trunk with previous revert upload

  [ Michał Sawicz ]
  * Set the Qt.ImhNoPredictiveText flag on wifi password field, fixes
    lp:1291575 (LP: #1291575)

  [ Albert Astals ]
  * Take into account the originY when specifying the delegate ranges
    Fixes bug #1300302 (LP: #1300302)

  [ CI bot ]
  * Resync trunk

  [ Allan LeSage ]
  * Swiping open an indicator must show its correct title--protect
    against lp:1253804 . (LP: #1253804)

  [ Alexander Sack ]
  * Fix TypeError: issue seen in system_integration autopilot test on
    image 279. (LP: #1303685)

  [ Bill Filler ]
  * Set the Qt.ImhNoPredictiveText flag on wifi password field, fixes
    lp:1291575 (LP: #1291575)

  [ Leo Arias ]
  * Added a search autopilot helper.

  [ Michael Terry ]
  * Provide a all-in-one script for getting a device to an unlocked
    state.

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

unity8 (7.85+14.04.20140404.is.7.85+14.04.20140403.1-0ubuntu1) trusty; urgency=medium

  * Revert to previous version as it's linked to latest sdk change which
    is making gallery-app AP tests failing on the CI dashboard

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

unity8 (7.85+14.04.20140404-0ubuntu1) trusty; urgency=low

  [ Albert Astals ]
  * Adapt to new TabBar

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

unity8 (7.85+14.04.20140403.1-0ubuntu1) trusty; urgency=low

  [ Michael Terry ]
  * Re-enable test_networkmanager_integration autopilot test on phone
    platforms

  [ CI bot ]
  * Resync trunk

  [ Leo Arias ]
  * Reverted the open_preview autopilot helper to return a Preview
    object.

  [ Albert Astals ]
  * If not running in Mir load the "fake" application manager (LP:
    #1301547)
  * Remove unused properties from DashRenderer

  [ Michael Zanetti ]
  * Fix tests after right edge merge. Drop old stages tests. Fix right
    edge tests if someone doesn't have the GRID_UNIT_PX exported. make
    GenericScopeView test more robust that broke because the ordering
    changed
  * add "make xvfbtestSomething" target to run qml tests in xvfb
  * make the "make test" commit hook work again

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

unity8 (7.85+14.04.20140401.3-0ubuntu1) trusty; urgency=medium

  [ Michał Sawicz ]
  * Bump version to ensure incompatibility with previous Unity.Application
    implementations.
  * We'll only have the unity-mir and mock Ubuntu.Application plugins
    now, no need for mangling the import paths.

  [ Michal Hruby ]
  * Remove the albumart image provider. (LP: #1262711)
  * Don't reset search string after 2 seconds. (LP: #1297246)

  [ James Henstridge ]
  * Remove the albumart image provider. (LP: #1262711)

  [ Albert Astals ]
  * Carousel: Add test to make sure we only create the needed delegates
    and not more
  * LVWPH: Remove processEvents() call from updatePolish() It causes
    some reentrancy issues and in some times you end up in polishItems()
    with items that have been deleted because you called processEvents()
    This means i need a small tweak in itemGeometryChanged to not
    reposition items if we are inside a setContentHeight call and two
    small tweaks to tests since now things happen in a different order
    and numbers are different (though equivalent) (LP: #1297240)
  * Card.qml binding loops are gone. hooray \o/ Also made the aspect
    properties readonly

  [ Mirco Müller ]
  * A potential fix for "Cannot read property 'state' of null"-failure
    on Jenkins with the VisualSnapDecisionsQueue QML-test of
    notifications.

  [ Michael Terry ]
  * Pass user's preference for auto-brightness on to powerd. (LP:
    #1273174)

  [ Michael Zanetti ]
  * Registers a dummy QObject as QTestRootObject in uqmlscene in order
    to fix make trySomething with Qt 5.2.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 01 Apr 2014 22:56:52 +0000

unity8 (7.84+14.04.20140327.1-0ubuntu2) trusty; urgency=medium

  * For now, have libunity-private depending on libunity-core-6.0-9 as the
    gsettings schema is here. The dependency wasn't direct and dropped from
    Touch image #271. Consequently, unity8 didn't start (gsettings
    segfaulting).
    Proper strategy will be to include the schema in another package to only
    pull it.

 -- Didier Roche <didrocks@ubuntu.com>  Tue, 01 Apr 2014 09:52:14 +0200

unity8 (7.84+14.04.20140327.1-0ubuntu1) trusty; urgency=low

  [ Michał Sawicz ]
  * Increase kill timeout so that crashes are not truncated.

  [ Ying-Chun Liu ]
  * Fix a small typo in LazyImage: scale -> scaleTo

  [ Albert Astals ]
  * Make geometry calls for autopilot work again -geometry is a internal
    Qt argument that only works for QWidget based apps Before it was
    being returned to us in -args but now it's eaten so we need to use a
    different one, -windowgeometry
  * Make "Recent" translatable and update pot file

  [ Mirco Müller ]
  * Make visual queue of (up to five) snap-decisions contract and expand
    according to visual design-spec.

  [ Michael Terry ]
  * Pass user's preference for auto-brightness on to powerd. (LP:
    #1273174)

  [ Michael Zanetti ]
  * allow executing a single test function example: make testShell
    FUNCTION="Shell::test_background"

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 27 Mar 2014 12:38:21 +0000

unity8 (7.84+14.04.20140324.4-0ubuntu1) trusty; urgency=low

  [ Michal Hruby ]
  * Change and extend the way non-installed scopes are started with the
    scope-tool.
  * Switch to new scope backend and apply required visual adaptations.
    (LP: #1294294)

  [ Gerry Boland ]
  * Switch to new scope backend and apply required visual adaptations.
    (LP: #1294294)

  [ Michał Sawicz ]
  * Fix rating input action to always be "rated", not dynamic. Based on
    http://developer.ubuntu.com/api/devel/ubuntu-14.04/cplusplus/unity-
    scopes/previewwidgets.html#rating-input
  * Switch to new scope backend and apply required visual adaptations.
    (LP: #1294294)

  [ Kevin Gunn ]
  * Switch to new scope backend and apply required visual adaptations.
    (LP: #1294294)

  [ Albert Astals ]
  * Switch to new scope backend and apply required visual adaptations.
    (LP: #1294294)
  * LVWPH: cull lost items lost items will be released on the next
    updatePolish cycle but meanwhile don't let them be visible

  [ Daniel d'Andrada ]
  * Switch to new scope backend and apply required visual adaptations.
    (LP: #1294294)

  [ Michał Karnicki ]
  * Switch to new scope backend and apply required visual adaptations.
    (LP: #1294294)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 24 Mar 2014 16:10:24 +0000

unity8 (7.84+14.04.20140319.1-0ubuntu1) trusty; urgency=low

  [ Michał Sawicz ]
  * Work around bug #1293478 - make sure to send ints, not doubles for
    volume control. (LP: #1293478)

  [ Nick Dedekind ]
  * Fixed binding being cleared when manually changing slider value
    (lp#1283191). (LP: #1283191)

  [ Albert Astals ]
  * Fix indicators highlight position on 5.2 We need to take into
    account the list originX if we're using the list delegates x outside
    the list itself
  * LVWPH: Make sure m_firstVisibleIndex is correctly set on
    removeNonVisibleItems

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

unity8 (7.84+14.04.20140317.2-0ubuntu1) trusty; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Michał Sawicz ]
  * Revert disable-hud, we weren't ready to land it yet.

  [ Mirco Müller ]
  * The snap-decision AP-test for "incoming call"-case used the wrong
    objectName "notification0". It has to be "notification1".

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 17 Mar 2014 15:54:39 +0000

unity8 (7.84+14.04.20140314-0ubuntu1) trusty; urgency=low

  [ Michał Sawicz ]
  * Fix tests under Qt 5.2.
  * CardHeader improvements depending on background. Also drop prices,
    they need to be reworked into attributes.
  * Bring Cards closer to design
  * Add back the workaround for not being able scroll the image gallery
    Taken from AppPreview.qml (LP: #1281709)
  * Only allow searching when preview isn't open. (LP: #1282475)
  * Adds carousel dynamic switch

  [ Leo Arias ]
  * Update the url dispatcher test to use the fake app fixture from the
    toolkit.

  [ Albert Astals ]
  * Fix tests under Qt 5.2.
  * Workaround compiz/unity7 behaviour change/bug

  [ Michael Zanetti ]
  * Fix tests under Qt 5.2.
  * Disable HUD from the bottom edge.

  [ Andrea Cimitan ]
  * Adds carousel dynamic switch

  [ CI bot ]
  * Resync trunk

  [ Michał Karnicki ]
  * CardHeader improvements depending on background. Also drop prices,
    they need to be reworked into attributes.

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

unity8 (7.84+14.04.20140307-0ubuntu1) trusty; urgency=low

  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 07 Mar 2014 10:54:33 +0000

unity8 (7.84+14.04.20140306-0ubuntu1) trusty; urgency=low

  [ Bill Filler ]
  * Convert gallery and camera to click

  [ Michael Zanetti ]
  * Just disable HUD tests, without really disabling the HUD itself

  [ Sergio Schvezov ]
  * Convert gallery and camera to click

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

unity8 (7.84+14.04.20140304-0ubuntu1) trusty; urgency=low

  [ Michael Terry ]
  * Ensure that the selected() signal is emitted by the greeter on
    startup, fixing the background on startup for the first user in
    tablet mode.

  [ Nick Dedekind ]
  * Remocked IndicatorModel to fix qt5.2.1 changes.

  [ Albert Astals ]
  * Initialize m_distance (LP: #1285385)
  * import Ubuntu.Components so we can use UbuntuAnimation

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

unity8 (7.84+14.04.20140228-0ubuntu1) trusty; urgency=low

  [ Michał Sawicz ]
  * Fix CardHeader title font weight.
  * Delete stale sockets. (LP: #1285215)

  [ Dmitrijs Ledkovs ]
  * Ship python3 autopilot modules.

  [ Albert Astals ]
  * Cleanup DashContent Remove unused signals and properties

  [ Michał Karnicki ]
  * Take it easy on the logging.
  * Fix CardHeader title font weight.

  [ Nick Dedekind ]
  * Added ability to change indicator profile in shell (env
    UNITY_INDICATOR_PROFILE)

  [ Andrea Cimitan ]
  * Rename PreviewRating to PreviewRatingInput
  * Adds PreviewRatingDisplay

  [ Daniel d'Andrada ]
  * DirectionalDragArea: Reset status if disabled while dragging (LP:
    #1276122)

  [ Dimitri John Ledkov ]
  * Ship python3 autopilot modules.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 28 Feb 2014 10:48:06 +0000

unity8 (7.84+14.04.20140221-0ubuntu1) trusty; urgency=low

  [ Michał Sawicz ]
  * Add card background support.
  * Increase the sidestage threshold.

  [ Jussi Pakkanen ]
  * Move downloads to their own threads so they don't muck about with
    the parent thread's event loop. (LP: #1240408)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 21 Feb 2014 09:06:04 +0000

unity8 (7.84+14.04.20140218-0ubuntu1) trusty; urgency=low

  [ Michał Sawicz ]
  * Center-align title when it's alone in the header.

  [ Leo Arias ]
  * Prepare unity8 to the _uinput refactors in autopilot.

  [ Albert Astals ]
  * Progress Preview Widget
  * LWPH Fix crash from bug 1279434 (LP: #1279434)
  * Show the loading indicator of the screenshot in video playback

  [ Andrea Cimitan ]
  * Adds rating preview widget. Work on the rating widget

  [ Daniel d'Andrada ]
  * Make DirectionalDragArea work when rotated The drag gesture
    direction is in local coordinates, not in scene coordinates

  [ Michał Karnicki ]
  * Center-align title when it's alone in the header.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 18 Feb 2014 11:41:58 +0000

unity8 (7.84+14.04.20140212-0ubuntu1) trusty; urgency=low

  [ Gerry Boland ]
  * Add InputFilterArea to sidestage handle to block input to mainstage
    app while moving sidestage (LP: #1275732)

  [ Leo Arias ]
  * On the autopilot helper to open a scope, wait for the dash content
    list to stop moving. (LP: #1277591)
  * Added a test to swipe out an application started by url-dispatcher.

  [ Nick Dedekind ]
  * Added a "-profile" option to the indicator-client to switch between
    indicator service profiles.
  * Fixed issue importing plugin qml files into qtcreator

  [ Albert Astals ]
  * Fix test_previewCycle
  * Don't move the list contentY unless there's a preview to show (LP:
    #1271676)
  * Add overlay to card. Fix implicit card height. .
  * PreviewHeader Is just a link of the widgetData with the CardHeader
  * Fix tst_Preview.qml
  * Scopes guys want the data back
  * Link the pageheader scope with the current scope So that the
    activity indicator on search works again (LP: #1279316)

  [ Andrea Cimitan ]
  * Add PreviewImage
  * Preview widget for video playback

  [ CI bot ]
  * Add overlay to card. Fix implicit card height. .

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

unity8 (7.84+14.04.20140207.1-0ubuntu1) trusty; urgency=low

  [ Ted Gould ]
  * You can't tap anywhere

  [ Michał Sawicz ]
  * Wait for the indicator to appear.
  * Add CardTool to determine category-wide card properties based on the
    category template. Clean up test configurations, too.
  * Actions Preview Widget
  * Add Preview for new generation scopes.
  * Add overlay to card. Fix implicit card height. .

  [ Albert Astals ]
  * Basic ImageGallery widget for Previews Mostly a copy of the code
    used in AppPreview.qml but without the MouseArea hack that I'll wait
    to introduce until we start using this somewhere were it is needed
  * Actions Preview Widget

  [ Andrea Cimitan ]
  * First audio player widget for previews, with tests
  * Adds TextSummary preview widget

  [ Michał Karnicki ]
  * Add overlay to card. Fix implicit card height. .

  [ Michael Terry ]
  * Expand greeter demo support to include listing multiple users and
    specifying individual passwords and names.

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

unity8 (7.84+14.04.20140204-0ubuntu1) trusty; urgency=low

  [ Michael Terry ]
  * Disable NM integration test, jenkins has a problem with it because
    logind isn't configured

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Michał Sawicz ]
  * Add ubuntu-settings-components to build script. Revert workaround
    for bug #1268578, got fixed upstream. Drop GenericName from
    unity8.desktop. (LP: #1268578)
  * Improve Card and CardHeader layouts: anchor summary to art when no
    header. don't indent header when no mascot. reduce header and
    summary font sizes and weights. increase art shape radius .
  * Add doxygen-based documentation generator.
  * Add CardTool to determine category-wide card properties based on the
    category template. Clean up test configurations, too.
  * Move upstart kill timeout to the unity8 job itself.
  * Don't treat scope as active when preview open to inhibit model
    updates and reset processing on previewData changes. (LP: #1275832)

  [ Leo Arias ]
  * Added the DashPreview autopilot helper.

  [ Michał Karnicki ]
  * CardHeader mascot improvements.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 04 Feb 2014 14:09:14 +0000

unity8 (7.84+14.04.20140130-0ubuntu1) trusty; urgency=low

  [ Michał Sawicz ]
  * Bring back libunity-mir1, it's dlopen'ed, so not linked to unity8,
    so not in shlibs.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 30 Jan 2014 14:00:40 +0000

unity8 (7.84+14.04.20140129-0ubuntu1) trusty; urgency=low

  [ Nick Dedekind ]
  * Added Panel/VisibleIndicatorsModel for use with both indicator row &
    menuContent. This removes the need to hide indicators in the row and
    map inicator indexes between row & content. Fixes the indicator
    highlight line offset not bound by listView position.
  * Ported indicators to using ubuntu-settings-components

  [ Albert Astals ]
  * Prepend /sbin/ to initctl calls My phablet user does not have /sbin/
    in path and thus this calls fail
  * Call updateDelegateCreationRange when it's needed It depends on
    other variables than the ones we were using to call it, so need to
    call it if these change too Device manual test, go to apps scope,
    scroll down so that only part of the installed apps collapsed
    category is shown, expand it, see how previously some icons were not
    painted and now they are

  [ Mirco Müller ]
  * Fixed the failure of notification autopilot-test
    test_sd_incoming_call.

  [ Andrea Cimitan ]
  * Add AP test for policykit/network manager, which was causing issues
    with nested mir

  [ CI bot ]
  * Resync trunk

  [ Michał Karnicki ]
  * Don't display artShape when artImage source not set.
  * Fix FilterGrid rendering issues.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 29 Jan 2014 16:11:20 +0000

unity8 (7.84+14.04.20140128-0ubuntu1) trusty; urgency=low

  [ Michal Hruby ]
  * Added unity-scope-tool, which will help when developing scopes.

  [ Michał Sawicz ]
  * Added unity-scope-tool, which will help when developing scopes.
  * Use full DashContent, not just GenericScopeView in ScopeTool.qml.
  * Bring Card and CardHeader over from new-scopes.
  * Work around bug #1268578. (LP: #1268578)
  * Drop unnecessary version dependencies.
  * Return null instead of undefined from findChild and
    findInvisibleChild.
  * Fix CardHeader and Card heights (empty Label does have non-zero
    height apparently). Also improve test robustness and reduce future
    diffs.

  [ Albert Astals ]
  * Do not assert if the item we are removing was not created yet
    (because e.g. it's not in the viewport).
  * Position correctly the pointer of the search history box .
  * Make test_filter_expand_expand less unstable in CI VMs Make sure
    header0 is the header0 we want to click On the CI VM stuff is a bit
    slower than on real hw and we were clicking in the wrong place.
  * Add TabBar to the Dash header navigation Changes this comes with: *
    DashBar at the bottom is gone * PageHeader doesn't have a Label
    anymore, it has the childItem property where you add which thing it
    has to contain * New: PageHeaderLabel mimics the old behaviour of
    PageHeader * The header of the LVWPH of GenericScopeView is now fake
    and only used for positioning. There is a single global floating
    header in DashContent (which is a PageHeader with a TabBar as
    childItem) * The GenericScopeView previewLoader and OpenEffect have
    been also moved to the DashContent so that the openEffect includes
    the floating header in the "animation" .
  * Introduce the HorizontalJournal.
  * If there are no items m_firstVisibleIndex has to be -1 .
  * Add some more documentation about tests to the CODING file.
  * Fixes to the journal cmake tests code * Output to the correct
    filename for the test * Don't output stuff from the tryXYZ targets.
  * Adapt to findChild return value changes .
  * Organic Grid for the Dash View.
  * Misc journal fixes Don't init *modelIndex to INT_MAX Makes no sense
    since we're not doing any qMin and the calling function also accepts
    any index >= 0 as valid so in some cases it may end up wanting to
    create an index that doesn't exist Don't refill if height() < 0,
    that gives bad ranges for from/to and the code gets confused .

  [ Michał Karnicki ]
  * Fix grid view column count.
  * Add test for minimum number of items in a carousel.

  [ Allan LeSage ]
  * Add stubs for indicators autopilot tests.

  [ Andrea Cimitan ]
  * Avoid input falling through notifications onto surfaces below, thus
    fixing LP: #1257312. (LP: #1257312)

  [ Leo Arias ]
  * Close the Touch devices after the tests. (LP: #1267600)
  * Added methods to scroll to other scopes on autopilot tests.
  * Added autopilot helpers for the app scope and the app preview.
    Install the fake scopes in order to use them on the tests. (LP:
    #1269114)
  * On autopilot helpers, wait for the scope category to appear.

  [ Nick Dedekind ]
  * Visual updates for indicator panel highlight and opening opacity.
  * Added inidcator tests for page & item factories.
  * Fixes visible indicator misalignment in indicator items/menus
    (lp#1264678). (LP: #1264678)

  [ Mirco Müller ]
  * Fixed the failure of notification autopilot-test
    test_sd_incoming_call.

  [ Michael Zanetti ]
  * clean up fullscreen notifications code.
  * import qml files into cmake, drop qmlproject.
  * also add qml files in tests directory.
  * Added autopilot helpers for the app scope and the app preview.
    Install the fake scopes in order to use them on the tests. (LP:
    #1269114)

  [ Michael Terry ]
  * Fix failure to build when using the ./build script with ninja-build
    installed. (LP: #1268525)
  * Point DBus-activated processes at unity8's MIR_SOCKET rather than
    the system socket.

  [ Daniel d'Andrada ]
  * DragHandle: Never restart hinting animation while still pressed (LP:
    #1269022)

  [ Bill Filler ]
  * fix for lp:1259294, turn off auto capitalization for wifi password
    field. (LP: #1259294)
  * disable predictive text in Dash search field as it interferes with
    built-in search (LP: #1273643)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 28 Jan 2014 15:58:45 +0000

unity8 (7.84+14.04.20131220-0ubuntu1) trusty; urgency=low

  [ Michał Sawicz ]
  * Clean up root project file. Introduce include/ and qml/ and move
    files around to be where they fit, also adapt everything else to
    match.

  [ Michael Hall ]
  * Update CODING to reflect the fact that only 14.04 is supported
    currently.

  [ Christopher Lee ]
  * Make use of helpers in all tests. (LP: #1260860). (LP: #1260860)

  [ Nic ]
  * Added kill time 30 to unity8 override. Added install path. (LP:
    #1260379)

  [ Nick Dedekind ]
  * Added parser for strftime in TimeFormatter. Moved TimeFormatter to
    Utils plugin.

  [ Mirco Müller ]
  * Support fullscreen for special-case extended snap-decision of the
    pin-unlock dialog.

  [ Michael Zanetti ]
  * Change the default behaviour of the Lockscreen to have a variable
    PIN length, requiring the user to confirm with OK.

  [ Daniel d'Andrada ]
  * Update CODING with instructions on how to run tests.

  [ Dimitri John Ledkov ]
  * Fix cross-compilation.

  [ Albert Astals ]
  * Vertical journal Comes from lp:~aacid/+junk/verticalJournal.
  * Add code and tests for incremental inserting/removing from the end.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 603

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 20 Dec 2013 03:23:08 +0000

unity8 (7.84+14.04.20131212-0ubuntu1) trusty; urgency=low

  [ Michał Sawicz ]
  * Add PyDev project files for autopilot tests. Also tweak .bzrignore
    to not ignore generic Eclipse project definitions.
  * Retry unlocking the greeter three times.
  * Reduce code duplication and clean up CMakeLists and includes in
    indicator tests.

  [ Nick Dedekind ]
  * Replaced indicator page dynamic menuSelected binding with Connection
    to listview selectedIndex property. (LP: #1243146)
  * Indicators close when menu items are activated. (LP: #1238182)
  * Fixed up connections for changes to model data. (LP: #1253810)

  [ Albert Astals ]
  * dashItemSelected -> showDashHome Because we are not using the index
    at all in the upper layers.
  * Fix filtering colllapsing/expanding again Also the delegate creation
    range stuff flows up->down not down->up so rearrange the bindings.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 590

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 12 Dec 2013 21:41:19 +0000

unity8 (7.84+14.04.20131206.1-0ubuntu1) trusty; urgency=low

  [ Michal Hruby ]
  * Ensure DashContent's ListView's currentItem is set if the model is
    not empty.

  [ Michał Sawicz ]
  * Don't generate build-deps .deb twice and allow overriding
    QML2_IMPORT_PATH in ./run.

  [ Albert Astals ]
  * Remove unused Applications/ folder .
  * Implement an 'interface' for Dash Renderers.
  * Use deelistmodel's conversion method Instead of a copy of the code .
  * Remove icons we don't use .
  * Do not start apps or go to dash on demo If you are pulling the
    launcher out while in demo mode it doesn't make sense to let you
    start applications. Besides it locks you out because it starts the
    app and the demo is still not finished so you can't really use any
    of the edges to escape Bug #1233696. (LP: #1233696)
  * Add a test for the carousel showing the preview when being clicked .
  * Fix collapsing of categories not working and the
    expansion/collapsing animation +test.

  [ Timo Jyrinki ]
  * Depend on either Qt 5.2 or libqt5v8-5-private-dev.
  * qtdeclarative5-private-dev 5.0.2-6ubuntu5 now depends directly on Qt
    V8 private headers. The remaining "qtdeclarative5-private-dev"
    dependency is enough now both when compiling against 5.0.2 or 5.2.

  [ Pete Woods ]
  * Handle optional parameterized action properties. (LP: #1256258)

  [ Andrea Cimitan ]
  * Implement an 'interface' for Dash Renderers.

  [ Michael Zanetti ]
  * Added music preview.
  * rename some parameters from desktopFile to appId as scopes are now
    changed to give us the appId.
  * unhardcode launcher's search paths for .desktop files.
  * Enable teasing of the phone greeter even though we have a
    lockscreen.
  * check if variant is valid to avoid asserting in debug mode when the
    connection to AccountsService doesn't work for some reason .

  [ Michael Terry ]
  * Add the DBus greeter API from the desktop greeter into the unity8
    greeter.

  [ Daniel d'Andrada ]
  * Dash: disable close mode when you click outside app thumbnails To
    leave the termination mode you can now just mouse/touch press
    anywhere outside the running applications' thumbnails The other way,
    which still works, is long-pressing a thumbnail once more. (LP:
    #1193414)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 579

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 06 Dec 2013 13:15:57 +0000

unity8 (7.84+14.04.20131128.2-0ubuntu1) trusty; urgency=low

  [ Michal Hruby ]
  * Depend on the separate scopes plugin
  * Move the BottomBar* DBus communicator to the Utils plugin.

  [ Michał Sawicz ]
  * Wait for DashHome to be available in tst_Shell. (LP: #1254898)
  * Use plugindir from unity-shell-api.pc.
  * Expect stop in upstart job and raise in case of surfaceflinger. (LP:
    #1239876)

  [ Albert Astals ]
  * Fix time test in Qt 5.2 Make factors an array instead of a
    object/dict Objects/dicts are unordered by definition, it happened
    that Qt 5.0 gave them in the orrder we wanted, but with Qt 5.2 is
    failing, and we don't even need the "key", so array works as well
    :).
  * Test that the dash hswipe is disabled while the inner stuff is
    moving .
  * Skip restMaximizeVisibleAreaMoveUpAndShowHeader, it's causing too
    many failed runs And we are confident it's failing because of the
    suboptimal scenegraph run in 5.0.x.
  * Make Dash::test_show_scope_on_load more robust If we are testing
    showScopeOnLoaded make sure we force a scope reload after we set it,
    otherwise it may just happen that the scope has already been loaded
    and the expectaction that we'll change the list to it is just wrong.
  * Dash renderer signals: No need to pass the model up and down Whoever
    is listening to the signal has access to the item that emits the
    signal and has the model right there accessible if needs it.
  * LVWPH: Fix header going bad when setContentHeight ends up moving the
    viewport How to reproduce the bug easily without the patch: * In the
    Dash Home, search for london * Scroll to the bottom * Start moving
    to the apps scope very slowly * At around 3/4 of the move you'll see
    the header in the home scope went to a bad position * Go back to the
    Dash Home. (LP: #1237942, #1246351)
  * Remove unused AppInfo and VideoInfo files .
  * Kill unused ApplicationsFilterGrid.qml .
  * Unify ScopeView and GenericScopeView .
  * Fix header getting lost as per bug 1245824. (LP: #1245824)
  * Remove unused Time.js and its test .
  * Do not include the QtQml megaheader Include only qqml.h which is
    what we need in these files.
  * Don't do stuff if our parent context is gone We'll be gone soon too
    (and crash probably) so don't do anything. This looks a bit like a
    workaround, wait for 5.2 better painting/dispatching loop to see if
    this is not needed anymore, we find a better way to do it, or we
    decide this is fine.

  [ Lars Uebernickel ]
  * Allow setting different indicator positions for different profiles.

  [ Mirco Müller ]
  * Added checkbox for toggling between echo-modes of password-
    entryfields in ext. snap-decisions.
  * Fixes bug #1200569. (LP: #1200569)

  [ Andrea Cimitan ]
  * Switch to application scope when a dash swipe is taking place and an
    app is on foreground. (LP: #1231996)
  * Shifts wallpaper rendering for greeter lockscreen to be inline with
    shell. (LP: #1231731)
  * Dinamically load the Carousel/Filtergrid with more than 6 items.
    (LP: #1226288, #1234105)
  * Removes Math.js and its usage. Use SDK ones.

  [ Gerry Boland ]
  * DragHandle: javascript argument name clashes with local variable.
    Yes it works, but is a little unsafe.

  [ Nick Dedekind ]
  * Added UnityMenuModel submenu row removal awareness in
    UnityMenuModelStack.
  * Round indicator widget icon/label width up to closest gu for
    alignment. (LP: #1236267)
  * Indicator re-select by dragging from top when fully opened. (LP:
    #1213164)
  * Fixed a race condition causing search history popup to show up when
    it shouldn't. (LP: #1249369)

  [ Christopher Lee ]
  * Unity8 tests now make use of the helper functions (added in the pre-
    req branch) so that the helper functions are tested as part of daily
    business.

  [ Daniel d'Andrada ]
  * Improve DirectionalDragArea Removed Rejected status, simplifying
    state machine. Added compositionTime property. Multi-finger
    scenarios are better handled now. Refactored TimeSource in
    Ubuntu.Gestures plugin. Added an easy way to debug
    DirectionalDragArea by having switchable debug prints. Updated tests
    to also simulate the passage of time. Use touch point scene
    coordinates for gesture recognition so that moving the.
    DirectionalDragArea (as in a hinting DragHandle) won't affect it.
    (LP: #1228336)
  * Add right-edge drag hinting to Greeter To match with the existing
    teasing animation when you tap on the right half of the Greeter.
    Also has the side benefit of making the code look a bit nicer.
  * Refactor Ubuntu.Gesture tests to share common logic Take the common
    part out of tst_DirectionalDragArea and put it into a separate base
    class, GestureTest, so that it can be shared with other, future,
    tests. In CMakeLists.txt, create a macro out of DirectionalDragArea
    build script to be used by future tests with similar requirements
    and structure. Also add the "m_" prefix to member variables.
  * Remove dead code from Utils plugin They are not being used anywhere.

  [ Michael Terry ]
  * Make EdgeDemoOverlay test more reliable by testing for what we
    really care about, not an indirect indicator of it. (LP: #1248232)
  * Explicitly set MIR_SOCKET for other upstart jobs, rather than
    relying on the default socket, since that won't work once we move to
    a nested Mir.

  [ Michael Zanetti ]
  * don't add margins to RunningApplicationTile's label. (LP: #1245482)
  * allow SIM PIN entry to have a variable pin length (by adding a done-
    button). (LP: #1240561)
  * fix launcher wording for pinning actions. (LP: #1240891)
  * fix preview background positioning don't explicitly take originY
    into account as it's already in there implicitly. make sure we don't
    split the openeffect in a place where it can be covered by the
    header.
  * fix album artwork containing / in the name. (LP: #1237829)
  * small launcher tweaks fix fakeDragItem's initial position to match
    with real item. remove UbuntuShape's border glow. .
  * drop all references to LighDM from the Lockscreen This should make
    it generic enough to allow reusing it for SIM PIN entry .

  [ Omer Akram ]
  * make the non working code in the screen unlocker helper work.

  [ Nicolas d'Offay ]
  * Pushed up the z order of the clock in GreeterContent. (LP: #1233146)
  * Search history is now persistent across all scopes and remains in
    QML. (LP: #1226221)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 556

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 28 Nov 2013 18:09:17 +0000

unity8 (7.83+14.04.20131106-0ubuntu1) trusty; urgency=low

  [ Andrea Cimitan ]
  * Place ShaderEffectSource of UbuntuShapeForItem under the Shape Item.
    (LP: #1239317)

  [ Omer Akram ]
  * test: make sure the search indicator hides when an app has focus.

  [ Nick Dedekind ]
  * Fixed indicator slider menu item alignment to label field and icon.
    (LP: #1240756)

  [ chris.gagnon ]
  * Update to autopilot 1.4.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 500

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 06 Nov 2013 03:37:02 +0000

unity8 (7.83+14.04.20131105.1-0ubuntu1) trusty; urgency=low

  [ Michał Sawicz ]
  * Implement switching between previews by swiping. (LP: #1220651,
    #1088572)

  [ Nick Dedekind ]
  * Faster loading of indicator menus. (LP: #1226650)

  [ Albert Astals ]
  * Make sure we have ssh started when we need it .
  * Fix a few warnings in DashContent.qml on shutdown
    Dash/DashContent.qml:119: TypeError: Cannot read property
    'previewShown' of null Dash/DashContent.qml:120: TypeError: Cannot
    read property 'moving' of null .
  * Don't use deprecated Panel methods.

  [ Christopher Lee ]
  * Adds an easy to consume function that attempts to unlock the unity
    greeter. (LP: #1240261)

  [ Lars Uebernickel ]
  * Indicators: add TimeFormatter and use it in the messaging menu This
    component can be used to turn a timestamp and a format string into a
    string with the corresponding time and format. The string will
    change whenever the timezone changes. (LP: #1236413)

  [ Andrea Cimitan ]
  * Allow drag over bounds, but not overshoot. (LP: #1204300)
  * Threshold to activate the left edge swipe to reveal dash is now 26
    GU. (LP: #1236286)

  [ Michael Zanetti ]
  * replace the launcher quicklist's Popover with an own quicklist
    implementation The Popover probably won't ever support what the
    launcher needs.
  * Implement switching between previews by swiping. (LP: #1220651,
    #1088572)
  * don't trigger the greeter teasing during a movement of the greeter.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 495

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 05 Nov 2013 12:22:04 +0000

unity8 (7.83+14.04.20131031-0ubuntu1) trusty; urgency=low

  [ Michał Sawicz ]
  * Use setenv as early as possible to avoid setenv and getenv clashing
    in multi-threaded situations. (LP: #1240866)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 482

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 31 Oct 2013 20:10:56 +0000

unity8 (7.83+14.04.20131028.1-0ubuntu1) trusty; urgency=low

  * New rebuild forced
  * Automatic snapshot from revision 480

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 28 Oct 2013 22:42:07 +0000

unity8 (7.83+14.04.20131028-0ubuntu1) trusty; urgency=low

  [ Andrea Cimitan ]
  * Fix 1195349 by counting drawbuffer on the newContentX logic of the
    carousel When we changed carousel from repeater to listview, we
    added drawbuffer. this breaks the logic of newContentX, which was
    considered disabled and set to -1. The correct disabled value now
    has to take into account the drawbuffer. (LP: #1195349)

  [ Christopher Lee ]
  * Checks both then env and upstart env for the currently set
    XDG_DATA_DIRS so they can be set correctly for the test.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 479

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 28 Oct 2013 03:08:59 +0000

unity8 (7.83+13.10.20131016.2-0ubuntu1) saucy; urgency=low

  [ Loïc Minier ]
  * Merge ~lool/unity8/drop-setcap-conf. Drop unity8-setcap.conf as this
    breaks desktop installs (no boot-hook event is emitted, boot
    stalls); add maintscript snippet to rm_conffile on upgrades; this
    boot-hook is now shipped under a different name in lxc-android-
    config.

  [ Michał Sawicz ]
  * Ship a camera-app.desktop file and use a custom XDG_DATA_DIRS for
    testing.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 472

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 16 Oct 2013 23:15:48 +0000

unity8 (7.83+13.10.20131016.1-0ubuntu1) saucy; urgency=low

  [ Diego Sarmentero ]
  * Disable Preview interaction until the scope responds.

  [ Albert Astals ]
  * Hide placeholder notification.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 469

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 16 Oct 2013 17:29:36 +0000

unity8 (7.83+13.10.20131016-0ubuntu1) saucy; urgency=low

  [ Loïc Minier ]
  * Add upstart job to copy unity8 to a new tmpfs, setcap it, and bind-
    mount it back; this is an ugly hack to set CAP_SYS_RESOURCE until we
    have a root-helper for it.

  [ Michal Hruby ]
  * Enable definition of scope back references in overridden results.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 466

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 16 Oct 2013 11:29:52 +0000

unity8 (7.83+13.10.20131015.4-0ubuntu1) saucy; urgency=low

  [ Michał Sawicz ]
  * Replace ubuntu-touch-session's unity8.conf upstart job.
  * Revert r440 that made the dash collapse animation worse, rather than
    better.

  [ om26er@ubuntu.com ]
  * close the app only when the close button is tapped, not the entire
    thumbnail

  [ Nick Dedekind ]
  * Added missing Unity.Indicator mock objects causing qmltests to fail.
    Approved by: Michał Sawicz.

  [ Christopher Lee ]
  * Launch unity8 for autopilot with upstart, and bring unity8 session
    over from session-manager-touch.

  [ Pawel Stolowski ]
  * Temporarily disable category_order changed signal handling.

  [ Daniel d'Andrada ]
  * OSKController area shouldn't cover the indicators' bar Since ubuntu-
    keyboard surface area doesn't cover the indicators' bar,
    OSKController should follow suit. Otherwise the OSKContoller's
    internal InputFilterArea (and others) wouldn't perfectly overlap the
    graphical keyboard rendered by ubuntu-keyboard (i.e. the opaque part
    of ubuntu-keyboard's surface).

  [ Michael Zanetti ]
  * Initialize initialHeight/Width to height/width depending on scaleTo
    add checks for initialWidth/Height in the tests change sizes in
    tests to something else than the default for initialWidth/Height in
    order to catch failures there more easily

  [ Omer Akram ]
  * Only show search indicator while the Dash is focued.
  * Add 2dp left margin for music and video tiles' title.

  [ Nicolas d'Offay ]
  * Changed Infographics to use Ubuntu font.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 463

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 15 Oct 2013 11:05:04 +0000

unity8 (7.82+13.10.20131011.2-0ubuntu1) saucy; urgency=low

  [ Michał Sawicz ]
  * Work around Mir not delivering input to shell after restart, if the
    device isn't reinitialized.

  [ Albert Astals ]
  * Remove unused DashMusic/DashVideos.
  * Don't let the user change between scopes if the current one is
    moving up/down.
  * Fix two uninitialized variable uses reported by valgrind ==17988==
    Conditional jump or move depends on uninitialised value(s) ==17988==
    at 0x13839F3A: AccountsService::updateDemoEdges()
    (AccountsService.cpp:74) ==17988== by 0x13839DA5:
    AccountsService::setUser(QString const&) (AccountsService.cpp:45)
    ==17988== by 0x1383F67B:
    AccountsService::qt_metacall(QMetaObject::Call, int, void**)
    (moc_AccountsService.cpp:192) ==17988== by 0x496143D:
    StoreProperty(QV8Engine*, QObject*, QQmlPropertyData*,
    v8::Handle<v8::Value>) (in /usr/lib/arm-linux-
    gnueabihf/libQt5Qml.so.5.0.2) ==17988== ==17988== Conditional jump
    or move depends on uninitialised value(s) ==17988== at 0x1383A0F6:
    AccountsService::updateStatsWelcomeScreen() (AccountsService.cpp:92)
    ==17988== by 0x13839DB1: AccountsService::setUser(QString const&)
    (AccountsService.cpp:47) ==17988== by 0x1383F67B:
    AccountsService::qt_metacall(QMetaObject::Call, int, void**)
    (moc_AccountsService.cpp:192) ==17988== by 0x496143D:
    StoreProperty(QV8Engine*, QObject*, QQmlPropertyData*,
    v8::Handle<v8::Value>) (in /usr/lib/arm-linux-
    gnueabihf/libQt5Qml.so.5.0.2)
  * Fix unitialized variable in Scope ==18457== Conditional jump or move
    depends on uninitialised value(s) ==18457== at 0x15AD1FD6:
    Scope::setActive(bool) (scope.cpp:165) ==18457== by 0x15B0023D:
    Scope::qt_metacall(QMetaObject::Call, int, void**)
    (moc_scope.cpp:478) ==18457== by 0x48B709F:
    QQmlPropertyPrivate::write(QObject*, QQmlPropertyData const&,
    QVariant const&, QQmlContextData*,
    QFlags<QQmlPropertyPrivate::WriteFlag>) (in /usr/lib/arm-linux-
    gnueabihf/libQt5Qml.so.5.0.2)
  * Fix crash on the phone For some reason i'm getting v8 crashes
    without this when shuting down unity-mir

  [ Gerry Boland ]
  * Use focusRequested signal from AppManager. WM: AppManager has new
    signal to ask shell to request focus for app - use it to properly
    animate and focus the app. If app wants to be side stage, but no
    side stage available, override the application stage.

  [ Nick Dedekind ]
  * Only use the root action state as a unitymenumodel ActionStateParser
    when needed.

  [ Andrea Cimitan ]
  * Move the close app icon on top left.
  * The header of category list is already on screen after unlock

  [ Michael Zanetti ]
  * Make the greeter's clock update in sync with the indicators.

  [ Omer Akram ]
  * Increase dash header height to 5gu.

  [ Nicolas d'Offay ]
  * Standardised expansion speed in scopes.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 449

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

unity8 (7.82+13.10.20131011.1-0ubuntu1) saucy; urgency=low

  [ Michał Sawicz ]
  * Fix frequent application IDs and drop old AppsAvailableForDownload
    model.
  * Unrevert r388 now that we have fixed the infinite loop it was
    causing in Qt.

  [ Steve Langasek ]
  * Don't keep a long-lived connection open to upstart when we only use
    it for two events, one at load time and one at unload time.

  [ Lars Uebernickel ]
  * VolumeControl: use 'volume' instead of 'scroll' action The volume
    action doesn't show a notification.

  [ Michael Terry ]
  * Disable DragHandle on right side of screen while the greeter is
    animating

  [ Marcus Tomlinson ]
  * Added missing "enabled" property to "progressMenu" component in the
    menu item factory.

  [ Michael Zanetti ]
  * Add scaleTo: "fit" mode support to LazyImage

  [ Andrea Cimitan ]
  * Add music and video renderers
  * Use shell.edgeSize for BottomBar's EdgeDragArea, detecting gestures
    only when they are within the edgeSize.

  [ Nick Dedekind ]
  * Removed greeter "toHome" animation (LP#1092976) (LP: #1092976)
  * Only show Snap Decision notification actions when available.

  [ Albert Astals ]
  * Dash: Set delegate creation range for inner itemviewss If it's above
    the list viewport we set it to the end of the list to precache the
    last items It it's below the list viewport we set it to the
    beginning to precache the first items Otherwise we set it to the
    part of the viewport in the view Approved by: Michał Sawicz.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 435

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 11 Oct 2013 09:05:30 +0000

unity8 (7.82+13.10.20131010-0ubuntu1) saucy; urgency=low

  [ David Callé ]
  * Small logic change in preview descriptions line breaks. Multiple new
    lines are now replaced by multiple br tags.

  [ Nick Dedekind ]
  * Use indicator identifier for indicators-client list item label.
  * Make sure overflow indicators are hidden and not the search label.

  [ Mirco Müller ]
  * Tweaks to notifications to improve spec-compliance. - updated
    notifications-qmltest to reflect the use of a variant-map for the
    hints - made text-fields as heigh as buttons - made the summary
    align horizontally to the icon - updated button-height and bubble-
    background.

  [ Pawel Stolowski ]
  * Handle category_order_changes signal from scopes (used in Home only)
    and reorder categories accordingly.
  * Implementation of albumart image provider for audio content.

  [ Michael Terry ]
  * Hide the greeter when an app is focused, fixing snap decisions
    launching an app in the greeter (like receiving a call).

  [ Michael Zanetti ]
  * Launcher - remove support for pinning items in the backend After the
    latest design changes, recent apps is everything that is contained
    in the ApplicationManager. So no need for storing anything else than
    pinned apps in the config.

  [ Michał Sawicz ]
  * Remove the mir socket before starting unity8 during autopilot tests.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 420

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 10 Oct 2013 04:15:13 +0000

unity8 (7.82+13.10.20131008.1-0ubuntu1) saucy; urgency=low

  [ Michal Hruby ]
  * Add Scope::isActive property and corresponding tests. (LP: #1230352)

  [ Daniel d'Andrada ]
  * Move OSKController to the front as it will now also block input
    meant to the OSK That's in the unity-mir implementation. The
    SurfaceFlinger one is still an empty noop. Currently, when the OSK
    is up, both shell and OSK get user input, thus we need the
    OSKController to shield our shell components from them. (LP:
    #1236773)

  [ Michał Sawicz ]
  * Add Scope::isActive property and corresponding tests. (LP: #1230352)
  * Force focus back on shell in case it loses it for some reason.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 409

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

unity8 (7.82+13.10.20131008-0ubuntu1) saucy; urgency=low

  [ Michał Sawicz ]
  * update previews to match design. (LP: #1224555)
  * Add an InputFilterArea in Notifications. (LP: #1233411, #1235215)

  [ Ying-Chun Liu ]
  * update previews to match design. (LP: #1224555)

  [ Albert Astals ]
  * Unrevert 376 by reverting r395 and a small fix to fix the cpu
    hogging issue . (LP: #1124567)

  [ Michael Terry ]
  * Add Showable.showNow() method and use it in Shell to immediately
    show greeter when we blank the screen rather than animating it. (LP:
    #1233564)

  [ Michael Zanetti ]
  * update previews to match design. (LP: #1224555)

  [ Diego Sarmentero ]
  * update previews to match design. (LP: #1224555)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 404

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 08 Oct 2013 02:57:55 +0000

unity8 (7.82+13.10.20131007-0ubuntu1) saucy; urgency=low

  [ Michał Sawicz ]
  * Respect pre-set import and library paths and prevent segfault in
    startShell.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 399

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

unity8 (7.82+13.10.20131005-0ubuntu1) saucy; urgency=low

  [ Michał Sawicz ]
  * Revert r376 that caused constant CPU usage due to the
    ActivityIndicator.

  [ Nick Dedekind ]
  * Removed indicators-client autopilot tests. (LP: #1234736)

  [ Albert Astals ]
  * Revert r388. (LP: #1235268)

  [ Christopher Lee ]
  * Removes passing -fullscreen to unity8 when on the device (as per bug
    #1235065). (LP: #1235065)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 396

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Sat, 05 Oct 2013 11:45:14 +0000

unity8 (7.82+13.10.20131004.2-0ubuntu1) saucy; urgency=low

  * Revert 7.82+13.10.20131004.1-0ubuntu1 back to
    7.81.3+13.10.20130927.3-0ubuntu1 due to CPU hogging issue with
    7.82+13.10.20131004.1-0ubuntu1.

 -- Loïc Minier <loic.minier@ubuntu.com>  Fri, 04 Oct 2013 21:22:29 +0200

unity8 (7.82+13.10.20131004.1-0ubuntu1) saucy; urgency=low

  [ Michał Sawicz ]
  * Bump to indicate support for extended snap decisions.
  * Make Tile themeable, add renderers for Dash Plugins and weather.
    (LP: #1231948)
  * Drop network agents now that they're in indicator-network instead.

  [ Michal Hruby ]
  * Differentiate generic and music carousels.
  * Use the thumbnailer image provider for scope results that don't
    specify icon as well as for previews.
  * Added an indicator which is displayed in the search bar whenever a
    search is in progress. Added accompanying test in tst_PageHeader.
  * Expose rendererHint to shell.

  [ Albert Astals ]
  * Update pot file. (LP: #1232374)
  * Only enable the animation when the item is on screen (i.e. !culled)
    . (LP: #1200374)
  * Do not crash on positionAtBeginning if the list is empty .
  * Enable/disable running apps height animation in a less error prone
    way.

  [ Michael Terry ]
  * Use a chevron after 'Skip intro' and drop the underlining.
  * Load testability driver when QT_LOAD_TESTABILITY is set. (LP:
    #1226234)
  * Listen to the system setting StatsWelcomeScreen, which tells us
    whether to show user-specific infographic data in the greeter. (LP:
    #1207857)

  [ Gerry Boland ]
  * WM: ensure focusedApplicationWhenUsingScreenshots reset when unused,
    and only used when set. Fixes window focus conflict between shell
    and ApplicationManager.

  [ Nick Dedekind ]
  * Removed deprecated Unity.IndicatorsLegacy plugin.
  * Added actionState parser to the indicators-client text printer so
    that we get the icon.
  * Moved indicator page titles to the root action state of menu model.
    (LP: #1223635)

  [ Mirco Müller ]
  * Added rendering- and interaction-support for the first three
    extended snap-decision dialog-cases password-entry, user-
    authentication and simunlock.

  [ Daniel d'Andrada ]
  * Revert the reversion of r304 since it doesn't seem to crash anymore
    Original commit was Reset apps scope when returning from app to dash
    (LP #1193419) If an app is on foreground and you perform a long
    left-edge swipe to minimize it, and therefore return to the dash,
    the dash should be in the Applications scope and showing the
    running/recents applications. (LP: #1193419)

  [ Andrea Cimitan ]
  * Add behaviours to the hud reveal. (LP: #1224480, #1224633)
  * Make Tile themeable, add renderers for Dash Plugins and weather.
    (LP: #1231948)

  [ Michael Zanetti ]
  * fix inserting into quicklistmodel.
  * Drop useStorage argument and use exising LAUNCHER_TESTING define for
    this decision.

  [ Omer Akram ]
  * Make the volume/brightness slider changes realtime. (LP: #1227595)

  [ Nicolas d'Offay ]
  * Fixed black colour on the first of the month due to division. (LP:
    #1233657)
  * Added an indicator which is displayed in the search bar whenever a
    search is in progress. Added accompanying test in tst_PageHeader.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 390

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 04 Oct 2013 06:55:16 +0000

unity8 (7.81.3+13.10.20130927.3-0ubuntu1) saucy; urgency=low

  [ Michal Hruby ]
  * Correctly handle image URI scheme in results.

  [ Michał Sawicz ]
  * Make SHOW_DASH and HIDE_DASH close the current preview. (LP:
    #1231404)
  * Add a LazyImage component that shows an activity spinner for long-
    loading images and handles aspect ratio properly.
  * Fix Qt 5.1 FTBFS and suppress some build warnings.

  [ Albert Astals ]
  * Make sure we always have least have one column in the gridview. (LP:
    #1225391)
  * LVWPH: Make sure we always overshoot vertically. (LP: #1229851)
  * Remember the expanded categoryId and not the expanded index The
    index can change on search, and we still want to maintain it
    expanded in that case. (LP: #1230216)
  * Fix showHeader in an edge case of notShownByItsOwn Not all the tests
    i've added fail without the code fix, but i've added them just to be
    more covered . (LP: #1230187)

  [ Diego Sarmentero ]
  * Handling error signal from the DownloadTracker plugin (BUG:
    #1229744). (LP: #1229744)
  * Remove "Reviews and Comments" section from Application Preview until
    the feature is ready (BUG: #1226632) - Detect when the keyboard is
    being shown to allow the user to scroll the Preview even more if
    necessary to interact with the components at the bottom of that
    preview, and don't leave those components obscured behind the
    keyboard (BUG: #1226638). (LP: #1226632, #1224717, #1226638)

  [ Nick Dedekind ]
  * Brought messaging indicator inline with UnityMenuModel &
    UnityMenuAction. (LP: #1217676, #1217678)

  [ Pawel Stolowski ]
  * Support canned search queries returned by Home Scope.
  * Cancel previous actions and previews on new activation / preview.
    Expose previewed data row in Preview object.

  [ Michael Terry ]
  * Only enable the Bottombar when the HUD is available. (LP: #1220306)
  * Increase the "Skip intro" clickable area, making dismissing the edge
    demo intro feel more natural. (LP: #1220632)

  [ Michael Zanetti ]
  * drop our CrossFadeImage in favor of the SDK one. (LP: #1227783)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 358

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 27 Sep 2013 14:13:22 +0000

unity8 (7.81.3+13.10.20130924.2-0ubuntu1) saucy; urgency=low

  [ Michal Hruby ]
  * Fix the signal prototypes on music grid renderer. (LP: #1228390)

  [ Michael Zanetti ]
  * use less auto variables, align coding style, constify and Qt'ify API
    in AccountsService plugin.

  [ Nick Dedekind ]
  * Re-enable MenuContentActivator in Indicators.

  [ Albert Astals ]
  * LVWPH: Update the section header on list change events.

  [ Pawel Stolowski ]
  * Check results model ptr returned by GetResultsFromCategory method
    from UnityCore. (LP: #1228097, #1211595)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 340

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 24 Sep 2013 14:40:01 +0000

unity8 (7.81.3+13.10.20130919.3-0ubuntu1) saucy; urgency=low

  [ Michal Hruby ]
  * Add support for music grid renderer to GenericScopeView.

  [ Nick Dedekind ]
  * Fixed the removal of messaging widget due to incompatible action
    state. (LP: #1225017)

  [ Christopher Lee ]
  * Addition of initial autopilot tests for the application lifecycle.

  [ Lars Uebernickel ]
  * VolumeControl: use action of the new indicator indicator-sound
    recently gained an action to increase and decrease the volume. This
    patch makes use of that to get rid of a bus round trip (to get the
    current volume) and a race (when the volume gets set between
    fetching the current volume and setting the new volume). (LP:
    #1219057)

  [ Michael Terry ]
  * When AccountsService.backgroundFile is unset/invalid, have the
    greeter fall back to whatever the shell background is.
  * Add a tiny SessionBroadcast plugin that listens to unity-greeter-
    session-broadcast for the ShowHome signal.

  [ Daniel d'Andrada ]
  * Remove obsolete, unused graphics.
  * Make MouseTouchAdaptor work with multiple QWindows.

  [ Michael Zanetti ]
  * change how icons are searched a) try to find it the Icon as is b)
    prepend with Path if a Path variable is given c) fall back to the
    image://theme/ with just the icon name . (LP: #1225186)
  * fix an issue with removing a running app from the launcher and
    always store pinning to the config.
  * collapse any open preview when programmatically switching current
    dash index. (LP: #1221137)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 333

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

unity8 (7.81.3+13.10.20130916-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * allow left edge gesture to minimize apps even when launcher is
    already visible.
  * Don't hide the launcher on changes in the stages.
  * ssh is now installed per default, but it's set to manual in the
    ssh.override.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 320

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

unity8 (7.81.3+13.10.20130912-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * add support for finding icons from click package apps in the
    launcher.
  * update to latest launcher API for better integration with the
    AppManager.

  [ Ricardo Mendoza ]
  * Fixes problems related to image 20130912.0, amongst: * Fix autopilot
    tests by preventing blocking of input during HUD button animations,
    only when fully visible * Fix loading of unity-mir library, major
    version wasn't specified so unless the dev package was there it
    would fail.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 316

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 12 Sep 2013 13:47:59 +0000

unity8 (7.81.3+13.10.20130911.1-0ubuntu1) saucy; urgency=low

  [ Michael Terry ]
  * Switch from deprecated image://gicon/ to new image://theme/.

  [ Gerry Boland ]
  * Add OSKController so shell can control OSK correctly on Mir.
  * Remove InputFilterArea for bottom edge swipes, as applications also
    listen for such swipes for Toolbar reveal.

  [ Ricardo Mendoza ]
  * Select the backend to use dynamically on runtime according to the
    QPA selected by the system.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 311

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

unity8 (7.81.3+13.10.20130911-0ubuntu1) saucy; urgency=low

  [ Michal Hruby ]
  * Hide all gicon strings from the shell and use the image://theme icon
    provider that was recently added to the SDK.

  [ Gerry Boland ]
  * Convert to new ApplicationManager API.

  [ Nick Dedekind ]
  * Updated access point design as per spec.
  * Indicator visibility based on connection with backend service.

  [ Albert Astals ]
  * Dash: Make assignments bindings This way if the model changes the
    item value also changes.

  [ Michael Zanetti ]
  * adds support for highlighting the currently focused application in
    the launcher, adds tests.
  * include ~/.local/share/applications in launcher's .desktop file
    search path.
  * shrink size of area for revealing the HUD button and make it
    disappear on release again. fixes 1219035. (LP: #1219035)
  * revert revision 304 as it makes the Shell crash.

  [ Michael Terry ]
  * Allow testers to set custom password or pin in demo mode, rather
    than hardcoding them.
  * Have the greeter use AccountsService to determine its background.
    (LP: #1218402)
  * Listen to changes in the "show edge demo" AccountsService setting.

  [ Daniel d'Andrada ]
  * Update fake/mock plugins so that "./run --fake" works well again -
    You can now see the thumbnails of the fake running applications once
    again. - You no longer get hundreds of warnings due to icons not
    found.
  * Reset apps scope when returning from app to dash (LP #1193419) If an
    app is on foreground and you perform a long left-edge swipe to
    minimize it, and therefore return to the dash, the dash should be in
    the Applications scope and showing the running/recents applications.
    (LP: #1193419)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 306

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 11 Sep 2013 00:54:31 +0000

unity8 (7.81.3+13.10.20130905.2-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * Integrate Launcher with AppManager.

  [ Nick Dedekind ]
  * Removed FIXME from slider int->double conversion.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 291

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 05 Sep 2013 10:48:02 +0000

unity8 (7.81.3+13.10.20130904.1-0ubuntu1) saucy; urgency=low

  [ Nicolas d'Offay ]
  * Switched infographic background at design's request.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 287

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 04 Sep 2013 07:34:57 +0000

unity8 (7.81.3+13.10.20130904-0ubuntu1) saucy; urgency=low

  [ mhall119 ]
  * Add a little bit of text to the last step of the tour telling the
    user how to end it and get to their phone.

  [ Jussi Pakkanen ]
  * Use CCache if it is installed.

  [ Nick Dedekind ]
  * Multiple icon/label support for indicators.

  [ Albert Astals ]
  * Remove unneeded role.

  [ Lars Uebernickel ]
  * Fall back to "ubuntu-mobile" icon theme if $UBUNTU_ICON_THEME is
    unset.

  [ Michael Zanetti ]
  * Use MouseAreas in DashBar to enable clicking again.
  * load launcher default config from existing dconf key.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 285

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 04 Sep 2013 03:02:57 +0000

unity8 (7.81.3+13.10.20130903.1-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * workaround quicklist text color.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 277

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 03 Sep 2013 06:09:36 +0000

unity8 (7.81.3+13.10.20130830-0ubuntu1) saucy; urgency=low

  [ Pawel Stolowski ]
  * Implement a virtual 'All' filter option.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 275

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

unity8 (7.81.3+13.10.20130829.2-0ubuntu1) saucy; urgency=low

  [ Michael Terry ]
  * Implement launcher item backend via AccountsService.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 272

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

unity8 (7.81.3+13.10.20130829.1-0ubuntu1) saucy; urgency=low

  [ Michael Terry ]
  * Make sure greeter and lockscreen backgrounds are always defined,
    even if the wallpaper preference string is bogus. (LP: #1208889,
    #1208894)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 270

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

unity8 (7.81.3+13.10.20130829-0ubuntu1) saucy; urgency=low

  [ Andrea Cimitan ]
  * Streamline some new HUD interactions to be more consistent with the
    Unity Launcher.

  [ Michael Zanetti ]
  * setting the launcher's extensionSize delayed to position the view
    correctly at the beginning .

  [ Bill Filler ]
  * add new telephony apps (dialer, messaging, contacts) to launcher and
    Home scope.

  [ Michael Terry ]
  * Implement edge demos on first boot. Build-Depends: +dbus-test-
    runner, +qtbase5-dev-tools.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 267

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

unity8 (7.81.3+13.10.20130828.1-0ubuntu1) saucy; urgency=low

  [ Andrea Cimitan ]
  * Hide the LauncherPanel when it's really hidden, by changing visible
    to false.

  [ Gerry Boland ]
  * Fix sidestage applications - they were being ignored in the show-
    application-surface logic. (LP: #1217027, #1210079)

  [ Michał Sawicz ]
  * Raise the exception if typing failed in autopilot.

  [ Nick Dedekind ]
  * Added location indicator defaults.

  [ Michael Zanetti ]
  * increase minimal dragging width for dismissing apps with left edge
    make it a configurable parameter and adjust animation to look like
    requested in the bug report . (LP: #1213153)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 262

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

unity8 (7.81.3+13.10.20130827.1-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * unset model in quicklist before closing it.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 256

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

unity8 (7.81.3+13.10.20130827-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * Theme the Quicklist Popover.

  [ Albert Astals ]
  * Apply expandedIndex on delegate creation bug #1213033. (LP:
    #1213033)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 254

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

unity8 (7.81.3+13.10.20130826.5-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * tweak launcher folding and visuals according to feedback from
    design: - increase foldingStartHeight - Introduces a
    foldingStopHeight. Folding only happens between the
    foldingStartHeight and the foldingStopHeight. - Only change
    brightness while folding - remove highlight of pressed icon -
    decrease launcher's width by half a grid unit.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 251

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 26 Aug 2013 22:09:43 +0000

unity8 (7.81.3+13.10.20130826.4-0ubuntu1) saucy; urgency=low

  [ Michał Sawicz ]
  * Add module entry in HudClient's qmldir.

  [ Jussi Pakkanen ]
  * Let Ninja parallelize itself.

  [ Nick Dedekind ]
  * Abstraction of indicator menu item properties prior to move into
    common components library.

  [ Christopher Lee ]
  * Added autopilot-tests for ephemeral, interactive and snap-decision
    notifications.

  [ Mirco Müller ]
  * Added autopilot-tests for ephemeral, interactive and snap-decision
    notifications.

  [ Michael Zanetti ]
  * only search visible children in findChild, add findInvisibleChild
    for others.
  * Added autopilot-tests for ephemeral, interactive and snap-decision
    notifications.

  [ Thomi Richards ]
  * Added autopilot-tests for ephemeral, interactive and snap-decision
    notifications.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 249

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

unity8 (7.81.3+13.10.20130826.2-0ubuntu1) saucy; urgency=low

  [ Albert Astals ]
  * Don't include QtQML It includes LOTS of files we don't need.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 243

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

unity8 (7.81.3+13.10.20130826.1-0ubuntu1) saucy; urgency=low

  * Automatic snapshot from revision 241

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 26 Aug 2013 06:08:33 +0000

unity8 (7.81.3+13.10.20130826-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * delay move operations if the start dragging operation is running
    This prevents items to left in wrong places when transitions clash.
  * add empty setUser to allow compiling in jenkins again until the
    branch that matches unity-api is ready to land. .
  * add count and progress overlay information to real model too.

  [ Pawel Stolowski ]
  * Changed the type of setActive argument from
    QVector<AbstractFilterOption *>::size_type to unsigned int.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 240

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 26 Aug 2013 02:31:42 +0000

unity8 (7.81.3+13.10.20130821.2-0ubuntu1) saucy; urgency=low

  [ Michael Terry ]
  * Listen to display-power-changed rather than system-power-changed
    signals when showing the greeter; ignore such signals when the
    proximity sensor is active. (LP: #1214477)

  [ Pawel Stolowski ]
  * Added a role for accessing progress-source property of categories.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 233

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 21 Aug 2013 22:09:53 +0000

unity8 (7.81.3+13.10.20130821.1-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * allow testing at 11:13. Old code failed because the text actually
    says "11:13 AM".
  * add some checks if we actually clicked an item or in the spacing
    between them gets rid of some warnings printed by the launcher .

  [ Michał Sawicz ]
  * Update runtime deps in the build script.

  [ Nick Dedekind ]
  * Added/Updated legacy network indicator components to use with new
    indicator backend.

  [ Albert Astals ]
  * Fix insertions/removals on the qlimitproxymodel . (LP: #1213959)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 230

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

unity8 (7.81.3+13.10.20130821-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * added support for count emblems and progress overlays on the
    launcher.

  [ Pawel Stolowski ]
  * Add role for getting filter options model. Add method to activate
    option based on index or id.

  [ Ted Gould ]
  * Mark indicators-client as providing an indicator-renderer.

  [ Nick Dedekind ]
  * Added flatmenuproxymodel pass-through signals from qmenumodel.
  * Renamed indicator-messaging to indicator-messages.

  [ Gerry Boland ]
  * Typo fix in FrequentlyUsedAppsModel.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 224

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 21 Aug 2013 08:05:13 +0000

unity8 (7.81.3+13.10.20130820.2-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * initial support for quicklists For now they support pinning and
    removing of items.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 217

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 20 Aug 2013 10:09:36 +0000

unity8 (7.81.3+13.10.20130820-0ubuntu1) saucy; urgency=low

  [ Andrea Cimitan ]
  * Implement background changing through gsettings. Make sure it does
    fallback to default background when needed.

  [ Michael Zanetti ]
  * Implement background changing through gsettings. Make sure it does
    fallback to default background when needed.
  * Add Drag'n'drop support to Launcher As dragging an item pins it to
    the launcher this also contains initial quicklist and pinning
    support in the plugin part.

  [ Michał Sawicz ]
  * Fix generic preview wrapping and force rich text parsing.

  [ Michal Hruby ]
  * Remove the override for Apps available for download, click scope
    provides these now.
  * Hide rating widgets when scope provides rating set to < 0.0. Also
    fallback to regular preview image if there are no more_screenshots
    specified.

  [ Albert Astals ]
  * Make sure minYExtent is updated before setting the new content
    height Otherwise bad things can happen in the positioning .

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 215

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 20 Aug 2013 02:08:42 +0000

unity8 (7.81.3+13.10.20130816.3-0ubuntu1) saucy; urgency=low

  [ Michal Hruby ]
  * Implement overrideResults() method, which allows us to seamlessly
    combine real scope data with mocked data.

  [ Michał Sawicz ]
  * Wait for activeFocus before typing in autopilot tests. (LP:
    #1212580)

  [ Nick Dedekind ]
  * Fixed network indicator password dialog not appearing. (LP:
    #1212730)
  * Remove time & battery indicator service info.

  [ Albert Astals ]
  * Dash category expansion.
  * Fix crash in the shell test Give the item a parent, otherwise the
    qml engine decides to adopt it and when we do the deleteLater on
    them, they have been already deleted. Since we are the parents, we
    don't need to call the deleteLAter eiether they'll be properly
    deleted on our deletion.

  [ Michael Zanetti ]
  * make entering text in lockscreen tests more robust. (LP: #1212580)

  [ Michael Terry ]
  * Define the 'build' target as PHONY so make doesn't get confused by
    our 'build' script.
  * Add a test for the Powerd plugin shell support.

  [ Pawel Stolowski ]
  * Bindings for filters.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 208

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 16 Aug 2013 14:11:35 +0000

unity8 (7.81.3+13.10.20130814.3-0ubuntu1) saucy; urgency=low

  [ Ted Gould ]
  * Upstart signals to control indicator services.

  [ Nick Dedekind ]
  * Replaced indicator menu listView with tabs view.
  * Transition Unity.Indicators to UnityMenuModel.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 197

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 14 Aug 2013 14:33:39 +0000

unity8 (7.81.3+13.10.20130814.1-0ubuntu1) saucy; urgency=low

  [ Michał Sawicz ]
  * Add AppPreview.

  [ Nick Dedekind ]
  * Use key from indicator service file to source indicator positions.

  [ Diego Sarmentero ]
  * Add AppPreview.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 193

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

unity8 (7.81.3+13.10.20130813.1-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * don't scale the EARLY ALPHA warning text bigger than the screen is.

  [ Michał Sawicz ]
  * Add debug logging to passphrase entry.

  [ Albert Astals ]
  * Remove unneeded stuff from CMakelists.txt set(CMAKE_AUTOMOC ON)
    include(FindPkgConfig) find_package(Qt5Core REQUIRED)
    find_package(Qt5Quick REQUIRED) Are already on the top-level
    CMakeLists.txt so no need to write them again Well, actually the
    Qt5Core wasn't and i added it, it's not really necessary since it's
    pulled by the others that depend on it, but it doesn't hurt to be
    explicit.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 189

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 13 Aug 2013 14:08:32 +0000

unity8 (7.81.3+13.10.20130812.1-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * preserve lockscreen's background wallpaper's aspect ratio. (LP:
    #1208892)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 184

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

unity8 (7.81.3+13.10.20130812-0ubuntu1) saucy; urgency=low

  [ Albert Astals ]
  * Fix uses of uninitialized values reported by valgrind.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 182

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 12 Aug 2013 14:33:29 +0000

unity8 (7.81.3+13.10.20130809.1-0ubuntu1) saucy; urgency=low

  [ Michal Hruby ]
  * Set phone form factor for scope requests.

  [ Michał Sawicz ]
  * Add support for plurals and update the translation template.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 179

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

unity8 (7.81.3+13.10.20130809-0ubuntu1) saucy; urgency=low

  [ Michał Sawicz ]
  * Prepare unity8 for cross-building.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 176

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

unity8 (7.81.3+13.10.20130808-0ubuntu1) saucy; urgency=low

  [ Michał Sawicz ]
  * Re-enable battery slider test.

  [ Nick Dedekind ]
  * Workaround for non-deletion of indicator page menu items. (LP:
    #1183065, #1206991)

  [ Albert Astals ]
  * LVPWH: Fix regression handling the sticky top section culling r166
    introduced the regression, this fixes it+tests.
  * Implement+test the maximizeVisibleArea function Tries to show as
    much possible of an index that is already shown on screen Will be
    used for the dash category expansion.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 174

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

unity8 (7.81.3+13.10.20130807-0ubuntu1) saucy; urgency=low

  [ Michał Sawicz ]
  * Drop ppa:ubuntu-unity/next.
  * Revert revision 161 that causes issues with invalid background.

  [ Albert Astals ]
  * Fix off by one in the culling condition If you are on 0 and your
    height is 1 and viewport starts at 1 you have to be culled since you
    are not visible.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 168

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

unity8 (7.81.3+13.10.20130806-0ubuntu1) saucy; urgency=low

  [ Michael Terry ]
  * Show the greeter when powerd tells us to, not just whenever we press
    the power key. (LP: #1186256)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 164

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 06 Aug 2013 03:43:01 +0000

unity8 (7.81.3+13.10.20130805-0ubuntu1) saucy; urgency=low

  [ Michael Terry ]
  * Fixes the lockscreen and swiping on the greeter still being possible
    even when in tablet mode. (LP: #1204984)
  * Watch powerd signals to notice a sleep and unfocus current app when
    that happens.

  [ Michael Zanetti ]
  * make findChild also find invisible childs This considerably
    increases the amount of items to be searched up to a level where
    testShell didn't finish any more with searching. Hence this commit
    also changes findChild to do a breadth-first instead of a depth-
    first search.
  * Read background from GSettings or fallback to default_background.

  [ Andrea Cimitan ]
  * Read background from GSettings or fallback to default_background.

  [ Albert Astals ]
  * Make LVWPH provide a delegateIndex for sectionHeaders This way we
    can match the sectionHeader to the model easier in the qml/js side .
  * Fix tryCompare call The 4th parameter of tryCompare is timeout not
    message .

  [ Daniel d'Andrada ]
  * Read background from GSettings or fallback to default_background.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 162

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

unity8 (7.81.3+13.10.20130802-0ubuntu1) saucy; urgency=low

  [ Michael Terry ]
  * Make hud autopilot tests more reliable by fixing how it calculates
    relative coordinates.

  [ Albert Astals ]
  * Only update the "section" if we are not culling the item If the item
    is not shown we should not care about its section.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 155

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

unity8 (7.81.3+13.10.20130801.1-0ubuntu1) saucy; urgency=low

  [ Michał Sawicz ]
  * Add a disclaimer for the fake applications plugin.

  [ Nick Dedekind ]
  * Removed animations from fake indicator pages.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 152

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 01 Aug 2013 14:30:40 +0000

unity8 (7.81.3+13.10.20130801ubuntu.unity.next-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * implemented new Lockscreen design.

  [ Michał Sawicz ]
  * Fix mock VideoPreview to use the string categoryId as well.

  [ Nick Dedekind ]
  * Added a text tree representation of the qmenumodel to the
    indicators-client application.

  [ Albert Astals ]
  * Don't need deelistmodel here.

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

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

unity8 (7.81.3+13.10.20130730ubuntu.unity.next-0ubuntu1) saucy; urgency=low

  [ Michał Sawicz ]
  * Adapt to Qt 5.1.

  [ Albert Astals ]
  * Adapt to Qt 5.1.

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

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

unity8 (7.81.3+13.10.20130729ubuntu.unity.next-0ubuntu1) saucy; urgency=low

  [ Michal Hruby ]
  * Remove the variant conversions methods as they were moved to dee-qt.

  [ Michał Sawicz ]
  * Re-enable passphrase tests under UInput.
  * Use the new string categoryIds in custom video and music scope
    views. (LP: #1199322)

  [ Nick Dedekind ]
  * Behavioural changes for indicators - Part 1 - Use standard
    animations. - Search bar animation less distracting. - Hinting
    animation shows header. - Vertical velocity detector to reduce
    accidental menu switches in dragging phase.

  [ Gustavo Pichorim Boiko ]
  * Add entries to the new applications resulted from the split of the
    phone-app.

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

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

unity8 (7.81.3+13.10.20130726ubuntu.unity.next-0ubuntu1) saucy; urgency=low

  [ Michal Hruby ]
  * Expose real category ids and not just indices.
  * Provide fallbacks for default renderer.

  [ Daniel d'Andrada ]
  * Give a visual feedback on right-edge drag with no running apps (LP:
    #1116207). (LP: #1116207)

  [ Albert Astals ]
  * Update m_firstVisibleIndex if there's no visible items anymore Also
    remove the check for m_visibleItems.isEmpty() on insert, the
    m_firstVisibleIndex == 0 already protects us against that.

  [ Christopher Lee ]
  * Tests now use a default lightdm mock if not decorated. (LP:
    #1204772)

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 26 Jul 2013 07:06:08 +0000

unity8 (7.81.3+13.10.20130725ubuntu.unity.next-0ubuntu1) saucy; urgency=low

  [ Michal Hruby ]
  * Fix adding items into an empty LVWPH.

  [ Michał Sawicz ]
  * Move to using upstart in run_on_device.
  * Added heeding and qmltest for button-tint hint.
  * Refactoring and cleanup of the Unity8 Autopilot tests.
  * Hide the Unity launcher during autopiloting and skip battery tests
    if unavailable.

  [ Ying-Chun Liu ]
  * Let GenericScope support loading different renderers.

  [ Nick Dedekind ]
  * Removed overview from indicators.
  * Menus for indicators is now created prioritised by distance from
    current item to speed up user experience.
  * Add ApplicationArguments to know the geometry from start.

  [ Mirco Müller ]
  * Added heeding and qmltest for button-tint hint.

  [ Christopher Lee ]
  * Refactoring and cleanup of the Unity8 Autopilot tests.

  [ Thomi Richards ]
  * Refactoring and cleanup of the Unity8 Autopilot tests.

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 25 Jul 2013 03:02:12 +0000

unity8 (7.81.3+13.10.20130718ubuntu.unity.next-0ubuntu1) saucy; urgency=low

  [ Andrea Cimitan ]
  * Add support for the colour palette.

  [ Omer Akram ]
  * fix the calendar icon in the launcher. (LP: #1201905)

  [ Nick Dedekind ]
  * Export indicator plugin symbols using Q_DECL_EXPORT.

  [ Ying-Chun Liu ]
  * Don't include .moc in previewbindingstest.cpp.

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

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

unity8 (7.81.3+13.10.20130717ubuntu.unity.next-0ubuntu1) saucy; urgency=low

  [ Daniel d'Andrada ]
  * Remove dead code: Showable::showWithoutAnimation.

  [ Nick Dedekind ]
  * Split Plugins export macro into export_qmlfiles and
    export_qmlplugins. Added qmltypes to indicators plugin.

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 17 Jul 2013 03:14:49 +0000

unity8 (7.81.3+13.10.20130716ubuntu.unity.next-0ubuntu1) saucy; urgency=low

  [ Pete Woods ]
  * Rename the demo user "single" to "phablet" Fix the infographics on
    the device At the moment the mock lightdm backend we are using says
    the current user is called "single", while in reality the processes
    all run as the "phablet" user.

  [ Michał Sawicz ]
  * Only use ppa:ubuntu-unity/next and clean build scripts and CODING,
    accordingly.
  * Do not recommend indicator-power and indicator-sound. On device
    they're provided by lp:indicator-server for the time being.
  * Fix the Network page to provide the correct token. (LP: #1201529)

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 16 Jul 2013 02:32:03 +0000

unity8 (7.81.3+13.10.20130714ubuntu.unity.next-0ubuntu1) saucy; urgency=low

  [ Michael Terry ]
  * Change Ok to OK. (LP: #1131842)

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

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

unity8 (7.81.3+13.10.20130712ubuntu.unity.next-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * Make use of the launcher API defined in unity-api and separate the
    model from the backend.

  [ Michał Sawicz ]
  * Issue wrap-and-sort -abt on debian/.

  [ Nick Dedekind ]
  * Moved indicators-client code into unity8. (LP: #1191132, #1191822)

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

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

unity8 (7.81.3+13.10.20130711ubuntu.unity.next-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * invert the home button too in case the whole panel is inverted. (LP:
    #1199622)

  [ Michał Sawicz ]
  * Make the OpenEffect non-live by default to improve performance. (LP:
    #1124584)

  [ Ying-Chun Liu ]
  * Add Generic Preview. Modify GenericScopeView to support activate and
    preview.

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 11 Jul 2013 03:00:53 +0000

unity8 (7.81.3+13.10.20130710ubuntu.unity.next-0ubuntu1) saucy; urgency=low

  [ Michael Zanetti ]
  * removed unused old file ShortcutsContainer.qml.

  [ Michał Sawicz ]
  * Fix fetching data from scopes in the custom scope pages. (LP:
    #1199322)

  [ Ying-Chun Liu ]
  * Fix references to scope data. (LP: #1199322)

  [ Albert Astals ]
  * Fix showHeader animation when the header is half shown at top .
  * Disable -pedantic on the private Qt headers .

  [ Pawel Stolowski ]
  * Bindings for SocialPreview.

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 10 Jul 2013 02:32:00 +0000

unity8 (7.81.3+13.10.20130709ubuntu.unity.next-0ubuntu1) saucy; urgency=low

  [ Michal Hruby ]
  * Implement CategoryResults based on DeeFilterModel.

  [ Nick Dedekind ]
  * Added plugin cmake procedure for qmltypes files.

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

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

unity8 (7.81.3+13.10.20130708ubuntu.unity.next-0ubuntu1) saucy; urgency=low

  [ Michael Terry ]
  * Ensure the past circle animations complete Currently, all the
    animations stop as soon as the present circles are all visible. This
    change ensures that the animations run to completion.

  [ Michael Zanetti ]
  * improve launcher flicking bahavior - fix initial snapping - improve
    foldingAreas behavior - increase clickFlick speed to flick 4 items.

  [ Albert Astals ]
  * Remove workarounds for Qt bug 28403 . (LP: #28403)

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 08 Jul 2013 02:34:23 +0000

unity8 (7.81.3+13.10.20130704ubuntu.unity.next-0ubuntu1) saucy; urgency=low

  [ Didier Roche ]
  * Clean packaging for entering saucy and following daily release guidelines
  * Automatic snapshot from revision 49 (bootstrap)

  [ Michał Sawicz ]
  * Fix unity8.pot file.
  * Support the simplified theming from ubuntu-ui-toolkit.
  * Use AbstractButtons instead of Button { color: "transparent" } that
    doesn't work.

  [ Albert Astals ]
  * ListViewWithPageHeader implementation in C++. (LP: #1171918)
  * LVWPH: Do not crash on showHeader if we don't have a header .
  * Fix bug when setting the same model twice to a QLimitProxyModelQML.
  * Add some const & Saves us some microseconds in copying stuff.

  [ Daniel d'Andrada ]
  * Make Greeter and Stage use the new DragHandle component. So they no
    longer use Revealers. Now a directional drag gesture is required to
    start the animation that brings back a "minimized" application when
    the dash is on foreground. Besides that, now they have the following
    feature:  - Action only completes succesfully if you drag through at
    least half the    screen width or if your swipe is fast enough. The
    shorter the swipe, the faster it has to be for the action to auto-
    complete.
  * DirectionalDragArea: add touchSceneX, touchSceneY, and sceneDistance
    properties.
  * DirectionalDragArea: emit draggingChanged() on direct recognition
    draggingChanged() should be emited when status change from
    WaitingForTouch directly to Recognized.
  * update CODING instructions for building & running.
  * DragHandle: add stretch and hintDisplacement properties.
  * DragHandle: fix hinting Revision 64 had a bad interaction with
    revision 66 (that added line was lost in the merge/rebase process).
    tst_DragHandle::hintingAnimation() points out the problem (fails on
    line 388).
  * Make Panel use DragHandles instead of a Revealer - A directional
    drag gesture is needed reveal the panel when fullscreen. - better
    logic for deciding when to auto-complete the show/hide animation -
    hinting animation to close the panel - Tapping on menu bar no longer
    opens nearest indicator menu - No closing with handle click.

  [ mhall119 ]
  * Fix build script error from extra blank line. (LP: #1196322)

  [ Nick Dedekind ]
  * Changed shellImportPath to return a list of paths. Added
    prependImportPaths and changed appendImportPaths to check for
    duplicates.

  [ Mirco Müller ]
  * Added support and tests for expanding snap-decisions with more than
    2 actions passed in.

  [ Michael Zanetti ]
  * As requested by design, decreasing wobblyness in the
    WrongPasswordAnimation.
  * improve the bzr commit hook - don't run qmltests in here, it takes
    too long - don't abort commit on failed tests, its too annoying -
    instead, print a fat warning and backup the commit message to be
    reused after uncommitting and fixing the tests.
  * edge hinting tweaks - change edge hinting behavior to only happen on
    onPressed and immediately snap back - fix edge hinting to not happen
    if the Greeter is locked .

  [ Michael Terry ]
  * Fix "Tap to Unlock" text not appearing when in tablet greeter mode
    with only one user.
  * Use libusermetrics to provide infographic data.
  * Delete builddir/ when running "debuild clean".

  [ Pawel Stolowski ]
  * Bindings for preview and activation requests.

  [ Kevin Gunn ]
  * update CODING instructions for building & running.

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 04 Jul 2013 12:44:19 +0000

unity8 (7.81.3) UNRELEASED; urgency=low

  * Choose more appropriate values for edge-drag gestures (LP: #1194150)

 -- Daniel d'Andrada <daniel.dandrada@canonical.com>  Fri, 28 Jun 2013 16:28:24 -0300

unity8 (7.81.2) saucy; urgency=low

  * Translation updates.

  [ Michał Sawicz ]
  * Fix icons in ApplicationsFilterGrid.qml.
  * Support flipped image in run_on_device.
  
  [ Michael Zanetti ]
  * Don't clear lockscreen when it's fading out.
  * Reworked Launcher folding.
  * Tweak Launcher revealing.

  [ Michal Hruby ]
  * Add content_type property to category models.

 -- Michał Sawicz <michal.sawicz@canonical.com>  Wed, 26 Jun 2013 18:10:39 +0200

unity8 (7.81.1) saucy; urgency=low

  * Translation updates.

  [ Michał Sawicz ]
  * Don't limit installed apps.
  * Pre-optimize PNGs to speed-up builds.
  * Clean up build scripts.

  [ Daniel d'Andrada ]
  * Use DirectionalDragArea in BottomBar.

 -- Michał Sawicz <michal.sawicz@canonical.com>  Fri, 21 Jun 2013 17:37:02 +0200

unity8 (7.81.0) saucy; urgency=low

  * Translation updates.

  [ Michał Sawicz ]
  * Drop People lens.
  * Support git-backed checkout.
  * Revert focus stealing prevention for new apps. Fixes:
    https://bugs.launchpad.net/bugs/1190155.
  * Update CODING after unity8 rename.
  * Update translation template file.
  * Fix notification placement.

  [ Michael Terry ]
  * Show login list when not in narrow mode, instead of only when we have
    multiple users.

  [ Günter Schwann ]
  * Bring back ListView'ed Carousel now that Qt is fixed.

  [ Daniel d'Andrada ]
  * Stage: code cleanup.
  * DirectionalDragArea: added minSpeed and maxSilenceTime constraints.
  * Move Direction enum out of DirectionalDragArea.
  * Added uqmlscene tool and tryFoo targets for manual testing.

  [ Michael Zanetti ]
  * Add Lockscreens.
  * Added right edge hinting to greeter.

  [ Nick Dedekind ]
  * Added Dash tests.

  [ Nicolas d'Offay ]
  * Changed infographic gradient colours.

  [ Mirco Müller ]
  * Integrate notifications.

  [ Pawel Stołowski ]
  * New version with support for smart scopes.

 -- Michał Sawicz <michal.sawicz@canonical.com>  Fri, 14 Jun 2013 12:56:17 +0200

unity8 (7.80.0) saucy; urgency=low

  * Rename to unity8.

 -- Michał Sawicz <michal.sawicz@canonical.com>  Tue, 04 Jun 2013 14:45:29 +0200

qml-phone-shell (1.80) raring; urgency=low

  * Focus/unfocus apps on lock/unlock to make sure keyboard is hidden.

 -- Michał Sawicz <michal.sawicz@canonical.com>  Sat, 01 Jun 2013 00:31:03 +0200

qml-phone-shell (1.79) raring; urgency=low

  [ Michael Terry ]
  * Make greeter look like the desktop one
  
  [ Gerry Boland ]
  * Fix a bug where a minimized app gets focus after closing another app
  * Applied a workaround to reduce flickering when launching apps

  [ Ying-Chun Liu (PaulLiu) ]
  * Make the panel translatable

  [ Michael Zanetti ]
  * Limit people lens to max 50 people. More people can be found with search feature.

 -- Michael Zanetti <michael.zanetti@canonical.com>  Fri, 24 May 2013 17:06:05 +0200

qml-phone-shell (1.78) raring; urgency=low

  [ Sergio Schvezov ]
  * Replacing the music and ski safari mock apps with calendar and weather in 
    the launcher (LP: #1178262).

  [ Daniel d'Andrada ]
  * Support pointer-to-touch event conversion for desktop testing.
  * Use DirectionalDragArea in the Launcher.
  * Add AxisVelocityCalculator component.
  * Use touch instead of pointer interaction in autopilot.

  [ Nick Dedekind ]
  * Enable indicators in greeter.
  * Add DashContent tests.

  [ Michael Terry ]
  * Split mock and test LightDM plugins.
  * Add support for more PAM/LightDM features in the greeter.

  [ Ying-Chun Liu (PaulLiu) ]
  * Add i18n support.
  * Add libc6-dev to Build-Depends.

  [ Michał Sawicz ]
  * Unlock onFocusRequested to unlock on incoming call (LP: #1181654).
  * Use device-services in run_on_device.
  * Filter input in greeter. (LP: #1185443).

  [ Albert Astals Cid ]
  * Remove FilterGrid dimensions bahavior.

  [ Ubuntu Translators Team ]
  * Added translations for 36 languages. Thanks!

  [ Michael Zanetti ]
  * Fix autopilot tests on devices.

 -- Michał Sawicz <michal.sawicz@canonical.com>  Fri, 24 May 2013 17:06:05 +0200

qml-phone-shell (1.77) raring; urgency=low

  [ Mathieu Trudel-Lapierre ]
  * debian/control:
    - Drop indicators-client-plugin* Depends for qml-phone-shell to Recommends.
    - Add/update Vcs-Browser, Vcs-Bzr and add a notice to uploaders. 
  * debian/copyright: fix syntax.

  [ Michał Sawicz ]
  * Drop indicators-client-examples recommends altogether

  [ Renato Araujo Oliveira Filho ]
  * Renamed Media player files to match with new application name.

  [ Daniel d'Andrada ]
  * New: DirectionalDragArea component. An area that detects axis-aligned 
    single-finger drag gestures.
  * Make it possible to send touch events from within QML test code.

 -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Fri, 26 Apr 2013 11:15:00 -0400

qml-phone-shell (1.76) raring; urgency=low

  [ Albert Astals Cid ]
  * Remove QSortFilterProxyModelQML::get() to ensure per-role fetching
  * Highlight matching strings in the HUD
  [ Michał Sawicz ]
  * Dropped support for 12.10
  [ Michael Zanetti ]
  * Update autopilot tests for 1.3 release
  [ Andrea Cimitan ]
  * Use SDK's Panel - enable swipe from bottom to reveal Dash bottom bar
  [ Michael Terry ]
  * Introduce a mock LightDM plugin to prepare for real switch
  [ Daniel d'Andrada ]
  * Move definition of global test targets to main tests CMakeLists file
  [ Mirco Müller ]
  * Introduce Notifications UI, currently only driven by tests

 -- Michał Sawicz <michal.sawicz@canonical.com>  Thu, 16 May 2013 15:52:18 +0200

qml-phone-shell (1.75) raring; urgency=low

  * Fix search history in the dash
  * Hud: No appstack anymore
  * Hud: Support having toolbar items enabled/disabled
  * Hud: remove the app quit toolbar item
  * Tweak to improve the switch application animation
  * Correctly load icons when running on the desktop
  * Use real enum from ApplicationInfo instead of its counterfeit local version
  * Added gdb debugging (-g/--gdb) run_on_device option
  * Drop support for quantal in build_unity script
  * Make out of source builds work in sibling directories
  * Clean up debian/control
  * Build with the new Qt 5.0.2 packages
  * Tests for:
    * IndicatorMenuWindow
    * PeopleFilterGrid

 -- Albert Astals Cid <albert.astals@canonical.com>  Thu, 09 May 2013 15:10:03 +0200

qml-phone-shell (1.74) raring; urgency=low

  [ Albert Astals Cid ]
  * Use new HUD api
  * Improvements to build and run scripts
  * Test for GenericLensView
  * Use -z defs for SHARED and MODULE libraries

 -- Sergio Schvezov <sergio.schvezov@canonical.com>  Fri, 26 Apr 2013 13:14:03 -0300

qml-phone-shell (1.73) raring; urgency=low

  [ Albert Astals ]
  * No need to include lens.h in peoplepreviewdata.h
  * Bumping libhud dependency to use the new libhud-client2

  [ Andrea Cimitan ]
  * Adds test for LensView

  [ Michael Zanetti ]
  * Fix execution of local autopilot tests

 -- Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>  Thu, 25 Apr 2013 13:46:23 -0300

qml-phone-shell (1.72) raring; urgency=low

  * bring greeter closer to desktop design
  * simplify SortFilterProxyModel role management
  * CMake and build script improvements
  * enable volume slider in Overview
  * clean up .bzrignore
  * flatten qmluitests and unittests into generic qmltests
  * split out LimitProxyModel out of SortFilterProxyModel
  * replace fake QML wrappers for Ubuntu.Application with a mock
    implementation
  * hide Frequent and Available categories in Apps lens during search
    (LP: #1170495)
  * add first test utilities
  * use fake Unity plugin for Dash tests
  * generate and package API docs
  * close applications after long-press in dash
  * simplify preview calculation
  * tests for:
    * bad indentation
    * Panel
    * indicators Overview
    * IndicatorItem
    * ListViewWithPageHeader
    * Clock
    * OpenEffect
    * FilterGrids
    * MenuContent
    * header standalone compilation

 -- Michał Sawicz <michal.sawicz@canonical.com>  Fri, 19 Apr 2013 21:16:50 +0200

qml-phone-shell (1.71) quantal; urgency=low

  * add missing python3 dependency

 -- Michał Sawicz <michal.sawicz@canonical.com>  Thu, 11 Apr 2013 17:11:15 +0200

qml-phone-shell (1.70) quantal; urgency=low

  * CMake fixes
  * improve HUD PeakDetector performance
  * initial QML coverage measurement
  * enable coverage analysis for C/C++
  * require out-of-source builds
  * fix incorrect linkage in hudclient.cpp
  * reduce warnings
  * add an optional on-commit test hook
  * tests for:
    * IndicatorRow
    * Tile
    * SearchIndicator
    * trailing whitespace
    * PageHeader
    * SearchHistoryModel
    * ResponsiveFlowView
    * SideStage
    * Indicators
  * move tests into subdirectories
  * increase test setup consistency
  * remove some dead code
  * register CategoryFilter to QML
  * use a static python install path for autopilot
  * merge first stages of libunity-api
  * drop unneeded moc includes

 -- Michał Sawicz <michal.sawicz@canonical.com>  Thu, 11 Apr 2013 14:42:22 +0200

qml-phone-shell (1.69) quantal; urgency=low

  [ Sergio Schvezov ]
  * Removing mocks for calendar, clock and calculator.

  [ Michał Sawicz ]
  * Add entries needed in the .desktop file and change the name and comment.

 -- Sergio Schvezov <sergio.schvezov@canonical.com>  Thu, 04 Apr 2013 19:32:06 -0300

qml-phone-shell (1.68) quantal; urgency=low

  * fix launching SideStage apps when there's no side stage
  * CMake cleanups
  * prevent breakage of local builds
  * added README for qmluitests

 -- Michał Sawicz <michal.sawicz@canonical.com>  Thu, 04 Apr 2013 02:02:27 +0200

qml-phone-shell (1.67) quantal; urgency=low

  * use real data in Apps lens Installed category
  * add --clean option in build scripts
  * add CODING guide
  * install test dependencies in build scripts
  * fix phone app name
  * Tests for:
    * Showable
    * Launcher
    * HUD parametrized actions

 -- Michał Sawicz <michal.sawicz@canonical.com>  Wed, 03 Apr 2013 00:11:00 +0200

qml-phone-shell (1.66) quantal; urgency=low

  * Revert Carousel changes due to crash

 -- Michał Sawicz <michal.sawicz@canonical.com>  Thu, 28 Mar 2013 10:51:20 +0100

qml-phone-shell (1.65) quantal; urgency=low

  * Modifying build dep to require python

 -- Sergio Schvezov <sergio.schvezov@canonical.com>  Wed, 27 Mar 2013 16:07:10 -0300

qml-phone-shell (1.64) quantal; urgency=low

  * Rename ubuntu-gallery to gallery-app
  * Resetting Apps lens content position when swiping from left
  * Make the previews more flexible with different screen sizes
  * Tests for:
    * HUD
    * ResponsiveGridView

 -- Albert Astals Cid <albert.astals@canonical.com>  Wed, 20 Mar 2013 17:44:44 +0100

qml-phone-shell (1.63) quantal; urgency=low

  * Rename telephony-app to phone-app
  * notepad-qml has been renamed to notes-app
  * Use a ListView for the Carousel component for scalability
  * Make sure the greeter stays usable for smaller screens
  * Elide username in greeter when too long
  * Improve Carousel creation time
  * CrossFadeImage fixes
  * Fixed play button size
  * Remove unused files
  * Tests for:
    * Revealer
    * HUD
    * Greeter
    * FilterGrid
    * CrossFadeImage

 -- Albert Astals Cid <albert.astals@canonical.com>  Tue, 19 Mar 2013 17:43:21 +0100

qml-phone-shell (1.62) quantal; urgency=low

  * Use one SpecialItem in HUD AppStack
  * Remove outdated manual tests
  * Improve build scripts
  * Hook up other HUD Toolbar actions
  * Tests for:
    * HUD
    * Time.js
    * AnimationControllerWithSignals
    * Carousel
  * Autopilot test framework
  * Force build-dep at python2.7
  * Suppress warnings

 -- Michał Sawicz <michal.sawicz@canonical.com>  Fri, 15 Mar 2013 16:26:22 +0100

qml-phone-shell (1.61) quantal; urgency=low

  * Rename ubuntu-browser to webbrowser-app.

 -- Olivier Tilloy <olivier.tilloy@canonical.com>  Fri, 08 Mar 2013 15:55:36 +0100

qml-phone-shell (1.60) quantal; urgency=low

  * Fixes in sidestage
  * Reduce memory consumption
  * Introduced testing

 -- Michael Zanetti <michael.zanetti@canonical.com>  Thu, 07 Mar 2013 12:04:19 +0100

qml-phone-shell (1.59) quantal; urgency=low

  * Window management: update screenshots manually and only when an application in focus goes out out focus.
  * Dash apps lens: use screenshot of applications from cache when going back to dash.

 -- Florian Boucault <florian.boucault@canonical.com>  Sat, 23 Feb 2013 17:48:23 +0000

qml-phone-shell (1.58) quantal; urgency=low

  * Sidestage: make the handle bigger to make it easier to grab.

 -- Florian Boucault <florian.boucault@canonical.com>  Fri, 22 Feb 2013 23:20:16 +0000

qml-phone-shell (1.57) quantal; urgency=low

  * fix right-edge swipe breaking

 -- Gerry Boland <gerry.boland@canonical.com>  Wed, 20 Feb 2013 14:37:25 +0000

qml-phone-shell (1.56) quantal; urgency=low

  * use ApplicationManager.keyboardVisible and keyboardHeight for system-wide
    keyboard detection

 -- Florian Boucault <florian.boucault@canonical.com>  Wed, 20 Feb 2013 07:05:49 +0000

qml-phone-shell (1.55) quantal; urgency=low

  * fix seeing flash of previous application when launching a new one

 -- Florian Boucault <florian.boucault@canonical.com>  Wed, 20 Feb 2013 06:15:01 +0000

qml-phone-shell (1.54) quantal; urgency=low

  * fix quitting last application again

 -- Florian Boucault <florian.boucault@canonical.com>  Wed, 20 Feb 2013 03:39:17 +0000

qml-phone-shell (1.53) quantal; urgency=low

  * fix activation of incorrect application
  * fix home lens population and increase initial lens search delay
  * reduce the times of image reloads in carousels
  * reduce memory consumption by tweaking the background images
  * indicator visual and behaviour fixes
  * reduce search crash probability
  * fix panel over greeter when fullscreen app open
  * fix sidestage after quitting last mainstage app

 -- Michał Sawicz <michal.sawicz@canonical.com>  Wed, 20 Feb 2013 01:47:27 +0100

qml-phone-shell (1.52) quantal; urgency=low

  * fix launcher for password-protected users
  * fix ebay link for ebay web app
  * allow launching arbitrary apps from command line
  * show sidestage on sidestage app activation
  * add sidestage support to the HUD
  * disable main stage's right edge when sidestage is enabled
  * destroy greeter contents when hidden to save memory
  * fix indicators height
  * visual fixes to HUD
  * remove spotify from dash
  * show dash after closing last application
  * rename qmlproject to unity
  * add Lenses::loaded property to prevent acting on non-ready Lens
    objects

 -- Michał Sawicz <michal.sawicz@canonical.com>  Mon, 18 Feb 2013 17:51:34 +0100

qml-phone-shell (1.51) quantal; urgency=low

  * use lens data in home
  * increase flicking velocity in dash

 -- Michał Sawicz <michal.sawicz@canonical.com>  Sat, 16 Feb 2013 20:59:58 +0100

qml-phone-shell (1.50) quantal; urgency=low

  * New side stage feature.
  * Implemented support for volume control using hardware keys.
  * reduce the edge detection size to 2 GUs.
  * use mock music lens.
  * add an "expandable" property to FilterGrid.
  * Use the current time as a icon for Time&Date device menu item. Missing device menu plane and volume icons added.
  * decrease delegate height for those showing contact details.
  * adjust music and videos lens to latest design spec.

 -- Florian Boucault <florian.boucault@canonical.com>  Sat, 16 Feb 2013 02:50:24 +0000

qml-phone-shell (1.49) quantal; urgency=low

  * fix people preview
  * show page headers when switching lenses

 -- Michał Sawicz <michal.sawicz@canonical.com>  Fri, 15 Feb 2013 11:12:37 +0100

qml-phone-shell (1.48) quantal; urgency=low

  * more HUD fixes
  * bottom bar fullscreen behavior fix
  * clean up stage implementation
  * reduce memory footprint by reducing image sizes

 -- Michał Sawicz <michal.sawicz@canonical.com>  Fri, 15 Feb 2013 01:49:05 +0100

qml-phone-shell (1.47) quantal; urgency=low

  * darken view on open indicators
  * design tweaks for HUD, people lens and video preview
  * added carousel in music lens
  * workaround people lens performance
  * add carousel in people lens and use real data in Home people carousel

 -- Michał Sawicz <michal.sawicz@canonical.com>  Wed, 13 Feb 2013 22:00:32 +0100

qml-phone-shell (1.46) quantal; urgency=low

  * new people preview
  * HUD fixes
  * fullscreen mode support
  * use external mock lens for videos
  * rework bottombar communication due to PID mismatch
  * improve unity build script
  * rename ubuntu-gallery
  * connect up the HUD quit button
  * unfocus HUD text entry on speech recognition
  * carousel fixes for low item count
  * new greeter

 -- Michał Sawicz <michal.sawicz@canonical.com>  Tue, 12 Feb 2013 10:24:09 +0100

qml-phone-shell (1.45) quantal; urgency=low

  * new people carousel
  * integration of voice and parametrized actions in HUD
  * xml-based user list for greeter
  * new people lens layout
  * refactored top panel

 -- Michał Sawicz <michal.sawicz@canonical.com>  Sun, 10 Feb 2013 13:06:25 +0100

qml-phone-shell (1.44) quantal; urgency=low

  * latest designs for greeter and video preview
  * initial integration with HUD service
  * HUD parametrized actions UI
  * licensing and packaging fixes
  * asynchronous loading in video preview to reduce delay
  * search support in People and Generic lens views

 -- Michał Sawicz <michal.sawicz@canonical.com>  Fri, 08 Feb 2013 00:34:18 +0100

qml-phone-shell (1.43) quantal; urgency=low

  * carousel view in dash
  * smarter dash categories
  * generic lens view
  * fixes to HUD
  * fix launching gallery
  * close preview when launching player
  * run_on_device tweaks

 -- Michał Sawicz <michal.sawicz@canonical.com>  Wed, 06 Feb 2013 20:34:28 +0100

qml-phone-shell (1.42) quantal; urgency=low

  * restore video playback

 -- Michał Sawicz <michal.sawicz@canonical.com>  Tue, 05 Feb 2013 23:42:07 +0100

qml-phone-shell (1.41) quantal; urgency=low

  * Video previews
  * run_on_device is tunneled through adb forward

 -- Michael Zanetti <michael.zanetti@canonical.com>  Tue, 05 Feb 2013 17:46:57 +0100

qml-phone-shell (1.40) quantal; urgency=low

  * Fix missing installed files

 -- Albert Astals Cid  <albert.astals@canonical.com>  Tue, 05 Feb 2013 11:26:46 +0100

qml-phone-shell (1.39) quantal; urgency=low

  * HUD ui with fake data

 -- Albert Astals Cid  <albert.astals@canonical.com>  Mon, 04 Feb 2013 18:48:39 +0100

qml-phone-shell (1.38) quantal; urgency=low

  * fix launching of notepad 

 -- Bill Filler <bill.filler@canonical.com>  Fri, 01 Feb 2013 03:21:29 -0500

qml-phone-shell (1.37) quantal; urgency=low

  * QT_QPA_PLATFORM was renamed from hybris to ubuntu, so reflecting at the
    env variable to make it to work fullscreen at the devices again

 -- Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>  Fri, 01 Feb 2013 02:35:44 -0500

qml-phone-shell (1.36) quantal; urgency=low

  * launch real notepad app 
  * fix launching of mock apps

 -- Bill Filler <bill.filler@canonical.com>  Thu, 31 Jan 2013 21:36:05 -0500

qml-phone-shell (1.35) quantal; urgency=low

  * integrate ubuntu-browser instead of snowshoe 

 -- Bill Filler <bill.filler@canonical.com>  Thu, 31 Jan 2013 17:33:37 -0500

qml-phone-shell (1.34) quantal; urgency=low

  * Qt5-proper release

 -- Michał Sawicz <michal.sawicz@canonical.com>  Thu, 31 Jan 2013 17:34:06 +0000

qml-phone-shell (1.33) quantal; urgency=low

  * New release

 -- Florian Boucault <florian.boucault@canonical.com>  Thu, 17 Jan 2013 07:39:47 +0700

qml-phone-shell (1.32) quantal; urgency=low

  * New release

 -- Michał Sawicz <michal.sawicz@canonical.com>  Fri, 21 Dec 2012 21:49:43 +0100

qml-phone-shell (1.31) quantal; urgency=low

  * New release

 -- Michał Sawicz <michal.sawicz@canonical.com>  Fri, 21 Dec 2012 02:06:37 +0100

qml-phone-shell (1.30) quantal; urgency=low

  * New release

 -- Michał Sawicz <michal.sawicz@canonical.com>  Wed, 19 Dec 2012 19:29:40 +0100

qml-phone-shell (1.29) quantal; urgency=low

  * New release

 -- Florian Boucault <florian.boucault@canonical.com>  Wed, 19 Dec 2012 00:07:55 +0000

qml-phone-shell (1.28) quantal; urgency=low

  * New release

 -- Florian Boucault <florian.boucault@canonical.com>  Tue, 18 Dec 2012 19:03:04 +0000

qml-phone-shell (1.27) quantal; urgency=low

  * New release

 -- Michał Sawicz <michal.sawicz@canonical.com>  Tue, 18 Dec 2012 02:22:35 +0100

qml-phone-shell (1.26) quantal; urgency=low

  * New release

 -- Florian Boucault <florian.boucault@canonical.com>  Fri, 14 Dec 2012 18:17:40 +0000

qml-phone-shell (1.25) quantal; urgency=low

  * New release

 -- Florian Boucault <florian.boucault@canonical.com>  Thu, 13 Dec 2012 22:51:56 +0000

qml-phone-shell (1.24) quantal; urgency=low

  * New release

 -- Florian Boucault <florian.boucault@canonical.com>  Wed, 12 Dec 2012 21:49:50 +0000

qml-phone-shell (1.23) quantal; urgency=low

  * New release

 -- Florian Boucault <florian.boucault@canonical.com>  Tue, 11 Dec 2012 20:38:08 +0000

qml-phone-shell (1.22) quantal; urgency=low

  * New release

 -- Florian Boucault <florian.boucault@canonical.com>  Tue, 11 Dec 2012 00:13:16 +0000

qml-phone-shell (1.21) quantal; urgency=low

  * New release with fullscreen launcher fixes 

 -- Bill Filler <bill.filler@canonical.com>  Fri, 07 Dec 2012 09:36:37 +0000

qml-phone-shell (1.20) quantal; urgency=low

  * New release

 -- Florian Boucault <florian.boucault@canonical.com>  Thu, 06 Dec 2012 16:53:05 +0000

qml-phone-shell (1.19) quantal; urgency=low

  * enable multi-threaded render for apps 

 -- Bill Filler <bill.filler@canonical.com>  Wed, 05 Dec 2012 17:34:09 +0000

qml-phone-shell (1.18) quantal; urgency=low

  [ Bill Filler ]
  * update launcher to use wk2-render (chromeless webkit) for facebook
    and twitter 

 -- Florian Boucault <florian.boucault@canonical.com>  Wed, 05 Dec 2012 12:20:50 +0000

qml-phone-shell (1.17) quantal; urgency=low

  * New release

 -- Florian Boucault <florian.boucault@canonical.com>  Sat, 01 Dec 2012 01:18:03 +0000

qml-phone-shell (1.16) quantal; urgency=low

  * fix to launch new gallery with correct args 

 -- Bill Filler <bill.filler@canonical.com>  Thu, 29 Nov 2012 17:04:36 -0500

qml-phone-shell (1.15) quantal; urgency=low

  * New release

 -- Florian Boucault <florian.boucault@canonical.com>  Wed, 28 Nov 2012 20:35:03 +0000

qml-phone-shell (1.14) quantal; urgency=low

  * New release

 -- Florian Boucault <florian.boucault@canonical.com>  Mon, 26 Nov 2012 21:39:36 +0000

qml-phone-shell (1.13) quantal; urgency=low

  * New release

 -- Florian Boucault <florian.boucault@canonical.com>  Fri, 23 Nov 2012 19:47:54 +0000

qml-phone-shell (1.12) quantal; urgency=low

  * Daily release

 -- Florian Boucault <florian.boucault@canonical.com>  Thu, 22 Nov 2012 10:21:11 +0000

qml-phone-shell (1.11) quantal; urgency=low

  * Daily release

 -- Florian Boucault <florian.boucault@canonical.com>  Wed, 21 Nov 2012 22:06:38 +0000

qml-phone-shell (1.10) quantal; urgency=low

  * Daily release

 -- Florian Boucault <florian.boucault@canonical.com>  Wed, 21 Nov 2012 01:04:32 +0000

qml-phone-shell (1.9) quantal; urgency=low

  * New release

 -- Florian Boucault <florian.boucault@canonical.com>  Mon, 19 Nov 2012 18:55:51 +0000

qml-phone-shell (1.8) quantal; urgency=low

  [ Michał Sawicz ]
  * new codebase

 -- Florian Boucault <florian.boucault@canonical.com>  Fri, 09 Nov 2012 00:15:19 +0000

qml-phone-shell (1.2) quantal; urgency=low

  * fix working dir for launch
  * launch script that sets up ofono and then calls telephony-app

 -- Bill Filler <bill.filler@canonical.com>  Mon, 05 Nov 2012 17:28:31 -0500

qml-phone-shell (1.1) quantal; urgency=low

  * comment out console.log() to prevent crash 

 -- Bill Filler <bill.filler@canonical.com>  Sun, 28 Oct 2012 22:18:36 +0100

qml-phone-shell (1.0) quantal; urgency=low

  * Remove install rule for qml-phone-shell.conf

 -- Ricardo Mendoza <ricardo.mendoza@canonical.com>  Fri, 26 Oct 2012 12:09:03 -0430

qml-phone-shell (0.9) quantal; urgency=low

  * Remove qml-phone-shell.conf to use new ubuntu-session.

 -- Ricardo Mendoza <ricardo.mendoza@canonical.com>  Fri, 26 Oct 2012 11:10:04 -0430

qml-phone-shell (0.8) quantal; urgency=low

  * Fix for both size and scrolling.

 -- Michael Frey <michael.frey@canonical.com>  Thu, 25 Oct 2012 14:28:46 +0200

qml-phone-shell (0.7) quantal; urgency=low

  [Michael Frey]
  * qml-phone-shell.conf: better setup of env vars and launch
    via dbus-luanch to properly setup session bus
  * shellapplication.cpp: don't setup custom env before launching
    processes 

 -- Bill Filler <bill.filler@canonical.com>  Sun, 21 Oct 2012 11:32:42 +0200

qml-phone-shell (0.6) quantal; urgency=low

  * added additional Android env vars to upstart script 

 -- Bill Filler <bill.filler@canonical.com>  Fri, 19 Oct 2012 09:35:25 -0400

qml-phone-shell (0.5) quantal; urgency=low

  * added support to launch telephony-app 

 -- Bill Filler <bill.filler@canonical.com>  Thu, 18 Oct 2012 13:45:25 -0400

qml-phone-shell (0.4) quantal; urgency=low

  * Creating a release

 -- Sergio Schvezov <sergio.schvezov@canonical.com>  Mon, 15 Oct 2012 13:05:34 -0300

qml-phone-shell (0.3) quantal; urgency=low

  * added support for launching applications

 -- Bill Filler <bill.filler@canonical.com>  Fri, 12 Oct 2012 12:42:33 -0400

qml-phone-shell (0.2) quantal; urgency=low

  * New release that includes upstart support.

 -- Tony Espy <espy@canonical.com>  Thu, 11 Oct 2012 17:18:07 -0400

qml-phone-shell (0.1) quantal; urgency=low

  * Initial release

 -- Bill Filler <bill.filler@canonical.com>  Wed, 10 Oct 2012 10:19:53 -0400