├── .gitignore ├── Lippy.sketchplugin └── Contents │ ├── Resources │ ├── Lippy.framework │ │ ├── Lippy │ │ ├── Resources │ │ └── Versions │ │ │ ├── A │ │ │ ├── Lippy │ │ │ ├── Resources │ │ │ │ ├── Assets.car │ │ │ │ ├── Info.plist │ │ │ │ ├── LippyMainViewController.nib │ │ │ │ ├── LippySourceEditorWindow.nib │ │ │ │ └── lippy-content.json │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── Current │ └── icon.png │ └── Sketch │ ├── manifest.json │ ├── markov.js │ └── script.js ├── README.md ├── appcast.xml └── lippy-gh.gif /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | notarization.json 4 | -------------------------------------------------------------------------------- /Lippy.sketchplugin/Contents/Resources/Lippy.framework/Lippy: -------------------------------------------------------------------------------- 1 | Versions/Current/Lippy -------------------------------------------------------------------------------- /Lippy.sketchplugin/Contents/Resources/Lippy.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Lippy.sketchplugin/Contents/Resources/Lippy.framework/Versions/A/Lippy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/lippy/HEAD/Lippy.sketchplugin/Contents/Resources/Lippy.framework/Versions/A/Lippy -------------------------------------------------------------------------------- /Lippy.sketchplugin/Contents/Resources/Lippy.framework/Versions/A/Resources/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/lippy/HEAD/Lippy.sketchplugin/Contents/Resources/Lippy.framework/Versions/A/Resources/Assets.car -------------------------------------------------------------------------------- /Lippy.sketchplugin/Contents/Resources/Lippy.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/lippy/HEAD/Lippy.sketchplugin/Contents/Resources/Lippy.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Lippy.sketchplugin/Contents/Resources/Lippy.framework/Versions/A/Resources/LippyMainViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/lippy/HEAD/Lippy.sketchplugin/Contents/Resources/Lippy.framework/Versions/A/Resources/LippyMainViewController.nib -------------------------------------------------------------------------------- /Lippy.sketchplugin/Contents/Resources/Lippy.framework/Versions/A/Resources/LippySourceEditorWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/lippy/HEAD/Lippy.sketchplugin/Contents/Resources/Lippy.framework/Versions/A/Resources/LippySourceEditorWindow.nib -------------------------------------------------------------------------------- /Lippy.sketchplugin/Contents/Resources/Lippy.framework/Versions/A/Resources/lippy-content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/lippy/HEAD/Lippy.sketchplugin/Contents/Resources/Lippy.framework/Versions/A/Resources/lippy-content.json -------------------------------------------------------------------------------- /Lippy.sketchplugin/Contents/Resources/Lippy.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/lippy/HEAD/Lippy.sketchplugin/Contents/Resources/Lippy.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Lippy.sketchplugin/Contents/Resources/Lippy.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Lippy.sketchplugin/Contents/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/lippy/HEAD/Lippy.sketchplugin/Contents/Resources/icon.png -------------------------------------------------------------------------------- /Lippy.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/lippy/HEAD/Lippy.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /Lippy.sketchplugin/Contents/Sketch/markov.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/lippy/HEAD/Lippy.sketchplugin/Contents/Sketch/markov.js -------------------------------------------------------------------------------- /Lippy.sketchplugin/Contents/Sketch/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/lippy/HEAD/Lippy.sketchplugin/Contents/Sketch/script.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/lippy/HEAD/README.md -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/lippy/HEAD/appcast.xml -------------------------------------------------------------------------------- /lippy-gh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/lippy/HEAD/lippy-gh.gif --------------------------------------------------------------------------------