summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-09-27pot/merge.Carl Hetherington
2024-09-27Merge remote-tracking branch 'origin/main' into v2.17.xCarl Hetherington
2024-09-27Fix empty translated string.Carl Hetherington
2024-09-27Fix some missing spaces in the update dialog.Carl Hetherington
2024-09-25Merge remote-tracking branch 'origin/main' into v2.17.xCarl Hetherington
2024-09-24Supporters update.v2.16.94Carl Hetherington
2024-09-24Missing new verification error.Carl Hetherington
2024-09-24Fix build with new boost (e.g. on Arch) (#2868)Carl Hetherington
2024-09-22Throw a more useful error when the disk is full during an export (#2866).v2.17.21Carl Hetherington
2024-09-21Fix mis-merge.Carl Hetherington
2024-09-21Merge remote-tracking branch 'origin/main' into v2.17.xCarl Hetherington
2024-09-18Fix thinko in relative path change.Carl Hetherington
We have to canonicalise relative paths with respect to the film's directory on load, otherwise we try to use the relative path and it's interpreted against the current working directory. This unfortunately requires the film's directory to be piped into quite a lot of new places.
2024-09-17Supporters update.v2.16.93Carl Hetherington
2024-09-17Bump libdcp for increase in maximum allowable Interop XML file size.Carl Hetherington
2024-09-16Bump maximum reel length.Carl Hetherington
Someone is making a very long (10h) DCP and wants big reels, and I can't think of a reason not to allow it.
2024-09-16Increase tolerance for audio timestamp error.Carl Hetherington
This makes a seemingly valid file that I was sent play properly.
2024-09-16Improve debug log slightly.Carl Hetherington
2024-09-16Fix mis-merge.Carl Hetherington
2024-09-14Some more distros that use wx-3.1.v2.16.92Carl Hetherington
2024-09-14Bump libdcp for Windows build fix.Carl Hetherington
2024-09-14Bump libdcp for Ubuntu 16.04 build fix.Carl Hetherington
2024-09-14Fix Debian unstable build.Carl Hetherington
2024-09-14Bump libdcp for static boost fix in libcxml.Carl Hetherington
2024-09-13Merge remote-tracking branch 'origin/main' into v2.17.xCarl Hetherington
2024-09-13Supporters update.Carl Hetherington
2024-09-13Hopefully fix occasional hang in j2k_encoder_deadlock_test.Carl Hetherington
Previously too many frames were queued for encoding, which AFAICS meant that (if the CPU was busy) we would get to the point where too many frames were in the encoder queue, so that we blocked waiting for it to clear, and then simultaneously too many frames were in the writer queue, which (in this test) would never clear. At this point we would be backed up waiting for Writer::write() to happen in J2KEncoder::encoder_thread() so that the encoder queue could be cleared, but nobody is calling Writer::write().
2024-09-12Bump sleep a little to try and de-flake a test.Carl Hetherington
2024-09-11Fix stupid bug introduced in 5db3eda9c6f0Carl Hetherington
2024-09-06Supporters update.Carl Hetherington
2024-09-06Remove (unused) import which is no longer present on Python 3.14.Carl Hetherington
2024-09-06Support building on Ubuntu 24.10.Carl Hetherington
2024-09-04Build mac-old also with C++17 so it can use the same environment.v2.17.20Carl Hetherington
2024-09-04Fix some ambiguous strings.Carl Hetherington
2024-09-04Further libdcp/libsub bumps to fix build failures on Centos 9.Carl Hetherington
2024-09-04Bump libdcp for another warning-related fix.Carl Hetherington
2024-09-04Bump libdcp to ignore warning from Debian unstable's compiler.Carl Hetherington
2024-09-04Bump libdcp and libsub for libcxml/libdcp/libsub build fixes with static boost.Carl Hetherington
2024-09-03Fix a few places where we should use dcp::File::open_error()Carl Hetherington
to get a more accurate error number on Windows.
2024-09-03Fix confusion about operator bool() with optional.Carl Hetherington
I think previously no exception would be thrown even if the file weren't open.
2024-09-03Support closed subtitles and open captions.Carl Hetherington
2024-09-03Remove unused variable setup.Carl Hetherington
2024-09-03Remove use of wxT in favour of char_to_wx().Carl Hetherington
The wxWidgets docs advise against its use these days.
2024-09-03Use Choice rather than wxChoice for text type.Carl Hetherington
2024-09-03Add Choice::size().Carl Hetherington
2024-09-03Make context_translation take a char array.Carl Hetherington
2024-09-03Add some convenience methods to the Choice class.Carl Hetherington
2024-09-03Remove unnecessary use of wxS().Carl Hetherington
2024-09-03Fix wx_to_std -> std_to_wx reversal.Carl Hetherington
2024-09-03Fix missing i18n markup.Carl Hetherington
2024-09-03Remove some implicit conversions between wxString and std::string.Carl Hetherington