├── .gitignore ├── README.md ├── diff ├── Bold │ ├── Bold-diffbrowsers_glyphs.html │ ├── Bold-diffbrowsers_proofer.html │ ├── Bold-diffbrowsers_text.html │ ├── Bold-diffbrowsers_waterfall.html │ ├── FORMUDPGothic-Bold-wght-400-diffenator.html │ ├── diffenator2-report.html │ ├── new-FORMUDPGothic-Bold.ttf │ └── old-BIZUDPGothic-Bold.ttf └── Regular │ ├── FORMUDPGothic-Regular-wght-400-diffenator.html │ ├── Regular-diffbrowsers_glyphs.html │ ├── Regular-diffbrowsers_proofer.html │ ├── Regular-diffbrowsers_text.html │ ├── Regular-diffbrowsers_waterfall.html │ ├── diffenator2-report.html │ ├── new-FORMUDPGothic-Regular.ttf │ └── old-BIZUDPGothic-Regular.ttf ├── image.png ├── original ├── AUTHORS.txt ├── BIZUDPGothic-Bold.ttf ├── BIZUDPGothic-Regular.ttf ├── CONTRIBUTORS.txt └── OFL.txt ├── release ├── FORMUDPGothic-Bold.ttf └── FORMUDPGothic-Regular.ttf ├── sample.html └── scripts ├── adjust_glyph_width.py ├── build.sh ├── extract_font_tables.sh ├── tables-Bold.ttx └── tables-Regular.ttx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/README.md -------------------------------------------------------------------------------- /diff/Bold/Bold-diffbrowsers_glyphs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/diff/Bold/Bold-diffbrowsers_glyphs.html -------------------------------------------------------------------------------- /diff/Bold/Bold-diffbrowsers_proofer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/diff/Bold/Bold-diffbrowsers_proofer.html -------------------------------------------------------------------------------- /diff/Bold/Bold-diffbrowsers_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/diff/Bold/Bold-diffbrowsers_text.html -------------------------------------------------------------------------------- /diff/Bold/Bold-diffbrowsers_waterfall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/diff/Bold/Bold-diffbrowsers_waterfall.html -------------------------------------------------------------------------------- /diff/Bold/FORMUDPGothic-Bold-wght-400-diffenator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/diff/Bold/FORMUDPGothic-Bold-wght-400-diffenator.html -------------------------------------------------------------------------------- /diff/Bold/diffenator2-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/diff/Bold/diffenator2-report.html -------------------------------------------------------------------------------- /diff/Bold/new-FORMUDPGothic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/diff/Bold/new-FORMUDPGothic-Bold.ttf -------------------------------------------------------------------------------- /diff/Bold/old-BIZUDPGothic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/diff/Bold/old-BIZUDPGothic-Bold.ttf -------------------------------------------------------------------------------- /diff/Regular/FORMUDPGothic-Regular-wght-400-diffenator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/diff/Regular/FORMUDPGothic-Regular-wght-400-diffenator.html -------------------------------------------------------------------------------- /diff/Regular/Regular-diffbrowsers_glyphs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/diff/Regular/Regular-diffbrowsers_glyphs.html -------------------------------------------------------------------------------- /diff/Regular/Regular-diffbrowsers_proofer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/diff/Regular/Regular-diffbrowsers_proofer.html -------------------------------------------------------------------------------- /diff/Regular/Regular-diffbrowsers_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/diff/Regular/Regular-diffbrowsers_text.html -------------------------------------------------------------------------------- /diff/Regular/Regular-diffbrowsers_waterfall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/diff/Regular/Regular-diffbrowsers_waterfall.html -------------------------------------------------------------------------------- /diff/Regular/diffenator2-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/diff/Regular/diffenator2-report.html -------------------------------------------------------------------------------- /diff/Regular/new-FORMUDPGothic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/diff/Regular/new-FORMUDPGothic-Regular.ttf -------------------------------------------------------------------------------- /diff/Regular/old-BIZUDPGothic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/diff/Regular/old-BIZUDPGothic-Regular.ttf -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/image.png -------------------------------------------------------------------------------- /original/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/original/AUTHORS.txt -------------------------------------------------------------------------------- /original/BIZUDPGothic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/original/BIZUDPGothic-Bold.ttf -------------------------------------------------------------------------------- /original/BIZUDPGothic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/original/BIZUDPGothic-Regular.ttf -------------------------------------------------------------------------------- /original/CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/original/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /original/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/original/OFL.txt -------------------------------------------------------------------------------- /release/FORMUDPGothic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/release/FORMUDPGothic-Bold.ttf -------------------------------------------------------------------------------- /release/FORMUDPGothic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/release/FORMUDPGothic-Regular.ttf -------------------------------------------------------------------------------- /sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/sample.html -------------------------------------------------------------------------------- /scripts/adjust_glyph_width.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/scripts/adjust_glyph_width.py -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/extract_font_tables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/scripts/extract_font_tables.sh -------------------------------------------------------------------------------- /scripts/tables-Bold.ttx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/scripts/tables-Bold.ttx -------------------------------------------------------------------------------- /scripts/tables-Regular.ttx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jz5/FORM-UDPGothic/HEAD/scripts/tables-Regular.ttx --------------------------------------------------------------------------------