From 5336e5d7f791af03cb563419ffad217a493781a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Je=CC=81re=CC=81my=20Marchand?= Date: Sat, 6 May 2017 20:16:54 +0200 Subject: [PATCH] Fix execution on recent sketch version --- .../Contents/Sketch/manifest.json | 12 ++++++------ .../{script.sketchscript => script.cocoascript} | 0 2 files changed, 6 insertions(+), 6 deletions(-) rename Icon Slate.sketchplugin/Contents/Sketch/{script.sketchscript => script.cocoascript} (100%) diff --git a/Icon Slate.sketchplugin/Contents/Sketch/manifest.json b/Icon Slate.sketchplugin/Contents/Sketch/manifest.json index 5b2b475..f447d82 100644 --- a/Icon Slate.sketchplugin/Contents/Sketch/manifest.json +++ b/Icon Slate.sketchplugin/Contents/Sketch/manifest.json @@ -3,10 +3,10 @@ "description": "Export icons with Icon Slate", "author": "Jeremy Marchand", "homepage": "https://github.com/kodlian/iconslate-sketchplugin", - "version": 1.1, + "version": 1.2, "identifier": "com.kodlian.Icon-Slate.sketch-plugins", "updateURL": "https://github.com/kodlian/iconslate-sketchplugin/Icon Slate.sketchplugin", - "compatibleVersion": 3.3, + "compatibleVersion": 41, "bundleVersion": 1, "commands": [ @@ -14,25 +14,25 @@ "name": "Export All Artboards", "identifier": "exportAllArtboards", "shortcut": "cmd ctrl e", - "script": "script.sketchscript" + "script": "script.cocoascript" }, { "name": "Export All Pages (Artboards combined)", "identifier": "exportAllPages", "shortcut": "cmd alt e", - "script": "script.sketchscript" + "script": "script.cocoascript" }, { "name": "Export Current Page (Artboards combined)", "identifier": "exportCurrentPage", "shortcut": "", - "script": "script.sketchscript" + "script": "script.cocoascript" }, { "name": "Export Current Page's Artboards", "identifier": "exportCurrentPageArtboard", "shortcut": "", - "script": "script.sketchscript" + "script": "script.cocoascript" } ], "menu": diff --git a/Icon Slate.sketchplugin/Contents/Sketch/script.sketchscript b/Icon Slate.sketchplugin/Contents/Sketch/script.cocoascript similarity index 100% rename from Icon Slate.sketchplugin/Contents/Sketch/script.sketchscript rename to Icon Slate.sketchplugin/Contents/Sketch/script.cocoascript