Skip to content

Commit 42d0d4e

Browse files
committed
Added description to all functions for Sketch Runner support.
1 parent 8c598ff commit 42d0d4e

File tree

1 file changed

+23
-20
lines changed
  • Symbol Instance Renamer.sketchplugin/Contents/Sketch

1 file changed

+23
-20
lines changed

Symbol Instance Renamer.sketchplugin/Contents/Sketch/manifest.json

Lines changed: 23 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name" : "Symbol Instance Renamer",
33
"description" : "Rename symbol instances to the name of their master.",
44
"author" : "Jason Burns",
5-
"homepage": "https://github.com/sonburn/symbol-instance-renamer",
5+
"homepage" : "https://github.com/sonburn/symbol-instance-renamer",
66
"version" : "2.8",
77
"identifier" : "com.sonburn.sketchplugins.symbol-instance-renamer",
88
"appcast" : "https://raw.githubusercontent.com/sonburn/symbol-instance-renamer/master/appcast.xml",
@@ -12,84 +12,87 @@
1212
"name" : "Rename All Instances on All Pages",
1313
"shortcut" : "cmd option shift d",
1414
"identifier" : "renameEverything",
15-
"icon": "icon.png",
1615
"description" : "Rename all symbol instances on all pages to the name of their master.",
16+
"icon" : "icon.png",
1717
"script" : "script.js",
1818
"handler" : "renameEverything"
1919
},
2020
{
2121
"name" : "Rename All Instances on All Pages (Except Symbols Page)",
2222
"shortcut" : "cmd option shift x",
2323
"identifier" : "renamePages",
24-
"icon": "icon.png",
2524
"description" : "Rename all symbol instances on all pages, except the Symbols page, to the name of their master.",
25+
"icon" : "icon.png",
2626
"script" : "script.js",
2727
"handler" : "renamePages"
2828
},
2929
{
3030
"name" : "Rename All Instances on Current Page",
3131
"shortcut" : "cmd option shift p",
3232
"identifier" : "renamePage",
33-
"icon": "icon.png",
3433
"description" : "Rename all symbol instances on current page to the name of their master.",
34+
"icon" : "icon.png",
3535
"script" : "script.js",
3636
"handler" : "renamePage"
3737
},
3838
{
3939
"name" : "Rename All Instances in Selected Artboard(s)",
4040
"shortcut" : "cmd option shift a",
4141
"identifier" : "renameArtboard",
42-
"icon": "icon.png",
4342
"description" : "Rename all symbol instances in selected artboards to the name of their master.",
43+
"icon" : "icon.png",
4444
"script" : "script.js",
4545
"handler" : "renameArtboard"
4646
},
4747
{
4848
"name" : "Rename All Instances of Selected Symbol(s)",
4949
"shortcut" : "cmd option shift m",
5050
"identifier" : "renameSymbol",
51-
"icon": "icon.png",
5251
"description" : "Rename all instances of the selected symbols to the name of their master.",
52+
"icon" : "icon.png",
5353
"script" : "script.js",
5454
"handler" : "renameSymbol"
5555
},
5656
{
5757
"name" : "Rename Selected Instance(s)",
5858
"shortcut" : "cmd option shift s",
5959
"identifier" : "renameSelected",
60-
"icon": "icon.png",
6160
"description" : "Rename selected symbol instances to the name of their master.",
61+
"icon" : "icon.png",
6262
"script" : "script.js",
6363
"handler" : "renameSelected"
6464
},
6565
{
6666
"name" : "Rename Selected Instance(s) with Options…",
6767
"identifier" : "renameSelectedOptions",
68-
"icon": "icon.png",
6968
"description" : "Rename instances with additional options.",
69+
"icon" : "icon.png",
7070
"script" : "script.js",
7171
"handler" : "renameSelectedOptions"
7272
},
7373
{
74-
"name": "Report Issue",
75-
"identifier": "report",
76-
"icon": "icon.png",
74+
"name" : "Report Issue",
75+
"identifier" : "report",
76+
"description" : "Report an issue with Symbol Instance Renamer.",
77+
"icon" : "icon.png",
7778
"script" : "script.js",
78-
"handler": "report"
79+
"handler" : "report"
7980
},
8081
{
81-
"name": "Other Plugins",
82-
"identifier": "plugins",
83-
"icon": "icon.png",
82+
"name" : "Other Plugins",
83+
"identifier" : "plugins",
84+
"description" : "View all of Sonburn's plugins.",
85+
"icon" : "icon.png",
8486
"script" : "script.js",
85-
"handler": "plugins"
87+
"handler" : "plugins"
8688
},
8789
{
88-
"name": "Donate",
89-
"identifier": "donate",
90-
"icon": "icon.png",
90+
"name" : "Donate",
91+
"identifier" : "donate",
92+
"description" : "Donate to the development of Symbol Instance Renamer.",
93+
"icon" : "icon.png",
9194
"script" : "script.js",
92-
"handler": "donate"
95+
"handler" : "donate"
9396
}
9497
],
9598
"menu" : {

0 commit comments

Comments
 (0)