wasp-os/wasp/boards/manifest_240x240.py
Francesco Gazzetta a956b3efe5 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>
2022-03-27 08:58:22 +01:00

44 lines
1,023 B
Python

# SPDX-License-Identifier: LGPL-3.0-or-later
# Copyright (C) 2020 Daniel Thompson
"""Shared manifest for applications that work well on a 240x240 display."""
manifest = (
'apps/alarm.py',
'apps/calc.py',
'apps/clock.py',
'apps/chrono.py',
'apps/disaBLE.py',
'apps/dual_clock.py',
'apps/faces.py',
'apps/fibonacci_clock.py',
'apps/flashlight.py',
'apps/gallery.py',
'apps/haiku.py',
'apps/heart.py',
'apps/musicplayer.py',
'apps/launcher.py',
'apps/pager.py',
'apps/play2048.py',
'apps/settings.py',
'apps/software.py',
'apps/sports.py',
'apps/steps.py',
'apps/stopwatch.py',
'apps/snake.py',
'apps/testapp.py',
'apps/timer.py',
'apps/weather.py',
'apps/week_clock.py',
'apps/word_clock.py',
'fonts/__init__.py',
'fonts/clock.py',
'fonts/clock_dual.py',
'fonts/sans18.py',
'fonts/sans24.py',
'fonts/sans28.py',
'fonts/sans36.py',
'icons.py',
'steplogger.py',
'widgets.py',
)