Include the gallery app in micropython.zip

...and move GameOfLife out to make space

The gallery app needs too much memory to run from bytecode, and has to
be frozen in micropython.zip instead

Signed-off-by: Francesco Gazzetta <fgaz@fgaz.me>
This commit is contained in:
Francesco Gazzetta 2022-03-21 11:54:08 +01:00 committed by Daniel Thompson
parent 61d9dbce7c
commit a956b3efe5
6 changed files with 5 additions and 5 deletions

View File

@ -53,7 +53,7 @@ Applications
.. automodule:: apps.flashlight
.. automodule:: Gallery
.. automodule:: apps.gallery
.. automodule:: apps.haiku
@ -72,7 +72,7 @@ Applications
Games
-----
.. automodule:: apps.gameoflife
.. automodule:: GameOfLife
.. automodule:: apps.play2048

View File

@ -10,4 +10,4 @@ wasp.system.schedule()
# watch will still (partially) boot even if we end up taking
# an exception during application init.
wasp.system.register('apps.flashlight.TorchApp')
wasp.system.register('apps.gameoflife.GameOfLifeApp')
wasp.system.register('apps.gallery.GalleryApp')

View File

@ -43,7 +43,7 @@ class SoftwareApp():
db.append(('calc', factory('Calculator')))
db.append(('disaBLE', factory('DisaBLE')))
db.append(('faces', factory('Faces')))
db.append(('gameoflife', factory('Game Of Life')))
db.append(('gallery', factory('Gallery')))
db.append(('musicplayer', factory('Music Player')))
db.append(('play2048', factory('Play 2048')))
db.append(('snake', factory('Snake Game')))

View File

@ -12,7 +12,7 @@ manifest = (
'apps/faces.py',
'apps/fibonacci_clock.py',
'apps/flashlight.py',
'apps/gameoflife.py',
'apps/gallery.py',
'apps/haiku.py',
'apps/heart.py',
'apps/musicplayer.py',