Bump libdcp to fix font ID bug in the combiner (#2402).
authorCarl Hetherington <cth@carlh.net>
Sun, 8 Jan 2023 13:31:19 +0000 (14:31 +0100)
committerCarl Hetherington <cth@carlh.net>
Sat, 14 Jan 2023 20:13:22 +0000 (21:13 +0100)
cscript
src/wx/verify_dcp_dialog.cc

diff --git a/cscript b/cscript
index 65c247b8c75618ac794d5b0d195174f6addabeb8..86c5d434eacb55a56d5c3d884bf3bb42d4264a94 100644 (file)
--- a/cscript
+++ b/cscript
@@ -457,7 +457,7 @@ def dependencies(target, options):
         # Use distro-provided FFmpeg on Arch
         deps = []
 
         # Use distro-provided FFmpeg on Arch
         deps = []
 
-    deps.append(('libdcp', 'v1.8.49'))
+    deps.append(('libdcp', 'v1.8.50'))
     deps.append(('libsub', 'v1.6.42'))
     deps.append(('leqm-nrt', '93ae9e6'))
     deps.append(('rtaudio', 'f619b76'))
     deps.append(('libsub', 'v1.6.42'))
     deps.append(('leqm-nrt', '93ae9e6'))
     deps.append(('rtaudio', 'f619b76'))
index bd36334cdcc12a56d8ce05ba781e4aa1fa4bef7a..82d9ca231c7b876e16ab1a916ab14524e7971f3d 100644 (file)
@@ -383,6 +383,12 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job
                case dcp::VerificationNote::Code::INVALID_MAIN_PICTURE_ACTIVE_AREA:
                        add(i, _("The <MainPictureActiveArea> is either not a multiple of 2, or is bigger than an asset."));
                        break;
                case dcp::VerificationNote::Code::INVALID_MAIN_PICTURE_ACTIVE_AREA:
                        add(i, _("The <MainPictureActiveArea> is either not a multiple of 2, or is bigger than an asset."));
                        break;
+               case dcp::VerificationNote::Code::DUPLICATE_ASSET_ID_IN_PKL:
+                       add(i, _("The PKL %n has more than one asset with the same ID."));
+                       break;
+               case dcp::VerificationNote::Code::DUPLICATE_ASSET_ID_IN_ASSETMAP:
+                       add(i, _("The ASSETMAP %n has more than one asset with the same ID."));
+                       break;
                }
        }
 
                }
        }