Files
Momentum-Firmware/applications/external/text_viewer/application.fam
Willy-JL d4e1d28187 Completely new text viewer app (proper newlines)
Code borrowed from archive app show scene, will be used to replace that
2023-08-10 01:04:31 +02:00

19 lines
491 B
Plaintext

App(
appid="text_viewer",
name="Text Viewer",
apptype=FlipperAppType.EXTERNAL,
entry_point="text_viewer",
requires=[
"gui",
"dialogs",
],
stack_size=10 * 1024,
order=20,
fap_icon="icons/text_10px.png",
fap_category="Tools",
fap_icon_assets="icons",
fap_author="@Willy-JL", # Original by @kowalski7cc & @kyhwana, new has code borrowed from archive > show
fap_version="1.0",
fap_description="Text viewer application",
)