├── .gitignore ├── GlyphNannyMechanicIcon.png ├── icon.ai ├── license.txt ├── readme.md ├── screenshot.png ├── source └── code │ ├── glyphNanny │ ├── __init__.py │ ├── defaults.py │ ├── defaultsWindow.py │ ├── editorLayers.py │ ├── fontTestWindow.py │ ├── scripting.py │ ├── testTabs.py │ └── tests │ │ ├── __init__.py │ │ ├── contour.py │ │ ├── glyph.py │ │ ├── glyphInfo.py │ │ ├── metrics.py │ │ ├── point.py │ │ ├── registry.py │ │ ├── segment.py │ │ ├── tools.py │ │ └── wrappers.py │ ├── launch.py │ ├── menu_showFontTester.py │ ├── menu_showPrefs.py │ └── menu_toggleObserverVisibility.py └── test.ufo ├── fontinfo.plist ├── glyphs.background ├── contents.plist └── layerinfo.plist ├── glyphs ├── A_.glif ├── A_grave.glif ├── B_.glif ├── C_.glif ├── D_.glif ├── E_.alt1.glif ├── E_.alt2.glif ├── E_.alt3.glif ├── E_.glif ├── F_.glif ├── contents.plist └── layerinfo.plist ├── layercontents.plist ├── lib.plist └── metainfo.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/.gitignore -------------------------------------------------------------------------------- /GlyphNannyMechanicIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/GlyphNannyMechanicIcon.png -------------------------------------------------------------------------------- /icon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/icon.ai -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/readme.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/screenshot.png -------------------------------------------------------------------------------- /source/code/glyphNanny/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/glyphNanny/__init__.py -------------------------------------------------------------------------------- /source/code/glyphNanny/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/glyphNanny/defaults.py -------------------------------------------------------------------------------- /source/code/glyphNanny/defaultsWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/glyphNanny/defaultsWindow.py -------------------------------------------------------------------------------- /source/code/glyphNanny/editorLayers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/glyphNanny/editorLayers.py -------------------------------------------------------------------------------- /source/code/glyphNanny/fontTestWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/glyphNanny/fontTestWindow.py -------------------------------------------------------------------------------- /source/code/glyphNanny/scripting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/glyphNanny/scripting.py -------------------------------------------------------------------------------- /source/code/glyphNanny/testTabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/glyphNanny/testTabs.py -------------------------------------------------------------------------------- /source/code/glyphNanny/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/glyphNanny/tests/__init__.py -------------------------------------------------------------------------------- /source/code/glyphNanny/tests/contour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/glyphNanny/tests/contour.py -------------------------------------------------------------------------------- /source/code/glyphNanny/tests/glyph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/glyphNanny/tests/glyph.py -------------------------------------------------------------------------------- /source/code/glyphNanny/tests/glyphInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/glyphNanny/tests/glyphInfo.py -------------------------------------------------------------------------------- /source/code/glyphNanny/tests/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/glyphNanny/tests/metrics.py -------------------------------------------------------------------------------- /source/code/glyphNanny/tests/point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/glyphNanny/tests/point.py -------------------------------------------------------------------------------- /source/code/glyphNanny/tests/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/glyphNanny/tests/registry.py -------------------------------------------------------------------------------- /source/code/glyphNanny/tests/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/glyphNanny/tests/segment.py -------------------------------------------------------------------------------- /source/code/glyphNanny/tests/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/glyphNanny/tests/tools.py -------------------------------------------------------------------------------- /source/code/glyphNanny/tests/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/glyphNanny/tests/wrappers.py -------------------------------------------------------------------------------- /source/code/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/launch.py -------------------------------------------------------------------------------- /source/code/menu_showFontTester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/menu_showFontTester.py -------------------------------------------------------------------------------- /source/code/menu_showPrefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/menu_showPrefs.py -------------------------------------------------------------------------------- /source/code/menu_toggleObserverVisibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/source/code/menu_toggleObserverVisibility.py -------------------------------------------------------------------------------- /test.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/test.ufo/fontinfo.plist -------------------------------------------------------------------------------- /test.ufo/glyphs.background/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/test.ufo/glyphs.background/contents.plist -------------------------------------------------------------------------------- /test.ufo/glyphs.background/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/test.ufo/glyphs.background/layerinfo.plist -------------------------------------------------------------------------------- /test.ufo/glyphs/A_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/test.ufo/glyphs/A_.glif -------------------------------------------------------------------------------- /test.ufo/glyphs/A_grave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/test.ufo/glyphs/A_grave.glif -------------------------------------------------------------------------------- /test.ufo/glyphs/B_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/test.ufo/glyphs/B_.glif -------------------------------------------------------------------------------- /test.ufo/glyphs/C_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/test.ufo/glyphs/C_.glif -------------------------------------------------------------------------------- /test.ufo/glyphs/D_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/test.ufo/glyphs/D_.glif -------------------------------------------------------------------------------- /test.ufo/glyphs/E_.alt1.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/test.ufo/glyphs/E_.alt1.glif -------------------------------------------------------------------------------- /test.ufo/glyphs/E_.alt2.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/test.ufo/glyphs/E_.alt2.glif -------------------------------------------------------------------------------- /test.ufo/glyphs/E_.alt3.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/test.ufo/glyphs/E_.alt3.glif -------------------------------------------------------------------------------- /test.ufo/glyphs/E_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/test.ufo/glyphs/E_.glif -------------------------------------------------------------------------------- /test.ufo/glyphs/F_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/test.ufo/glyphs/F_.glif -------------------------------------------------------------------------------- /test.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/test.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /test.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/test.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /test.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/test.ufo/layercontents.plist -------------------------------------------------------------------------------- /test.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/test.ufo/lib.plist -------------------------------------------------------------------------------- /test.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesupply/glyph-nanny/HEAD/test.ufo/metainfo.plist --------------------------------------------------------------------------------