blob: 62d76fbf57f23fb74258dd434148b3265c5c1dd2 (
plain)
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
|
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.
|