├── .gitignore ├── LICENSE.txt ├── README.md ├── README_EN.md ├── binary ├── otrebuild_mac └── otrebuild_win.exe ├── release ├── 2.004-2.001-1.002-R │ ├── README.md │ └── README_EN.md ├── 2.004-2.002-1.002-R │ ├── README.md │ └── README_EN.md └── 2.004-2.003-1.002-R │ ├── README.md │ └── README_EN.md ├── script └── build_ttfs.sh └── source ├── source-han-mono └── README.txt ├── source-han-sans └── README.txt └── source-han-serif └── README.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pal3love/Source-Han-TrueType/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pal3love/Source-Han-TrueType/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pal3love/Source-Han-TrueType/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pal3love/Source-Han-TrueType/HEAD/README_EN.md -------------------------------------------------------------------------------- /binary/otrebuild_mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pal3love/Source-Han-TrueType/HEAD/binary/otrebuild_mac -------------------------------------------------------------------------------- /binary/otrebuild_win.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pal3love/Source-Han-TrueType/HEAD/binary/otrebuild_win.exe -------------------------------------------------------------------------------- /release/2.004-2.001-1.002-R/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pal3love/Source-Han-TrueType/HEAD/release/2.004-2.001-1.002-R/README.md -------------------------------------------------------------------------------- /release/2.004-2.001-1.002-R/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pal3love/Source-Han-TrueType/HEAD/release/2.004-2.001-1.002-R/README_EN.md -------------------------------------------------------------------------------- /release/2.004-2.002-1.002-R/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pal3love/Source-Han-TrueType/HEAD/release/2.004-2.002-1.002-R/README.md -------------------------------------------------------------------------------- /release/2.004-2.002-1.002-R/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pal3love/Source-Han-TrueType/HEAD/release/2.004-2.002-1.002-R/README_EN.md -------------------------------------------------------------------------------- /release/2.004-2.003-1.002-R/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pal3love/Source-Han-TrueType/HEAD/release/2.004-2.003-1.002-R/README.md -------------------------------------------------------------------------------- /release/2.004-2.003-1.002-R/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pal3love/Source-Han-TrueType/HEAD/release/2.004-2.003-1.002-R/README_EN.md -------------------------------------------------------------------------------- /script/build_ttfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pal3love/Source-Han-TrueType/HEAD/script/build_ttfs.sh -------------------------------------------------------------------------------- /source/source-han-mono/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pal3love/Source-Han-TrueType/HEAD/source/source-han-mono/README.txt -------------------------------------------------------------------------------- /source/source-han-sans/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pal3love/Source-Han-TrueType/HEAD/source/source-han-sans/README.txt -------------------------------------------------------------------------------- /source/source-han-serif/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pal3love/Source-Han-TrueType/HEAD/source/source-han-serif/README.txt --------------------------------------------------------------------------------