I have a plugin with No sub menus but its failing with the following message when I try to package it and for the life of me, I cannot see where the issue is.
Icons are not specified for panel entrypoints in the manifest.
{
“id”: “com.dbw.grain”,
“name”: “Grain”,
“version”: “1.0.0”,
“main”: “index.html”,
“host”: [
{
“app”: “PS”,
“minVersion”: “22.00”
}
],
“manifestVersion”: 4,
“entrypoints”: [
{
“type”: “panel”,
“id”: “vanilla”,
“minimumSize”: {
“width”: 230,
“height”: 150
},
“maximumSize”: {
“width”: 230,
“height”: 150
},
“preferredDockedSize”: {
“width”: 230,
“height”: 150
},
“preferredFloatingSize”: {
“width”: 230,
“height”: 150
},
“label”: {
“default”: “Grain”
}
}
],
“icons”: [
{
“width”: 48,
“height”: 48,
“path”: “icons/plugin.png”,
“scale”: [
1,
2
],
“theme”: [
“darkest”,
“dark”,
“medium”,
“lightest”,
“light”,
“all”
],
“species”: [
“pluginList”
]
}
],
“icons”: [
{
“width”: 23,
“height”: 23,
“path”: “icons/dark.png”,
“scale”: [
1,
2
],
“theme”: [
“darkest”,
“dark”,
“medium”
]
},
{
“width”: 23,
“height”: 23,
“path”: “icons/light.png”,
“scale”: [
1,
2
],
“theme”: [
“lightest”,
“light”
]
}
]
}