2020-10-10 15:04:44 +02:00
|
|
|
# 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 = (
|
2020-11-29 13:23:05 +01:00
|
|
|
'apps/alarm.py',
|
2021-01-03 15:59:14 +01:00
|
|
|
'apps/calc.py',
|
2020-10-10 15:04:44 +02:00
|
|
|
'apps/clock.py',
|
2021-01-03 15:59:14 +01:00
|
|
|
'apps/chrono.py',
|
2021-11-24 20:06:08 +01:00
|
|
|
'apps/disaBLE.py',
|
2021-03-03 21:41:11 +01:00
|
|
|
'apps/dual_clock.py',
|
2021-06-20 11:28:27 +02:00
|
|
|
'apps/faces.py',
|
2021-01-03 15:59:14 +01:00
|
|
|
'apps/fibonacci_clock.py',
|
2020-10-10 15:04:44 +02:00
|
|
|
'apps/flashlight.py',
|
|
|
|
'apps/gameoflife.py',
|
|
|
|
'apps/haiku.py',
|
|
|
|
'apps/heart.py',
|
2020-10-22 17:59:17 +02:00
|
|
|
'apps/musicplayer.py',
|
2020-10-10 15:04:44 +02:00
|
|
|
'apps/launcher.py',
|
|
|
|
'apps/pager.py',
|
2021-01-05 04:12:39 +01:00
|
|
|
'apps/play2048.py',
|
2020-10-10 15:04:44 +02:00
|
|
|
'apps/settings.py',
|
2021-01-03 15:59:14 +01:00
|
|
|
'apps/software.py',
|
2021-06-20 18:24:10 +02:00
|
|
|
'apps/sports.py',
|
2020-10-10 15:04:44 +02:00
|
|
|
'apps/steps.py',
|
|
|
|
'apps/stopwatch.py',
|
2020-11-27 11:39:40 +01:00
|
|
|
'apps/snake.py',
|
2020-10-10 15:04:44 +02:00
|
|
|
'apps/testapp.py',
|
2020-12-31 17:18:13 +01:00
|
|
|
'apps/timer.py',
|
2021-03-31 01:10:24 +02:00
|
|
|
'apps/weather.py',
|
2021-12-31 19:16:12 +01:00
|
|
|
'apps/week_clock.py',
|
2021-03-10 22:50:01 +01:00
|
|
|
'apps/word_clock.py',
|
2020-10-10 15:04:44 +02:00
|
|
|
'fonts/__init__.py',
|
|
|
|
'fonts/clock.py',
|
2021-03-03 21:41:11 +01:00
|
|
|
'fonts/clock_dual.py',
|
2021-03-17 18:05:57 +01:00
|
|
|
'fonts/sans18.py',
|
2020-10-10 15:04:44 +02:00
|
|
|
'fonts/sans24.py',
|
|
|
|
'fonts/sans28.py',
|
|
|
|
'fonts/sans36.py',
|
|
|
|
'icons.py',
|
2021-02-21 21:27:48 +01:00
|
|
|
'steplogger.py',
|
2020-10-10 15:04:44 +02:00
|
|
|
'widgets.py',
|
|
|
|
)
|