├── README.md ├── demo.gif └── review.sketchplugin └── Contents └── Sketch ├── Review.sketchscript └── manifest.json /README.md: -------------------------------------------------------------------------------- 1 | # Sketch Review 2 | 3 | Review designs by marking them as `🔴 Pending` or `🔵 Done` with Emoji. 4 | 5 | 6 | 7 | You can use it from the plugins menu or using the keyboard shortcuts: 8 | 9 | - `Select artboard / layer` → `⌘ + P` → Toggles `🔴 Pending` / `🔵 Done` 10 | - `Select artboard / layer` → `⌘ + ALT + P` → Resets the status 11 | 12 | ## How to Install 13 | 14 | 1. ⬇️ [Download the plugin](https://github.com/marcelinollano/sketch-review/releases/download/1.0/review.sketchplugin.zip) 15 | 2. 📦 Extract the `.zip` file 16 | 3. ⚡️ Double-click to install 17 | -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelinollano/sketchreview/a38cdc5c1e7e6a0038c623bed3e5120135740ba5/demo.gif -------------------------------------------------------------------------------- /review.sketchplugin/Contents/Sketch/Review.sketchscript: -------------------------------------------------------------------------------- 1 | // Emojis! 2 | var nay = "🔴"; 3 | var yay = "🔵"; 4 | 5 | var toggleReview = function(context) { 6 | // Collect the stuff 7 | var selection = context.selection 8 | var selectionCount = [selection count] 9 | var doc = context.document 10 | 11 | if (selectionCount > 0) { 12 | for (var i=0; i 0) { 43 | for (var i=0; i