├── .gitignore ├── README.md ├── Source ├── myricaM_ReplaceParts.ttf ├── myricaM_generator.bat ├── myricaM_generator.py ├── myrica_FontImage.png ├── myrica_ReplaceParts.ttf ├── myrica_generator.bat ├── myrica_generator.py ├── sample.html ├── ビルドファイル.txt ├── ビルド環境.txt └── 文字サンプル.txt ├── SourceTTF ├── GenShinGothic-LICENSE.txt ├── GenShinGothic-Monospace-Light.ttf ├── GenShinGothic-README.txt ├── Inconsolata-LICENSE.txt ├── Inconsolata-Regular.ttf ├── mgenplus-1m-light.ttf ├── mgenplus-LICENSE.txt └── mgenplus-README.txt └── product ├── LICENSE_M+.txt ├── LICENSE_OFL.txt ├── Myrica.7z ├── Myrica.md ├── Myrica.zip ├── MyricaM.7z ├── MyricaM.zip ├── MyricaM_改版履歴.md └── Myrica_改版履歴.md /.gitignore: -------------------------------------------------------------------------------- 1 | Work/ 2 | product/*.TTC 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/README.md -------------------------------------------------------------------------------- /Source/myricaM_ReplaceParts.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/Source/myricaM_ReplaceParts.ttf -------------------------------------------------------------------------------- /Source/myricaM_generator.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/Source/myricaM_generator.bat -------------------------------------------------------------------------------- /Source/myricaM_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/Source/myricaM_generator.py -------------------------------------------------------------------------------- /Source/myrica_FontImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/Source/myrica_FontImage.png -------------------------------------------------------------------------------- /Source/myrica_ReplaceParts.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/Source/myrica_ReplaceParts.ttf -------------------------------------------------------------------------------- /Source/myrica_generator.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/Source/myrica_generator.bat -------------------------------------------------------------------------------- /Source/myrica_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/Source/myrica_generator.py -------------------------------------------------------------------------------- /Source/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/Source/sample.html -------------------------------------------------------------------------------- /Source/ビルドファイル.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/Source/ビルドファイル.txt -------------------------------------------------------------------------------- /Source/ビルド環境.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/Source/ビルド環境.txt -------------------------------------------------------------------------------- /Source/文字サンプル.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/Source/文字サンプル.txt -------------------------------------------------------------------------------- /SourceTTF/GenShinGothic-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/SourceTTF/GenShinGothic-LICENSE.txt -------------------------------------------------------------------------------- /SourceTTF/GenShinGothic-Monospace-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/SourceTTF/GenShinGothic-Monospace-Light.ttf -------------------------------------------------------------------------------- /SourceTTF/GenShinGothic-README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/SourceTTF/GenShinGothic-README.txt -------------------------------------------------------------------------------- /SourceTTF/Inconsolata-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/SourceTTF/Inconsolata-LICENSE.txt -------------------------------------------------------------------------------- /SourceTTF/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/SourceTTF/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /SourceTTF/mgenplus-1m-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/SourceTTF/mgenplus-1m-light.ttf -------------------------------------------------------------------------------- /SourceTTF/mgenplus-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/SourceTTF/mgenplus-LICENSE.txt -------------------------------------------------------------------------------- /SourceTTF/mgenplus-README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/SourceTTF/mgenplus-README.txt -------------------------------------------------------------------------------- /product/LICENSE_M+.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/product/LICENSE_M+.txt -------------------------------------------------------------------------------- /product/LICENSE_OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/product/LICENSE_OFL.txt -------------------------------------------------------------------------------- /product/Myrica.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/product/Myrica.7z -------------------------------------------------------------------------------- /product/Myrica.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/product/Myrica.md -------------------------------------------------------------------------------- /product/Myrica.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/product/Myrica.zip -------------------------------------------------------------------------------- /product/MyricaM.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/product/MyricaM.7z -------------------------------------------------------------------------------- /product/MyricaM.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/product/MyricaM.zip -------------------------------------------------------------------------------- /product/MyricaM_改版履歴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/product/MyricaM_改版履歴.md -------------------------------------------------------------------------------- /product/Myrica_改版履歴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomokuni/Myrica/HEAD/product/Myrica_改版履歴.md --------------------------------------------------------------------------------