Skip to content

Commit

Permalink
chore: update product naming (#104)
Browse files Browse the repository at this point in the history
Signed-off-by: Morgan Epp <60796713+epmog@users.noreply.github.com>
  • Loading branch information
epmog committed Mar 14, 2024
1 parent aaf2d64 commit d4f7360
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Amazon Deadline Cloud for Nuke Development
# AWS Deadline Cloud for Nuke Development

## `hatch` commands

Expand Down Expand Up @@ -43,7 +43,7 @@ WARNING: This workflow installs additional Python packages into your Nuke's pyth

1. Create a development location within which to do your git checkouts. For example `~/deadline-clients`. Clone packages from this directory with commands like `git clone git@github.com:casillas2/deadline-cloud-for-nuke.git`. You'll also want the `deadline-cloud` repo.
2. Switch to your Nuke directory, like `cd "C:\Program Files\Nuke13.2v4"`.
3. Run `.\python -m pip install -e C:\Users\<username>\deadline-clients\deadline-cloud` to install the Amazon Deadline Cloud Client Library in edit mode.
3. Run `.\python -m pip install -e C:\Users\<username>\deadline-clients\deadline-cloud` to install the AWS Deadline Cloud Client Library in edit mode.
4. Run `.\python -m pip install -e C:\Users\<username>\deadline-clients\deadline-cloud-for-nuke` to install the Nuke Submitter in edit mode.
5. Run `set NUKE_PATH=C:\Users\<username>\deadline-clients\deadline-cloud-for-nuke\src` to put the `menu.py` file in the path Nuke searches for menu extensions.
6. Run `set DEADLINE_ENABLE_DEVELOPER_OPTIONS=true` to enable the job bundle debugging support. This enables a menu item you can use to run the tests from the `job_bundle_output_tests` directory.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Amazon Deadline Cloud for Nuke
# AWS Deadline Cloud for Nuke

This package provides user interface inside of Nuke for submitting jobs to Deadline Cloud, and
an adaptor that runs Nuke on render hosts.
Expand Down
2 changes: 1 addition & 1 deletion install_builder/deadline-cloud-for-nuke.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<component>
<name>deadline_cloud_for_nuke</name>
<description>Deadline Cloud for Nuke 13.2-14.0</description>
<detailedDescription>Nuke plugin for submitting jobs to Amazon Deadline Cloud. Compatible with Nuke 13.2-14.0</detailedDescription>
<detailedDescription>Nuke plugin for submitting jobs to AWS Deadline Cloud. Compatible with Nuke 13.2-14.0</detailedDescription>
<canBeEdited>1</canBeEdited>
<selected>0</selected>
<show>1</show>
Expand Down
4 changes: 2 additions & 2 deletions src/deadline/nuke_submitter/deadline_submitter_for_nuke.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@


def show_nuke_render_submitter_noargs() -> "SubmitJobToDeadlineDialog":
with gui_error_handler("Error opening Amazon Deadline Cloud Submitter", None):
with gui_error_handler("Error opening AWS Deadline Cloud Submitter", None):
# Get the main Nuke window so we can parent the submitter to it
app = QApplication.instance()
mainwin = [widget for widget in app.topLevelWidgets() if isinstance(widget, QMainWindow)][0]
with gui_error_handler("Error opening Amazon Deadline Cloud Submitter", mainwin):
with gui_error_handler("Error opening AWS Deadline Cloud Submitter", mainwin):
return show_nuke_render_submitter(mainwin, f=Qt.Tool)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def _run_job_bundle_output_test(test_dir: str, dcc_scene_file: str, report_fh, m
_open_dcc_scene_file(temp_dcc_scene_file)
QApplication.processEvents()

# Open the Amazon Deadline Cloud submitter
# Open the AWS Deadline Cloud submitter
submitter = _show_deadline_cloud_submitter(mainwin)
QApplication.processEvents()

Expand Down

0 comments on commit d4f7360

Please sign in to comment.