When I export my plugin to .CCX file. Usually with double click it opens CCloud and installs it automatically, however when I double click the .CCX file it opens CCloud but doesn’t shows anything that is installing or something, just opens CCloud and nothing happens.
I’m using Windows 11.
If I go “right click” and choose “Open With → UnifiedPluginInstallerAgent” It does work, but the common user that buys my plugin usually doesn’t go and do right click and do this and this is a waste of time for support of my software to repeat the same over and over.
This is my CCloud version:
This is my manifest:
{
"id": "BREAKGENUXP",
"name": "BreakGen v1.5 (UXP)",
"version": "1.5.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": "breakgenUXP",
"minimumSize": {
"width": 333,
"height": 790
},
"maximumSize": {
"width": 1000,
"height": 2160
},
"preferredDockedSize": {
"width": 333,
"height": 790
},
"preferredFloatingSize": {
"width": 333,
"height": 790
},
"label": {
"default": "BreakGen v1.5 (UXP)"
},
"icons": [
{
"width": 23,
"height": 23,
"path": "icons/breakgen.png",
"scale": [
1,
2
],
"theme": [
"dark",
"darkest",
"medium",
"light",
"lightest",
"all"
]
}
]
}
],
"icons": [
{
"width": 48,
"height": 48,
"path": "icons/bg.png",
"scale": [
1,
2
],
"theme": [
"darkest",
"dark",
"medium",
"lightest",
"light"
],
"species": [ "pluginList" ]
}
],
"runOnStartup": true
}
Is there something I need to change or add to the manifest file?
Thanks in advance!