Skip to content

Commit a6ccc19

Browse files
committed
- Changed Unreal Deadline Plugin name from EpicDeadlineService to UnrealDeadlineService
- Updated relevant docs to reflect the name change
1 parent 7bec3dd commit a6ccc19

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+10
-10
lines changed

.gitignore

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
.idea/*
33
docs/build/*
44
*.pyc
5-
unreal/EpicDeadlineService/Content/Python/Lib/Win64/*
5+
unreal/UnrealDeadlineService/Content/Python/Lib/Win64/*
66
unreal/MoviePipelineDeadline/Intermediate/*
77
unreal/MoviePipelineDeadline/Binaries/*
8-
unreal/EpicDeadlineService/Intermediate/*
9-
unreal/EpicDeadlineService/Binaries/*
8+
unreal/UnrealDeadlineService/Intermediate/*
9+
unreal/UnrealDeadlineService/Binaries/*
1010
*.old

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# Code paths for documentation
99
code_paths = ['../deadline/plugins/UnrealEngine',
10-
'../unreal/EpicDeadlineService/Content/Python',
10+
'../unreal/UnrealDeadlineService/Content/Python',
1111
'../unreal/MoviePipelineDeadline/Content/Python']
1212

1313
for path in code_paths:

docs/source/unreal/01-setup.rst

+1-1
Binary file not shown.
Binary file not shown.

unreal/MoviePipelineDeadline/MoviePipelineDeadline.uplugin

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"Enabled": true
3131
},
3232
{
33-
"Name": "EpicDeadlineService",
33+
"Name": "UnrealDeadlineService",
3434
"Enabled": true
3535
}
3636
],

unreal/README.md

+1-1

unreal/EpicDeadlineService/Content/Python/service_actions/submit_job_action.py unreal/UnrealDeadlineService/Content/Python/service_actions/submit_job_action.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
# Editor Utility Widget path
1616
# NOTE: This is very fragile and can break if naming or pathing changes
17-
EDITOR_UTILITY_WIDGET = "/EpicDeadlineService/Widgets/DeadlineJobSubmitter"
17+
EDITOR_UTILITY_WIDGET = "/UnrealDeadlineService/Widgets/DeadlineJobSubmitter"
1818

1919

2020
def _launch_job_submitter():
Binary file not shown.

unreal/EpicDeadlineService/EpicDeadlineService.uplugin unreal/UnrealDeadlineService/UnrealDeadlineService.uplugin

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"FileVersion": 1,
33
"Version": 1,
44
"VersionName": "1.0",
5-
"FriendlyName": "Epic Deadline Service",
5+
"FriendlyName": "Unreal Deadline Service",
66
"Description": "Plugin to interact with Thinkbox Deadline renderfarm. Allows job submissions, queries, and job state updates.",
7-
"Category": "Epic Deadline",
7+
"Category": "AWS Thinkbox Deadline",
88
"CreatedBy": "Epic Games, Inc.",
99
"CreatedByURL" : "http://www.epicgames.com",
1010
"DocsURL": "",

0 commit comments

Comments
 (0)