<feed xmlns='http://www.w3.org/2005/Atom'>
<title>suspect-devices/circuitpython/shared-bindings/displayio/__init__.c, branch 4.0.0-beta.7</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.7</id>
<link rel='self' href='https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=4.0.0-beta.7'/>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/'/>
<updated>2019-03-20T01:37:41+00:00</updated>
<entry>
<title>Fix up sphinx</title>
<updated>2019-03-20T01:37:41+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2019-03-20T01:37:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=4b0afc855d6b7784fe7a31a694a66f0c1e7cb0e5'/>
<id>urn:sha1:4b0afc855d6b7784fe7a31a694a66f0c1e7cb0e5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Move Glyph and BuiltinFont into fontio</title>
<updated>2019-03-19T23:22:09+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2019-03-19T23:22:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=5e2fec714cfbff8692d8af4ec8f774738b822ce1'/>
<id>urn:sha1:5e2fec714cfbff8692d8af4ec8f774738b822ce1</id>
<content type='text'>
It was confusing in displayio.

Fixes #1662
</content>
</entry>
<entry>
<title>Update displayio docs to add detail to display bus comments</title>
<updated>2019-03-13T00:18:33+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2019-03-12T23:20:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=afbf59019eec003ed79ee4467d0f3f76c00c68d2'/>
<id>urn:sha1:afbf59019eec003ed79ee4467d0f3f76c00c68d2</id>
<content type='text'>
Fixes #1599
</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 doc reference to Sprite</title>
<updated>2019-01-31T19:42:15+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2019-01-31T17:38:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=73bc614a4b03fda2e65b83090c02ffe451619dbe'/>
<id>urn:sha1:73bc614a4b03fda2e65b83090c02ffe451619dbe</id>
<content type='text'>
</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>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>Add a bit more to the docs</title>
<updated>2019-01-18T20:59:23+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2019-01-18T20:59:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=dc024cf411e5a77bffc3662aa581c667284e67e6'/>
<id>urn:sha1:dc024cf411e5a77bffc3662aa581c667284e67e6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix other builds and hallowing</title>
<updated>2019-01-17T22:45:29+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2019-01-17T22:45:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=2d136d58bf288f0be945ed5cd3efe9113d0acce3'/>
<id>urn:sha1:2d136d58bf288f0be945ed5cd3efe9113d0acce3</id>
<content type='text'>
</content>
</entry>
</feed>
