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

Add BorisFX Silhouette application #45

Merged
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
2 changes: 2 additions & 0 deletions client/ayon_applications/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"premiere": "Premiere",
"resolve": "Resolve",
"terminal": "Terminal",
"silhouette": "Silhouette",
"substancepainter": "Substance Painter",
"tvpaint": "TVPaint",
"unreal": "Unreal Editor",
Expand Down Expand Up @@ -56,6 +57,7 @@
"photoshop": "photoshop.png",
"premiere": "premiere.png",
"resolve": "resolve.png",
"silhouette": "silhouette.png",
"substancepainter": "substancepainter.png",
"terminal": "terminal.png",
"tvpaint": "tvpaint.png",
Expand Down
Binary file added client/ayon_applications/icons/silhouette.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/silhouette.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions server/applications.json
Original file line number Diff line number Diff line change
Expand Up @@ -1318,6 +1318,25 @@
}
]
},
"silhouette": {
"enabled": true,
"host_name": "silhouette",
"environment": "{}",
"variants": [
{
"name": "2024-5",
"label": "2024.5",
"executables": {
"windows": [
"C:\\Program Files\\BorisFX\\Silhouette 2024.5\\Silhouette.exe"
],
"darwin": [],
"linux": []
},
"environment": "{}"
}
]
},
"terminal": {
"enabled": true,
"host_name": "",
Expand Down
3 changes: 3 additions & 0 deletions server/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"equalizer",
"motionbuilder",
"cinema4d",
"silhouette",
"terminal",
"premiere"
}
Expand Down Expand Up @@ -326,6 +327,8 @@ class ApplicationsSettings(BaseSettingsModel):
default_factory=AppGroup, title="Motion Builder")
cinema4d: AppGroup = SettingsField(
default_factory=AppGroup, title="Cinema4D")
silhouette: AppGroup = SettingsField(
default_factory=AppGroup, title="BorisFX Silhouette")
terminal: AppGroup = SettingsField(
default_factory=AppGroup,
title="Terminal",
Expand Down
Loading