~nick-dedekind/qtmir/multiwindow.screenwindow

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
qtmir (0.5.1) UNRELEASED; urgency=medium

  * First release using MirAL

 -- Gerry Boland <gerry.boland@canonical.com>  Fri, 14 Oct 2016 16:51:26 +0100

qtmir (0.5.0+17.04.20161203-0ubuntu1) zesty; urgency=medium

  * Mir 0.25 compat

 -- Brandon Schaefer <brandon.schaefer@canonical.com>  Sat, 03 Dec 2016 12:38:04 +0000

qtmir (0.5.0+17.04.20161123.3-0ubuntu1) zesty; urgency=medium

  [ Albert Astals Cid ]
  * Build with Qt 5.7 (LP: #1642608, #1642954)

  [ Gerry Boland ]
  * Fix FTBFS due to new googletest framework release (1.8)
  * Revert Lttng test-crash workaround from rev 557

  [ Jonas G. Drange ]
  * relax auth of clients to allow USS to set base mir display config

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Wed, 23 Nov 2016 20:46:06 +0000

qtmir (0.4.8+17.04.20161024-0ubuntu1) zesty; urgency=medium

  [ Andrea Bernabei ]
  * Add missing default return value to qImageFormatFromMirPixelFormat

  [ Michael Zanetti ]
  * don't lose resize events that come in while the app is suspended

  [ Nick Dedekind ]
  * Close windows in reverse order. (LP: #1622717)

 -- Michael Zanetti <michael.zanetti@canonical.com>  Mon, 24 Oct 2016 11:32:53 +0000

qtmir (0.4.8+16.10.20160909-0ubuntu1) yakkety; urgency=medium

  [ Daniel d'Andrada ]
  * Send relative pointer movement to Mir clients (LP: #1597205)
  * Implement cursor confinement (LP: #1590099)

  [ Gerry Boland ]
  * Deliver mouse event manually if no cursor exists to deliver it
  * [tests] refactor ScreensModel test to use mocks from mirtest-dev

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Fri, 09 Sep 2016 14:40:56 +0000

qtmir (0.4.8+16.10.20160906-0ubuntu1) yakkety; urgency=medium

  [ Daniel d'Andrada ]
  * Don't occlude newly created surfaces until some time has passed (LP:
    #1620297)

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Tue, 06 Sep 2016 18:31:26 +0000

qtmir (0.4.8+16.10.20160831-0ubuntu1) yakkety; urgency=medium

  [ Daniel d'Andrada ]
  * DBusFocusInfo: added isSurfaceFocused(serializedId)
  * Use content-hub for clipboard services (LP: #1471998)
  * Don't link tests against LTTng

 -- Ken VanDine <ken.vandine@canonical.com>  Wed, 31 Aug 2016 01:52:12 +0000

qtmir (0.4.8+16.10.20160826.1-0ubuntu3) xenial; urgency=medium

  [ Vicamo Yang  ]
  * Build qtmir-android on arm64 for the need of valid libqpa-mirserver.so for
    ubuntu phone xenial arm64 porting.

 -- Ɓukasz 'sil2100' Zemczak <lukasz.zemczak@ubuntu.com>  Tue, 30 Aug 2016 09:44:35 +0200

qtmir (0.4.8+16.10.20160826.1-0ubuntu1) yakkety; urgency=medium

  [ Daniel d'Andrada ]
  * DBusFocusInfo.isPidFocused: search sessions recursively (LP:
    #1612166)

  [ MichaƂ Sawicz ]
  * Revert r538 that's causing a unity8 crash when launching emergency
    dialer over greeter (LP: #1616842)

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Fri, 26 Aug 2016 10:43:18 +0000

qtmir (0.4.8+16.10.20160819-0ubuntu1) yakkety; urgency=medium

  * No change rebuild for UAL ABI change

 -- Ted Gould <ted@gould.cx>  Fri, 19 Aug 2016 14:38:12 +0000

qtmir (0.4.8+16.10.20160816.1-0ubuntu1) yakkety; urgency=medium

  * compatibility changes for mir 0.24.0

 -- Kevin DuBois <kevin.dubois@canonical.com>  Tue, 16 Aug 2016 11:41:40 +0000

qtmir (0.4.8+16.10.20160810-0ubuntu1) yakkety; urgency=medium

  [ Alan Griffiths ]
  * Reduce MirServer to an implementation detail of QMirServer (nothing
    else needs to touch it).

  [ Albert Astals Cid ]
  * Improvements from running clazy over the code
  * Compile with clang

  [ Daniel d'Andrada ]
  * Remove Application.stage and RoleStage from ApplicationManager

  [ Daniel van Vugt ]
  * Fix incorrect mouse wheel/touchpad scrolling scale (LP: #1607240)
    (LP: #1607223, #1607240)

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Wed, 10 Aug 2016 06:53:16 +0000

qtmir (0.4.8+16.10.20160730-0ubuntu1) yakkety; urgency=medium

  [ Albert Astals Cid ]
  * Fix memory leak in application_test

  [ Daniel d'Andrada ]
  * Ensure different cursor names for consecutive custom cursor changes
    (LP: #1604701, #1605078)
  * Remove com.canonical.Unity.WindowStack D-Bus service

  [ Gerry Boland ]
  * Dump core if Mir fails to start in time - dump will help us see
    where Mir blocked (LP: #1537389)
  * Tests: AppManTest: use stack instead of heap when possible, better
    cleanup of resources
  * AppMan: queue the onProcessStarting slot, as processStarting blocks
    ubuntu-app-launch from executing the process.

  [ Marco Trevisan (Treviño) ]
  * ScreenWindow: handle window activated when exposing it (LP:
    #1590060)

  [ Nick Dedekind ]
  * Re-added occlusion detection (LP: #1475678)

 -- LukĂĄĆĄ Tinkl <lukas.tinkl@canonical.com>  Sat, 30 Jul 2016 21:21:32 +0000

qtmir (0.4.8+16.10.20160714-0ubuntu2~2) yakkety; urgency=medium

  * Rebuild against Qt 5.6.

 -- Timo Jyrinki <timo-jyrinki@ubuntu.com>  Sun, 24 Jul 2016 17:56:42 +0300

qtmir (0.4.8+16.10.20160714-0ubuntu1) yakkety; urgency=medium

  [ Daniel d'Andrada ]
  * Implement MirSurface::inputBounds and make use of mir's input region

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Thu, 14 Jul 2016 07:08:37 +0000

qtmir (0.4.8+16.10.20160712-0ubuntu1) yakkety; urgency=medium

  [ Ɓukasz 'sil2100' Zemczak ]
  * Build the qtmir-android package for arm64 as well.

 -- Ɓukasz Zemczak <lukasz.zemczak@canonical.com>  Tue, 12 Jul 2016 13:39:51 +0000

qtmir (0.4.8+16.10.20160705.2-0ubuntu1) yakkety; urgency=medium

  [ MichaƂ Sawicz ]
  * Don't use root dbus path (LP: #1599145)

 -- Ɓukasz Zemczak <lukasz.zemczak@canonical.com>  Tue, 05 Jul 2016 19:29:43 +0000

qtmir (0.4.8+16.10.20160704.1-0ubuntu1) yakkety; urgency=medium

  [ Daniel d'Andrada ]
  * com.canonical.Unity.FocusInfo D-Bus service for providing focus
    information

 -- Ɓukasz Zemczak <lukasz.zemczak@canonical.com>  Mon, 04 Jul 2016 13:58:19 +0000

qtmir (0.4.8+16.10.20160614-0ubuntu1) yakkety; urgency=medium

  [ Albert Astals Cid ]
  * Add support for compiler sanitizers via ECM
  * Compile with -fsanitize=undefined
  * Fix leak in ScreensModelTest (LP: #1585502)
  * Fix leak in SessionManager test (LP: #1585498)
  * Remove unused m_sessions member
  * Add missing breaks
  * Initialize m_lastX and m_lastY
  * Initialize m_sessionId
  * Give the locker a name
  * Fix memory leak in QtEventFeederTest (LP: #1585503)
  * Fix leaks in application_manager_test (LP: #1585501)

  [ Daniel d'Andrada ]
  * Improve Session debug logging
  * MirSurfaceListModel: prepending a surface always causes
    firstChanged() emission

  [ Gerry Boland ]
  * Release temporary GL context ASAP, fixes QtMir on X11. Add some
    hotpath branching hints (LP: #1588921)

  [ Michael Zanetti ]
  * Adding ApplicationInfo::surfaceCount property

 -- Albert Astals Cid <albert.astals@canonical.com>  Tue, 14 Jun 2016 08:38:00 +0000

qtmir (0.4.8+16.10.20160606.1-0ubuntu1) yakkety; urgency=medium

  [ Albert Astals Cid ]
  * Add support for compiler sanitizers via ECM
  * Compile with -fsanitize=undefined
  * Fix leak in ScreensModelTest (LP: #1585502)
  * Fix leak in SessionManager test (LP: #1585498)
  * Remove unused m_sessions member
  * Add missing breaks
  * Initialize m_lastX and m_lastY
  * Initialize m_sessionId
  * Give the locker a name
  * Fix memory leak in QtEventFeederTest (LP: #1585503)
  * Fix leaks in application_manager_test (LP: #1585501)

  [ Daniel d'Andrada ]
  * Improve Session debug logging
  * MirSurfaceListModel: prepending a surface always causes
    firstChanged() emission

  [ Michael Zanetti ]
  * Adding ApplicationInfo::surfaceCount property

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Mon, 06 Jun 2016 15:45:57 +0000

qtmir (0.4.8+16.10.20160602-0ubuntu1) yakkety; urgency=medium

  * rebuild for mir 0.23

 -- Kevin DuBois <kdub432@gmail.com>  Thu, 02 Jun 2016 16:50:58 +0000

qtmir (0.4.8+16.10.20160525.2-0ubuntu1) yakkety; urgency=medium

  [ Alan Griffiths ]
  * Drop the (unused) prototype Window Management code
  * Remove workaround for lp:1502200 (LP: #1502200)

  [ Albert Astals Cid ]
  * Enable workaround_brokenFBOReadBack on various chipsets (LP:
    #1581123)

  [ Daniel d'Andrada ]
  * Bump unity-api versions
  * Fix mir::scene::Surface focus attribute updates

 -- Michael Terry <michael.terry@canonical.com>  Wed, 25 May 2016 13:54:56 +0000

qtmir (0.4.8+16.10.20160520.1-0ubuntu1) yakkety; urgency=medium

  [ Alan Griffiths ]
  * Reduce coupling to MirServer - it has  been misused as a context
    object.

  [ Daniel d'Andrada ]
  * Also interpret the cursor names used by Mir client API (LP:
    #1447839)
  * Application: Don't respawn if closed while still starting up (LP:
    #1575577)

  [ Daniel d'Andrada, MichaƂ Sawicz ]
  * Centralize logging categories

  [ Gerry Boland ]
  * UAL can throw on creating Application if invalid appId, catch
    instead of aborting (LP: #1578258)

  [ Timo Jyrinki ]
  * Use FindQt5PlatformSupport to find platform support, other methods
    not available on Qt 5.6 anymore. (LP: #1554404)

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Fri, 20 May 2016 08:41:51 +0000

qtmir (0.4.8+16.04.20160518.1-0ubuntu1) xenial; urgency=medium

  [ Daniel d'Andrada ]
  * Fix ProxySurfaceListModel::countChanged signal

  [ Daniel d'Andrada, MichaƂ Sawicz ]
  * Move prompt surfaces from MirSurface to Application and emit
    firstChanged signal

 -- Nick Dedekind <ci-train-bot@canonical.com>  Wed, 18 May 2016 11:18:33 +0000

qtmir (0.4.8+16.04.20160511-0ubuntu1) xenial; urgency=medium

  [ Daniel d'Andrada ]
  * Session: Add a blank surface to the public list if it already has
    child prompt surfaces (LP: #1578665)

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Wed, 11 May 2016 09:08:29 +0000

qtmir (0.4.8+16.04.20160429.1-0ubuntu1) xenial; urgency=medium

  [ Gerry Boland, MichaƂ Sawicz, Nick Dedekind ]
  * Enhance ScreenController & the DisplayConfigurationPolicy to
    implement dynamic grid units. (LP: #1573532)

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Fri, 29 Apr 2016 20:04:55 +0000

qtmir (0.4.8+16.04.20160428-0ubuntu1) xenial; urgency=medium

  [ LukĂĄĆĄ Tinkl ]
  * Regression fix: restore window title handling (LP: #1563522)

  [ Michael Terry ]
  * Use latest UbuntuAppLaunch API which supports libertine apps.

 -- Michael Terry <michael.terry@canonical.com>  Thu, 28 Apr 2016 12:48:51 +0000

qtmir (0.4.8+16.04.20160426-0ubuntu1) xenial; urgency=medium

  * Mir 0.22 compatibility

 -- Alberto Aguirre <alberto.aguirre@canonical.com>  Tue, 26 Apr 2016 07:20:39 +0000

qtmir (0.4.8+16.04.20160413-0ubuntu1) xenial; urgency=medium

  [ Daniel d'Andrada ]
  * Application: improve debug logging
  * Logging of Qt's OpenGL debug messages now must be enabled via CMake
    option
  * MirSurface: replace keymapLayout and keymapVariant with keymap
  * Remove application screenshot provider
  * Surface-based window management

  [ MichaƂ Sawicz, Robert Bruce Park ]
  * Inline -gles packaging.

 -- Gerry Boland <ci-train-bot@canonical.com>  Wed, 13 Apr 2016 18:38:59 +0000

qtmir (0.4.8+16.04.20160330-0ubuntu1) xenial; urgency=medium

  * Drop leftover Xs-Testsuite header

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Wed, 30 Mar 2016 22:53:20 +0000

qtmir (0.4.8+16.04.20160329.1-0ubuntu1) xenial; urgency=medium

  [ Daniel van Vugt ]
  * Don't use preferred_mode_index. Some devices like TVs don't provide
    a preferred mode, so preferred_mode_index may be out of range (a
    clumsy way to represent 'none'). Instead use the resolution of the
    current display mode, which should always be in range. (LP:
    #1560497)

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Tue, 29 Mar 2016 19:24:13 +0000

qtmir (0.4.8+16.04.20160322.1-0ubuntu1) xenial; urgency=medium

  [ Nick Dedekind ]
  * Added Application::setStage

  [ Lukáơ Tinkl, MichaƂ Sawicz ]
  * Support for switching keyboard layouts (LP: #1524400, #1491340)

  [ Lukáơ Tinkl, MichaƂ Sawicz, Nick Dedekind ]
  * Add support for low shell chrome. (LP: #1535397)

 -- Michael Zanetti <michael.zanetti@canonical.com>  Tue, 22 Mar 2016 16:18:06 +0000

qtmir (0.4.7+16.04.20160310.1-0ubuntu1) xenial; urgency=medium

  [ Alan Griffiths ]
  * Copy the Window Management work-in-progress from Mir examples.

  [ Alberto Aguirre ]
  * Hook MirOpenGLContext::doneCurrent to Screen::doneCurrent

  [ Daniel d'Andrada ]
  * Ensure QmlEngine doesn't delete our MirSurfaces

  [ Gerry Boland ]
  * Allow Mir remove command line arguments it understands, before
    letting Qt process them.
  * Ensure ScreenWindow geometry correctly set and used after moving
    Screen (LP: #1545286)
  * Screen: only enable orientation sensor for internal display. (LP:
    #1545286)

  [ Michael Terry ]
  * Fix some mocks to use more realistic code paths.

  [ Michael Zanetti ]
  * Add a dedicated property for the inputMethodSurface (LP: #1545286)

  [ MichaƂ Sawicz ]
  * Drop dummy autopkgtest

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Thu, 10 Mar 2016 09:29:49 +0000

qtmir (0.4.7+16.04.20160219-0ubuntu1) xenial; urgency=medium

  * Mir 0.20 Release

 -- Alan Griffiths <ci-train-bot@canonical.com>  Fri, 19 Feb 2016 10:41:19 +0000

qtmir (0.4.7+16.04.20160212-0ubuntu1) xenial; urgency=medium

  [ Albert Astals Cid ]
  * Provide branch prediction information to the if in compressTimestamp
  * Reset start time if the timestamp travels to the past (LP: #1524488)

  [ Daniel d'Andrada ]
  * Let shell decide the initial surface size (LP: #1532974)
  * Remove the useless TaskController
  * Surface Size Hints
  * Update mir version requirement

  [ MichaƂ Sawicz ]
  * Bump unity-api dependencies
  * Use QStandardPaths to determine QML cache location

  [ Nick Dedekind ]
  * Moved test framework into a static library for quicker
    recompilation.

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Fri, 12 Feb 2016 00:07:26 +0000

qtmir (0.4.7+16.04.20160208-0ubuntu1) xenial; urgency=medium

  [ Nick Dedekind ]
  * Added fix and test for closing app during the StoppedResumable
    state. (LP: #1541388)

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Mon, 08 Feb 2016 09:36:17 +0000

qtmir (0.4.7+16.04.20160127.1-0ubuntu1) xenial; urgency=medium

  * Changes for mir 0.19.

 -- Brandon Schaefer <ci-train-bot@canonical.com>  Wed, 27 Jan 2016 21:42:31 +0000

qtmir (0.4.7+16.04.20160122-0ubuntu1) xenial; urgency=medium

  [ Nick Dedekind ]
  * Fixed issue where stopping the session while suspending was causing
    app close to stall. (LP: #1536133)

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Fri, 22 Jan 2016 16:54:39 +0000

qtmir (0.4.7+16.04.20160104-0ubuntu1) xenial; urgency=medium

  [ Daniel d'Andrada ]
  * Update Session.fullscreen properties at the right time (LP:
    #1525893)

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Mon, 04 Jan 2016 09:38:12 +0000

qtmir (0.4.7+16.04.20151222-0ubuntu1) xenial; urgency=medium

  * No-change rebuild to get -gles in sync

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Tue, 22 Dec 2015 15:29:49 +0000

qtmir (0.4.7+16.04.20151217-0ubuntu1) xenial; urgency=medium

  [ Andreas Pokorny ]
  * compatibility branch for Mir 0.18

  [ Cemil Azizoglu ]
  * compatibility branch for Mir 0.18

  [ Kevin DuBois ]
  * compatibility branch for Mir 0.18

 -- Kevin DuBois <kevin.dubois@canonical.com>  Thu, 17 Dec 2015 12:01:56 +0000

qtmir (0.4.7+16.04.20151210-0ubuntu1) xenial; urgency=medium

  [ Nick Dedekind ]
  * [ Nick Dedekind ]
  * Request app closing rather than killing.

  [ Daniel d'Andrada ]
  * Add MirSurfaceItem.fillMode and ensure items and buffer are in sync
  * Make Session hold multiple surfaces

  [ Michael Terry ]
  * Don't hold a wakelock on apps that are exempt from lifecycle
    management. (LP: #1518764)

  [ MichaƂ Sawicz ]
  * Add MirSurfaceItem.fillMode and ensure items and buffer are in sync
  * Don't hold a wakelock on apps that are exempt from lifecycle
    management. (LP: #1518764)

 -- Gerry Boland <ci-train-bot@canonical.com>  Thu, 10 Dec 2015 13:08:47 +0000

qtmir (0.4.6+16.04.20151125-0ubuntu2) xenial; urgency=medium

  * Rebuild against Qt 5.5.1.

 -- Timo Jyrinki <timo-jyrinki@ubuntu.com>  Mon, 30 Nov 2015 16:16:06 +0200

qtmir (0.4.6+16.04.20151125-0ubuntu1) xenial; urgency=medium

  [ Daniel d'Andrada ]
  * Forward Mir mouse wheel events to the shell cursor (LP: #1497091)
  * Implemented support for cursors set by client surfaces
  * Revert revision 415

  [ Gerry Boland ]
  * Manage frameSwapped signal/slot connection with MirSurface more
    strictly to avoid crash. (LP: #1517571)

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Wed, 25 Nov 2015 15:38:57 +0000

qtmir (0.4.6+16.04.20151119-0ubuntu1) xenial; urgency=medium

  [ Albert Astals Cid ]
  * Build with clang (tests/gmock fails and is unfixable on our side i'd
    say)
  * Enable Efficient String Construction by default

  [ Gerry Boland ]
  * Fix use of uninitialized variable
  * Use pid_t for PIDs.

  [ LoĂŻc Molinari ]
  * Ensured Mir surface items with size less than or equal to zero are
    not rendered, as it's usually done for standard QtQuick items.

  [ MichaƂ Sawicz ]
  * Build with clang (tests/gmock fails and is unfixable on our side i'd
    say)

  [ Nick Dedekind ]
  * Fix a crash when dropping a surface frame before Qt draws a surface
    item. (LP: #1517139)

 -- Gerry Boland <ci-train-bot@canonical.com>  Thu, 19 Nov 2015 12:56:17 +0000

qtmir (0.4.6+16.04.20151113-0ubuntu1) xenial; urgency=medium

  [ Nick Dedekind ]
  * Update surface textures when dropping frames. (LP: #1515356)

 -- Gerry Boland <ci-train-bot@canonical.com>  Fri, 13 Nov 2015 16:42:38 +0000

qtmir (0.4.6+16.04.20151112-0ubuntu1) xenial; urgency=medium

  * Fix armhf builds on Xenial by using -std=gnu99 instead of c99

 -- Gerry Boland <ci-train-bot@canonical.com>  Thu, 12 Nov 2015 16:26:27 +0000

qtmir (0.4.6+16.04.20151110-0ubuntu1) xenial; urgency=medium

  [ Nick Dedekind ]
  * Reverted occlusion detection (lp#1514556) (LP: #1514556)

 -- Gerry Boland <ci-train-bot@canonical.com>  Tue, 10 Nov 2015 09:19:59 +0000

qtmir (0.4.6+16.04.20151102-0ubuntu1) xenial; urgency=medium

  [ Alan Griffiths ]
  * Test harness for MirWindowManager (in preparation for more
    intelligent window management)

  [ CI Train Bot ]
  * New rebuild forced.

  [ Michael Terry ]
  * Support new isTouchApp property to ApplicationInfoInterface and move
    lifecycle policy logic out of qtmir.

  [ MichaƂ Sawicz ]
  * Clean up packaging and fix autopkgtest on armhf

  [ Nick Dedekind ]
  * Hand Qt millisecond timestamps rather than nanosecond. (LP:
    #1510571, #1511076, #1511711)
  * Support server->client visibility change to stop rendering
    (lp:#1475678) (LP: #1475678)

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Mon, 02 Nov 2015 11:22:29 +0000

qtmir (0.4.6+15.10.20151021-0ubuntu1) wily; urgency=medium

  [ Alan Griffiths ]
  * Opaquify MirWindowManager to control visibility of upcoming Window
    Management work

  [ Albert Astals Cid ]
  * Don't search for the element again

  [ CI Train Bot ]
  * New rebuild forced.

  [ Daniel d'Andrada ]
  * Improve multimonitor support
  * MirSurfaceItem: Survive holding a surface with an empty texture
  * Shell draws its own cursor using the new Cursor QML element

  [ Gerry Boland ]
  * Initial multimonitor support - react correctly to Mir
    DisplayConfiguration changes. (LP: #1488831, #1488863, #1436735)
  * Workaround for AutoPilot input coordinate positioning being outside
    screen geometry

  [ LukĂĄĆĄ Tinkl ]
  * Implement support for mouse wheel events; correctly pass around
    buttons (LP: #1497091)
  * React to surface modifications (window caption)

  [ MichaƂ Sawicz ]
  * Improve multimonitor support
  * MirSurfaceItem: Survive holding a surface with an empty texture
  * React to surface modifications (window caption)

  [ Nick Dedekind ]
  * Added touch performance tracing and test.
  * Removed the manipulation of the CMAKE_INSTALL_PREFIX from
    debian/rules

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Wed, 21 Oct 2015 11:47:16 +0000

qtmir (0.4.6+15.10.20151008.2-0ubuntu1) wily; urgency=medium

  [ Alexandros Frantzis ]
  * Update for Mir 0.17 changes

  [ CI Train Bot ]
  * New rebuild forced.

 -- Alexandros Frantzis <alexandros.frantzis@canonical.com>  Thu, 08 Oct 2015 17:56:00 +0000

qtmir (0.4.6+15.10.20150930.1-0ubuntu1) wily; urgency=medium

  [ CI Train Bot ]
  * New rebuild forced.

  [ Daniel d'Andrada ]
  * MirSurfaceItem: texture must be manipulated only from the scene
    graph thread (LP: #1499388, #1495871)

  [ Gerry Boland ]
  * Add "Closing" state to Application, use it to distinguish user-
    induced close from app-induced close. Don't clear QML cache if user-
    induced. (LP: #1500372)

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Wed, 30 Sep 2015 10:08:37 +0000

qtmir (0.4.6+15.10.20150925-0ubuntu1) wily; urgency=medium

  * Bump application API version

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Fri, 25 Sep 2015 12:11:11 +0000

qtmir (0.4.6+15.10.20150923-0ubuntu1) wily; urgency=medium

  [ CI Train Bot ]
  * New rebuild forced.

  [ Cemil Azizoglu ]
  * Port gl_bind_to_texture to the new TextureSource interface. Update
    for Mir 0.16 release.

 -- Cemil Azizoglu <cemil.azizoglu@canonical.com>  Wed, 23 Sep 2015 15:17:13 +0000

qtmir (0.4.6+15.10.20150918-0ubuntu1) wily; urgency=medium

  [ Daniel d'Andrada ]
  * Update surface focus when a surface enters or leaves a
    MirSurfaceItem (LP: #1491034, #1495437)

 -- MichaƂ Sawicz <michal.sawicz@canonical.com>  Fri, 18 Sep 2015 20:11:52 +0000

qtmir (0.4.6+15.10.20150914-0ubuntu1) wily; urgency=medium

  [ Daniel d'Andrada ]
  * MirSurfaceItem gets dirty when it's set to draw a different (or no)
    surface (LP: #1492185)
  * QtEventFeeder: log the pointer events it gets from Mir

  [ Daniel van Vugt ]
  * Stop waking up every 200ms if there's nothing to wake up for. It's
    just wasting battery. (LP: #1479250)

 -- Gerry Boland <ci-train-bot@canonical.com>  Mon, 14 Sep 2015 13:11:56 +0000

qtmir (0.4.6+15.10.20150904-0ubuntu1) wily; urgency=medium

  [ Michal Sawicz ]
  * No change rebuild to resync vivid+overlay and wily

  [ CI Train Bot ]
  * No-change rebuild.

 -- CI Train Bot <ci-train-bot@canonical.com>  Fri, 04 Sep 2015 10:40:35 +0000

qtmir (0.4.6+15.04.20150827.1-0ubuntu1) vivid; urgency=medium

  [ Daniel d'Andrada ]
  * Enable multiple MirSurfaceItems rendering the same MirSurface
  * Allow resizing an app that is in the process of getting suspended.
    (LP: #1466510)

 -- CI Train Bot <ci-train-bot@canonical.com>  Thu, 27 Aug 2015 13:58:54 +0000

qtmir (0.4.5+15.10.20150817-0ubuntu1) wily; urgency=medium

  * 

 -- CI Train Bot <ci-train-bot@canonical.com>  Mon, 17 Aug 2015 19:28:26 +0000

qtmir (0.4.5+15.10.20150812.1-0ubuntu1) vivid; urgency=medium

  [ Daniel van Vugt ]
  * MirSurfaceItem: Remove an unnecessary and potentially infinite loop
    (LP: #1477430) (LP: #1477430)

  [ Gerry Boland ]
  * Standardize licences to LGPLv3, update years, remove authors (LP:
    #1483664)
  * authorizeSession incorrectly edits desktopFilePath supplied by
    desktop_file_hint (LP: #1483225)

 -- CI Train Bot <ci-train-bot@canonical.com>  Wed, 12 Aug 2015 11:36:06 +0000

qtmir (0.4.5+15.10.20150804.1-0ubuntu1) vivid; urgency=medium

  * Dual release with wily

 -- Gerry Boland <gerry.boland@canonical.com>  Tue, 04 Aug 2015 17:21:12 +0000

qtmir (0.4.5+15.04.20150821-0ubuntu1) vivid; urgency=medium

  [ Daniel d'Andrada ]
  * Improve handling of applications that are stopping or getting killed
    (LP: #1483840, #1485608)

  [ Gerry Boland ]
  * AppMan: if app destroys surface while in Running state, it is
    probably shutting down, so preempt it by removing it from the model

 -- CI Train Bot <ci-train-bot@canonical.com>  Fri, 21 Aug 2015 11:40:14 +0000

qtmir (0.4.5+15.04.20150820-0ubuntu1) vivid; urgency=medium

  [ Gerry Boland ]
  * Hotfix to work around bug 1483752 (LP: #1483752)

  [ Michael Zanetti ]
  * Hotfix to work around bug 1483752 (LP: #1483752)

 -- CI Train Bot <ci-train-bot@canonical.com>  Thu, 20 Aug 2015 12:59:54 +0000

qtmir (0.4.5+15.10.20150804.1-0ubuntu1) wily; urgency=medium

  [ Alan Griffiths ]
  * Start restructuring code to use the Mir WindowManager interface for
    window management. (Instead of completely replacing the Shell.)

  [ Andreas Pokorny ]
  * ensure the argv passed to mir is a null terminated list (not a
    nullptr)

  [ Daniel d'Andrada ]
  * Remove focus-based app lifecycle. Let shell control it.
  * Remove focus-based app lifecycle. Let shell control it.

  [ Daniel van Vugt ]
  * ensure the argv passed to mir is a null terminated list (not a
    nullptr)

  [ Gerry Boland ]
  * CMake should require mir 0.14
  * Ubuntu Touch has no shared graphics cache implemented, QPA should
    not say it does
  * We depend on Qt 5.4, remove compatibility code for older versions

  [ LukĂĄĆĄ Tinkl ]
  * Extend the key table to cover full xkb range of keycodes.

 -- CI Train Bot <ci-train-bot@canonical.com>  Tue, 04 Aug 2015 17:21:12 +0000

qtmir (0.4.5+15.10.20150728-0ubuntu2~gcc5.1) wily; urgency=medium

  * No change rebuild using GCC 5.

 -- Matthias Klose <doko@ubuntu.com>  Wed, 29 Jul 2015 15:04:01 +0200

qtmir (0.4.5+15.10.20150728-0ubuntu1) wily; urgency=medium

  [ Gerry Boland ]
  * Remove explicit gcc4.9 dependency (LP: #1452338)

 -- CI Train Bot <ci-train-bot@canonical.com>  Tue, 28 Jul 2015 09:57:00 +0000

qtmir (0.4.5+15.10.20150722-0ubuntu1) wily; urgency=medium

  [ Andreas Pokorny ]
  * Release in step with Mir 0.14.0

  [ CI Train Bot ]
  * New rebuild forced.

 -- CI Train Bot <ci-train-bot@canonical.com>  Wed, 22 Jul 2015 13:01:05 +0000

qtmir (0.4.5+15.10.20150617-0ubuntu1) wily; urgency=medium

  [ Gerry Boland ]
  * [qpa] refactor QMirServer to clean up its API, and fix strange
    thread design.

  [ MichaƂ Sawicz ]
  * Depend on same-version qtmir-{desktop,android}

 -- CI Train Bot <ci-train-bot@canonical.com>  Wed, 17 Jun 2015 13:46:09 +0000

qtmir (0.4.5+15.10.20150611-0ubuntu2) wily; urgency=medium

  * No-change rebuild against Qt 5.4.2.

 -- Timo Jyrinki <timo-jyrinki@ubuntu.com>  Mon, 15 Jun 2015 12:31:38 +0300

qtmir (0.4.5+15.10.20150611-0ubuntu1) wily; urgency=medium

  [ Daniel d'Andrada ]
  * Add X-Ubuntu-Supported-Orientations desktop file entry

 -- CI Train Bot <ci-train-bot@canonical.com>  Thu, 11 Jun 2015 09:10:38 +0000

qtmir (0.4.4+15.04.20150513-0ubuntu1) vivid; urgency=medium

  [ Alan Griffiths ]
  * Release in step with Mir 0.13.0

  [ Daniel van Vugt ]
  * Release in step with Mir 0.13.0

  [ Gerry Boland ]
  * Release in step with Mir 0.13.0

 -- CI Train Bot <ci-train-bot@canonical.com>  Wed, 13 May 2015 09:44:12 +0000

qtmir (0.4.4+15.04.20150511.1-0ubuntu1) vivid; urgency=medium

  [ Albert Astals Cid ]
  * Fix debug line

  [ Daniel d'Andrada ]
  * When synthesizing touch releases for absent touches, send them in
    separate events (LP: #1437357)

  [ Gerry Boland ]
  * If Mir fails to start, exit the process immediately as nothing else
    can be done
  * Remove boost dependence, it supplies almost nothing of benefit to
    offset its cost
  * Remove legacy surface configuration change code, use newer
    SurfaceObserver
  * Remove useless profiling information, fixes build with Qt5.5 (LP:
    #1437181)

  [ Michael Zanetti ]
  * read exception list from gsettings instead of a hardcoded list

  [ MichaƂ Sawicz ]
  * Require an application API version, fix the provided version and use
    include dir from the .pc file

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

qtmir (0.4.4+15.04.20150318-0ubuntu1) vivid; urgency=medium

  [ Daniel d'Andrada ]
  * Port to the new MirEvent API and add support for pointer events.
    (LP: #1417650, #1392716)

  [ Gerry Boland ]
  * Refactor wakelock handling. Lifecycle exempt apps now release
    wakelock when shell tries to suspend them (LP: #1423787)

  [ Robert Carr ]
  * Port to the new MirEvent API and add support for pointer events.
    (LP: #1417650, #1392716)

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

qtmir (0.4.4+15.04.20150317-0ubuntu1) vivid; urgency=medium

  [ Albert Astals Cid ]
  * Make the test pass with Qt >= 5.4.1 (LP: #1427529)

 -- CI Train Bot <ci-train-bot@canonical.com>  Tue, 17 Mar 2015 18:01:53 +0000

qtmir (0.4.4+15.04.20150227.1-0ubuntu1) vivid; urgency=medium

  [ CI Train Bot ]
  * New rebuild forced.

  [ Kevin DuBois ]
  * No change rebuild for mir 0.12

 -- CI Train Bot <ci-train-bot@canonical.com>  Fri, 27 Feb 2015 18:53:32 +0000

qtmir (0.4.4+15.04.20150220-0ubuntu1) vivid; urgency=medium

  [ Albert Astals Cid ]
  * Don't start timer from the thread it doesn't belong to

 -- CI Train Bot <ci-train-bot@canonical.com>  Fri, 20 Feb 2015 10:33:30 +0000

qtmir (0.4.4+15.04.20150209-0ubuntu2) vivid; urgency=medium

  * No-change rebuild against Qt 5.4.0.

 -- Timo Jyrinki <timo-jyrinki@ubuntu.com>  Fri, 13 Feb 2015 13:05:26 +0200

qtmir (0.4.4+15.04.20150209-0ubuntu1) vivid; urgency=medium

  [ Daniel van Vugt ]
  * QtMir changes required to support the Mir branch of the same name.
    Landing soon. (LP: #1395581)

  [ Alan Griffiths ]
  * Port to the msh::Shell API in Mir

  [ Robert Carr ]
  * Bump build-dep to mir 0.11.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 09 Feb 2015 16:29:08 +0000

qtmir (0.4.4+15.04.20150206-0ubuntu1) vivid; urgency=medium

  [ Gerry Boland ]
  * Explicitly setting GL-mode breaks GTK app rendering. Removing the
    hack appears to just work (LP: #1401968)

  [ MichaƂ Sawicz ]
  * Add moot autopkgtest to run the standard unit tests

  [ Albert Astals Cid ]
  * Fix demo shell import name

  [ Daniel d'Andrada ]
  * Don't suspend&resume the main stage app when switching focus from
    side to main stage

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

qtmir (0.4.4+15.04.20150115-0ubuntu1) vivid; urgency=low

  [ Gerry Boland ]
  * Add Wakelock support - ensures device drops to deep-sleep mode only
    when all AppMan suspend tasks have completed

  [ Ricardo Mendoza ]
  * Reduce suspend timeout to half of the previous value because the
    long value was too apparent on fast paced apps, like web games of
    music players; it broke the user experience according to design.
    (LP: #1402650)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 15 Jan 2015 15:19:46 +0000

qtmir (0.4.4+15.04.20150114-0ubuntu1) vivid; urgency=low

  [ Gerry Boland ]
  * Depend on :native version of g++ to allow cross-compiling to work.
    (LP: #1353855)

  [ MichaƂ Sawicz ]
  * Declare the QByteArray in callDispatcher so it doesn't get deleted
    before it's copied. (LP: #1408819)

  [ Josh Arenson ]
  * Assign touch events area to the correct values.

  [ Albert Astals ]
  * Move the creation of the surface observer to
    SessionListener::surface_created

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 14 Jan 2015 09:07:53 +0000

qtmir (0.4.4+15.04.20150109-0ubuntu1) vivid; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Nick Dedekind ]
  * Notify prompt sessions that sessions have been suspended/resumed.
    (LP: #1355173, #1384950)

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

qtmir (0.4.4+15.04.20150108.1-0ubuntu1) vivid; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Cemil Azizoglu ]
  * Rebuild for Mir 0.10.

  [ Nick Dedekind ]
  * Compatibility for Mir 0.10.0

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 08 Jan 2015 14:18:06 +0000

qtmir (0.4.4+15.04.20141215-0ubuntu1) vivid; urgency=low

  [ Daniel d'Andrada ]
  * Update README and readd option to disable building tests

  [ Gerry Boland ]
  * Emit SIGSTOP when AppMan fully initialized, when Mir is ready is too
    soon (LP: #1394208)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 15 Dec 2014 08:27:44 +0000

qtmir (0.4.4+15.04.20141211-0ubuntu1) vivid; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Alan Griffiths ]
  * Migration of qtmir from the legacy Mir API
  * Refactor to better reflect the code structure following new-migrate-
    to-mir-Server-API

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 11 Dec 2014 16:55:53 +0000

qtmir (0.4.4+15.04.20141205-0ubuntu1) vivid; urgency=low

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

  [ Ricardo Salveti de Araujo ]
  * qteventfeeder: adding bt and wired headset multimedia keys (LP:
    #1398427)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 05 Dec 2014 11:04:29 +0000

qtmir (0.4.4+15.04.20141203-0ubuntu1) vivid; urgency=low

  [ Gerry Boland ]
  * Port qmake->cmake to enable sbuild usage for crosscompiling.
  * Fix build with Qt5.4 (LP: #1394884)

  [ MichaƂ Sawicz ]
  * Port qmake->cmake to enable sbuild usage for crosscompiling.

  [ Robert Carr ]
  * Port qmake->cmake to enable sbuild usage for crosscompiling.

  [ Alberto Aguirre ]
  * Select mirclient backend for platform-api instead of mirserver.

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

qtmir (0.4.4+15.04.20141124-0ubuntu1) vivid; urgency=low

  [ Alberto Aguirre ]
  * No-change rebuild againts mir 0.9.0

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 24 Nov 2014 23:07:01 +0000

qtmir (0.4.4+15.04.20141110-0ubuntu2) vivid; urgency=medium

  * No-change rebuild against Qt 5.3.2.

 -- Timo Jyrinki <timo-jyrinki@ubuntu.com>  Mon, 10 Nov 2014 16:50:43 +0200

qtmir (0.4.4+15.04.20141110-0ubuntu1) vivid; urgency=low

  [ Michael Zanetti ]
  * Use QSGDefaultImageNode instead of QSGSimpleTexture to gain surface
    manipulation features such as antialiasing (LP: #1351559)

  [ josharenson ]
  * Add support for enabling/disabling orientation sensor based on
    screen power state. (LP: #1375297)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 10 Nov 2014 09:41:58 +0000

qtmir (0.4.4+15.04.20141030.2-0ubuntu1) vivid; urgency=low

  [ Ted Gould ]
  * Use UAL pause/resume functions for stopping/continuing all tasks in
    the cgroup (LP: #1379786)

  [ Timo Jyrinki ]
  * Add libmtdev-dev build dependency (LP: #1379152) (LP: #1379152)

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

qtmir (0.4.4+15.04.20141030.1-0ubuntu1) vivid; urgency=low

  [ Ricardo Mendoza ]
  * Clean up QML Compilation cache if application fails to start
    correctly.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 30 Oct 2014 11:55:27 +0000

qtmir (0.4.4+14.10.20141013-0ubuntu1) utopic; urgency=medium

  [ Daniel d'Andrada ]
  * Turn UbuntuKeyboardInfo into a QML singleton

  [ Gerry Boland ]
  * Rewrite DesktopFileReader to use GDesktopAppInfo, enables reading
    localized keys (LP: #1350360)

  [ MichaƂ Sawicz ]
  * Ensure unity8-dash is less likely to be killed than other background
    apps. (LP: #1379296)

  [ Robert Carr ]
  * Pass key auto-repeat flag through QtEventFeeder.

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

qtmir (0.4.3+14.10.20141010-0ubuntu1) utopic; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Cemil Azizoglu ]
  * Rebuild for Mir 0.8.0.

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

qtmir (0.4.3+14.10.20141006-0ubuntu1) utopic; urgency=low

  [ Michael Zanetti ]
  * Fix some bugs in app lifecycle management.

  [ Albert Astals ]
  * Wait for ApplicationManager to be there

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

qtmir (0.4.3+14.10.20141001.5-0ubuntu1) utopic; urgency=low

  [ Daniel d'Andrada ]
  * CONFIG+=no_tests to avoid building the tests and therefore speed up
    the build
  * Provide a global clipboard via D-Bus (LP: #1367814)

  [ josharenson ]
  * Remove check to see if application is already focused before
    focusing.

  [ Robert Carr ]
  * MirSurfaceItem::consume Set motion event tooltypes based on
    QTouchPoints (LP: #1371282)

  [ Gerry Boland ]
  * Fix AppMan handling Upstart resuming a Stopped application

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

qtmir (0.4.3+14.10.20140922.1-0ubuntu1) utopic; urgency=low

  [ Gerry Boland ]
  * Expose Mir surface orientation property to QML (LP: #1288332)
  * Add splash screen properties to Application

  [ Florian Boucault ]
  * Add splash screen properties to Application

  [ Daniel d'Andrada ]
  * Add splash screen properties to Application

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 22 Sep 2014 17:38:51 +0000

qtmir (0.4.3+14.10.20140918.3-0ubuntu1) utopic; urgency=low

  [ Gerry Boland ]
  * TaskController may call processStarted synchronously, so check for
    that in startApplication before adding (LP: #1371047)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 18 Sep 2014 16:57:48 +0000

qtmir (0.4.3+14.10.20140918.1-0ubuntu1) utopic; urgency=low

  [ Gerry Boland ]
  * Fix unstable test - be more careful about synchronizing the Qt image
    provider and Mir snapshot threads

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

qtmir (0.4.3+14.10.20140915-0ubuntu1) utopic; urgency=low

  [ Daniel d'Andrada ]
  * MirSurfaceItem: Ensure all touch sequences sent to Mir surface are
    properly ended.

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

qtmir (0.4.3+14.10.20140907-0ubuntu1) utopic; urgency=low

  [ Daniel d'Andrada ]
  * QtEventFeeder: validate touches before sending them to Qt

  [ josharenson ]
  * Fix a small typo in the README file

  [ Alan Griffiths ]
  * Provide Mir with a handler for any command-line arguments it fails
    to parse. For the moment, these are simply ignored.

  [ Gerry Boland ]
  * Add LTTng tracepoints

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Sun, 07 Sep 2014 19:42:56 +0000

qtmir (0.4.3+14.10.20140903-0ubuntu1) utopic; urgency=medium

  [ Nick Dedekind ]
  * Use a model for child surfaces/sessions. Add surface tests.
  * Support for nesting prompt sessions.


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

qtmir (0.4.2+14.10.20140829-0ubuntu1) utopic; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Cemil Azizoglu ]
  * Rebuild for the Mir 0.7.0 release.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 29 Aug 2014 18:59:49 +0000

qtmir (0.4.2+14.10.20140825-0ubuntu1) utopic; urgency=low

  [ Daniel d'Andrada ]
  * Revamp screenshotting to use an image provider again, removing
    screenshot-related methods on Application

  [ Daniel van Vugt ]
  * Add support for building against Mir when it's installed somewhere
    other than /usr (like with a custom $PKG_CONFIG_PATH).

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 25 Aug 2014 07:46:36 +0000

qtmir (0.4.1+14.10.20140817-0ubuntu1) utopic; urgency=medium

  [ MichaƂ Sawicz ]
  * Unrevert "MirSurfaceItem: always try to consume new mir frames"

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

qtmir (0.4.1+14.10.20140815.is.0.4.1+14.10.20140811.1-0ubuntu1) utopic; urgency=medium

  * Reverting previous commit since unity8 started deadlocking in ap
    test runs (requested by Saviq)

 -- Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>  Sat, 16 Aug 2014 17:18:12 -0300

qtmir (0.4.1+14.10.20140815-0ubuntu1) utopic; urgency=low

  [ Daniel d'Andrada ]
  * MirSurfaceItem: always try to consume new mir frames Otherwise those
    frames will get dropped and MirSurfaceItem will therefore never use
    them, being left displaying an old, stale, frame until the
    application renders again.This could happen for instance if an
    application was rendering between the time the Application object
    goes to Suspended state and the actual process getting SIG_STOPPED
    (ie, suspended for real). Frames rendered in this interval were
    getting dropped and once that app was resumed and its MirSurfaceItem
    brought to front the user would see an old stale frame until some
    new event caused the application to render a new frame (e.g. an
    input event) (LP: #1353374)

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

qtmir (0.4.1+14.10.20140811.1-0ubuntu1) utopic; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ MichaƂ Sawicz ]
  * Bumped dependency for Mir 0.6.0. Switch to using supported API
    (the_ipc_factory -> new_ipc_factory).

  [ Cemil Azizoglu ]
  * Bumped dependency for Mir 0.6.0. Switch to using supported API
    (the_ipc_factory -> new_ipc_factory).

  [ Alan Griffiths ]
  * Bumped dependency for Mir 0.6.0. Switch to using supported API
    (the_ipc_factory -> new_ipc_factory).

  [ Kevin Gunn ]
  * Bumped dependency for Mir 0.6.0. Switch to using supported API
    (the_ipc_factory -> new_ipc_factory).

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 11 Aug 2014 21:12:34 +0000

qtmir (0.4.1+14.10.20140811-0ubuntu1) utopic; urgency=low

  [ Gerry Boland ]
  * AppMan: fix dbus GetWindowStack & GetAppFromPid APIs. On suspend,
    mark focused application unfocused, and reverse on resume.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 11 Aug 2014 15:53:40 +0000

qtmir (0.4.1+14.10.20140808-0ubuntu1) utopic; urgency=medium

  [ Nick Dedekind ]
  * Added prompt surfaces to application

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

qtmir (0.4.0+14.10.20140805.1-0ubuntu1) utopic; urgency=low

  [ Nick Dedekind ]
  * Only add prompt session surfaces to the surface stack once their
    first frame has been drawn.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 05 Aug 2014 19:23:27 +0000

qtmir (0.4.0+14.10.20140805-0ubuntu1) utopic; urgency=low

  [ Daniel d'Andrada ]
  * Don't take screenshots automatically and emit focusRequested()
    reliably (LP: #1350917)

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

qtmir (0.4.0+14.10.20140729-0ubuntu1) utopic; urgency=medium

  [ Gerry Boland ]
  * Update for Mir 0.4.0 compatibility
  * Remove unneeded properties from SurfaceManager and restore support
    for surface with no app parent
  * Add patches to ubuntuclient plugin to enable sharing of GL context -
    needed for oxide
  * Rename client plugin to ubuntumirclient (to match that of qtubuntu)
    There are some apps which check the QPA name is ubuntumirclient, and
    fail with ubuntuclient. Worst offender is Oxide, which is hard to
    rebuild, so this change is easier fix.
  * Revert 125, incorrect branch merged
  * Rename client plugin to ubuntumirclient (to match that of qtubuntu)
    There are some apps which check the QPA name is ubuntumirclient, and
    fail with ubuntuclient. Worst offender is Oxide, which is hard to
    rebuild, so this change is easier fix.
  * Remove surface observer on MirSurfaceItem destruction
  * New apps placed at start of model and are focused immediately.
    AppMan model has proper surface and fullscreen roles now. Whitespace
    fixes
  * Enable UbuntuPlatformServices for a mirserver
  * Fix FTBFS - header file moved
  * Remove ubuntumirclient plugin as it moved to qtubuntu
  * Empty commit to force rebuild for Qt5.3
  * debian: update package name, fixes dependency wait in PPA
  * Fix Qt5.3 compile - QQmlProfiler changed to QQuickProfiler
  * Update README, rename root pro file to match project name
  * debian: replace old libplatform-api-dev with newer libubuntu-
    application-api-dev
  * Fix lifecycle by pulling latest unity-mir code. Rename QML module
    back to Unity.Application. Import unity-mir tests. Use category
    logging
  * Restore code to override side-stage apps to be on main stage on
    single-stage devices
  * Remove unused *toBeFocused state savers
  * debian: update mir & papi version dependencies
  * Fix out-of-tree builds
  * Using const QString ref to save possible QString copy
  * Small header file cleaning
  * Fix test fails - do not run moc again on headers used by tests
  * Downgrade error warning of unmanaged session startup
  * Simplify focus logic, fix tablet lifecycle
  * Workaround GL/GLES conflict between Qt and Mir. Split into 3
    packages: GL qpa, GLES qpa & QML plugin Mir is GLES only. Qt on
    desktop is desktop-GL only. To workaround this, (ab)use the fact
    that MESA on the desktop allows you to bind GL apis to a GLES
    context via eglBindAPI. To use this, need to compile with QPA
    separately for GL and GLES targets. Thus need to split the packaging
    into: + qtmir-android - qpa plugin for GLES targets + qtmir-desktop
    - qpa plugin for desktop-GL targets (uses MESA hack) +
    qtdeclarative5-qtmir-plugin - the QML plugin Also stopped unit tests
    from being installed
  * Re-enable Buffer Queueing OpenGL, should improve graphics
    performance
  * Remove refresh-rate override as Mir now returns correct value
  * MirGLContext - temporary gl context from mir does not have
    attributes defined by GLConfig applied, so need to do so manually
  * DisplayWindow listens for Hide/Show events with its event handler,
    not via a static variable
  * QtEventFeeder - add deconstructor to delete the mTouchDevice
  * Application: delete TODO comment in setSession as nonsensical
  * SessionName removed. PID matching was introduced some time ago and
    so session name unnecessary
  * Application: remove hack to guess app supported orientations,
    implement properly later
  * Fixed threading issue when screen-shotting application about to be
    stopped. By Nick Dedekind
  * Revert rev 179, add comment to clarify
  * Application: replace direct call into MirSurfaceItem with a
    signal/slot. Removes FIXME
  * MirSurfaceItem: setting unfocused on creation breaks camera & videos
    app, so disabling and added fixme
  * Add FIXME about the custom roles
  * Remove redundant comment
  * Remove ApplicationManager::topmostApplication
  * AppMan: if foreground app closes, set all unfocused to let shell
    decide what next to focus
  * Useless static_cast removed
  * DebugHelpers: do not use default state for last option in the enum
    today, the enum may grow in future
  * MirBufferSGTexture: remove the Qt5.3 ifdefs, were probably broken
    for older Qt versions
  * MirSurfaceItem - standardize on qCDebug(QTMIR_SURFACES)
  * MirSurfaceManager: generate roleNames only on read
  * MirSurfaceManager: remove commented line
  * TaskController: add a few more consts
  * Removed WindowScreenshotProvider as not needed for now
  * AppMan: be slightly more verbose with desktop file locating for
    desktop_file_hint. Also use faster exists() static function
  * AppMan: data - remove nonsensical default role
  * ProcessController: expand documentation
  * Clarify licences
  * Give AppMan & SurfMan objectNames
  * MirSurfaceItem: do not print keystrokes to log
  * Fix crash bug - disable input events going to MirSurfaceItem whose
    backing mir surface was destroyed
  * SurfaceManager: do not add each surface to the model twice silly
  * debian: only use gcc4.9 compiler to prevent ABI breaks due to some
    C++11 features still being experimental in gcc
  * AppMan: emit unfocus dbus event on suspend, and focus on resume
  * Revert 214 - breaks install of qtmir and qtubuntu
  * Input Event timestamp - do not overwrite timestamp of events sent to
    client

  [ Nick Dedekind ]
  * Compatibility with mir-0.5

  [ Robert Bruce Park ]
  * CI Train packaging cleanup. Minor packaging cleanup for CI Train
    standards.
  * Slightly more readable debian/rules.

  [ Michael Zanetti ]
  * append newly focused apps instead of prepending them. Allows the ui
    to do the regular app focused animation for newly started apps too
  * Fix multi touch points on mirsurfaceitems. Patch kindly provided by
    anpok.
  * also mir specific key codes through the QKeyEvent

  [ Michael Terry ]
  * Use virtual package names in Conflicts/Replaces fields and clean
    build dirs when doing dh_clean.

  [ Daniel d'Andrada ]
  * ubuntuclient: Properly handle mir's resize event Take it as a
    promise for a future buffer size instead of immediately obeying it.
  * Some MirSurfaceItem fixes Don't assume that it always have an
    Application. Slightly improve its ownership mess.
  * Work around crash in MirSurfaceManager::onSurfaceAttributeChanged
  * Improve debug output of surfaces handled by MirSurfaceManager
  * Make mirserver QPA implement QPlatformIntegration::inputContext() So
    that shell can get a virtual keyboard
  * Wait for screen orientation to stabilize before committing to it
  * Reduce orientation stabilization time and cancel pending change when
    facing up/down
  * Merge multiple qml size changes into a single mir surface resize
    Resizing a mir surface is a costly operation and qml items can get
    resized multiple times in a single event loop iteration. Besides, a
    qml item changes its width and height separately
  * Add WindowScreenshotProvider
  * s/upstart-app-launch-2/ubuntu-app-launch-2
  * Add clipboard support had to remove the dependency of mirserver to
    platform-api-client as it caused a clash as both libs are loading
    unityrpc.proto. That's a protobuffer limitation. Added the protobuf
    generated files directly (unityrpc.cpp and unityrpc.h) as I couldn't
    bend qmake to my will.
  * UbuntuPlatformServices is no longer shared by both QPAs
  * Update Application::fullscreen when the application gets its surface
  * MirSurfaceManager: s/DLOG/qCDebug Use Qt's new categorized logging
    system
  * MirSurfaceManager: improve debug output
  * Hold back this commit for now as qtmir trunk still uses an old mir
    version
  * adapt to latest mir/devel + input_sender branch
  * MirSurfaceManager: improve debug output
  * Revert to the old ways regarding rotation Where unity8 doesn't move
    and apps rotate by themselves. Retake that rotation approach at a
    later time
  * Forward item focus to the underlying mir surface
  * Dispatch keys to mir surface
  * Add a comment with the rationale behind the frame dropper
  * Fix copyright headers
  * Fix and update debian/copyright
  * Removing debian/qtdeclarative5-qtmir-plugin.maintscript This came
    with the copy-pasting unity-mir packaging. Makes no sense in qtmir
    as it never installed a com.canonical.Unity.conf file in the first
    place. That's unity-mir's problems.
  * Add a TODO notice
  * Fix copy-and-paste error in log message
  * Improve Application::setState debug output

  [ Kevin Gunn ]
  * merge lp:~nick-dedekind/qtmir/prompt_sessions
  * no change, rebuild

  [ Ubuntu daily release ]
  * New rebuild forced

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

qtmir (0.0.1-ppa5) utopic; urgency=medium

  * packaging works now

 -- Michael Zanetti <michael.zanetti@canonical.com>  Fri, 16 May 2014 14:04:29 +0200

qtmir (0.0.1-ppa1) utopic; urgency=medium

  * Initial release.

 -- Michael Zanetti <michael.zanetti@canonical.com>  Wed, 14 May 2014 14:28:17 +0200