summaryrefslogtreecommitdiff
path: root/src/tools/dcpomatic_combiner.cc
AgeCommit message (Collapse)Author
2025-07-10Replace String::compose with fmt.Carl Hetherington
sed -i "/Plural-Forms/n;/%100/n;/scanf/n;s/%[123456789]/{}/g" src/lib/*.cc src/lib/*.h src/wx/*.cc src/tools/*.cc src/lib/po/*.po src/wx/po/*.po src/tools/po/*.po test/*.cc sed -i "s/String::compose */fmt::format/g" src/lib/*.cc src/lib/*.h src/wx/*.cc src/tools/*.cc test/*.cc
2025-07-03Hack some window sizes for Fedora (#3055).Carl Hetherington
2025-05-27Move i18n setup into 3 separate platform files.Carl Hetherington
2025-05-27Put wx::report_problem() in a dcpomatic namespace.Carl Hetherington
2025-02-22Return std::vector instead of boost::optional from the EditableList dialog.Carl Hetherington
It's a bit clumsy, as returning more than one thing only makes sense when adding (not when editing), but allowing both optional and vector with template voodoo seems awkward (at least with C++11).
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-03Remove some implicit conversions between wxString and std::string.Carl Hetherington
2024-04-26Allow customisation of error report email address.Carl Hetherington
2024-04-21Rename Encoder -> FilmEncoder, and subclasses.Carl Hetherington
2024-04-21Extract all uses of DCP-o-matic name to allow branding.Carl Hetherington
2023-03-29Just call it the Combiner not the DCP Combiner.Carl Hetherington
2023-03-29String fix.Carl Hetherington
2023-01-07Remember paths in the add input dir picker in the combiner.Carl Hetherington
2022-12-10Extract constants.hCarl Hetherington
2022-09-05Tidy up code to report failures to load config in the UI.Carl Hetherington
2022-09-01Fix two more badly-adapted instantiations of EditableList and makeCarl Hetherington
it harder to make similar errors in the future.
2022-04-29Use explicit parameters to the EditableList constructor, and allowCarl Hetherington
arbitrary new/edit/remove button combinations to be used.
2022-04-29Fix (I think) some strange situations where ::get() on dialogsCarl Hetherington
used by EditableList would return something that wasn't a optional<> but would then get implicitly cast to one. Now we have a static_assert to check that the type is what we expect.
2022-04-22Use libdcp's warnings.hCarl Hetherington
2021-05-30Allow annotation text to be set when combining DCPs.Carl Hetherington
2021-05-03C++11 tidying.Carl Hetherington
2021-01-07std::shared_ptrCarl Hetherington
2020-12-11Fix lots of macOS warnings by using a different boost/bind include.Carl Hetherington
2020-10-21macOS / new boost build fixes.v2.15.104Carl Hetherington
2020-09-20Add dcpomatic_combine tool (#1245).Carl Hetherington