├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin ├── LICENSE ├── bdf.py ├── bdfcheck.py ├── bdfexp.py ├── bdftofnt.py ├── bdftopsf.py ├── fncli.py ├── fnio.py ├── fnutil.py ├── otb1cli.py ├── otb1exp.py ├── otb1get.py └── ucstoany.py ├── preview.png └── siji.bdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxkrsv/siji-ng/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxkrsv/siji-ng/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxkrsv/siji-ng/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxkrsv/siji-ng/HEAD/README.md -------------------------------------------------------------------------------- /bin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxkrsv/siji-ng/HEAD/bin/LICENSE -------------------------------------------------------------------------------- /bin/bdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxkrsv/siji-ng/HEAD/bin/bdf.py -------------------------------------------------------------------------------- /bin/bdfcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxkrsv/siji-ng/HEAD/bin/bdfcheck.py -------------------------------------------------------------------------------- /bin/bdfexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxkrsv/siji-ng/HEAD/bin/bdfexp.py -------------------------------------------------------------------------------- /bin/bdftofnt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxkrsv/siji-ng/HEAD/bin/bdftofnt.py -------------------------------------------------------------------------------- /bin/bdftopsf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxkrsv/siji-ng/HEAD/bin/bdftopsf.py -------------------------------------------------------------------------------- /bin/fncli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxkrsv/siji-ng/HEAD/bin/fncli.py -------------------------------------------------------------------------------- /bin/fnio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxkrsv/siji-ng/HEAD/bin/fnio.py -------------------------------------------------------------------------------- /bin/fnutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxkrsv/siji-ng/HEAD/bin/fnutil.py -------------------------------------------------------------------------------- /bin/otb1cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxkrsv/siji-ng/HEAD/bin/otb1cli.py -------------------------------------------------------------------------------- /bin/otb1exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxkrsv/siji-ng/HEAD/bin/otb1exp.py -------------------------------------------------------------------------------- /bin/otb1get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxkrsv/siji-ng/HEAD/bin/otb1get.py -------------------------------------------------------------------------------- /bin/ucstoany.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxkrsv/siji-ng/HEAD/bin/ucstoany.py -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxkrsv/siji-ng/HEAD/preview.png -------------------------------------------------------------------------------- /siji.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxkrsv/siji-ng/HEAD/siji.bdf --------------------------------------------------------------------------------