OP-7700 - adding OpenRV to Applications

Must be here to be exposed in Applications in Anatomy
This commit is contained in:
Petr Kalis 2024-02-21 12:22:43 +01:00
parent eb715cc31d
commit 27eef74655
6 changed files with 30 additions and 2 deletions

View file

@ -27,7 +27,8 @@ class AddLastWorkfileToLaunchArgs(PreLaunchHook):
"tvpaint",
"substancepainter",
"aftereffects",
"wrap"
"wrap",
"openrv"
}
launch_types = {LaunchTypes.local}

View file

@ -19,6 +19,7 @@ class OCIOEnvHook(PreLaunchHook):
"nuke",
"hiero",
"resolve",
"openrv"
}
launch_types = set()

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

View file

@ -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": []
}
}

View file

@ -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")

View file

@ -1 +1 @@
__version__ = "0.1.5"
__version__ = "0.1.6"