I’m about to launch my plugin but I cannot make my plugin to be loaded in some PS versions, which versions supports UXP plugins and what should I include in the manifest to make it work from the oldest PS that suspports UXP?
This is my manifest:
{
"id": "ONIRICUXP",
"name": "Oniric v2.1 (UXP)",
"version": "2.1.0",
"main": "index.js",
"host": [
{
"app": "PS",
"minVersion": "23.0.0",
"data": {
"apiVersion": 2,
"loadEvent": "use"
}
}
],
"requiredPermissions": {
"localFileSystem": "fullAccess",
"launchProcess": {
"extensions": [
""
],
"schemes": [
"https"
]
},
"network": {
"domains": "all"
},
"allowCodeGenerationFromStrings": true
},
"manifestVersion": 5,
"entrypoints": [
{
"type": "panel",
"id": "oniricUXP",
"minimumSize": {
"width": 260,
"height": 290
},
"maximumSize": {
"width": 1000,
"height": 2160
},
"preferredDockedSize": {
"width": 260,
"height": 950
},
"preferredFloatingSize": {
"width": 260,
"height": 950
},
"label": {
"default": "Oniric v2.1 (UXP)"
},
"icons": [
{
"width": 23,
"height": 23,
"path": "icons/oniric.png",
"scale": [
1,
2
],
"theme": [
"dark",
"darkest",
"medium",
"light",
"lightest",
"all"
]
}
]
}
],
"icons": [
{
"width": 48,
"height": 48,
"path": "icons/on.png",
"scale": [
1,
2
],
"theme": [
"darkest",
"dark",
"medium",
"lightest",
"light"
],
"species": [ "pluginList" ]
}
],
"runOnStartup": true
}
I cannot make it work on PS version 23.0 or another than the latest.