Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update product naming #104

Merged
merged 1 commit into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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