Merge branch 'develop' into enhancement/OP-7078_ValidateMeshHasUVs

This commit is contained in:
Kayla Man 2024-02-29 14:46:54 +08:00
commit ae4093549a
448 changed files with 4507 additions and 4719 deletions

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"