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
|
2014-07-15 Carl Hetherington <cth@carlh.net>
* A variety of changes were made on the 2.0 branch
but not documented in the ChangeLog. Most sigificantly:
- DCP import
- Creation of DCPs with proper XML subtitles
- Import of .srt and .xml subtitles
- Audio processing framework (with some basic processors).
2014-03-07 Carl Hetherington <cth@carlh.net>
* Add subtitle view.
2014-07-17 Carl Hetherington <cth@carlh.net>
* Fix corrupted text in job descriptions in some cases.
* Speculative fix for failure to keep Windows
machines awake during encodes.
2014-07-16 Carl Hetherington <cth@carlh.net>
* Version 1.72.4 released.
2014-07-16 Carl Hetherington <cth@carlh.net>
* Add default scaling setting to preferences (#384).
* Version 1.72.3 released.
2014-07-16 Carl Hetherington <cth@carlh.net>
* Improve approximate time reports a bit.
* Make KDM email subject configurable.
* Updates to de_DE from Carsten Kurz.
* Limit allowed KDM types based on Interop/SMPTE setting
of DCP (#385).
* Updates to fr_FR from Grégoire Ausina.
2014-07-14 Carl Hetherington <cth@carlh.net>
* Bump libdcp to get a new version which writes
<Hash> values to CPLs.
2014-07-10 Carl Hetherington <cth@carlh.net>
* Version 1.72.2 released.
>>>>>>> origin/master
2014-07-10 Carl Hetherington <cth@carlh.net>
* Try to fix corruption of KDM email setting in
some cases.
* Version 1.72.1 released.
2014-07-08 Carl Hetherington <cth@carlh.net>
* Fix various problems with seek and content
being trimmed when its video frame rate is
overridden.
2014-07-02 Carl Hetherington <cth@carlh.net>
* Updated de_DE translation from Carsten Kurz.
2014-06-30 Carl Hetherington <cth@carlh.net>
* Version 1.72.0 released.
2014-06-28 Carl Hetherington <cth@carlh.net>
* Version 1.71.2 released.
2014-06-28 Carl Hetherington <cth@carlh.net>
* Version 1.71.1 released.
2014-06-28 Carl Hetherington <cth@carlh.net>
* Fix crash on analysing audio (and possibly DCP creation) with
resampled content.
2014-06-27 Carl Hetherington <cth@carlh.net>
* Version 1.71.0 released.
2014-06-27 Carl Hetherington <cth@carlh.net>
* Fix up/down buttons in content list.
2014-06-26 Carl Hetherington <cth@carlh.net>
* Version 1.70.1 released.
2014-06-26 Carl Hetherington <cth@carlh.net>
* Support different KDM formulations.
* Allow override of detected video frame rates.
* Optimisation of uncertain effect to encoder and server
thread handling.
* Version 1.70.0 released.
2014-06-25 Carl Hetherington <cth@carlh.net>
* Version 1.69.37 released.
2014-06-25 Carl Hetherington <cth@carlh.net>
* Version 1.69.36 released.
2014-06-25 Carl Hetherington <cth@carlh.net>
* Support pixel format 46 in make_black().
2014-06-24 Carl Hetherington <cth@carlh.net>
* Re-assign timeline tracks when things are
moved about.
2014-06-23 Carl Hetherington <cth@carlh.net>
* Try harder to cope with DCP names specified
already in CamelCase.
* Add option to CC a KDM email, and add
$SCREENS and $CINEMA_NAME as variables
in the email.
2014-06-22 Carl Hetherington <cth@carlh.net>
* Reset-to-default button for KDM email text.
* Version 1.69.35 released.
2014-06-22 Carl Hetherington <cth@carlh.net>
* Fix large memory leak with image sources.
2014-06-21 Carl Hetherington <cth@carlh.net>
* Move email config into the KDM email page.
* Version 1.69.34 released.
2014-06-21 Carl Hetherington <cth@carlh.net>
* Version 1.69.33 released.
2014-06-21 Carl Hetherington <cth@carlh.net>
* Version 1.69.32 released.
2014-06-21 Carl Hetherington <cth@carlh.net>
* Version 1.69.31 released.
2014-06-20 Carl Hetherington <cth@carlh.net>
* Version 1.69.30 released.
2014-06-20 Carl Hetherington <cth@carlh.net>
* Updates to de_DE translation from Carsten Kurz.
2014-06-18 Carl Hetherington <cth@carlh.net>
* Version 1.69.29 released.
2014-06-18 Carl Hetherington <cth@carlh.net>
* Fix thinko causing incorrect audio sample rates in some cases.
2014-06-15 Carl Hetherington <cth@carlh.net>
* Version 1.69.28 released.
2014-06-12 Carl Hetherington <cth@carlh.net>
* Version 1.69.27 released.
2014-06-12 Carl Hetherington <cth@carlh.net>
* Add Content menu with "scale to fit width" and "scale
to fit height" options.
* Version 1.69.26 released.
2014-06-12 Carl Hetherington <cth@carlh.net>
* Fix bug where DCP-o-matic does not recreate video after
subtitles are turned on or off.
2014-06-10 Carl Hetherington <cth@carlh.net>
* Support ISDCF naming convention version 9 (#257).
* Rename DCI to ISDCF when talking about the digital cinema
naming convention (#362).
* Fix crash when opening the timeline with no content (#369).
2014-06-09 Carl Hetherington <cth@carlh.net>
* Fix server/client with non-RGB24 sources.
* Version 1.69.25 released.
2014-06-09 Carl Hetherington <cth@carlh.net>
* Make audio gain a floating-point value in the UI (#367).
* Work-around out-of-memory crashes with large start trims (#252).
* Version 1.69.24 released.
2014-06-06 Carl Hetherington <cth@carlh.net>
* Version 1.69.23 released.
2014-06-05 Carl Hetherington <cth@carlh.net>
* Version 1.69.22 released.
2014-06-05 Carl Hetherington <cth@carlh.net>
* Large speed-up to multi-image source file decoding.
* Back-port changes from v2 which work out how separate
audio files should be resampled by looking at the video
files which are present at the same time.
2014-06-03 Carl Hetherington <cth@carlh.net>
* Version 1.69.21 released.
2014-06-03 Carl Hetherington <cth@carlh.net>
* Fix bad resampling of separate sound file sources that
have specified video frame rates.
* Version 1.69.20 released.
2014-06-03 Carl Hetherington <cth@carlh.net>
* Re-calculate and update audio plots when the mapping is changed.
* Change the -3dB preset to -6dB since we are talking about
amplitude, not power.
* Version 1.69.19 released.
2014-06-02 Carl Hetherington <cth@carlh.net>
* Empirical hack to prevent over-read of array
by libswscale; may fix crashes at the start of
DCP encodes.
2014-05-29 Carl Hetherington <cth@carlh.net>
* Version 1.69.18 released.
2014-05-28 Carl Hetherington <cth@carlh.net>
* Version 1.69.17 released.
2014-05-28 Carl Hetherington <cth@carlh.net>
* Version 1.69.16 released.
2014-05-28 Carl Hetherington <cth@carlh.net>
* Rework KDM generation to be about CPLs rather than DCPs,
and allow specification of any CPL to generate KDMs for.
Requested-by: Richard Turner
2014-05-27 Carl Hetherington <cth@carlh.net>
* Version 1.69.15 released.
2014-05-26 Carl Hetherington <cth@carlh.net>
* Version 1.69.14 released.
2014-05-26 Carl Hetherington <cth@carlh.net>
* Fix problems with non-zero FFmpeg content start times.
2014-05-24 Carl Hetherington <cth@carlh.net>
* Version 1.69.13 released.
2014-05-24 Carl Hetherington <cth@carlh.net>
* Fix problems with log setup from config.
2014-05-23 Carl Hetherington <cth@carlh.net>
* Version 1.69.12 released.
2014-05-22 Carl Hetherington <cth@carlh.net>
* Version 1.69.11 released.
2014-05-21 Carl Hetherington <cth@carlh.net>
* Version 1.69.10 released.
2014-05-21 Carl Hetherington <cth@carlh.net>
* Tidy up logging a bit and make it configurable from the GUI
(moving a few things into an Advanced preferences tab at
the same time).
2014-05-19 Carl Hetherington <cth@carlh.net>
* Version 1.69.9 released.
2014-05-19 Carl Hetherington <cth@carlh.net>
* Decode image sources in the multi-threaded part
of the transcoder, rather than the single-threaded.
2014-05-16 Carl Hetherington <cth@carlh.net>
* Version 1.69.8 released.
2014-05-16 Carl Hetherington <cth@carlh.net>
* Fix various confusions in translations of abbreviated
channel names (Lc, Rc etc.)
2014-05-14 Carl Hetherington <cth@carlh.net>
* Version 1.69.7 released.
2014-05-14 Carl Hetherington <cth@carlh.net>
* Bump libdcp to remove checks on PCM MXF edit rates,
so we can generate strange ones in DCP-o-matic.
2014-05-13 Carl Hetherington <cth@carlh.net>
* Version 1.69.6 released.
2014-05-13 Carl Hetherington <cth@carlh.net>
* Remove artificial 100fps limit when using
"any" DCP frame rate.
2014-05-12 Carl Hetherington <cth@carlh.net>
* Version 1.69.5 released.
2014-05-12 Carl Hetherington <cth@carlh.net>
* Add option to use any DCP frame rate, rather than just
the "allowed" set.
* Version 1.69.4 released.
2014-05-12 Carl Hetherington <cth@carlh.net>
* Version 1.69.3 released.
2014-05-12 Carl Hetherington <cth@carlh.net>
* Use libdcp::raw_convert instead of boost::lexical_cast and
LocaleGuard, hopefully to fix large numbers being written with
thousands separators on some locales.
2014-05-10 Carl Hetherington <cth@carlh.net>
* Version 1.69.2 released.
2014-05-10 Carl Hetherington <cth@carlh.net>
* Fix setup of the libswresample context to work with high channel counts.
2014-05-09 Carl Hetherington <cth@carlh.net>
* Version 1.69.1 released.
2014-05-09 Carl Hetherington <cth@carlh.net>
* Fix crash on using content with more than 12 audio channels.
* Re-introduce ffprobe call when adding content.
2014-05-05 Carl Hetherington <cth@carlh.net>
* Version 1.69.0 released.
2014-05-02 Carl Hetherington <cth@carlh.net>
* Version 1.68.0 released.
2014-04-29 Carl Hetherington <cth@carlh.net>
* Version 1.67.1 released.
2014-04-29 Carl Hetherington <cth@carlh.net>
* Version 1.67.0 released.
2014-04-27 Carl Hetherington <cth@carlh.net>
* Version 1.66.16 released.
2014-04-27 Carl Hetherington <cth@carlh.net>
* Add .dpx to the list of acceptable image files.
* Slightly better handling of uncaught exceptions.
* Use our own directory picker on 14.04 (as well as 13.04 and 13.10) as
it appears that the same bug remains.
2014-04-25 Carl Hetherington <cth@carlh.net>
* Version 1.66.15 released.
2014-04-25 Carl Hetherington <cth@carlh.net>
* Fix subtitle display when the next subtitle is decoded before the previous
one has finished.
2014-04-24 Carl Hetherington <cth@carlh.net>
* Version 1.66.14 released.
2014-04-23 Carl Hetherington <cth@carlh.net>
* Version 1.66.13 released.
2014-04-21 Carl Hetherington <cth@carlh.net>
* Update to es_ES translation from Manuel AC.
* Update to fr_FR translation from Thierry Journet.
2014-04-17 Carl Hetherington <cth@carlh.net>
* Fix update of the gain control when using the gain calculator
dialog.
* Version 1.66.12 released.
2014-04-07 Carl Hetherington <cth@carlh.net>
* Version 1.66.11 released.
2014-04-07 Carl Hetherington <cth@carlh.net>
* Updated fr_FR translation from Thierry Journet.
2014-04-02 Carl Hetherington <cth@carlh.net>
* Version 1.66.10 released.
2014-04-01 Carl Hetherington <cth@carlh.net>
* Basic support for separate left/right-eye files or directories
for 3D.
2014-03-30 Carl Hetherington <cth@carlh.net>
* Version 1.66.9 released.
2014-03-30 Carl Hetherington <cth@carlh.net>
* Version 1.66.8 released.
* nl_NL translation from Theo Kooijmans.
2014-03-27 Carl Hetherington <cth@carlh.net>
* Auto-save film metadata before starting DCP encode.
2014-03-25 Carl Hetherington <cth@carlh.net>
* Add support for downloading Doremi server certificates.
2014-03-24 Carl Hetherington <cth@carlh.net>
* Version 1.66.7 released.
2014-03-24 Carl Hetherington <cth@carlh.net>
* Fix error on creating DCPs without audio.
2014-03-23 Carl Hetherington <cth@carlh.net>
* Version 1.66.6 released.
2014-03-23 Carl Hetherington <cth@carlh.net>
* Attempt to fix format string specifier error on Windows.
* Version 1.66.5 released.
2014-03-22 Carl Hetherington <cth@carlh.net>
* Version 1.66.4 released.
2014-03-22 Carl Hetherington <cth@carlh.net>
* Allow specification of the video frame rate that a sound file
was prepared for.
* Another attempt to fix colour conversion dialog strange behaviour
on OS X.
2014-03-18 Carl Hetherington <cth@carlh.net>
* Version 1.66.3 released.
2014-03-18 Carl Hetherington <cth@carlh.net>
* Fix bad rounding of timecodes.
* Tentative support for 3D from alternate frames of the source.
2014-03-17 Carl Hetherington <cth@carlh.net>
* Improve behaviour of the position slider at the end of films.
* Version 1.66.2 released.
2014-03-17 Carl Hetherington <cth@carlh.net>
* Improve appearance of config dialog on OS X.
2014-03-15 Carl Hetherington <cth@carlh.net>
* Improve appearance of new film and KDM dialogs on OS X.
* Fix KDM dialog to predictably set up its initial range to
a week from now.
* Remove support for FFmpeg post-processing filters as they apparently
do not support > 8bpp. I don't think they are worth the pain of
quantizing and then telling the user what has happened.
2014-03-12 Carl Hetherington <cth@carlh.net>
* Version 1.66.1 released.
2014-03-12 Carl Hetherington <cth@carlh.net>
* Hopefully fix i18n on OS X (#324).
2014-03-10 Carl Hetherington <cth@carlh.net>
* Version 1.66.0 released.
2014-03-09 Carl Hetherington <cth@carlh.net>
* Version 1.65.2 released.
2014-03-09 Carl Hetherington <cth@carlh.net>
* Restore old behaviour of "no-stretch" mode with crop.
* Fix display of no-scale display mode in the player.
2014-03-08 Carl Hetherington <cth@carlh.net>
* Version 1.65.1 released.
2014-03-08 Carl Hetherington <cth@carlh.net>
* Fix incorrect audio analyses on multiple-stream content.
* Support for unsigned 8-bit audio (hmm!).
2014-03-06 Carl Hetherington <cth@carlh.net>
* Version 1.65.0 released.
2014-03-05 Carl Hetherington <cth@carlh.net>
* Version 1.64.19 released.
2014-03-05 Carl Hetherington <cth@carlh.net>
* Bump maximum audio channels to 12 so that we can
(crudely at least) get BsL/BsR.
2014-03-04 Carl Hetherington <cth@carlh.net>
* Version 1.64.18 released.
2014-03-04 Carl Hetherington <cth@carlh.net>
* Add option to disable all scaling of the input video.
2014-03-03 Carl Hetherington <cth@carlh.net>
* Fix rounding of timecodes in at least some cases (#323).
* Try to prevent OS X from sleeping during DCP encode.
2014-02-26 Carl Hetherington <cth@carlh.net>
* Version 1.64.17 released.
2014-02-26 Carl Hetherington <cth@carlh.net>
* Fix missing RMS audio analysis plots in some cases.
* Fix failure to load sound files with
non-ASCII paths.
2014-02-23 Carl Hetherington <cth@carlh.net>
* Version 1.64.16 released.
2014-02-23 Carl Hetherington <cth@carlh.net>
* Bump ffmpeg library to git head to fix problems with
misrecognised frame rates in some MOV files.
2014-02-20 Carl Hetherington <cth@carlh.net>
* Version 1.64.15 released.
2014-02-20 Carl Hetherington <cth@carlh.net>
* Basic support for 7.1 / HI/VI audio tracks.
2014-02-19 Carl Hetherington <cth@carlh.net>
* Add some basic JSON stuff.
2014-02-18 Carl Hetherington <cth@carlh.net>
* Version 1.64.14 released.
2014-02-18 Carl Hetherington <cth@carlh.net>
* Version 1.64.13 released.
2014-02-12 Carl Hetherington <cth@carlh.net>
* Make the batch converter remember its last directory
for the film picker (#318).
* Add dcpomatic_batch to OS X .app.
2014-02-11 Carl Hetherington <cth@carlh.net>
* Version 1.64.12 released.
2014-02-11 Carl Hetherington <cth@carlh.net>
* Be more careful when catching exceptions from KDM creation.
2014-02-10 Carl Hetherington <cth@carlh.net>
* Version 1.64.11 released.
2014-02-10 Carl Hetherington <cth@carlh.net>
* Version 1.64.10 released.
2014-02-10 Carl Hetherington <cth@carlh.net>
* Try to fix Centos RPM dependencies.
* Version 1.64.9 released.
2014-02-10 Carl Hetherington <cth@carlh.net>
* Version 1.64.8 released.
2014-02-09 Carl Hetherington <cth@carlh.net>
* Build with a more careful version of libopenjpeg that handles
out-of-memory conditions slightly better.
* Possibly fix repeated no route to host errors in some cases.
* Some small bits of increased low-memory stability.
* Version 1.64.7 released.
2014-02-08 Carl Hetherington <cth@carlh.net>
* Fix exception when seeking with missing content (part of #317).
* Version 1.64.6 released.
2014-02-08 Carl Hetherington <cth@carlh.net>
* Version 1.64.5 released.
2014-02-08 Carl Hetherington <cth@carlh.net>
* Version 1.64.4 released.
2014-02-08 Carl Hetherington <cth@carlh.net>
* Version 1.64.3 released.
2014-02-08 Carl Hetherington <cth@carlh.net>
* Bump libdcp version to get some fixes for Interop XML.
2014-02-07 Carl Hetherington <cth@carlh.net>
* Add basic stuff to build RPMs for Centos.
2014-02-05 Carl Hetherington <cth@carlh.net>
* Version 1.64.2 released.
2014-02-05 Carl Hetherington <cth@carlh.net>
* A variety of fixes to small problems found by Coverity.
2014-02-05 Carl Hetherington <cth@carlh.net>
* Version 1.64.1 released.
2014-02-05 Carl Hetherington <cth@carlh.net>
* Updates to it_IT translation from William Fanelli.
2014-02-02 Carl Hetherington <cth@carlh.net>
* Version 1.64.0 released.
2014-01-29 Carl Hetherington <cth@carlh.net>
* Version 1.63.8 released.
2014-01-29 Carl Hetherington <cth@carlh.net>
* Add subtitle X offset option.
* Fix missing subtitles when subtitled content is at a non-zero position.
2014-01-28 Carl Hetherington <cth@carlh.net>
* Use Mbit/s instead of the incorrect MBps.
* Version 1.63.7 released.
2014-01-28 Carl Hetherington <cth@carlh.net>
* Try to prevent Windows machines going to sleep during encodes.
* Add option to not install main program / server on Windows.
2014-01-26 Carl Hetherington <cth@carlh.net>
* Change default JPEG2000 bandwith to 100MBps.
* Updated fr_FR translation from Theirry Journet.
2014-01-24 Carl Hetherington <cth@carlh.net>
* Try to fix repeatedly-reported exceptions.
2014-01-23 Carl Hetherington <cth@carlh.net>
* Version 1.63.6 released.
2014-01-23 Carl Hetherington <cth@carlh.net>
* Fix recovery of DCP encoding after a crash with a 3D DCP.
2014-01-21 Carl Hetherington <cth@carlh.net>
* Version 1.63.5 released.
2014-01-21 Carl Hetherington <cth@carlh.net>
* Potentially major fix for bad A/V sync.
2014-01-19 Carl Hetherington <cth@carlh.net>
* Version 1.63.4 released.
2014-01-19 Carl Hetherington <cth@carlh.net>
* Updated sv_SE translation from Adam Klotblixt.
2014-01-15 Carl Hetherington <cth@carlh.net>
* Version 1.63.3 released.
2014-01-15 Carl Hetherington <cth@carlh.net>
* Hopefully fix badly-labelled MXFs when in Interop mode.
2014-01-14 Carl Hetherington <cth@carlh.net>
* Version 1.63.2 released.
2014-01-14 Carl Hetherington <cth@carlh.net>
* Fix problems with adding new soundtracks to FFmpeg content with
no audio track.
* Updated de_DE translation from Markus Raab.
* Version 1.63.1 released.
2014-01-14 Carl Hetherington <cth@carlh.net>
* Try to fix subtitle problems when the video frame rate is being changed
from content to DCP.
2014-01-13 Carl Hetherington <cth@carlh.net>
* Change 4:3 and 5:3 ratios to be precise rather than 1.33:1 and 1.66:1, and
also tweak 1.19:1 (#306).
* Version 1.63.0 released.
2014-01-12 Carl Hetherington <cth@carlh.net>
* Fix crashes when using -3dB options in locales with a , decimal separator.
* Version 1.62.3 released.
2014-01-11 Carl Hetherington <cth@carlh.net>
* Hopefully fix error on restarting a cancelled transcode job
on Windows.
2014-01-10 Carl Hetherington <cth@carlh.net>
* Version 1.62.2 released.
2014-01-10 Carl Hetherington <cth@carlh.net>
* Version 1.62.1 released.
2014-01-10 Carl Hetherington <cth@carlh.net>
* Version 1.62.0 released.
2014-01-10 Carl Hetherington <cth@carlh.net>
* Try to stop the queue of things to write filling up excessively
on fast CPUs.
* Try to fix double "are you sure" prompt on quitting with active jobs.
* Version 1.61.2 released.
2014-01-09 Carl Hetherington <cth@carlh.net>
* Version 1.61.1 released.
2014-01-09 Carl Hetherington <cth@carlh.net>
* Version 1.61.0 released.
2014-01-09 Carl Hetherington <cth@carlh.net>
* Hopefully fix somewhat inexplicable inability of Windows to open
new files on top of old ones in some circumstances (with audio
MXFs).
* Version 1.60 released.
2014-01-09 Carl Hetherington <cth@carlh.net>
* More fixes for slow-downs on fast computers.
2014-01-08 Carl Hetherington <cth@carlh.net>
* Version 1.59 released.
2014-01-07 Carl Hetherington <cth@carlh.net>
* Version 1.58 released.
2014-01-07 Carl Hetherington <cth@carlh.net>
* Fix Windows build of FFmpeg to link against zlib, which fixes parsing
of some .mov files.
* Very primitive check-for-updates feature added.
* Allow still-moving-image sources to have their frame rate specified.
2014-01-06 Carl Hetherington <cth@carlh.net>
* Basics of per-channel audio gain (#247).
* Give a warning on make DCP if it seems unlikely that the disk
will have enough space to store the finished DCP (#92).
* Make sure forced languages override the environment for gettext()
as well as wxWidgets' i18n code (#108).
* Bump libdcp version to get a fix for VOLINDEX/ASSETMAP file extensions
with interop (#206).
* Fix subtitle colouring (#152).
* Fix mis-timed subtitles when there is a non-zero video PTS offset.
* Remove seemingly unnecessary checks on image directories.
* Leave DCP directory creation until the last minute to help
avoid half-eaten directories being left around (#174).
2014-01-05 Carl Hetherington <cth@carlh.net>
* Version 1.57 released.
2014-01-05 Carl Hetherington <cth@carlh.net>
* Use _fseeki64 on Windows when reading content files.
* Various small fixes to i18n.
2014-01-03 Carl Hetherington <cth@carlh.net>
* Version 1.56 released.
2014-01-03 Carl Hetherington <cth@carlh.net>
* Version 1.55 released.
2014-01-03 Carl Hetherington <cth@carlh.net>
* New de_DE translation from Markus Raab.
* Work-around mysterious call of pure virtual method inside boost.
2014-01-01 Carl Hetherington <cth@carlh.net>
* Bump ffmpeg version.
2013-12-30 Carl Hetherington <cth@carlh.net>
* Version 1.54 released.
2013-12-30 Carl Hetherington <cth@carlh.net>
* Put catches around a few threads which could have uncaught exceptions.
* Add nascent dcpomatic_create command-line program to create films.
2013-12-29 Carl Hetherington <cth@carlh.net>
* Version 1.53 released.
2013-12-29 Carl Hetherington <cth@carlh.net>
* Fix failure to load content from directories with non-Latin names.
2013-12-28 Carl Hetherington <cth@carlh.net>
* Speculative fix for "find missing" not working on OS X (#255).
* Fix failure to load films with missing still image content (#300).
2013-12-27 Carl Hetherington <cth@carlh.net>
* Fix non-update of video information on changing DCP resolution (#299).
* Version 1.52 released.
2013-12-27 Carl Hetherington <cth@carlh.net>
* More speculative fixes for 4K.
2013-12-23 Carl Hetherington <cth@carlh.net>
* Version 1.51 released.
2013-12-23 Carl Hetherington <cth@carlh.net>
* A couple of potential fixes for 4K.
* Version 1.50 released.
2013-12-23 Carl Hetherington <cth@carlh.net>
* Version 1.49 released.
2013-12-23 Carl Hetherington <cth@carlh.net>
* Version 1.48 released.
2013-12-23 Carl Hetherington <cth@carlh.net>
* Add TLS/SSL support to KDM email sending.
2013-12-23 Carl Hetherington <cth@carlh.net>
* Version 1.47 released.
2013-12-23 Carl Hetherington <cth@carlh.net>
* Add $START_TIME and $END_TIME as variables for the KDM email.
* Add top/bottom option for 3D frames.
2013-12-20 Carl Hetherington <cth@carlh.net>
* Add configuration option for default audio delay (#276).
* Version 1.46 released.
2013-12-19 Carl Hetherington <cth@carlh.net>
* Version 1.45 released.
2013-12-19 Carl Hetherington <cth@carlh.net>
* Bump libdcp version again for a crash fix for 32-bit Windows,
and also for problems generating certificate chains.
2013-12-18 Carl Hetherington <cth@carlh.net>
* Version 1.44 released.
2013-12-18 Carl Hetherington <cth@carlh.net>
* Bump libdcp version again for a fix to XML validity for 3D.
* Version 1.43 released.
2013-12-18 Carl Hetherington <cth@carlh.net>
* Update libdcp version to get fix for 3D IntrinsicDuration.
* Fix progress reporting when making 3D DCPs.
* Fix non-update of display when changing video frame type (2D,
3D left/right etc.)
* Restore video information in video tab when using still images.
* Hopefully fix exception on new film in some strange cases.
2013-12-09 Carl Hetherington <cth@carlh.net>
* Version 1.42 released.
2013-12-09 Carl Hetherington <cth@carlh.net>
* Fix make_black for pixel format 7 (#288).
2013-12-08 Carl Hetherington <cth@carlh.net>
* Fix display update when removing content (#281).
2013-12-07 Carl Hetherington <cth@carlh.net>
* Version 1.41 released.
2013-12-05 Carl Hetherington <cth@carlh.net>
* Improve the correctness of lengths reported by sound files to fix
short DCPs when using non-DCI-rate sound files with stills.
2013-12-04 Carl Hetherington <cth@carlh.net>
* Make signatures optional (#273).
* Only do scale/crop/window/subtitle overlay if a frame is going
to be encoded for the DCP.
* Several optimisations to video processing, which should
speed up the player a bit.
2013-12-03 Carl Hetherington <cth@carlh.net>
* Add "play length" control to avoid having to do arithmetic to
get end-trims right in some cases (#261).
2013-12-02 Carl Hetherington <cth@carlh.net>
* Fix breakage to adding multiple files at the same time.
* Fix crash on double-click of "show audio" button (#278).
* Version 1.40 released.
2013-12-02 Carl Hetherington <cth@carlh.net>
* Fix problems with FFmpeg files that have all-zero stream IDs.
* Fix crash on checking non-existing frame info
files.
* Fix erroneous disabling of timing panel with
audio-only sources.
2013-11-30 Carl Hetherington <cth@carlh.net>
* Version 1.39 released.
2013-11-30 Carl Hetherington <cth@carlh.net>
* Fix windows build.
2013-11-29 Carl Hetherington <cth@carlh.net>
* Version 1.38 released.
2013-11-29 Carl Hetherington <cth@carlh.net>
* Add option to join input files together
to help with multiple VOB files from DVDs.
* Fix build for 32-bit versions of OS X.
2013-11-27 Carl Hetherington <cth@carlh.net>
* Version 1.37 released.
2013-11-27 Carl Hetherington <cth@carlh.net>
* Version 1.36 released.
2013-11-27 Carl Hetherington <cth@carlh.net>
* Version 1.35 released.
2013-11-26 Carl Hetherington <cth@carlh.net>
* Updated fr_FR translation from Lilian Lefranc.
* A whole load of fixes for lots of bugs when handling filenames
using non-Latin characters on Windows.
2013-11-22 Carl Hetherington <cth@carlh.net>
* Version 1.34 released.
2013-11-22 Carl Hetherington <cth@carlh.net>
* Fix both OS X and Windows installers.
2013-11-21 Carl Hetherington <cth@carlh.net>
* Version 1.33 released.
2013-11-21 Carl Hetherington <cth@carlh.net>
* Fix Ubuntu 13.04 build.
2013-11-20 Carl Hetherington <cth@carlh.net>
* Version 1.32 released.
2013-11-20 Carl Hetherington <cth@carlh.net>
* Version 1.31 released.
2013-11-20 Carl Hetherington <cth@carlh.net>
* Add primitive hints dialogue box.
2013-11-17 Carl Hetherington <cth@carlh.net>
* Fix specified-server discovery.
* Version 1.30 released.
2013-11-17 Carl Hetherington <cth@carlh.net>
* Speculative fix for servers crashing with different
locales to clients.
2013-11-16 Carl Hetherington <cth@carlh.net>
* Bump bundled FFmpeg version to current git master.
* Fix erroneous reset of visible channels in audio
level dialog when changing gain.
2013-11-15 Carl Hetherington <cth@carlh.net>
* Use 2 decimal places for gamma controls instead
of 1.
2013-11-14 Carl Hetherington <cth@carlh.net>
* Support modification of certain properties when
there are several selected pieces of content.
* Add server configuration back in.
2013-11-12 Carl Hetherington <cth@carlh.net>
* Version 1.29 released.
2013-11-12 Carl Hetherington <cth@carlh.net>
* Fix bad_alloc exception on audio analysis (and
probably elsewhere).
2013-11-11 Carl Hetherington <cth@carlh.net>
* Version 1.28 released.
2013-11-11 Carl Hetherington <cth@carlh.net>
* Somewhat speculative fix for slow-downs and
large memory consumption with multi-content playlists.
2013-11-10 Carl Hetherington <cth@carlh.net>
* Hopefully get rid of spurious black lines around
preview.
2013-11-08 Carl Hetherington <carl@ubuntu>
* Fix strange behaviour of J2K bandwidth control
on 32-bit Linux.
2013-11-07 Carl Hetherington <cth@carlh.net>
* Open file dialog starts in the configured DCP directory,
if one exists (#70).
2013-11-06 Carl Hetherington <cth@carlh.net>
* Support pixel format 30 (#254).
2013-11-06 Carl Hetherington <cth@carlh.net>
* Version 1.27 released.
2013-11-06 Carl Hetherington <cth@carlh.net>
* Various server-related tidying up; servers are
now auto-detected only (the configuration for
them has been removed).
2013-11-06 Carl Hetherington <cth@carlh.net>
* Version 1.26 released.
2013-11-05 Carl Hetherington <cth@carlh.net>
* Auto-detect encoding servers on the local
subnet(s).
* Tweak verbosity of command-line encoding servers.
2013-11-04 Carl Hetherington <cth@carlh.net>
* Version 1.25 released.
2013-10-29 Carl Hetherington <cth@carlh.net>
* Improve performance when start-trimming
large files.
* Fix audio problems when start-trimming.
2013-10-28 Carl Hetherington <cth@carlh.net>
* Version 1.24 released.
2013-10-28 Carl Hetherington <cth@carlh.net>
* Fix failure to reload configuration on
some non-English locales.
2013-10-26 Carl Hetherington <cth@carlh.net>
* Version 1.23 released.
2013-10-25 Carl Hetherington <cth@carlh.net>
* Version 1.22 released.
2013-10-24 Carl Hetherington <cth@carlh.net>
* Support sources that require repeat of more than
1 extra frame.
2013-10-23 Carl Hetherington <cth@carlh.net>
* Version 1.21 released.
2013-10-23 Carl Hetherington <cth@carlh.net>
* Use our own directory picker on Ubuntu 13.10 as well
as Ubuntu 13.04 as it seems similarly broken.
2013-10-22 Carl Hetherington <cth@carlh.net>
* Version 1.20 released.
2013-10-22 Carl Hetherington <cth@carlh.net>
* Allow films to be loaded when content is missing,
and then that content can be re-found.
2013-10-21 Carl Hetherington <cth@carlh.net>
* Version 1.19 released.
2013-10-21 Carl Hetherington <cth@carlh.net>
* Fix Rec. 709 gammas (from Lilian Lefranc)
2013-10-20 Carl Hetherington <cth@carlh.net>
* Allow specification of subtitle language even if DVD-o-matic
isn't providing the subtitles.
2013-10-20 Carl Hetherington <cth@carlh.net>
* Version 1.18 released.
2013-10-19 Carl Hetherington <cth@carlh.net>
* Fix non-saving of colour transform presets.
* Some improvements in progress reporting, especially
for long encodes.
2013-10-18 Carl Hetherington <cth@carlh.net>
* Fix bug with incorrect validity times given to KDMs.
2013-10-17 Carl Hetherington <cth@carlh.net>
* Fix Make DCP menu option sensitivity (#230).
* Forward-port fix from master; use 1000000 rather
than 1e6 for J2K bandwidth arithmetic to ensure
that it's done with integers.
2013-10-16 Carl Hetherington <cth@carlh.net>
* Version 1.17 released.
2013-10-16 Carl Hetherington <cth@carlh.net>
* Hopefully fix crash on closing preferences window
when ~/.config/dcpomatic does not exist.
* Allow specification of the DCP to make KDMs for,
in case there is more than one.
* Speed up response to some settings changes
(e.g. crop) (#196).
2013-10-15 Carl Hetherington <cth@carlh.net>
* Version 1.16 released.
2013-10-15 Carl Hetherington <cth@carlh.net>
* Restore up/down buttons for simple content time
movements.
* Include film title in KDM filenames.
* Allow no-stretch scaling like in DVD-o-matic.
2013-10-14 Carl Hetherington <cth@carlh.net>
* Add Rec. 709 colour conversion preset using
Wolfgang Woehl's matrix.
2013-10-14 Carl Hetherington <cth@carlh.net>
* Version 1.15 released.
2013-10-14 Carl Hetherington <cth@carlh.net>
* Fix some crashes in the KDM dialogue when coming
out of the add screen without giving a certificate.
* Really fix libltdl search path on OS X.
2013-10-13 Carl Hetherington <cth@carlh.net>
* Version 1.14 released.
2013-10-12 Carl Hetherington <cth@carlh.net>
* Add some missing libraries to the OS X build.
* Fix libltdl search path on OS X.
2013-10-12 Carl Hetherington <cth@carlh.net>
* Version 1.13 released.
2013-10-12 Carl Hetherington <cth@carlh.net>
* Fix linux static build.
2013-10-11 Carl Hetherington <cth@carlh.net>
* Version 1.12 released.
2013-10-11 Carl Hetherington <cth@carlh.net>
* Fix failure to create signer certificates
on Windows.
2013-10-10 Carl Hetherington <cth@carlh.net>
* Basic snapping in the timeline.
* Various improvements to dcpomatic_kdm.
2013-10-10 Carl Hetherington <cth@carlh.net>
* Version 1.11 released.
2013-10-10 Carl Hetherington <cth@carlh.net>
* libdcp fix to incorrect signature digests.
2013-10-09 Carl Hetherington <cth@carlh.net>
* Version 1.10 released.
2013-10-09 Carl Hetherington <cth@carlh.net>
* Add some missing Windows dependencies.
2013-10-09 Carl Hetherington <cth@carlh.net>
* Version 1.09 released.
2013-10-09 Carl Hetherington <cth@carlh.net>
* Bump libdcp version to pull in speculative fix
for AuthorizedDeviceList thumbprints in KDMs.
2013-10-09 Carl Hetherington <cth@carlh.net>
* Version 1.08 released.
2013-10-09 Carl Hetherington <cth@carlh.net>
* Fix problems with crypto stuff on Windows.
2013-10-08 Carl Hetherington <cth@carlh.net>
* Version 1.07 released.
2013-10-01 Carl Hetherington <cth@carlh.net>
* Version 1.06 released.
2013-09-19 Carl Hetherington <cth@carlh.net>
* Version 1.05 released.
2013-09-17 Carl Hetherington <cth@carlh.net>
* Version 1.04 released.
2013-09-09 Carl Hetherington <cth@carlh.net>
* Version 1.03 released.
2013-09-02 Carl Hetherington <cth@carlh.net>
* Add missing boost datetime dependency
to debian control files.
2013-08-30 Carl Hetherington <cth@carlh.net>
* Version 1.02 released.
2013-08-29 Carl Hetherington <cth@carlh.net>
* Version 1.01 released.
2013-08-29 Carl Hetherington <cth@carlh.net>
* Restore server/client operation (#202).
* Fix strange rounding of still image durations (#204).
* Remove limitation to numbers and periods in the
server host name dialogue box.
* Fix stuck-at-99% progress meters (#184).
* Version 1.01beta1 released.
2013-08-29 Carl Hetherington <cth@carlh.net>
* Fix emissions of large chunks of silence when
analysing audio in some cases.
* Use my @dcpomatic.com email address for now,
rather than a non-existant mailing list.
2013-08-28 Carl Hetherington <cth@carlh.net>
* Initial DCP-o-matic release.
|