├── .gitignore ├── GlyphBrowser.roboFontExt ├── html │ ├── GlyphBrowserMechanicIcon.png │ ├── index.html │ └── screen.png ├── info.plist ├── lib │ ├── browser.py │ ├── data │ │ ├── AGD.txt │ │ ├── glyphNamesToUnicode.txt │ │ └── joiningTypes.txt │ ├── imageMapImageCell.py │ ├── unicodeRangeNames.py │ └── unicodeRanges.py └── resources │ ├── inFont.pdf │ ├── inFont_both.pdf │ ├── inFont_none.pdf │ ├── inFont_unicode.pdf │ ├── joiningType_none.pdf │ ├── joiningtype_C.pdf │ ├── joiningtype_D.pdf │ ├── joiningtype_L.pdf │ ├── joiningtype_R.pdf │ └── joiningtype_U.pdf ├── GlyphBrowser.yml ├── GlyphBrowserMechanicIcon.png ├── LICENSE ├── README.md ├── glyphBrowserScreen.png ├── html ├── GlyphBrowserMechanicIcon.png ├── index.html └── screen.png ├── icon.pdf ├── lib ├── browser.py ├── data │ ├── AGD.txt │ ├── glyphNamesToUnicode.txt │ └── joiningTypes.txt ├── imageMapImageCell.py ├── unicodeRangeNames.py └── unicodeRanges.py ├── makeIcon.py ├── resources ├── inFont.pdf ├── inFont_both.pdf ├── inFont_none.pdf ├── inFont_unicode.pdf ├── joiningType_none.pdf ├── joiningtype_C.pdf ├── joiningtype_D.pdf ├── joiningtype_L.pdf ├── joiningtype_R.pdf └── joiningtype_U.pdf └── updateNames.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/.gitignore -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/html/GlyphBrowserMechanicIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/html/GlyphBrowserMechanicIcon.png -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/html/index.html -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/html/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/html/screen.png -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/info.plist -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/lib/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/lib/browser.py -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/lib/data/AGD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/lib/data/AGD.txt -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/lib/data/glyphNamesToUnicode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/lib/data/glyphNamesToUnicode.txt -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/lib/data/joiningTypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/lib/data/joiningTypes.txt -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/lib/imageMapImageCell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/lib/imageMapImageCell.py -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/lib/unicodeRangeNames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/lib/unicodeRangeNames.py -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/lib/unicodeRanges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/lib/unicodeRanges.py -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/resources/inFont.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/resources/inFont.pdf -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/resources/inFont_both.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/resources/inFont_both.pdf -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/resources/inFont_none.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/resources/inFont_none.pdf -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/resources/inFont_unicode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/resources/inFont_unicode.pdf -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/resources/joiningType_none.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/resources/joiningType_none.pdf -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/resources/joiningtype_C.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/resources/joiningtype_C.pdf -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/resources/joiningtype_D.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/resources/joiningtype_D.pdf -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/resources/joiningtype_L.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/resources/joiningtype_L.pdf -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/resources/joiningtype_R.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/resources/joiningtype_R.pdf -------------------------------------------------------------------------------- /GlyphBrowser.roboFontExt/resources/joiningtype_U.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.roboFontExt/resources/joiningtype_U.pdf -------------------------------------------------------------------------------- /GlyphBrowser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowser.yml -------------------------------------------------------------------------------- /GlyphBrowserMechanicIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/GlyphBrowserMechanicIcon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/README.md -------------------------------------------------------------------------------- /glyphBrowserScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/glyphBrowserScreen.png -------------------------------------------------------------------------------- /html/GlyphBrowserMechanicIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/html/GlyphBrowserMechanicIcon.png -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/html/index.html -------------------------------------------------------------------------------- /html/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/html/screen.png -------------------------------------------------------------------------------- /icon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/icon.pdf -------------------------------------------------------------------------------- /lib/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/lib/browser.py -------------------------------------------------------------------------------- /lib/data/AGD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/lib/data/AGD.txt -------------------------------------------------------------------------------- /lib/data/glyphNamesToUnicode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/lib/data/glyphNamesToUnicode.txt -------------------------------------------------------------------------------- /lib/data/joiningTypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/lib/data/joiningTypes.txt -------------------------------------------------------------------------------- /lib/imageMapImageCell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/lib/imageMapImageCell.py -------------------------------------------------------------------------------- /lib/unicodeRangeNames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/lib/unicodeRangeNames.py -------------------------------------------------------------------------------- /lib/unicodeRanges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/lib/unicodeRanges.py -------------------------------------------------------------------------------- /makeIcon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/makeIcon.py -------------------------------------------------------------------------------- /resources/inFont.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/resources/inFont.pdf -------------------------------------------------------------------------------- /resources/inFont_both.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/resources/inFont_both.pdf -------------------------------------------------------------------------------- /resources/inFont_none.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/resources/inFont_none.pdf -------------------------------------------------------------------------------- /resources/inFont_unicode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/resources/inFont_unicode.pdf -------------------------------------------------------------------------------- /resources/joiningType_none.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/resources/joiningType_none.pdf -------------------------------------------------------------------------------- /resources/joiningtype_C.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/resources/joiningtype_C.pdf -------------------------------------------------------------------------------- /resources/joiningtype_D.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/resources/joiningtype_D.pdf -------------------------------------------------------------------------------- /resources/joiningtype_L.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/resources/joiningtype_L.pdf -------------------------------------------------------------------------------- /resources/joiningtype_R.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/resources/joiningtype_R.pdf -------------------------------------------------------------------------------- /resources/joiningtype_U.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/resources/joiningtype_U.pdf -------------------------------------------------------------------------------- /updateNames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/glyphBrowser/HEAD/updateNames.py --------------------------------------------------------------------------------