Skip to content

Commit

Permalink
Add plugin icon
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancisVega committed Oct 27, 2018
1 parent 697f56a commit 9793638
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 36 deletions.
2 changes: 1 addition & 1 deletion appcast.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<rss xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
<channel>
<item>
<enclosure url="https://github.com/FrancisVega/sketch-copy-paste-layout-settings/releases/download/1.0/sketch-copy-paste-layout-settings.1.zip" sparkle:version="1.0"/>
<enclosure url="https://github.com/FrancisVega/sketch-copy-paste-layout-settings/releases/download/1.1/sketch-copy-paste-layout-settings.1.1.zip" sparkle:version="1.1"/>
</item>
</channel>
</rss>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
67 changes: 32 additions & 35 deletions sketch-layout-settings.sketchplugin/Contents/Sketch/manifest.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,35 @@
{
"name": "Artboard Layout Settings",
"description": "Artboard Layout Settings",
"author": "Francis Vega",
"email": "[email protected]",
"homepage": "",
"version": "1.0",
"identifier": "com.example.sketch.layoutsettings",
"appcast": "https://raw.githubusercontent.com/FrancisVega/sketch-copy-paste-layout-settings/master/appcast.xml",
"compatibleVersion": "40",
"bundleVersion": 1,
"commands": [
{
"name": "Copy Layout/Grid",
"identifier": "copylayoutsettings",
"handlers" : {
"run" : "copySettings"
},
"script": "sketch-layout-settings.js"
},
{
"name": "Paste Layout/Grid",
"identifier": "pastelayoutsettings",
"handlers" : {
"run" : "pasteSettings"
},
"script": "sketch-layout-settings.js"
}
],
"menu": {
"title": "Layout Settings",
"items": [
"copylayoutsettings",
"pastelayoutsettings"
]
"name": "Artboard Layout Settings",
"description": "Artboard Layout Settings",
"author": "Francis Vega",
"email": "[email protected]",
"homepage": "",
"version": "1.1",
"identifier": "com.example.sketch.layoutsettings",
"appcast": "https://raw.githubusercontent.com/FrancisVega/sketch-copy-paste-layout-settings/master/appcast.xml",
"compatibleVersion": "40",
"icon": "icon.png",
"bundleVersion": 1,
"commands": [
{
"name": "Copy Layout/Grid",
"identifier": "copylayoutsettings",
"handlers": {
"run": "copySettings"
},
"script": "sketch-layout-settings.js"
},
{
"name": "Paste Layout/Grid",
"identifier": "pastelayoutsettings",
"handlers": {
"run": "pasteSettings"
},
"script": "sketch-layout-settings.js"
}
],
"menu": {
"title": "Layout Settings",
"items": ["copylayoutsettings", "pastelayoutsettings"]
}
}

0 comments on commit 9793638

Please sign in to comment.