<feed xmlns='http://www.w3.org/2005/Atom'>
<title>suspect-devices/circuitpython/shared-module/displayio/Group.c, branch 4.0.0-beta.6</title>
<subtitle>CircuitPython - a Python implementation for teaching coding with microcontrollers</subtitle>
<id>https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=4.0.0-beta.6</id>
<link rel='self' href='https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=4.0.0-beta.6'/>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/'/>
<updated>2019-03-13T00:17:32+00:00</updated>
<entry>
<title>Accept x and y kwargs into Group for initial position.</title>
<updated>2019-03-13T00:17:32+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2019-03-12T21:39:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=ea45877ca52c1f3d8e5f0e8547ffdcb982090ff9'/>
<id>urn:sha1:ea45877ca52c1f3d8e5f0e8547ffdcb982090ff9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Store the original layer in Group</title>
<updated>2019-02-15T22:29:59+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2019-02-15T22:29:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=c9f036ed405f8e5ddf34dd2e15ad4074a270c3c4'/>
<id>urn:sha1:c9f036ed405f8e5ddf34dd2e15ad4074a270c3c4</id>
<content type='text'>
As is we would return the native superclass object only.

Fixes #1551
</content>
</entry>
<entry>
<title>A safe mode fix and displayio fixes</title>
<updated>2019-02-13T23:31:06+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2019-02-13T08:35:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=473bdf48f61998ee9c51aa16c159bbc4df1d15b6'/>
<id>urn:sha1:473bdf48f61998ee9c51aa16c159bbc4df1d15b6</id>
<content type='text'>
* Fixes safe mode on the SAMD51. The "preserved" value was being
clobbered by the bootloader.
* Fixes auto-reload loop when in safe mode.
* Fixes reading Group children with [].
* Check that a TileGrid actually moves before queueing a refresh.
</content>
</entry>
<entry>
<title>Tweaks based on dhalbert's feedback.</title>
<updated>2019-02-12T22:18:53+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2019-02-12T22:18:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=1e16b3e134a9e5453541ab22a36e204dcf0ee935'/>
<id>urn:sha1:1e16b3e134a9e5453541ab22a36e204dcf0ee935</id>
<content type='text'>
</content>
</entry>
<entry>
<title>A variety of displayio improvements</title>
<updated>2019-02-12T04:55:05+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2019-02-06T20:13:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=c17f147be95e7490e5207c747add2da1cc8b167f'/>
<id>urn:sha1:c17f147be95e7490e5207c747add2da1cc8b167f</id>
<content type='text'>
This changes a number of things in displayio:
* Introduces BuiltinFont and Glyph so the built in font can be used by libraries. For boards with
  a font it is available as board.TERMINAL_FONT. Fixes #1172
* Remove _load_row from Bitmap in favor of bitmap[] access. Index can be x/y tuple or overall index. Fixes #1191
* Add width and height properties to Bitmap.
* Add insert and [] access to Group. Fixes #1518
* Add index param to pop on Group.
* Terminal no longer takes unicode character info. It takes a BuiltinFont instead.
* Fix Terminal's handling of [###D vt100 commands used when up arrowing into repl history.
* Add x and y positions to Group plus scale as well.
* Add bitmap accessor for BuiltinFont
</content>
</entry>
<entry>
<title>Remove Sprite references</title>
<updated>2019-01-31T19:42:14+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2019-01-29T23:40:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=4672866eecebffed383b7882db13c71d3495d846'/>
<id>urn:sha1:4672866eecebffed383b7882db13c71d3495d846</id>
<content type='text'>
</content>
</entry>
<entry>
<title>More improvements to Terminal:</title>
<updated>2019-01-31T19:42:14+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2019-01-29T23:04:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=601a910f4eb83cf1ae7516a25c011b469ac76b8b'/>
<id>urn:sha1:601a910f4eb83cf1ae7516a25c011b469ac76b8b</id>
<content type='text'>
* Fix Hallowing.
* Fix builds without displayio.
* Fix y bounds that appears as untrollable row of pixels.
* Add scrolling to TileGrid.
* Remove Sprite to save space. TileGrid is a drop in replacement.
</content>
</entry>
<entry>
<title>Hook up the terminal based on the first display.</title>
<updated>2019-01-31T19:42:14+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2019-01-26T00:59:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=1a1dbef992442682413f6103e36440a26bc2dad7'/>
<id>urn:sha1:1a1dbef992442682413f6103e36440a26bc2dad7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add TileGrid</title>
<updated>2019-01-31T19:42:13+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2019-01-24T21:43:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=73cf490635809c2e5b1f57675d59507a247456f2'/>
<id>urn:sha1:73cf490635809c2e5b1f57675d59507a247456f2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>pyportal compiles and tweak blinka colors</title>
<updated>2019-01-17T18:57:05+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2019-01-17T18:57:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=5277138c992b860cfbdb767f18e034c42e31b6a1'/>
<id>urn:sha1:5277138c992b860cfbdb767f18e034c42e31b6a1</id>
<content type='text'>
</content>
</entry>
</feed>
