3813eb2911
Enabling software by default allows us disable several other applications by default because there is now a GUI based route to enable them. This does require a few tweaks to the test suite and allows allows us to remove a lot of boilerplate text from the application library document since it is no longer relavent. Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
31 lines
743 B
Python
31 lines
743 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/fibonacci_clock.py',
|
|
'apps/flashlight.py',
|
|
'apps/gameoflife.py',
|
|
'apps/haiku.py',
|
|
'apps/heart.py',
|
|
'apps/musicplayer.py',
|
|
'apps/launcher.py',
|
|
'apps/pager.py',
|
|
'apps/settings.py',
|
|
'apps/software.py',
|
|
'apps/steps.py',
|
|
'apps/stopwatch.py',
|
|
'apps/snake.py',
|
|
'apps/testapp.py',
|
|
'fonts/__init__.py',
|
|
'fonts/clock.py',
|
|
'fonts/sans24.py',
|
|
'fonts/sans28.py',
|
|
'fonts/sans36.py',
|
|
'icons.py',
|
|
'widgets.py',
|
|
)
|