-
Notifications
You must be signed in to change notification settings - Fork 141
Description
I tried everything for icons to show when app is created in collapsed state or docked state and nothing. They appear in the PS Plugin Panel DropDown menu area, but not in the collapsed and docked state. I made PNG files 23px and 46px and used the correct @2x etc, I tried 72dpi, 300dpi, nothing. I used the Adobe Template EXACTLY for the manifest and nothing. Maybe you need to have a built in icon verifier or creation method to make this headache go away!!
How can I release a plugin without a correct icon?
This is my manifest:
{ "manifestVersion": 5, "id": "com.robart.cropshare.free", "name": "Rob Art | CropShare Free", "version": "1.0.0", "main": "index.html", "host": { "app": "PS", "minVersion": "25.0.0" }, "type": "plugin", "entryPoints": [ { "type": "command", "id": "about-cropshare-free", "label": { "default": "About CropShare Free" } }, { "type": "command", "id": "help-documentation", "label": { "default": "Help & Documentation" } }, { "type": "command", "id": "visit-plugin-page", "label": { "default": "Visit Plugin Page" } }, { "type": "command", "id": "reload-plugin", "label": { "default": "Reload Plugin" } }, { "type": "command", "id": "clear-all-settings", "label": { "default": "Clear All Settings" } }, { "type": "command", "id": "buy-paid-version", "label": { "default": "Buy Paid Version" } }, { "type": "panel", "id": "cropshare.free.panel", "label": { "default": "Rob Art | CropShare Free" }, "minimumSize": { "width": 400, "height": 650 }, "maximumSize": { "width": 600, "height": 900 }, "preferredDockedSize": { "width": 450, "height": 750 }, "preferredFloatingSize": { "width": 450, "height": 750 }, "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"]} ] } ], "icons": [ { "width": 23, "height": 23, "path": "icons/panel.png", "scale": [ 1, 2 ], "theme": [ "dark", "darkest" ], "species": [ "generic" ] }, { "width": 23, "height": 23, "path": "icons/panel-light.png", "scale": [ 1, 2 ], "theme": [ "lightest", "light" ], "species": [ "generic" ] } ], "requiredPermissions": { "allowCodeGenerationFromStrings": true, "network": { "domains": [ "robsnow.eu", "rob-art.gumroad.com" ] }, "launchProcess": { "schemes": ["https", "slack"], "extensions": [".html"] }, "clipboard": "readAndWrite", "localFileSystem": "request" } }