Releases: adafruit/Adafruit_CircuitPython_DisplayIO_Layout
1.16.0 - Cartesian Support Adding Lines
This release contains fixes that allow you to add and clear lines to the Cartesian widget. Thank you @s-light
To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.
To use in CPython, pip3 install adafruit-circuitpython-displayio-layout
.
Read the docs for info on how to use it.
1.15.2 Float position Fix
This release contains fixes for float values being used to set positions of Widgets and similar fix for GridLayout
To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.
To use in CPython, pip3 install adafruit-circuitpython-displayio-layout
.
Read the docs for info on how to use it.
1.15.1 - Cartesian Fix
This release contains a fix for the Cartesian widget and allows widgets that don't rely on vectorio
to work in environments missing it
To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.
To use in CPython, pip3 install adafruit-circuitpython-displayio-layout
.
Read the docs for info on how to use it.
1.15.0 - Added cell_anchor_point
To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.
To use in CPython, pip3 install adafruit-circuitpython-displayio-layout
.
Read the docs for info on how to use it.
1.14.0
This release contains a new divider_line_color
argument for the GridLayout as well as a fix for environments lacking bitmaptools. Thank you @GingerIndustries and @rsbohn
To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.
To use in CPython, pip3 install adafruit-circuitpython-displayio-layout
.
Read the docs for info on how to use it.
1.13.2 - Fix use of OnDiskBitmap in icon_widget.py
To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.
To use in CPython, pip3 install adafruit-circuitpython-displayio-layout
.
Read the docs for info on how to use it.
1.13.1 - Updated pylint version, linted
To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.
To use in CPython, pip3 install adafruit-circuitpython-displayio-layout
.
Read the docs for info on how to use it.
Adds divider lines for GridLayout
Thanks so much to @FoamyGuy for adding this feature!
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
To use in CPython, pip3 install adafruit-circuitpython-displayio-layout
Read the docs for info on how to use it.
1.12.0 - Removed annotation and dial widgets
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
To use in CPython, pip3 install adafruit-circuitpython-displayio-layout
Read the docs for info on how to use it.
1.11.0 - Add get_cell() function to GridLayout
This release adds a get_cell()
function to GridLayout which allows you to lookup cell contents by their x,y cell location within the grid. Previously it was only possible to get them by their index which was tied to the order they were added to the GridLayout.
See this for an example usage of the new function: https://github.com/adafruit/Adafruit_CircuitPython_DisplayIO_Layout/blob/main/examples/displayio_layout_grid_layout_get_cell_test.py
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
To use in CPython, pip3 install adafruit-circuitpython-displayio-layout
Read the docs for info on how to use it.