├── .gitignore ├── LICENSE ├── README.md ├── UserFlows.sketchplugin └── Contents │ ├── Resources │ ├── cn.plist │ ├── cz.plist │ ├── da.plist │ ├── de.plist │ ├── en.plist │ ├── es.plist │ ├── fa.plist │ ├── fr.plist │ ├── icon-internal.png │ ├── icon.png │ ├── icons │ │ ├── addLink.png │ │ ├── editConditions.png │ │ ├── generateDiagram.png │ │ ├── gotoArtboard.png │ │ ├── gotoLinkLayer.png │ │ ├── hideConnections.png │ │ ├── redrawConnections.png │ │ ├── relinkArtboards.png │ │ └── removeLink.png │ ├── images │ │ ├── endMarker-0.tiff │ │ ├── endMarker-1.tiff │ │ ├── endMarker-2.tiff │ │ ├── endMarker-3.tiff │ │ ├── endMarker-4.tiff │ │ ├── endMarker-5.tiff │ │ ├── endMarker-6.tiff │ │ ├── endMarker-7.tiff │ │ ├── magnets--nsew.tiff │ │ ├── magnets--topleft.tiff │ │ ├── startMarker-0.tiff │ │ ├── startMarker-1.tiff │ │ ├── startMarker-2.tiff │ │ ├── startMarker-3.tiff │ │ ├── startMarker-4.tiff │ │ ├── startMarker-5.tiff │ │ ├── startMarker-6.tiff │ │ └── startMarker-7.tiff │ ├── it.plist │ ├── nl.plist │ ├── pt.plist │ ├── ru.plist │ ├── tr.plist │ └── zhtw.plist │ └── Sketch │ ├── manifest.json │ └── script.js ├── appcast.xml └── user-flows-runner.png /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/README.md -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/cn.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/cn.plist -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/cz.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/cz.plist -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/da.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/da.plist -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/de.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/de.plist -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/en.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/en.plist -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/es.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/es.plist -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/fa.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/fa.plist -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/fr.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/fr.plist -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/icon-internal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/icon-internal.png -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/icon.png -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/icons/addLink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/icons/addLink.png -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/icons/editConditions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/icons/editConditions.png -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/icons/generateDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/icons/generateDiagram.png -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/icons/gotoArtboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/icons/gotoArtboard.png -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/icons/gotoLinkLayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/icons/gotoLinkLayer.png -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/icons/hideConnections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/icons/hideConnections.png -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/icons/redrawConnections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/icons/redrawConnections.png -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/icons/relinkArtboards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/icons/relinkArtboards.png -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/icons/removeLink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/icons/removeLink.png -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/images/endMarker-0.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/images/endMarker-0.tiff -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/images/endMarker-1.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/images/endMarker-1.tiff -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/images/endMarker-2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/images/endMarker-2.tiff -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/images/endMarker-3.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/images/endMarker-3.tiff -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/images/endMarker-4.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/images/endMarker-4.tiff -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/images/endMarker-5.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/images/endMarker-5.tiff -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/images/endMarker-6.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/images/endMarker-6.tiff -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/images/endMarker-7.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/images/endMarker-7.tiff -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/images/magnets--nsew.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/images/magnets--nsew.tiff -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/images/magnets--topleft.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/images/magnets--topleft.tiff -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/images/startMarker-0.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/images/startMarker-0.tiff -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/images/startMarker-1.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/images/startMarker-1.tiff -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/images/startMarker-2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/images/startMarker-2.tiff -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/images/startMarker-3.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/images/startMarker-3.tiff -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/images/startMarker-4.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/images/startMarker-4.tiff -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/images/startMarker-5.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/images/startMarker-5.tiff -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/images/startMarker-6.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/images/startMarker-6.tiff -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/images/startMarker-7.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/images/startMarker-7.tiff -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/it.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/it.plist -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/nl.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/nl.plist -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/pt.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/pt.plist -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/ru.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/ru.plist -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/tr.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/tr.plist -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Resources/zhtw.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Resources/zhtw.plist -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /UserFlows.sketchplugin/Contents/Sketch/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/UserFlows.sketchplugin/Contents/Sketch/script.js -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/appcast.xml -------------------------------------------------------------------------------- /user-flows-runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/UserFlows/HEAD/user-flows-runner.png --------------------------------------------------------------------------------