Skip to content

Commit

Permalink
lots of improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
faridsabitov committed Feb 17, 2019
1 parent bd8ef1b commit 5b68ff2
Show file tree
Hide file tree
Showing 7 changed files with 4,077 additions and 269 deletions.
72 changes: 58 additions & 14 deletions arrows.sketchplugin/Contents/Sketch/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,30 +12,60 @@
"homepage": "https://spectrum.chat/sketch-arrows",
"commands": [
{
"name": "Define Links",
"name": "Create Connection",
"description": "Select more than one layer, to create a link between first object and others",
"identifier": "definelink",
"icon": "icon.png",
"shortcut": "command shift u",
"script": "script.js"
},
{
"name": "(WIP) Update Arrows",
"description": "Update all the arrows on selected group",
"identifier": "updateArrows",
"name": "Between Selected",
"description": "Update connection between selected layers",
"identifier": "updateSelectedArrows",
"script": "script.js",
"icon": "icon.png",
"shortcut": "command option shift r",
"handler": "updateArrows"
"handler": "updateSelectedArrows"
},
{
"name": "Delete Arrows",
"description": "Cleaning all the layers based on the selection",
"identifier": "cleanArrows",
"name": "From the Selected Artboard",
"description": "Update all the arrows from selected artboard",
"identifier": "updateArtboardArrows",
"script": "script.js",
"icon": "icon.png",
"shortcut": "command option shift u",
"handler": "cleanArrows"
"handler": "updateArtboardArrows"
},
{
"name": "All Connections",
"description": "Update all the arrows",
"identifier": "updateAllArrows",
"script": "script.js",
"icon": "icon.png",
"handler": "updateAllArrows"
},
{
"name": "(WIP) Between Selected",
"description": "Delete all connections between selected ones",
"identifier": "deleteSelectedArrows",
"script": "script.js",
"icon": "icon.png",
"handler": "deleteSelectedArrows"
},
{
"name": "From the Selected Artboard",
"description": "Delete all connections from selected artboard",
"identifier": "deleteArtboardArrows",
"script": "script.js",
"icon": "icon.png",
"handler": "deleteArtboardArrows"
},
{
"name": "All Connections",
"description": "Delete all connections",
"identifier": "deleteAllArrows",
"script": "script.js",
"icon": "icon.png",
"handler": "deleteAllArrows"
},
{
"name": "Settings",
Expand Down Expand Up @@ -63,11 +93,25 @@
}
],
"menu": {
"title": "👉 Arrows",
"title": "👉 Connection Arrows",
"items": [
"definelink",
"updateArrows",
"cleanArrows",
{
"title": "Update Connection",
"items": [
"updateSelectedArrows",
"updateArtboardArrows",
"updateAllArrows"
]
},
{
"title": "Delete Connection",
"items": [
"deleteSelectedArrows",
"deleteArtboardArrows",
"deleteAllArrows"
]
},
"settings",
"-",
"getLibrary",
Expand Down
Loading

0 comments on commit 5b68ff2

Please sign in to comment.