Skip to content

Releases: adafruit/Adafruit_CircuitPython_DisplayIO_Layout

1.16.0 - Cartesian Support Adding Lines

23 Dec 15:04
da84037
Compare
Choose a tag to compare

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

17 Dec 02:46
5f85122
Compare
Choose a tag to compare

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

16 Dec 03:05
48b512a
Compare
Choose a tag to compare

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

08 Dec 21:17
2d7ba2c
Compare
Choose a tag to compare

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

26 Nov 18:05
eed7282
Compare
Choose a tag to compare

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

24 Nov 22:29
f982127
Compare
Choose a tag to compare

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

15 Nov 19:41
080743b
Compare
Choose a tag to compare

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

01 Sep 16:04
e5e8b5a
Compare
Choose a tag to compare

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

26 Aug 15:31
51c7a9e
Compare
Choose a tag to compare

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

21 Aug 17:13
ca714e5
Compare
Choose a tag to compare

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.