-
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.
Added plugin icon to manifest for Sketch 50.
- Loading branch information
Jason Burns
committed
May 9, 2018
1 parent
7de2052
commit 0b968b8
Showing
6 changed files
with
93 additions
and
13 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
Binary file modified
BIN
-5.05 KB
(30%)
Unused Style Remover.sketchplugin/Contents/Resources/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -4,23 +4,39 @@ | |
{ | ||
"name" : "Unused Style Remover", | ||
"shortcut" : "cmd option shift u", | ||
"identifier" : "styleRemover", | ||
"identifier" : "remover", | ||
"description" : "Remove unused layer and text styles.", | ||
"script" : "script.cocoascript", | ||
"icon" : "icon-sr.png" | ||
"icon" : "icon-sr.png", | ||
"handler" : "remover" | ||
}, | ||
{ | ||
"name": "Report Issue", | ||
"identifier": "report", | ||
"script" : "script.cocoascript", | ||
"handler": "report" | ||
}, | ||
{ | ||
"name": "Donate", | ||
"identifier": "donate", | ||
"script" : "script.cocoascript", | ||
"handler": "donate" | ||
} | ||
], | ||
"menu" : { | ||
"title" : "Unused Style Remover", | ||
"items" : [ | ||
"styleRemover" | ||
], | ||
"isRoot" : true | ||
"remover", | ||
"-", | ||
"report", | ||
"donate" | ||
] | ||
}, | ||
"identifier" : "com.sonburn.sketchplugins.unused-style-remover", | ||
"version" : "0.2", | ||
"version" : "0.3", | ||
"description" : "Remove unused layer and text styles.", | ||
"authorEmail" : "[email protected]", | ||
"name" : "Unused Style Remover", | ||
"icon" : "icon.png", | ||
"appcast" : "https://raw.githubusercontent.com/sonburn/unused-style-remover/master/appcast.xml" | ||
} |
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