Skip to content

Commit

Permalink
v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
felipenlunkes committed Mar 18, 2024
1 parent f1d8ba7 commit 2a6a0b1
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions fonts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@
#
# $HexagonixOS$

# Version 2.0
buildFonts()
{

echo
echo -e "\e[1;94mBuilding Hexagon graphic fonts...\e[0m {"
Expand All @@ -86,4 +87,23 @@ do
done

echo
echo -e "} [\e[32mSuccessfully built graphic fonts\e[0m]."
echo -e "} [\e[32mSuccessfully built graphic fonts\e[0m]."

}

showVersion()
{
echo "hx build module for fonts, version $FONTS_MOD_VERSION"
echo
echo -e "\e[0mCopyright (c) 2015-2024 Felipe Miguel Nery Lunkes\e[0m"
echo -e "hx and hx modules are licensed under BSD-3-Clause and comes with no warranty."
}

export FONTS_MOD_VERSION="3.0.0"

case $1 in

--version) showVersion; exit;;
*) buildFonts; exit;;

esac

0 comments on commit 2a6a0b1

Please sign in to comment.