summaryrefslogtreecommitdiff
path: root/src/tools/dcpomatic.cc
AgeCommit message (Collapse)Author
2024-05-04Remove in-place translations support.Carl Hetherington
It feels like there have been too many failed attempts and not enough (maybe zero?) successes so it's just too confusing.
2024-03-07Rename Emailer -> Email.Carl Hetherington
2024-02-17Add option to load prefs from ZIP (#2771).Carl Hetherington
2024-02-17Use FileDialog for saving preferences ZIPs.Carl Hetherington
2024-02-11Fix totally missing saving of DKDM recipients.Carl Hetherington
2024-01-30Open macOS prefs with Mac-, not Mac-P (#2745).Carl Hetherington
2024-01-11Attempt to rationalise menu IDs and avoid duplicates.Carl Hetherington
2024-01-09Check for bad DN qualifiers on signer certificates (#2716).Carl Hetherington
2023-11-27Call dcpomatic_setup_path_encoding() early enough (#2665).Carl Hetherington
On Windows this was previously called after we instantiated a Config object to get win32_console(), meaning that the required path voodoo was not active when looking for the config. This caused problems if the user has a non-ASCII user name.
2023-11-26Don't crash if preferences ZIP needs to be overwritten during export.Carl Hetherington
2023-10-09Use dcp::filesystem to wrap filesystem calls and fix_long_pathCarl Hetherington
anything that is passed to read_file() from libcxml. This should fix #2623 and other similar problems.
2023-09-09Open Windows console earlier in startup.Carl Hetherington
2023-09-02Fix crash when pressing Ctrl+{C,V} at the wrong time.Carl Hetherington
2023-07-02Fix crash if an exception is thrown before the splash screen is created.Carl Hetherington
2023-06-22Avoid virtual call to set_film() in constructor (#2571).Carl Hetherington
2023-05-18Cleanup: replace some list with vector.Carl Hetherington
2023-04-25Don't use wx_ptr for the splash screen.Carl Hetherington
Using wx_ptr in the wxApp object seems bad because in ~App wxWidgets deletes all top-level windows in `DeleteAllTLWs` so if ~wx_ptr then tries to destroy them we get a use-after-free.
2023-04-18Fix crash if saving files during save/cancel/close (#2517).Carl Hetherington
2023-04-18Cleanup: longer variable name.Carl Hetherington
2023-04-09Fix subtitle font handling with in-memory fonts from SMPTE (#2509).v2.16.52Carl Hetherington
Previously we would fail to make a font available if it came from a SMPTE MXF. In that case we have a memory buffer containing the TTF/OTF file but no file; here we add a hack/workaround so that in-memory font files can be used by FontConfig.
2023-03-05Catch exceptions from some calls to write_metadata().Carl Hetherington
2023-02-11Cleanup: extract encrypt() call from Film::make_kdm().Carl Hetherington
2023-01-17Build fix for Windows.Carl Hetherington
2023-01-17Swap some wx_ptr for simple members/locals.Carl Hetherington
2023-01-16Use wx_ptr more.Carl Hetherington
2023-01-15Use wx_ptr for the splash screen.Carl Hetherington
2023-01-14Add wx_ptr and use it instead of ScopeGuard in a lot of places.Carl Hetherington
2023-01-14Use more ScopeGuards.Carl Hetherington
2022-12-10Extract constants.hCarl Hetherington
2022-10-18Fix dark mode for release notes.Carl Hetherington
2022-10-14Save and restore sash positions in the main DoM.Carl Hetherington
2022-10-14Allow dragging of the border between the controls and the preview (#2350).Carl Hetherington
2022-10-14Cleanup: use simpler ownership for FilmViewer.Carl Hetherington
2022-09-05Tidy up code to report failures to load config in the UI.Carl Hetherington
2022-08-16Fix deadlock on cancelling jobs.v2.16.21Carl Hetherington
2022-07-20Basic release notes support (#2282).Carl Hetherington
2022-06-10Rename CheckContentChangeJob -> CheckContentJob.Carl Hetherington
2022-06-10C++11 tidying.Carl Hetherington
2022-05-02Replace some raw arrays with std::vectors.Carl Hetherington
2022-04-29Put * in the title bar when the DCP-o-matic project is modified (#1938).Carl Hetherington
2022-04-29Set window title based on the directory from Film.Carl Hetherington
2022-04-22Use libdcp's warnings.hCarl Hetherington
2022-04-20Move make_dcp() out of Film (#2132).Carl Hetherington
2022-04-09Add some missing override labels.Carl Hetherington
2022-04-09Fix some comment typos.Carl Hetherington
2022-03-09Add option to export config as a .zip (#1776).Carl Hetherington
2022-02-12Rename NAG_BAD_SIGNER_CHAIN -> NAG_BAD_SIGNER_CHAIN_UTF8.Carl Hetherington
2022-02-12Warn if the signing certificates have a validity period > 10 years (#2174).Carl Hetherington
2021-12-13Make sure translators give email addresses.Carl Hetherington
2021-11-28Rearrange checking (and re-examining) content.Carl Hetherington
Most importantly, checking of content for changes before making a DCP is now done in the TranscodeJob (rather than being in a separate job). This makes things a little neater and also makes the batch converter less confusing when you add a job whose content has changed.