├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── build.yaml │ ├── bump_version.yaml │ ├── release.yaml │ └── update_submodule.yaml ├── .gitignore ├── .gitmodules ├── Makefile ├── OFL.txt ├── README.MD ├── documentation ├── uvs.pdf ├── wenkailite-1.png ├── wenkailite-2.png ├── wenkailite-3.png ├── wenkailite-4.png ├── wenkailite-5.png └── wenkailite-6.png ├── fonts └── TTF │ ├── LXGWWenKaiLite-Light.ttf │ ├── LXGWWenKaiLite-Medium.ttf │ ├── LXGWWenKaiLite-Regular.ttf │ ├── LXGWWenKaiMonoLite-Light.ttf │ ├── LXGWWenKaiMonoLite-Medium.ttf │ └── LXGWWenKaiMonoLite-Regular.ttf ├── requirements.txt └── sources ├── build.sh ├── fontinfo ├── LXGWWenKaiLite-Light.plist ├── LXGWWenKaiLite-Medium.plist ├── LXGWWenKaiLite-Regular.plist ├── LXGWWenKaiMonoLite-Light.plist ├── LXGWWenKaiMonoLite-Medium.plist └── LXGWWenKaiMonoLite-Regular.plist └── project.yaml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/bump_version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/.github/workflows/bump_version.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/update_submodule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/.github/workflows/update_submodule.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/Makefile -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/OFL.txt -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/README.MD -------------------------------------------------------------------------------- /documentation/uvs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/documentation/uvs.pdf -------------------------------------------------------------------------------- /documentation/wenkailite-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/documentation/wenkailite-1.png -------------------------------------------------------------------------------- /documentation/wenkailite-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/documentation/wenkailite-2.png -------------------------------------------------------------------------------- /documentation/wenkailite-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/documentation/wenkailite-3.png -------------------------------------------------------------------------------- /documentation/wenkailite-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/documentation/wenkailite-4.png -------------------------------------------------------------------------------- /documentation/wenkailite-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/documentation/wenkailite-5.png -------------------------------------------------------------------------------- /documentation/wenkailite-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/documentation/wenkailite-6.png -------------------------------------------------------------------------------- /fonts/TTF/LXGWWenKaiLite-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/fonts/TTF/LXGWWenKaiLite-Light.ttf -------------------------------------------------------------------------------- /fonts/TTF/LXGWWenKaiLite-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/fonts/TTF/LXGWWenKaiLite-Medium.ttf -------------------------------------------------------------------------------- /fonts/TTF/LXGWWenKaiLite-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/fonts/TTF/LXGWWenKaiLite-Regular.ttf -------------------------------------------------------------------------------- /fonts/TTF/LXGWWenKaiMonoLite-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/fonts/TTF/LXGWWenKaiMonoLite-Light.ttf -------------------------------------------------------------------------------- /fonts/TTF/LXGWWenKaiMonoLite-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/fonts/TTF/LXGWWenKaiMonoLite-Medium.ttf -------------------------------------------------------------------------------- /fonts/TTF/LXGWWenKaiMonoLite-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/fonts/TTF/LXGWWenKaiMonoLite-Regular.ttf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/requirements.txt -------------------------------------------------------------------------------- /sources/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/sources/build.sh -------------------------------------------------------------------------------- /sources/fontinfo/LXGWWenKaiLite-Light.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/sources/fontinfo/LXGWWenKaiLite-Light.plist -------------------------------------------------------------------------------- /sources/fontinfo/LXGWWenKaiLite-Medium.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/sources/fontinfo/LXGWWenKaiLite-Medium.plist -------------------------------------------------------------------------------- /sources/fontinfo/LXGWWenKaiLite-Regular.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/sources/fontinfo/LXGWWenKaiLite-Regular.plist -------------------------------------------------------------------------------- /sources/fontinfo/LXGWWenKaiMonoLite-Light.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/sources/fontinfo/LXGWWenKaiMonoLite-Light.plist -------------------------------------------------------------------------------- /sources/fontinfo/LXGWWenKaiMonoLite-Medium.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/sources/fontinfo/LXGWWenKaiMonoLite-Medium.plist -------------------------------------------------------------------------------- /sources/fontinfo/LXGWWenKaiMonoLite-Regular.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/sources/fontinfo/LXGWWenKaiMonoLite-Regular.plist -------------------------------------------------------------------------------- /sources/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxgw/LxgwWenKai-Lite/HEAD/sources/project.yaml --------------------------------------------------------------------------------