├── .gitignore ├── LICENSE ├── README.md ├── Sort-Me.sketchplugin └── Contents │ ├── Resources │ └── Icon.png │ └── Sketch │ ├── Sort-Me.coscript │ └── manifest.json ├── appcast.xml └── images ├── Sort-Me.sketch ├── sort-me-demo@2x.gif ├── sort-me-icon@2x.png └── sort-me-promo-image@2x.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romashamin/sort-me-sketch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romashamin/sort-me-sketch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romashamin/sort-me-sketch/HEAD/README.md -------------------------------------------------------------------------------- /Sort-Me.sketchplugin/Contents/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romashamin/sort-me-sketch/HEAD/Sort-Me.sketchplugin/Contents/Resources/Icon.png -------------------------------------------------------------------------------- /Sort-Me.sketchplugin/Contents/Sketch/Sort-Me.coscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romashamin/sort-me-sketch/HEAD/Sort-Me.sketchplugin/Contents/Sketch/Sort-Me.coscript -------------------------------------------------------------------------------- /Sort-Me.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romashamin/sort-me-sketch/HEAD/Sort-Me.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romashamin/sort-me-sketch/HEAD/appcast.xml -------------------------------------------------------------------------------- /images/Sort-Me.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romashamin/sort-me-sketch/HEAD/images/Sort-Me.sketch -------------------------------------------------------------------------------- /images/sort-me-demo@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romashamin/sort-me-sketch/HEAD/images/sort-me-demo@2x.gif -------------------------------------------------------------------------------- /images/sort-me-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romashamin/sort-me-sketch/HEAD/images/sort-me-icon@2x.png -------------------------------------------------------------------------------- /images/sort-me-promo-image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romashamin/sort-me-sketch/HEAD/images/sort-me-promo-image@2x.png --------------------------------------------------------------------------------