From bb18534ffe658cf11bb6bfee65a21a74ab765925 Mon Sep 17 00:00:00 2001 From: MustafaJafar Date: Mon, 2 Dec 2024 16:42:28 +0200 Subject: [PATCH 1/3] Rename `Sequence File` attr def label to `Edit list file` in `EditorialSimpleCreator` --- client/ayon_traypublisher/plugins/create/create_editorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ayon_traypublisher/plugins/create/create_editorial.py b/client/ayon_traypublisher/plugins/create/create_editorial.py index e2cda49..9529091 100644 --- a/client/ayon_traypublisher/plugins/create/create_editorial.py +++ b/client/ayon_traypublisher/plugins/create/create_editorial.py @@ -843,7 +843,7 @@ def get_pre_create_attr_defs(self): ], allow_sequences=False, single_item=False, - label="Sequence file", + label="Edit list file", ), FileDef( "media_filepaths_data", From 9f01495673f58730030f41d465fc34f769dd2d44 Mon Sep 17 00:00:00 2001 From: MustafaJafar Date: Wed, 4 Dec 2024 15:18:03 +0200 Subject: [PATCH 2/3] Add tooltip about EDL --- client/ayon_traypublisher/plugins/create/create_editorial.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/ayon_traypublisher/plugins/create/create_editorial.py b/client/ayon_traypublisher/plugins/create/create_editorial.py index 9529091..c16f444 100644 --- a/client/ayon_traypublisher/plugins/create/create_editorial.py +++ b/client/ayon_traypublisher/plugins/create/create_editorial.py @@ -844,6 +844,11 @@ def get_pre_create_attr_defs(self): allow_sequences=False, single_item=False, label="Edit list file", + tooltip=( + "An Edit Decision List (EDL) is a list of edits that includes reel and timecode data.\n" + "This information shows where each video clip can be found to create the final cut.\n" + "EDL files can be generated using apps like Nuke Studio and Resolve." + ) ), FileDef( "media_filepaths_data", From ceb57f5a714112b9135b65d68e6578605415917f Mon Sep 17 00:00:00 2001 From: Mustafa Jafar Date: Mon, 9 Dec 2024 23:59:43 +0200 Subject: [PATCH 3/3] use the correct label for the `FileDef` Co-authored-by: Roy Nieterau --- client/ayon_traypublisher/plugins/create/create_editorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ayon_traypublisher/plugins/create/create_editorial.py b/client/ayon_traypublisher/plugins/create/create_editorial.py index c16f444..1f68b4d 100644 --- a/client/ayon_traypublisher/plugins/create/create_editorial.py +++ b/client/ayon_traypublisher/plugins/create/create_editorial.py @@ -843,7 +843,7 @@ def get_pre_create_attr_defs(self): ], allow_sequences=False, single_item=False, - label="Edit list file", + label="Edit Decision List", tooltip=( "An Edit Decision List (EDL) is a list of edits that includes reel and timecode data.\n" "This information shows where each video clip can be found to create the final cut.\n"