├── .gitignore ├── .vscode └── settings.json ├── README.md ├── app ├── css │ ├── app.css │ └── bootstrap.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── index.html ├── index.js ├── js │ ├── bmfont-writer.js │ └── index.js ├── package-lock.json └── package.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbilt/convert2fnt/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 使用 Electron 重写了这个工具, 你可以在 [Release Page][1] 下载. 2 | -------------------------------------------------------------------------------- /app/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbilt/convert2fnt/HEAD/app/css/app.css -------------------------------------------------------------------------------- /app/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbilt/convert2fnt/HEAD/app/css/bootstrap.min.css -------------------------------------------------------------------------------- /app/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbilt/convert2fnt/HEAD/app/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbilt/convert2fnt/HEAD/app/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /app/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbilt/convert2fnt/HEAD/app/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbilt/convert2fnt/HEAD/app/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbilt/convert2fnt/HEAD/app/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbilt/convert2fnt/HEAD/app/index.html -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbilt/convert2fnt/HEAD/app/index.js -------------------------------------------------------------------------------- /app/js/bmfont-writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbilt/convert2fnt/HEAD/app/js/bmfont-writer.js -------------------------------------------------------------------------------- /app/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbilt/convert2fnt/HEAD/app/js/index.js -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbilt/convert2fnt/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbilt/convert2fnt/HEAD/app/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justbilt/convert2fnt/HEAD/package.json --------------------------------------------------------------------------------