From 5bcf273dc773cf068791df959f3365866f39e433 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 27 Jun 2023 00:16:01 +0200 Subject: Bump libdcp for changes to how hashes are handled. --- src/wx/verify_dcp_dialog.cc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src') diff --git a/src/wx/verify_dcp_dialog.cc b/src/wx/verify_dcp_dialog.cc index 2f8dabc09..0871b864e 100644 --- a/src/wx/verify_dcp_dialog.cc +++ b/src/wx/verify_dcp_dialog.cc @@ -109,6 +109,9 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr job if (note.id()) { message.Replace("%id", std_to_wx(note.id().get())); } + if (note.other_id()) { + message.Replace("%other_id", std_to_wx(note.other_id().get())); + } add_bullet (note.type(), message); counts[note.type()]++; }; @@ -428,6 +431,9 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr job case dcp::VerificationNote::Code::MISSING_LOAD_FONT: add(i, "The SMPTE subtitle asset %id has nodes but no node"); break; + case dcp::VerificationNote::Code::MISMATCHED_ASSET_MAP_ID: + add(i, _("The asset with ID %id in the asset map actually has an id of %other_id")); + break; } } -- cgit v1.2.3