From a5a3624943ccb9769d363a84797e00cf24bbf958 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 24 Sep 2024 01:26:17 +0200 Subject: Fix build with new boost (e.g. on Arch) (#2868) --- src/lib/config.cc | 2 +- src/wx/full_config_dialog.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/lib/config.cc b/src/lib/config.cc index 384db5cde..5dafd5785 100644 --- a/src/lib/config.cc +++ b/src/lib/config.cc @@ -1514,7 +1514,7 @@ void Config::copy_and_link (boost::filesystem::path new_file) const { write (); - dcp::filesystem::copy_file(config_read_file(), new_file, boost::filesystem::copy_option::overwrite_if_exists); + dcp::filesystem::copy_file(config_read_file(), new_file, dcp::filesystem::CopyOptions::OVERWRITE_EXISTING); link (new_file); } diff --git a/src/wx/full_config_dialog.cc b/src/wx/full_config_dialog.cc index c1c36c4a4..196716705 100644 --- a/src/wx/full_config_dialog.cc +++ b/src/wx/full_config_dialog.cc @@ -187,7 +187,7 @@ private: ); if (dialog.ShowModal() == wxID_OK) { - dcp::filesystem::copy_file(Config::instance()->cinemas_file(), wx_to_std(dialog.GetPath()), boost::filesystem::copy_option::overwrite_if_exists); + dcp::filesystem::copy_file(Config::instance()->cinemas_file(), wx_to_std(dialog.GetPath()), dcp::filesystem::CopyOptions::OVERWRITE_EXISTING); } } -- cgit v1.2.3 From 2c4e4c17fcf4100651cd04692557a35d15198718 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 24 Sep 2024 01:27:14 +0200 Subject: Missing new verification error. --- src/wx/verify_dcp_dialog.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/wx/verify_dcp_dialog.cc b/src/wx/verify_dcp_dialog.cc index 9417d7934..b55e0d7ba 100644 --- a/src/wx/verify_dcp_dialog.cc +++ b/src/wx/verify_dcp_dialog.cc @@ -562,6 +562,9 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr job case dcp::VerificationNote::Code::MISSING_CPL_CONTENT_VERSION: add(i.second, _("The CPL %n has no tag")); break; + case dcp::VerificationNote::Code::INVALID_PKL_NAMESPACE: + add(i.second, _("The PKL %f has an invalid namespace %n")); + break; } } -- cgit v1.2.3 From 3ed79bd632560efcc3a0f3992eeb9868b315be58 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 24 Sep 2024 11:04:23 +0200 Subject: Supporters update. --- src/wx/supporters.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/wx/supporters.cc b/src/wx/supporters.cc index 1a5f7ce27..5d7b2f1e2 100644 --- a/src/wx/supporters.cc +++ b/src/wx/supporters.cc @@ -570,6 +570,7 @@ supported_by.Add (wxT ("Big Island Drive In")); supported_by.Add (wxT ("Dayton Movies Inc")); supported_by.Add (wxT ("Buttons Sound Inc")); supported_by.Add (wxT ("Paramount Twin Inc")); +supported_by.Add (wxT ("A Cut Above Video Productions, Inc.")); supported_by.Add (wxT ("Mya Studios Inc.")); supported_by.Add (wxT ("Gold Pictures Inc.")); supported_by.Add (wxT ("First Nations Film And Video Festival Inc.")); -- cgit v1.2.3