Releases: adafruit/circuitpython-fonts
Updated for mpy 10.x Builds
Fix cirucp compatibility .. again
20240507.0.0 Add an empty commit for the release process
Release with a fully semver-compliant number: 20240506.1.1
Merge pull request #7 from adafruit/include-version-number Add version number
20240506.1
Re-release with semver-ish version number.
Full Changelog: 2024050...20240506.1
Improve metadata & more
Correct metadata & release under Adafruit organization
The circuitpython-fonts bundle has 2100 font libraries covering 75 different fonts in 14 different sizes.
This bundle can be used with circup for easy installation.
Once you have installed circup and connected to a board, simply install the desired font(s):
circup bundle-add adafruit/circuitpython-fonts # You only need to do this once
circup install font_free_mono_9
The font can be used like so:
from font_free_mono_9 import FONT as MONO_9
from adafruit_display_text.bitmap_label import Label
# ...
label = Label(font=MONO_9, text="Hi Mom!")
If you don't use circup, then simply grab the appropriate bundle from this Releases page. Unzip it, and then copy the desired folder(s) to your CircuitPython device. If you use a manual installation method, you'll also need to install adafruit_bitmap_font
from the Adfruit CircuitPython Bundle.
The libraries in each release are compiled for all recent major versions of CircuitPython. Please download the one that matches the major version of your CircuitPython. For example, if you are running 8.2.6 you should download the 8.x bundle.
What's Changed
New Contributors
Full Changelog: 2023121...2023121
Include a bunch of fonts from the Leage of Moveable Type
Update package names, improve READMEs
20231217.2 More README
Release with correct name
20231217.1 make bundle name match repo name
Initial release
20231217 bring up to pre-commit standards and add workflows