~phablet-team/camera-app/trunk

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
camera-app (3.0.0+17.04.20170106-0ubuntu1) zesty; urgency=medium

  * Install an apparmor profile with the deb

 -- Ken VanDine <ken.vandine@canonical.com>  Fri, 06 Jan 2017 16:48:21 +0000

camera-app (3.0.0+17.04.20161124.3-0ubuntu1) zesty; urgency=medium

  [ Florian Boucault, Renato Araujo Oliveira Filho ]
  * New release: (LP: #1563858, #1572576, #1584524, #1585942, #1595082,
    #1615657)

 -- Kaleo <florian@boucault.net>  Thu, 24 Nov 2016 19:36:35 +0000

camera-app (3.0.0+16.10.20160824-0ubuntu1) yakkety; urgency=medium

  [ Florian Boucault ]
  * New release: (LP: #1563858, #1572576, #1584524, #1585942, #1595082,
    #1615657)

 -- Kaleo <florian@boucault.net>  Wed, 24 Aug 2016 14:03:57 +0000

camera-app (3.0.0+16.10.20160705-0ubuntu1) yakkety; urgency=medium

  [ Florian Boucault, Tarmac ]
  * Startup time improvements: (LP: #1563858, #1572576, #1584524,
    #1585942)

 -- Kaleo <florian@boucault.net>  Tue, 05 Jul 2016 14:24:32 +0000

camera-app (3.0.0+16.10.20160607-0ubuntu1) yakkety; urgency=medium

  [ Florian Boucault ]
  * New release: (LP: #1563858, #1572576, #1584524, #1585942)

 -- Kaleo <florian@boucault.net>  Tue, 07 Jun 2016 14:16:19 +0000

camera-app (3.0.0+16.04.20160421.1-0ubuntu1) xenial; urgency=medium

  [ Florian Boucault, Ugo Riboni ]
  * New release: Reverted revision 637 that was causing a regression
    where the controls could not be opened in landscape orientation
    anymore. Set Camera.position to switch front/back cameras instead of
    AdvancedCameraSettings and hardcoded camera indexes (LP: #1563858)

 -- Florian Boucault <florian.boucault@canonical.com>  Thu, 21 Apr 2016 12:07:22 +0000

camera-app (3.0.0+16.04.20160323.3-0ubuntu1) xenial; urgency=medium

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

  [ Florian Boucault, Ken VanDine, Ugo Riboni ]
  * New release: Only accept manual focus on points inside the
    viewfinder. viewFinderView.captureMode can now be set before the
    camera is ready. Take advantage of that to fix bug #1545123 Disable
    controls and prevent navigation while a delayed/timed shoot is
    ongoing. Display a stock icon as the video thumbnail when
    thumbnailer fails (which it will do now if it can't process a video)
    Allow sharing multiple files, except if they are mixed content Only
    use full screen in staged mode. added: UnableShareDialog.qml
    tests/unittests/tst_PhotogridView.qml (LP: #1545123)

 -- Florian Boucault <florian.boucault@canonical.com>  Wed, 23 Mar 2016 19:06:26 +0000

camera-app (3.0.0+16.04.20160229-0ubuntu1) xenial; urgency=medium

  [ Arthur Mello, Florian Boucault, Ugo Riboni ]
  * New release: Allow tap to focus up to the left/right edge of the
    screen Query the manual focus support to enable/disable tap-to-focus
    as the backend supports it Do not crash if no QCameraExposureControl
    is available (true with Unity 7) Before setting a photo capture
    resolution, always checks it is included in the possible resolution
    options Fix bottom edge mouse handling: ensure that clicks on the
    bottom edge open it and that any click outside of option buttons
    dismiss the bottom edge Various performance improvements to minimize
    the time between shots and between pressing the shutter button and
    the actual capture When the GPS fix is accurate to less than 100m
    display the GPS icon in red and don't save location Display error
    messages when disk write fails and when SD card is not writeable
    when switching to it Disable record/shuttle button while PhotoRoll
    hint is visible removed: CameraApp/qstorageinfo.cpp
    CameraApp/qstorageinfo.h CameraApp/qstorageinfo_p.h
    CameraApp/qstorageinfo_unix.cpp Snapshot.qml run_tests.sh added:
    CameraApp/storagelocations.cpp CameraApp/storagelocations.h
    PictureReview.qml ProcessingFeedback.qml

  [ Florian Boucault ]
  * Update translations catalog (pot)

 -- Florian Boucault <florian.boucault@canonical.com>  Mon, 29 Feb 2016 12:14:39 +0000

camera-app (3.0.0+16.04.20160114-0ubuntu1) xenial; urgency=medium

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

  [ Florian Boucault ]
  * New release: Only show fitting resolution option if it's greater
    than 50% of the maximum available resolution. Fixed 2 CPU wasters:
    when in photo roll's grid mode, do not have the slideshow mode's
    ActivityIndicator running. When in photo roll, disable viewfinder.
    Enable camera-app as source for videos for content-hub export, and
    adjust the UI Notify the user when camera permissions have been
    revoked, and provide shortcut to change them again added:
    VideoReview.qml

  [ Ugo Riboni ]
  * New release: Only show fitting resolution option if it's greater
    than 50% of the maximum available resolution. Fixed 2 CPU wasters:
    when in photo roll's grid mode, do not have the slideshow mode's
    ActivityIndicator running. When in photo roll, disable viewfinder.
    Enable camera-app as source for videos for content-hub export, and
    adjust the UI Notify the user when camera permissions have been
    revoked, and provide shortcut to change them again added:
    VideoReview.qml

 -- Florian Boucault <florian.boucault@canonical.com>  Thu, 14 Jan 2016 16:08:35 +0000

camera-app (3.0.0+16.04.20151202-0ubuntu1) xenial; urgency=medium

  [ Brendan Donegan ]
  * New release: Bump framework version to ubuntu-sdk-15.04.3 New option
    for the user to choose between the maximum resolution the sensor
    allows or the resolution that fits the screen. Add option to disable
    shutter sound Correctly reset the zoom UI when the actual zoom level
    of the camera resets due to switching cameras or recording modes
    Hide the HDR setting while recording video as it does not apply to
    this mode

  [ Florian Boucault ]
  * New release: Bump framework version to ubuntu-sdk-15.04.3 New option
    for the user to choose between the maximum resolution the sensor
    allows or the resolution that fits the screen. Add option to disable
    shutter sound Correctly reset the zoom UI when the actual zoom level
    of the camera resets due to switching cameras or recording modes
    Hide the HDR setting while recording video as it does not apply to
    this mode

  [ Ugo Riboni ]
  * New release: Bump framework version to ubuntu-sdk-15.04.3 New option
    for the user to choose between the maximum resolution the sensor
    allows or the resolution that fits the screen. Add option to disable
    shutter sound Correctly reset the zoom UI when the actual zoom level
    of the camera resets due to switching cameras or recording modes
    Hide the HDR setting while recording video as it does not apply to
    this mode

 -- Florian Boucault <florian.boucault@canonical.com>  Wed, 02 Dec 2015 08:47:51 +0000

camera-app (3.0.0+16.04.20151124-0ubuntu1) xenial; urgency=medium

  * Added missing bump of framework version to ubuntu-sdk-15.04.2
    necessary since we migrated to Ubuntu UI Toolkit 1.3

 -- Florian Boucault <florian.boucault@canonical.com>  Tue, 24 Nov 2015 14:03:57 +0000

camera-app (3.0.0+16.04.20151120-0ubuntu1) xenial; urgency=medium

  [ Albert Astals Cid ]
  * Add missing return in AdvancedCameraSettings::mediaControlFromCamera

  [ Bartosz Kosiorek ]
  * Fix plural form (LP: #1323373)
  * Improve camera performance by optimized size of the png and svg
    files, without changing visual appearance (used compresspng.com and
    compressor.io)

  [ Benjamin Zeller ]
  * Make sure camera-app cmake project works out of the box in the SDK:
    Enable click mode by default Disable click mode in debian rules file
    Add variable UBUNTU_MANIFEST_PATH variable so QtC knows where to
    look for the manifest file Rename camera-apparmor.json =>
    camera.apparmor (editor support) Copy qmldir file to builddirectory
    so QML2_IMPORT_PATH set by QtC does actually work Automatically
    substitute the click architecture in the manifest file Renamed
    manifest.json => manifest.json.in, since manifest file can now be
    specified by the project file (UBUNTU_MANIFEST_PATH) renamed:
    camera-apparmor.json => camera.apparmor manifest.json =>
    manifest.json.in

  [ Florian Boucault ]
  * Slideshow view: hiding the header closes the options menu. (LP:
    #1494145)

  [ Richard Huddie ]
  * Fix for https://bugs.launchpad.net/camera-app/+bug/1514408 (LP:
    #1514408)

  [ Robert Ancell ]
  * Use new QML package names for qml-module-qtquick2, qml-module-
    qttest, qml-module-qtquick-window2, qml-module-qtpositioning.

  [ Sebastien Bacher ]
  * Use the red color for the Delete button as recommended by design

 -- Florian Boucault <florian.boucault@canonical.com>  Fri, 20 Nov 2015 15:36:19 +0000

camera-app (3.0.0+16.04.20151116.1-0ubuntu1) xenial; urgency=medium

  [ CI Train Bot ]
  * New rebuild forced.

  [ Florian Boucault ]
  * Avoid unfortunate division by zero that was breaking rendering
    silently. (LP: #1516569)

 -- Florian Boucault <florian.boucault@canonical.com>  Mon, 16 Nov 2015 15:57:33 +0000

camera-app (3.0.0+16.04.20151103-0ubuntu1) xenial; urgency=medium

  [ CI Train Bot ]
  * New rebuild forced.

  [ Florian Boucault ]
  * Desktop convergence fixes: Fix viewfinder positioning. Resize window
    to follow viewfinder's aspect ratio. Made photo grid responsive.
    added: ResponsiveGridView.qml
  * Only use Screen.primaryOrientation returned at startup which is more
    indicative of the native orientation of the device. Fixes case where
    viewfinder rotated when changing window size. (LP: #1511026)

 -- Florian Boucault <florian.boucault@canonical.com>  Tue, 03 Nov 2015 14:23:17 +0000

camera-app (3.0.0+16.04.20151026-0ubuntu1) xenial; urgency=medium

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

  [ Florian Boucault ]
  * Migrated to using Ubuntu UI Toolkit version 1.3 only. Migrated to
    using QtQuick 2.4 and QtQuick.Window 2.2 only. (LP: #1508363)

  [ James Henstridge ]
  * After shooting a video, request a thumbnail so that it will be
    available in the cache when needed (e.g. by the Gallery or Dash).

 -- Florian Boucault <florian.boucault@canonical.com>  Mon, 26 Oct 2015 13:19:17 +0000

camera-app (3.0.0+15.10.20151005.1-0ubuntu1) wily; urgency=medium

  [ CI Train Bot ]
  * New rebuild forced.

  [ Florian Boucault ]
  * Fix viewfinder short disappearance at startup. Make overlay controls
    appear slightly faster at startup. (LP: #1472903)

 -- Florian Boucault <florian.boucault@canonical.com>  Mon, 05 Oct 2015 13:15:50 +0000

camera-app (3.0.0+15.10.20150707-0ubuntu1) wily; urgency=medium

  [ Brendan Donegan ]
  * Use pointing_device from self.app instead of the testCase passed in

  [ CI Train Bot ]
  * New rebuild forced.

  [ Florian Boucault ]
  * Remove hardcoded actions in GalleryViewHeader to make it extensible.
  * Set desktop file flags informing Unity that the camera app is doing
    its own content rotation when the device rotates. Manually
    rotate/position depending on device orientation: photo roll bottom
    edge indicators and content first photo roll hint snapshot animation
    countdown timer (LP: #1467461, #1466409, #1467658, #1467661,
    #1447694, #1468269, #1367792, #1468284)

  [ Leo Arias ]
  * Fixed the static errors reported by flake8. Added the check to the
    debian build tests. Added python3-flake8 as a build dependency. (LP:
    #1444170)
  * Use pointing_device from self.app instead of the testCase passed in

  [ Olivier Tilloy ]
  * Updated application icon. removed: camera-app.svg added: camera-
    app.png

 -- CI Train Bot <ci-train-bot@canonical.com>  Tue, 07 Jul 2015 11:09:20 +0000

camera-app (3.0.0+15.04.20150514-0ubuntu1) vivid; urgency=medium

  [ CI Train Bot ]
  * Resync trunk.

  [ Leo Arias ]
  * Use the base class from the toolkit in autopilot tests.

  [ Omer Akram ]
  * Autopilot: Ensure the media directories exist before trying to
    delete data from them. (LP: #1444650)

 -- CI Train Bot <ci-train-bot@canonical.com>  Thu, 14 May 2015 15:10:24 +0000

camera-app (3.0.0+15.04.20150424-0ubuntu1) vivid; urgency=medium

  [ CI Train Bot ]
  * New rebuild forced.

  [ Florian Boucault ]
  * Do not render camera when in photo roll and vice-versa. (LP:
    #1441937)

 -- CI Train Bot <ci-train-bot@canonical.com>  Fri, 24 Apr 2015 14:04:45 +0000

camera-app (3.0.0+15.04.20150327.1~rtm-0ubuntu1) 14.09; urgency=medium

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

  [ Florian Boucault ]
  * Unit tests: make tst_BottomEdgeIndicators::test_options conditional
    on the presence of Qt5.4

 -- CI Train Bot <ci-train-bot@canonical.com>  Fri, 27 Mar 2015 16:58:54 +0000

camera-app (3.0.0+15.04.20150313-0ubuntu1) vivid; urgency=medium

  [ CI Train Bot ]
  * New rebuild forced.

  [ Florian Boucault ]
  * Disable editing when the file is a video
  * Fix photos/videos when shooting/recording with orientation lock on
    by not relying on the app orientation returned by unity8 but instead
    the device orientation itself. (LP: #1428272, #1422762)
  * Show placeholder bottom edge hint when no option is set so that the
    user can always guess the existence of the bottom edge. (LP:
    #1365419)
  * Updated pot file

  [ Ugo Riboni ]
  * Refactor camera editor tests, make them work even if UI extras are
    not installed, and add a test for the edit button being disabled
    when on a video

 -- CI Train Bot <ci-train-bot@canonical.com>  Fri, 13 Mar 2015 00:41:59 +0000

camera-app (3.0.0+15.04.20150218-0ubuntu1) vivid; urgency=medium

  [ CI Train Bot ]
  * New rebuild forced.

  [ Ugo Riboni ]
  * Fix a bug preventing the thumbnails for videos to load correctly
    (LP: #1423177)

 -- CI Train Bot <ci-train-bot@canonical.com>  Wed, 18 Feb 2015 14:51:12 +0000

camera-app (3.0.0+15.04.20150217-0ubuntu1) vivid; urgency=medium

  [ CI Train Bot ]
  * New rebuild forced.

  [ Ugo Riboni ]
  * Fix some failing tests (that were failing for real test bugs, not
    due to infrastructure problems).

 -- CI Train Bot <ci-train-bot@canonical.com>  Tue, 17 Feb 2015 21:37:33 +0000

camera-app (3.0.0+15.04.20150212.3-0ubuntu1) vivid; urgency=medium

  [ Bill Filler ]
  * dynamically check for editor (LP: #1368787)
  * update depends on ui-extras new version

  [ Arthur Mello ]
  * Enable viewing full screen picture while in selection mode Remove
    actions from the slide show header if we are in selection mode Make
    it possible to toggle selection when on slide show view Scroll the
    last seem picture from slideshow into view when returning to the
    grid photo roll (LP: #1416043)

  [ Ugo Riboni ]
  * dynamically check for editor (LP: #1368787)

  [ Florian Boucault ]
  * Click packaging: add autopilot tests dependencies. (LP: #1419022)

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 12 Feb 2015 19:41:11 +0000

camera-app (3.0.0+15.04.20150210-0ubuntu1) vivid; urgency=medium

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Florian Boucault ]
  * Swiping quickly through photo roll no longer causes photos to zoom.
    Workaround for QTBUG-39332. (LP: #1400141)

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

camera-app (3.0.0+15.04.20150204-0ubuntu1) vivid; urgency=medium

  [ CI Train Bot ]
  * Resync trunk

  [ Ugo Riboni ]
  * Add photo editor feature using the component from ubuntu-ui-extras.
    (LP: #1368787)
  * Refresh properly the thumbnails when the picture is changed. Make
    sure after the first change the file is still being watched.

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 04 Feb 2015 20:36:01 +0000

camera-app (3.0.0+15.04.20150127.1-0ubuntu1) vivid; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Florian Boucault ]
  * Improve thumbnail generation performance: do not retrieve thumbnails
    for the view that is not visible.

  [ Ugo Riboni ]
  * Make hdr and flash options mutually exclusive (LP: #1350958)
  * Size option labels to fit the widest text in the column, so they
    look good in all languages (LP: #1413529)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 27 Jan 2015 17:37:20 +0000

camera-app (3.0.0+15.04.20150127~rtm-0ubuntu1) 14.09; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Ugo Riboni ]
  * warn the user of low disk space while recording or taking a picture

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 27 Jan 2015 14:54:27 +0000

camera-app (3.0.0+15.04.20150126.2-0ubuntu1) vivid; urgency=low

  [ Bill Filler ]
  * Fix case when pictures have been taken while the library is being
    scanned.

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Ugo Riboni ]
  * warn the user of low disk space while recording or taking a picture

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 26 Jan 2015 16:19:07 +0000

camera-app (3.0.0+15.04.20150125-0ubuntu1) vivid; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Florian Boucault ]
  * Image quality setting: set "Fine Quality" to the maximum quality.
    More appropriate user wise and fixes failing AP test.
  * Asynchronously scan the filesystem for media. Fixes freeze at
    startup with a huge amount of media. Significantly faster deletion
    when deleting a huge amount of media. Taking a photo is now always
    fast even with a huge amount of media. (LP: #1413950)
  * SD Card: use app specific subfolder of Videos and Pictures to
    read/write videos and pictures.
  * Fixed issue where recording video on SD card prevents recording on
    internal storage later.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Sun, 25 Jan 2015 03:06:33 +0000

camera-app (3.0.0+15.04.20150108-0ubuntu1) vivid; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Florian Boucault ]
  * Fixed merge of SD card support (lp:~fboucault/camera-app/sdcard)
  * Depend on final release of 14.10 framework (ubuntu-sdk-14.10)
    instead of dev version (ubuntu-sdk-14.10-dev2)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 08 Jan 2015 17:54:58 +0000

camera-app (3.0.0+15.04.20141211-0ubuntu1) vivid; urgency=low

  [ CI Train Bot ]
  * Resync trunk

  [ Florian Boucault ]
  * Add an option to save photos and videos to external SD card. Adapted
    bottom edge UI to accomodate for more than 3 settings. (LP:
    #1392368)

  [ Ubuntu daily release ]
  * New rebuild forced

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

camera-app (3.0.0+15.04.20141209-0ubuntu1) vivid; urgency=low

  [ Florian Boucault ]
  * Add missing commits from merge in revision 428: Add support to multi
    selection on grid view when triggered by the user
  * Add missing commits from merge in revision 429: Add self timer
    controlled by a new settings option
  * Explicitly tell QtCreator where the manifest is.
  * Store location even if no valid altitude was provided. (LP:
    #1396672)
  * Video recording: support displaying more than 1 hour long video
    time. (LP: #1398447)
  * Add gridlines to the viewfinder controlled by a new settings option
    (LP: #1368140)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 09 Dec 2014 21:48:24 +0000

camera-app (3.0.0+15.04.20141205-0ubuntu2) UNRELEASED; urgency=medium

  [ Florian Boucault ]
  * Add dependency on python3-mediainfodll to camera-app-autopilot

 -- Florian Boucault <florian.boucault@canonical.com>  Wed, 10 Dec 2014 15:16:28 -0200

camera-app (3.0.0+15.04.20141205-0ubuntu1) vivid; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Florian Boucault ]
  * Added option to select encoding quality for photo capture (JPEG
    encoding quality).

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 05 Dec 2014 13:49:00 +0000

camera-app (3.0.0+15.04.20141202-0ubuntu1) vivid; urgency=low

  [ Sebastien Bacher ]
  * Wrap the swipe hint, the elided version doesn't make sense in some
    locales... (LP: #1389611)

  [ Florian Boucault ]
  * Add support to multi selection on grid view when triggered by the
    user
  * Add self timer controlled by a new settings option

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Chris Gagnon ]
  * wait at beginning of autopilot tests to work around bug #1373039
    (LP: #1376495, #1373039)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 02 Dec 2014 19:26:50 +0000

camera-app (3.0.0+14.10.20141028~rtm-0ubuntu1) 14.09; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Florian Boucault ]
  * Add a hint to the existence of the photo roll displayed the first
    time the user takes a photo. (LP: #1368808)
  * [Autopilot] Do not stop/start the location service at the beginning
    of each test. (LP: #1380685)
  * Display message when no media present in photo roll. (LP: #1375270)

  [ Omer Akram ]
  * autopilot: fix camera zoom bar not showing in test due to small
    initial pinch (LP: #1366825)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 28 Oct 2014 21:54:02 +0000

camera-app (3.0.0+14.10.20141008-0ubuntu1) 14.09; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Florian Boucault ]
  * Photo roll's slideshow view: use the photo downscaled instead of the
    thumbnailer. (LP: #1376767)

  [ Ubuntu daily release ]
  * New rebuild forced

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

camera-app (3.0.0+14.10.20141001-0ubuntu1) 14.09; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Florian Boucault ]
  * Photo roll: fixed invocation of media player, use video:// instead
    of file:// url scheme. (LP: #1375791)

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

camera-app (3.0.0+14.10.20140908-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Florian Boucault ]
  * Always go back to view finder when activating export mode. (LP:
    #1365121)
  * Mark options strings for translation. (LP: #1357022)

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

camera-app (3.0.0+14.10.20140903-0ubuntu1) utopic; urgency=low

  [ Michał Sawicz ]
  * Add :any to python dependency and install the camera app module in
    app-private libdir.

  [ Ugo Riboni ]
  * Add translations inside the .desktop file (LP: #1318008)

  [ Florian Boucault ]
  * Disable mode switching while recording videos.
  * Disable camera switching while recording videos. (LP: #1358302)
  * Photo roll: more fine grained media folder monitoring as to properly
    forward deletions to the view. Workarounded a couple of Qt bugs
    related to snapMode SnapOneItem. (LP: #1355407)
  * Do not allow switching to the camera roll while recording a video.
  * Rename application from 'camera' to 'com.ubuntu.camera' to make
    state saving work again. Seamlessly transition ~/Pictures/camera and
    ~/Videos/camera to new locations. (LP: #1363112)
  * Remove the X-Ubuntu-Gettext-Domain from the .desktop file, which
    causes the click scope not to load the inline translations. (LP:
    #1325626)
  * Align snapshot with viewfinder as to assure visual continuity in the
    transition from one to the other. (LP: #1362822)
  * Added cancel button in content export mode. (LP: #1362823)

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

camera-app (3.0.0+14.10.20140829-0ubuntu1) utopic; urgency=low

  [ Brendan Donegan ]
  * Finally remove location prompts during testing

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Sergio Schvezov ]
  * Fix cross building with click chroot

  [ Florian Boucault ]
  * Significantly faster startup. (LP: #1325001)

  [ CI bot ]
  * Resync trunk

  [ Pawel Stolowski ]
  * Added X-Ubuntu-Default-Department-ID key to the desktop file. This
    is required by click scope to support departments for preinstalled
    applications.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 29 Aug 2014 02:28:40 +0000

camera-app (3.0.0+14.10.20140815.1-0ubuntu1) utopic; urgency=low

  [ Florian Boucault ]
  * Fix deleting action not working in some common conditions by
    computing file path at the right moment. Applied same fix to sharing
    action. (LP: #1350956)

  [ Brendan Donegan ]
  * Finally remove location prompts during testing

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 15 Aug 2014 21:45:34 +0000

camera-app (3.0.0+14.10.20140814-0ubuntu1) utopic; urgency=low

  [ Florian Boucault ]
  * Photo roll header: swap label and icon to respect toolkit's
    behaviour.
  * Photo roll: added pinch to zoom. (LP: #1344277)
  * Ensure video thumbnails are generated as soon as possible by
    monitoring changes to files themselves. (LP: #1337593)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 14 Aug 2014 16:43:45 +0000

camera-app (3.0.0+14.10.20140813-0ubuntu1) utopic; urgency=low

  [ Ken VanDine ]
  * Updated depends for qtdeclarative5-ubuntu-content1 package rename

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 13 Aug 2014 14:52:01 +0000

camera-app (3.0.0+14.10.20140808-0ubuntu1) utopic; urgency=low

  [ Brendan Donegan ]
  * Setting TRUST_STORE_PERMISSION_MANAGER_IS_RUNNING_UNDER_TESTING
    prevents the location request dialog from popping up, so as not to
    break the Autopilot tests.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 08 Aug 2014 14:58:17 +0000

camera-app (3.0.0+14.10.20140805-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Florian Boucault ]
  * Added export mode so that other apps can request pictures from the
    camera app. (LP: #1311409)

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

camera-app (3.0.0+14.10.20140730-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Florian Boucault ]
  * Save state of viewfinder: preserve back/front mode, picture/video
    mode, flash, HDR and location settings. (LP: #1344274)
  * Photo roll: Added feedback upon pressed. Use icons from theme
    instead of custom PNGs .
  * Exit the options overlay upon tapping anywhere outside the buttons.
    It used to work relying on the behaviour of the toolkit's Panel but
    it recently changed under our feet (rev 1000.119.19 from lp:ubuntu-
    ui-toolkit). (LP: #1348643)
  * Make sure all files are visible in QtCreator. No need for
    qmlproject.
  * Photo roll: elide header title. (LP: #1348645)
  * Sharing: make content type dynamic. (LP: #1337587)
  * Save videos in a subfolder of ~/Videos (LP: #1337594)

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

camera-app (3.0.0+14.10.20140717-0ubuntu1) utopic; urgency=low

  [ CI bot ]
  * Resync trunk

  [ Florian Boucault ]
  * Enable GPS location saving into EXIF photo's metadata.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 17 Jul 2014 19:13:15 +0000

camera-app (3.0.0+14.10.20140714-0ubuntu1) utopic; urgency=low

  [ Benjamin Zeller ]
  * Fix project files to correctly run on the device from QtCreator

  [ Florian Boucault ]
  * Enabled HDR feature: linked it up to backend (qtubuntu-camera).
    fixed up overlay UI for icon less options .

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

camera-app (3.0.0+14.10.20140703.2-0ubuntu1) utopic; urgency=low

  [ Bill Filler ]
  * add content_exchange_source policy for apparmor

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 03 Jul 2014 16:43:19 +0000

camera-app (3.0.0+14.10.20140703.1-0ubuntu1) utopic; urgency=medium

  [ Florian Boucault ]
  * Redesign of the entire user interface.
  * Viewfinder now extensible with options screen available from the bottom edge
  * Add in-app pictures gallery
  * Cleaner visuals, more animations
  * Move photos under a subfolder: ~/Pictures/camera
  * Re-disable camera recording, UI for that is coming later

  [ CI bot ]
  * Resync trunk

  [ Ubuntu daily release ]
  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 03 Jul 2014 13:37:39 +0000

camera-app (2.9.1+14.10.20140701-0ubuntu1) utopic; urgency=low

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

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

camera-app (2.9.1+14.10.20140626-0ubuntu1) utopic; urgency=low

  [ Jim Hodapp ]
  * Update the app_armor policy groups and framework verion so that the
    camera-app can continue to write snapshots and video files to
    ~/Pictures and ~/Videos respectively

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 26 Jun 2014 23:09:57 +0000

camera-app (2.9.1+14.10.20140625.1-0ubuntu1) utopic; urgency=low

  [ Jim Hodapp ]
  * Re-enable camera recording since it's working again in libhybris

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 25 Jun 2014 17:37:08 +0000

camera-app (2.9.1+14.10.20140528-0ubuntu1) utopic; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Olivier Tilloy ]
  * No change rebuild to pick up the latest translation updates.

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

camera-app (2.9.1+14.10.20140522-0ubuntu1) utopic; urgency=low

  [ Sergio Schvezov ]
  * Correct click manifest for python3.

  [ David Planella ]
  * Internationalize the metrics strings (LP: #1320435)
  * Update the translations template with the new strings (LP: #1320437)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 22 May 2014 21:39:53 +0000

camera-app (2.9.1+14.10.20140508-0ubuntu2) utopic; urgency=medium

  * Renaming dep package qtdeclarative5-qtmultimedia-plugin to
    qml-module-qtmultimedia

 -- Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>  Fri, 09 May 2014 12:57:28 -0300

camera-app (2.9.1+14.10.20140508-0ubuntu1) utopic; urgency=low

  [ Arthur Mello ]
  * Flip the video horizontally if we are on desktop (LP: #1307654)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 08 May 2014 15:18:20 +0000

camera-app (2.9.1+14.10.20140505-0ubuntu1) utopic; urgency=low

  [ Barry Warsaw ]
  * Port emulators to Python 2/3.   * Port autopilot tests to Python 3.
      * d/control: Add explicit dependency on python3-autopilot. Bump
    Standards-Version to 3.9.5. (LP: #1313930)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 05 May 2014 14:57:18 +0000

camera-app (2.9.1+14.04.20140331-0ubuntu2) trusty; urgency=medium

  * Alternatively depend on the OpenGLES version of
    qtdeclarative5-qtmultimedia-plugin and
    qtdeclarative5-ubuntu-ui-toolkit-plugin

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

camera-app (2.9.1+14.04.20140331-0ubuntu1) trusty; urgency=low

  [ Bill Filler ]
  * updated framework version
  * change check for desktopMode to use platform name rather than env
    var

  [ Pete Woods ]
  * Handle the HUD quit signal This change is only necessary for apps
    that don't use the UITK MainView (LP: #1269409)

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

camera-app (2.9.1+14.04.20140307-0ubuntu1) trusty; urgency=low

  * New rebuild forced

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 07 Mar 2014 06:56:53 +0000

camera-app (2.9.1+14.04.20140306-0ubuntu1) trusty; urgency=low

  [ Bill Filler ]
  * click support

  [ Sergio Schvezov ]
  * click support

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

camera-app (2.9.1+14.04.20140214-0ubuntu1) trusty; urgency=low

  [ Bill Filler ]
  * skip integration test until it's reworked to be more reliable

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 14 Feb 2014 23:40:23 +0000

camera-app (2.9.1+14.04.20140213-0ubuntu1) trusty; urgency=low

  [ Bill Filler ]
  * initial support for DESKTOP_MODE

  [ Omer Akram ]
  * port autopilot tests to python 3.
  * add integration test to make sure gallery icon in the camera toolbar
    really opens the gallery-app. (LP: #1228335)

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

camera-app (2.9.1+14.04.20131106-0ubuntu1) trusty; urgency=low

  [ Łukasz 'sil2100' Zemczak ]
  * Make camera-app autopilot tests passing on 1.4 - we remove the
    main_window.get_camera() element as it is broken and not used at all
    during tests

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 224

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 06 Nov 2013 15:13:17 +0000

camera-app (2.9.1+13.10.20131011-0ubuntu1) saucy; urgency=low

  [ Bill Filler ]
  * skip invalid tests on maguro/mir
  * Center the viewfinder in more cases fixes LP: #1179503 (LP:
    #1179503)
  * Disable the video switch as the feature is not working for v1.0

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 217

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

camera-app (2.9.1+13.10.20131008-0ubuntu1) saucy; urgency=low

  [ Pete Woods ]
  * Set the minimum value for the camera infographic (fix regression in
    r200). (LP: #1214309)

  [ Ted Gould ]
  * Adding single instance marker to the desktop file.

  [ Ugo Riboni ]
  * Launch the gallery app using the URL dispatcher. (LP: #1229291)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 210

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 08 Oct 2013 05:25:24 +0000

camera-app (2.9.1+13.10.20130930.4-0ubuntu1) saucy; urgency=low

  [ Ugo Riboni ]
  * Use the new QML bindings to send metrics via libusermetrics.

  [ Sergio Schvezov ]
  * Click build support.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 203

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 30 Sep 2013 21:44:47 +0000

camera-app (2.9.1+13.10.20130923-0ubuntu1) saucy; urgency=low

  [ Guenter Schwann ]
  * Disable test_shoot_button_disable(9 as it is unstable because of a
    race condition. (LP: #1227373)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 198

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

camera-app (2.9.1+13.10.20130919.2-0ubuntu1) saucy; urgency=low

  [ Pete Woods ]
  * Fix the infographic display, so that it correctly sets the minimum
    value.

  [ Ugo Riboni ]
  * Use the new actions API to add actions to the HUD, and make sure
    they actually do something. (LP: #1221344)

  [ Timo Jyrinki ]
  * Add qtdeclarative5-unity-action-plugin dependency

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 193

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

camera-app (2.9.1+13.10.20130802-0ubuntu1) saucy; urgency=low

  [ Guenter Schwann ]
  * Use Eventually for testing the focus ring opacity for 0.0. (LP:
    #1206822)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 183

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

camera-app (2.9.1+13.10.20130731-0ubuntu1) saucy; urgency=low

  [ Ugo Riboni ]
  * Change the license of assets to CC instead of GPL3. (LP: #1194916)
  * Align the camera app recording time counter as specified by design.
    (LP: #1193257)
  * The margin of the zoom bar center line and toolbar center of
    symmetry are now the same when in landscape mode. (LP: #1122036)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 181

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

camera-app (2.9.1+13.10.20130725-0ubuntu1) saucy; urgency=low

  [ Guenter Schwann ]
  * Don't show the zoom bar, when zooming is not possible. (LP:
    #1191088)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 177

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

camera-app (2.9.1+13.10.20130724-0ubuntu1) saucy; urgency=low

  [ Pete Woods ]
  * Change the infographic text as per design request.

  [ Guenter Schwann ]
  * Fix tap to focus.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 174

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

camera-app (2.9.1+13.10.20130718-0ubuntu1) saucy; urgency=low

  [ Guenter Schwann ]
  * Use simpler MetricManager API for less code.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 170

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

camera-app (2.9.1+13.10.20130708-0ubuntu1) saucy; urgency=low

  [ Guenter Schwann ]
  * Update user metric for every captured photo/video.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 164

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

camera-app (2.9.1+13.10.20130703-0ubuntu1) saucy; urgency=low

  [ Kaleo ]
  * Adapted slider to newer and simpler toolkit's theming
    infrastructure. The ItemStyle attached property has been removed and
    widgets now have a 'style' property equivalent to what
    ItemStyle.delegate was providing. The Ubuntu UI Toolkit merge
    request containing that change is:
    https://code.launchpad.net/~fboucault/ubuntu-ui-
    toolkit/simple_theming/+merge/171645 It will be merged in the
    morning so that the fixes for this app can be merged in the same
    day. For testing, armhf packages of the toolkit are available at:
    http://people.canonical.com/~kaleo/sdk_simple_theming/ .

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 161

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

camera-app (2.9.1daily13.06.22-0ubuntu1) saucy; urgency=low

  [ Guenter Schwann ]
  * Show video recording duration correctly on all orientations (LP:
    #1191940). (LP: #1191940)
  * Update viewfinder resolution when the capture mode changes. (LP:
    #1191946)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 156

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

camera-app (2.9.1daily13.06.21-0ubuntu1) saucy; urgency=low

  [ Guenter Schwann ]
  * Fix clash of component name.
  * Set orientation for videos.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 152

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 21 Jun 2013 04:03:27 +0000

camera-app (2.9.1daily13.06.17-0ubuntu1) saucy; urgency=low

  [ Robert Bruce Park ]
  * Fix lintian warnings.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 146

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

camera-app (2.9.1daily13.06.13-0ubuntu1) saucy; urgency=low

  [ Ricardo Salveti de Araujo ]
  * debian/control: should depend on mesa gl/gles headers as first
    option .

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 140

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 13 Jun 2013 04:07:58 +0000

camera-app (2.9.1daily13.06.12-0ubuntu1) saucy; urgency=low

  [ Ugo Riboni ]
  * Allow the application to be translated and add one initial
    translation.

  [ Omer Akram ]
  * fixes a slider related failing test on the touch devices.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 138

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

camera-app (2.9.1daily13.06.11-0ubuntu1) saucy; urgency=low

  [ Ugo Riboni ]
  * Use the same license for all files.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 135

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

camera-app (2.9.1daily13.06.07-0ubuntu1) saucy; urgency=low

  [ Kaleo ]
  * Fixed name collision with Ubuntu UI Toolkit's new class
    OrientationHelper.

  [ Ugo Riboni ]
  * Adapt the slider delegate to use the new SDK automatic styling.
  * Fix a typo preventing proper rotation in one case and make the app
    starts fullscreen again.

  [ Omer Akram ]
  * replaced 'mouse' with 'pointing_device' so that tests work on touch
    as well.
  * port autopilot tests to 1.3 and also make these tests platform
    aware.
  * disable failing autopilot test so that we could get autopilot
    enabled in jenkins.
  * fix local install location which got ruined in the ap-1.3 port.
  * make the camera-app tests pep8 compliant, improves tests for
    readability and re-usability of code, skip few tests on the Nexus 7
    as camera does not work on it yet.

  [ Robert Bruce Park ]
  * Port from HUD 0.1 to 1.0.

  [ Łukasz 'sil2100' Zemczak ]
  * libhud-qt-qml has been renamed to qtdeclarative5-hud1.0. Also,
    switch code to use HUD 1.0.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 133

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

camera-app (2.9.1daily13.05.31ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ Omer Akram ]
  * make the camera-app tests pep8 compliant, improves tests for
    readability and re-usability of code, skip few tests on the Nexus 7
    as camera does not work on it yet.

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 31 May 2013 05:14:32 +0000

camera-app (2.9.1daily13.05.22ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ Robert Bruce Park ]
  * Minor packaging fixes.

  [ Łukasz 'sil2100' Zemczak ]
  * debian/control:
    - Change build dependency from python2.7 to python

  [ Didier Roche ]
  * Automatic snapshot from revision 117 (bootstrap)

  [ Guenter Schwann ]
  * Depend on cameraplugin-fake package for the test package only

  [ Kaleo ]
  * Fixed name collision with Ubuntu UI Toolkit's new class
    OrientationHelper.

  [ Ugo Riboni ]
  * Adapt the slider delegate to use the new SDK automatic styling.
  * Fix a typo preventing proper rotation in one case and make the app
    starts fullscreen again.

  [ Omer Akram ]
  * replaced 'mouse' with 'pointing_device' so that tests work on touch
    as well.
  * port autopilot tests to 1.3 and also make these tests platform
    aware.
  * disable failing autopilot test so that we could get autopilot
    enabled in jenkins.
  * fix local install location which got ruined in the ap-1.3 port.

  [ Robert Bruce Park ]
  * Port from HUD 0.1 to 1.0.

  [ Łukasz 'sil2100' Zemczak ]
  * libhud-qt-qml has been renamed to qtdeclarative5-hud1.0. Also,
    switch code to use HUD 1.0.

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

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 22 May 2013 04:26:36 +0000

camera-app (2.9) quantal; urgency=low

  * Implemented pinch to zoom.

 -- Renato Araujo Oliveira Filho <renato@canonical.com>  Mon, 15 Apr 2013 10:39:23 -0300

camera-app (2.8.1) quantal; urgency=low

  * Add X-Ubuntu-Touch field into desktop files.

 -- Ying-Chun Liu (PaulLiu) <paul.liu@canonical.com>  Tue, 02 Apr 2013 22:25:14 +0800

camera-app (2.8) quantal; urgency=low

  [Renato Filho]
  * Replaced Sensors API in favor of Screen component.
  * Fixed controls layout during the landscape orientation.

 -- Bill Filler <bill.filler@canonical.com>  Fri, 29 Mar 2013 11:03:05 -0400

camera-app (2.7.1) quantal; urgency=low

  * Changing packaging dependencies to work with raring

 -- Sergio Schvezov <sergio.schvezov@canonical.com>  Mon, 25 Mar 2013 18:10:05 -0300

camera-app (2.7) quantal; urgency=low

  * Release new package version with Qt 5.0.1 support.

 -- Jim Hodapp <jim.hodapp@canonical.com>  Fri, 22 Mar 2013 09:40:25 -0400

camera-app (2.6) quantal; urgency=low

  * Release new package version with Qt multithreaded rendering enabled.

 -- Jim Hodapp <jim.hodapp@canonical.com>  Thu, 14 Mar 2013 12:58:17 -0400

camera-app (2.5) quantal; urgency=low

  * Fix orientation for the tablet (LP: #1104407)
  * Add HUD dummy actions (LP: #1125656)

 -- Guenter Schwann <guenter.schwann@canonical.com>  Tue, 19 Feb 2013 22:07:29 +0100

camera-app (2.4) quantal; urgency=low

  * Update dependencies to include qtsensors

 -- Ugo Riboni <ugo.riboni@canonical.com>  Wed, 13 Feb 2013 19:25:29 +0100

camera-app (2.3) quantal; urgency=low

  * Adjust position and rotation of controls to match orientation

 -- Ugo Riboni <ugo.riboni@canonical.com>  Thu, 07 Feb 2013 20:12:01 +0100

camera-app (2.2) quantal; urgency=low

  * Remove qthybris

 -- Ricardo Mendoza <ricardo.mendoza@canonical.com>  Thu, 31 Jan 2013 21:07:40 -0430

camera-app (2.1) quantal; urgency=low

  * set new env var to disable multi-threaded rendering on camera

 -- Bill Filler <bill.filler@canonical.com>  Tue, 29 Jan 2013 17:20:04 -0500

camera-app (1.8) quantal; urgency=low

  * Align viewfinder feed to the top (LP: #1091153)
  * Fix build for Qt5 final

 -- Ugo Riboni <ugo.riboni@canonical.com>  Tue, 22 Jan 2013 17:57:17 +0100

camera-app (1.7) quantal; urgency=low

  * Depend on qthybris only on ARM architectures

 -- Ugo Riboni <ugo.riboni@canonical.com>  Tue, 18 Dec 2012 17:53:48 +0100

camera-app (1.6) quantal; urgency=low

  * New release

 -- Florian Boucault <florian.boucault@canonical.com>  Tue, 18 Dec 2012 01:51:15 +0000

camera-app (1.5) quantal; urgency=low

  * Use a theme to modify the zoom Slider instead of using a custom Slider
  * Change zoom bar asset to remove shadow (LP: #1086924)
  * Make zoom bar touch sensitive area taller (LP: #1086426)
  * Allow dragging the focus ring (LP: #1086925)

 -- Ugo Riboni <ugo.riboni@canonical.com>  Thu, 13 Dec 2012 11:16:17 +0100

camera-app (1.4) quantal; urgency=low

  * The inactive record icon should be a red dot (LP: #1086928)
  * Fade out the focus ring after a timeout
  * Swap the camera and video icons (LP: #1086923)
  * Speed up the shoot animation and remove the white flash
  * Launch the gallery app when pressing the gallery button

 -- Ugo Riboni <ugo.riboni@canonical.com>  Thu, 06 Dec 2012 19:59:11 +0000

camera-app (1.3) quantal; urgency=low

  [ Ugo Riboni ]
  * Swap the on and off icons for the torch so they work properly
  * Add all missing copyright headers

  [ Bill Filler ]
  * unset multi-threaded qml renderer env vars

 -- Bill Filler <bill.filler@canonical.com>  Tue, 04 Dec 2012 20:52:07 +0000

camera-app (1.2) quantal; urgency=low

  [ Ugo Riboni ]
  * Update the shoot animation according to design
  * Disable the camera viewfinder when app is inactive to save resources

  [ Florian Boucault ]
  * Use Label instead of TextCustom

  [ Michael Zanetti ]
  * Rename the testing package to camera-app-autopilot
  * Fix build dependencies
  * Make autopilot tests work on Desktop and Devices

 -- Ugo Riboni <ugo.riboni@canonical.com>  Tue, 04 Dec 2012 12:27:01 +0000

camera-app (1.1) quantal; urgency=low

  * Add more tests and split them into separate files

 -- Ugo Riboni <ugo.riboni@canonical.com>  Fri, 23 Nov 2012 17:10:51 +0100

camera-app (1.0) quantal; urgency=low

  * Update the flash and record mode button to fade between states

 -- Ugo Riboni <ugo.riboni@canonical.com>  Fri, 16 Nov 2012 19:20:58 +0100

camera-app (0.9) quantal; urgency=low

  [ Ugo Riboni ]
  * Add support for front/back camera switching

 -- Bill Filler <bill.filler@canonical.com>  Thu, 15 Nov 2012 21:18:02 -0500

camera-app (0.8) quantal; urgency=low

  [ Ugo Riboni ]
  * Slide the preview to the bottom and rotate it to match what we get
    from the AAL plugin.

 -- Bill Filler <bill.filler@canonical.com>  Thu, 08 Nov 2012 16:26:08 -0500

camera-app (0.7) quantal; urgency=low

  * new release

 -- Bill Filler <bill.filler@canonical.com>  Mon, 05 Nov 2012 12:55:24 -0500

camera-app (0.6) quantal; urgency=low

  * Use the most recent focus ring asset
  * While recording pulse the recording icon
  * Use the right enum value to turn on the torch in video recording mode

 -- Ugo Riboni <ugo.riboni@canonical.com>  Thu, 01 Nov 2012 16:22:47 +0100

camera-app (0.5) quantal; urgency=low

  * Match the toolbar to the latest visual and interaction design

 -- Ugo Riboni <ugo.riboni@canonical.com>  Fri, 26 Oct 2012 09:09:39 +0200

camera-app (0.4) quantal; urgency=low

  * revert back to pre-photo viewer integration (bzr rev 29) as it's broken

 -- Bill Filler <bill.filler@canonical.com>  Fri, 19 Oct 2012 11:43:25 -0400

camera-app (0.3) quantal; urgency=low

  * Add the photo viewer

 -- Ugo Riboni <ugo.riboni@canonical.com>  Fri, 19 Oct 2012 13:22:27 +0100

camera-app (0.2) quantal; urgency=low

  * Adapt to QT camera API and new visual design

 -- Ugo Riboni <ugo.riboni@canonical.com>  Thu, 18 Oct 2012 18:07:20 +0100

camera-app (0.1) quantal; urgency=low

  [ Ugo Riboni ]
  * Initial release.

  [ Bill Filler ]
  * clean up of packaging for Qt5

 -- Ugo Riboni <ugo.riboni@canonical.com>  Wed, 17 Oct 2012 19:26:51 +0100