mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
OP-7700 - adding OpenRV to Applications
Must be here to be exposed in Applications in Anatomy
This commit is contained in:
parent
eb715cc31d
commit
27eef74655
6 changed files with 30 additions and 2 deletions
|
|
@ -27,7 +27,8 @@ class AddLastWorkfileToLaunchArgs(PreLaunchHook):
|
|||
"tvpaint",
|
||||
"substancepainter",
|
||||
"aftereffects",
|
||||
"wrap"
|
||||
"wrap",
|
||||
"openrv"
|
||||
}
|
||||
launch_types = {LaunchTypes.local}
|
||||
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ class OCIOEnvHook(PreLaunchHook):
|
|||
"nuke",
|
||||
"hiero",
|
||||
"resolve",
|
||||
"openrv"
|
||||
}
|
||||
launch_types = set()
|
||||
|
||||
|
|
|
|||
BIN
client/ayon_core/resources/app_icons/openrv.png
Normal file
BIN
client/ayon_core/resources/app_icons/openrv.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.7 KiB |
|
|
@ -1201,6 +1201,30 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"openrv": {
|
||||
"enabled": true,
|
||||
"label": "OpenRV",
|
||||
"icon": "{}/app_icons/openrv.png",
|
||||
"host_name": "openrv",
|
||||
"environment": "{\n \n}",
|
||||
"variants": [
|
||||
{
|
||||
"name": "1.0.0",
|
||||
"use_python_2": false,
|
||||
"executables": {
|
||||
"windows": [],
|
||||
"darwin": [],
|
||||
"linux": []
|
||||
},
|
||||
"arguments": {
|
||||
"windows": [],
|
||||
"darwin": [],
|
||||
"linux": []
|
||||
},
|
||||
"environment": "{\n \n}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"additional_apps": []
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -186,6 +186,8 @@ class ApplicationsSettings(BaseSettingsModel):
|
|||
default_factory=AppGroupWithPython, title="Unreal Editor")
|
||||
wrap: AppGroup = SettingsField(
|
||||
default_factory=AppGroupWithPython, title="Wrap")
|
||||
openrv: AppGroup = SettingsField(
|
||||
default_factory=AppGroupWithPython, title="OpenRV")
|
||||
additional_apps: list[AdditionalAppGroup] = SettingsField(
|
||||
default_factory=list, title="Additional Applications")
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__version__ = "0.1.5"
|
||||
__version__ = "0.1.6"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue