├── .gitignore ├── LICENSE.txt ├── README.md ├── screenshot.png ├── screenshotGlyphs.png ├── word-o-mat.glyphsPlugin └── Contents │ ├── Info.plist │ ├── MacOS │ └── plugin │ └── Resources │ ├── WordOMat.py │ ├── catalan.txt │ ├── czech.txt │ ├── danish.txt │ ├── dutch.txt │ ├── finnish.txt │ ├── french.txt │ ├── german.txt │ ├── hungarian.txt │ ├── icelandic.txt │ ├── italian.txt │ ├── latin.txt │ ├── lib.py │ ├── norwegian.txt │ ├── plugin.py │ ├── polish.txt │ ├── slovak.txt │ ├── spanish.txt │ ├── ukacd.txt │ ├── vietnamese.txt │ ├── welsh.txt │ └── wordcheck.py └── word-o-mat.roboFontExt ├── html └── index.html ├── info.plist ├── lib ├── wordcheck.py └── wordomat.py └── resources ├── catalan.txt ├── czech.txt ├── danish.txt ├── dutch.txt ├── finnish.txt ├── french.txt ├── german.txt ├── hungarian.txt ├── icelandic.txt ├── italian.txt ├── latin.txt ├── norwegian.txt ├── polish.txt ├── slovak.txt ├── spanish.txt ├── ukacd.txt └── vietnamese.txt /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/screenshot.png -------------------------------------------------------------------------------- /screenshotGlyphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/screenshotGlyphs.png -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Info.plist -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/MacOS/plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/MacOS/plugin -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/WordOMat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/WordOMat.py -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/catalan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/catalan.txt -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/czech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/czech.txt -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/danish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/danish.txt -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/dutch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/dutch.txt -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/finnish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/finnish.txt -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/french.txt -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/german.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/german.txt -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/hungarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/hungarian.txt -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/icelandic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/icelandic.txt -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/italian.txt -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/latin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/latin.txt -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/lib.py -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/norwegian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/norwegian.txt -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/plugin.py -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/polish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/polish.txt -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/slovak.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/slovak.txt -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/spanish.txt -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/ukacd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/ukacd.txt -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/vietnamese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/vietnamese.txt -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/welsh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/welsh.txt -------------------------------------------------------------------------------- /word-o-mat.glyphsPlugin/Contents/Resources/wordcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.glyphsPlugin/Contents/Resources/wordcheck.py -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/html/index.html -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/info.plist -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/lib/wordcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/lib/wordcheck.py -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/lib/wordomat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/lib/wordomat.py -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/resources/catalan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/resources/catalan.txt -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/resources/czech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/resources/czech.txt -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/resources/danish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/resources/danish.txt -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/resources/dutch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/resources/dutch.txt -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/resources/finnish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/resources/finnish.txt -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/resources/french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/resources/french.txt -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/resources/german.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/resources/german.txt -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/resources/hungarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/resources/hungarian.txt -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/resources/icelandic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/resources/icelandic.txt -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/resources/italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/resources/italian.txt -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/resources/latin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/resources/latin.txt -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/resources/norwegian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/resources/norwegian.txt -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/resources/polish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/resources/polish.txt -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/resources/slovak.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/resources/slovak.txt -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/resources/spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/resources/spanish.txt -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/resources/ukacd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/resources/ukacd.txt -------------------------------------------------------------------------------- /word-o-mat.roboFontExt/resources/vietnamese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schriftgestalt/word-o-mat/HEAD/word-o-mat.roboFontExt/resources/vietnamese.txt --------------------------------------------------------------------------------