diff --git a/eta/constants.py b/eta/constants.py index 5f0396ce0..67eaa9d23 100644 --- a/eta/constants.py +++ b/eta/constants.py @@ -54,7 +54,7 @@ # Paths CONFIG_JSON_PATH = os.path.join(ETA_DIR, "config.json") ASCII_ART_PATH = os.path.join(RESOURCES_DIR, "eta-ascii.txt") -DEFAULT_FONT_PATH = os.path.join(RESOURCES_DIR, "lato-regular.ttf") +DEFAULT_FONT_PATH = os.path.join(RESOURCES_DIR, "Arial.ttf") DEFAULT_LOGO_CONFIG_PATH = os.path.join( RESOURCES_DIR, "default-logo-config.json" ) diff --git a/eta/resources/Arial.ttf b/eta/resources/Arial.ttf new file mode 100644 index 000000000..ab68fb197 Binary files /dev/null and b/eta/resources/Arial.ttf differ diff --git a/eta/resources/lato-regular.ttf b/eta/resources/lato-regular.ttf deleted file mode 100644 index 04ea8efb1..000000000 Binary files a/eta/resources/lato-regular.ttf and /dev/null differ diff --git a/setup.py b/setup.py index 268c36f9f..524efac97 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ from wheel.bdist_wheel import bdist_wheel -VERSION = "0.12.2" +VERSION = "0.12.3" class BdistWheelCustom(bdist_wheel):