I am looking to get the icons in my plugin working in the plugin panels.
Created the manifest according to the documentation and examples, but the default icons are applied for the plugin panels. This issue only happens with InDesignm with PS everything is great.
I assume this is the ID issue.
Here is my manifest.json
{
"id": "myId",
"name": "Name",
"version": "0.1.0",
"main": "index.html",
"host": [
{
"app": "ID",
"minVersion": "18.5.0"
}
],
"manifestVersion": 5,
"requiredPermissions": {
"localFileSystem": "fullAccess",
"webview": {
"allow": "yes",
"domains": "all",
"enableMessageBridge": "localAndRemote"
},
"network": {
"domains": "all"
}
},
"entrypoints": [
{
"type": "panel",
"id": "main",
"label": {
"default": "Panel name"
},
"minimumSize": {
"width": 230,
"height": 200
},
"maximumSize": {
"width": 2000,
"height": 2000
},
"preferredDockedSize": {
"width": 230,
"height": 300
},
"preferredFloatingSize": {
"width": 230,
"height": 300
},
"icons": [
{
"width": 23,
"height": 23,
"path": "icons/dark-panel.png",
"scale": [
1,
2
],
"theme": [
"darkest",
"dark",
"medium"
],
"species": [
"chrome"
]
},
{
"width": 23,
"height": 23,
"path": "icons/light-panel.png",
"scale": [
1,
2
],
"theme": [
"lightest",
"light"
],
"species": [
"chrome"
]
}
]
}
],
"icons": [
{
"width": 48,
"height": 48,
"path": "icons/iconDark.png",
"scale": [
1,
2
],
"theme": [
"dark"
]
},
{
"width": 48,
"height": 48,
"path": "icons/iconLight.png",
"scale": [
1,
2
],
"theme": [
"light"
]
}
]
}
Any ideas on how to fix this?