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 = (
|
2023-03-07 02:02:07 +01:00
|
|
|
'apps/system/launcher.py',
|
|
|
|
'apps/system/pager.py',
|
|
|
|
'apps/system/software.py',
|
|
|
|
'apps/system/settings.py',
|
|
|
|
'apps/system/step_counter.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',
|
|
|
|
'widgets.py',
|
2023-03-07 02:02:07 +01:00
|
|
|
'steplogger.py',
|
|
|
|
'appregistry.py',
|
2020-10-10 15:04:44 +02:00
|
|
|
)
|