(todo)
The app uses the Author font, which due licensing, we can't include it on this repository, that's why you will need to download it manually
- Install the font family here.
- Unzip the OTF fonts into
app/res/font
- Run this bash command to rename the files accordingly
for i in $( ls | grep [A-Z] );
do
mv -i $i `echo $i | tr [:upper:] [:lower:] | tr '-' '_'`;
done