├── .gitignore ├── AUTHORS.txt ├── CONTRIBUTORS.txt ├── LICENSE.md ├── OFL.txt ├── README.md ├── aux └── rmx │ ├── Cyr lowercase.json │ └── sc.json ├── requirements.txt └── sources ├── Alegreya.glyphs ├── Alegreya_Italic.glyphs ├── build.sh └── report.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huertatipografica/Alegreya/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huertatipografica/Alegreya/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huertatipografica/Alegreya/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huertatipografica/Alegreya/HEAD/LICENSE.md -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huertatipografica/Alegreya/HEAD/OFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huertatipografica/Alegreya/HEAD/README.md -------------------------------------------------------------------------------- /aux/rmx/Cyr lowercase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huertatipografica/Alegreya/HEAD/aux/rmx/Cyr lowercase.json -------------------------------------------------------------------------------- /aux/rmx/sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huertatipografica/Alegreya/HEAD/aux/rmx/sc.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huertatipografica/Alegreya/HEAD/requirements.txt -------------------------------------------------------------------------------- /sources/Alegreya.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huertatipografica/Alegreya/HEAD/sources/Alegreya.glyphs -------------------------------------------------------------------------------- /sources/Alegreya_Italic.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huertatipografica/Alegreya/HEAD/sources/Alegreya_Italic.glyphs -------------------------------------------------------------------------------- /sources/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huertatipografica/Alegreya/HEAD/sources/build.sh -------------------------------------------------------------------------------- /sources/report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huertatipografica/Alegreya/HEAD/sources/report.sh --------------------------------------------------------------------------------