├── .gitattributes ├── LICENSE.md ├── Presto Selecto.sketchplugin └── Contents │ ├── Resources │ └── icon.png │ └── Sketch │ ├── delegate.js │ ├── manifest.json │ └── script.js ├── README.md ├── appcast.xml └── images ├── logo.png └── screenshot.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonburn/presto-selecto/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonburn/presto-selecto/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Presto Selecto.sketchplugin/Contents/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonburn/presto-selecto/HEAD/Presto Selecto.sketchplugin/Contents/Resources/icon.png -------------------------------------------------------------------------------- /Presto Selecto.sketchplugin/Contents/Sketch/delegate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonburn/presto-selecto/HEAD/Presto Selecto.sketchplugin/Contents/Sketch/delegate.js -------------------------------------------------------------------------------- /Presto Selecto.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonburn/presto-selecto/HEAD/Presto Selecto.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /Presto Selecto.sketchplugin/Contents/Sketch/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonburn/presto-selecto/HEAD/Presto Selecto.sketchplugin/Contents/Sketch/script.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonburn/presto-selecto/HEAD/README.md -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonburn/presto-selecto/HEAD/appcast.xml -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonburn/presto-selecto/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonburn/presto-selecto/HEAD/images/screenshot.png --------------------------------------------------------------------------------