From 979363841707e555fcc4399c84d5d9c2ea842f48 Mon Sep 17 00:00:00 2001 From: Francis Date: Sat, 27 Oct 2018 10:16:55 +0200 Subject: [PATCH] Add plugin icon --- appcast.xml | 2 +- .../Contents/Resources/icon.png | Bin 0 -> 904 bytes .../Contents/Sketch/manifest.json | 67 +++++++++--------- 3 files changed, 33 insertions(+), 36 deletions(-) create mode 100644 sketch-layout-settings.sketchplugin/Contents/Resources/icon.png diff --git a/appcast.xml b/appcast.xml index 1066a46..ffdfb5e 100644 --- a/appcast.xml +++ b/appcast.xml @@ -2,7 +2,7 @@ - + diff --git a/sketch-layout-settings.sketchplugin/Contents/Resources/icon.png b/sketch-layout-settings.sketchplugin/Contents/Resources/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..1eda9ca50b4bf4ee702949aa7c952dfc95515915 GIT binary patch literal 904 zcmeAS@N?(olHy`uVBq!ia0vp^4Is?H1|$#LC7uRSEa{HEjtmSN`?>!lvNA9*+k3h= zhEy=VovY}l9U$To-L%qm1A_p|w}vARBiLRiN|x@(TPW4kpqilV-LxW$L($y0cqcon z{n^=-#eVaC+W&d__Gj7t2ib3!)RXhi9o;YP(C|=6fq{u9KHbMx%C(}x?; z#$7P0?Emie&GF&4*4XpU-@7AHS8siI`~3P}&;FKf|50&M*6xz#=YU-=q~jVEDejhQ zW{5p0`qhmr_U0$%Efp93etj>$>h>q55dB+kY*;eb*6h*)v-f!r5QbUCQGcIC%C6aXh$frzFX!WbngFp&|cwM+!^Ffd|@+ z4Ex?HPZCsMYF^L6^kZAUhZ}KYcY7b`njxgN@xNA D40UDQ literal 0 HcmV?d00001 diff --git a/sketch-layout-settings.sketchplugin/Contents/Sketch/manifest.json b/sketch-layout-settings.sketchplugin/Contents/Sketch/manifest.json index 4cb235f..592f0b8 100644 --- a/sketch-layout-settings.sketchplugin/Contents/Sketch/manifest.json +++ b/sketch-layout-settings.sketchplugin/Contents/Sketch/manifest.json @@ -1,38 +1,35 @@ { - "name": "Artboard Layout Settings", - "description": "Artboard Layout Settings", - "author": "Francis Vega", - "email": "hisconer@gmail.com", - "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": "hisconer@gmail.com", + "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"] + } } -