-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
11e9f02
commit ecfff62
Showing
16 changed files
with
117 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 43 additions & 19 deletions
62
packages/uxp-templates-pack/uxp-template-ps-starter/template/manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,52 @@ | ||
{ | ||
|
||
"id": "com.adobe.ps.starter", | ||
"name": "Adobe Photoshop UXP plugin starter template", | ||
"version": "1.0.0", | ||
"main": "index.html", | ||
"host": [ | ||
{ | ||
"app": "PS", | ||
"minVersion": "21.0.0" | ||
}], | ||
"uiEntrypoints": [ | ||
"manifestVersion": 4, | ||
"entrypoints": [ | ||
{ | ||
"type": "panel", | ||
"panelId": "vanilla", | ||
"panelInfo": { | ||
"title": {"default": "Vanilla"}, | ||
"minimumSize": {"width": 230, "height": 200}, | ||
"maximumSize": {"width": 2000, "height": 2000}, | ||
"preferredDockedSize": {"width": 230, "height": 300}, | ||
"preferredFloatingSize": {"width": 230, "height": 300}, | ||
"flyoutMenu" : [ | ||
{"title": {"default": "Show Alert"}, "command": "flyoutMenuShowAlert"} | ||
] | ||
} | ||
"id": "vanilla", | ||
"label": { | ||
"default": "My Network panel", | ||
"en-US": "My Network panel", | ||
"es-ES": "My Network panel" | ||
}, | ||
"minimumSize": { | ||
"width": 120, | ||
"height": 140 | ||
}, | ||
"maximumSize": { | ||
"width": 1200, | ||
"height": 10000 | ||
}, | ||
"preferredDockedSize": { | ||
"width": 150, | ||
"height": 200 | ||
}, | ||
"preferredFloatingSize": { | ||
"width": 300, | ||
"height": 200 | ||
}, | ||
"commands": [ | ||
{ | ||
"id": "show_alert", | ||
"label": { | ||
"default": "Show Alert", | ||
"en-US": "Show Alert (US)", | ||
"es-ES": "Show Alert (ES)" | ||
} | ||
} | ||
] | ||
} | ||
], | ||
"runOnStartup": true | ||
} | ||
"host": [ | ||
{ | ||
"app": "PS", | ||
"minVersion": "21.0.0", | ||
"maxVersion": "31.1.1" | ||
} | ||
] | ||
} |