Merge pull request #124 from jake-walker/add-titles

Add ___title___ to all apps
sammachin-gprs
Dave Arter 5 years ago committed by GitHub
commit e52f0baa56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      3dspin/main.py
  2. 2
      LED_Party/main.py
  3. 2
      avatar/main.py
  4. 2
      badgesimulator/main.py
  5. 3
      basic_clock/main.py
  6. 2
      beer/main.py
  7. 2
      breakout/main.py
  8. 2
      btscan/main.py
  9. 2
      custom_image_home/main.py
  10. 2
      dowsingrod/main.py
  11. 2
      emfcampqueer_home/main.py
  12. 2
      enby/main.py
  13. 2
      game-of-life/main.py
  14. 2
      hello_world/main.py
  15. 6
      holland/main.py
  16. 2
      home_default/main.py
  17. 2
      home_ham/main.py
  18. 2
      home_stratum0/main.py
  19. 2
      home_trans/main.py
  20. 2
      launcher/main.py
  21. 2
      lobstervision/main.py
  22. 2
      lucky_melody_machine/main.py
  23. 2
      mario/main.py
  24. 2
      mass_storage/main.py
  25. 2
      memobadge/main.py
  26. 2
      party/main.py
  27. 2
      phone/main.py
  28. 2
      pride/main.py
  29. 2
      review_helper/main.py
  30. 2
      screendisco/main.py
  31. 2
      sequencer/main.py
  32. 2
      settings/main.py
  33. 2
      sms/main.py
  34. 2
      snake/main.py
  35. 2
      sponsors/main.py
  36. 2
      square_home/main.py
  37. 2
      star_wars/main.py
  38. 2
      stories/main.py
  39. 2
      synth/main.py
  40. 2
      sysinfo/main.py
  41. 2
      tildatorch/main.py
  42. 2
      tildr/main.py
  43. 2
      tinda/main.py
  44. 2
      warm_and_wet/main.py

@ -1,6 +1,6 @@
"""3d rotating polyhedra. 2016 badge competition winner, ported for 2018!"""
___name___ = "3D Spin"
___title___ = "3D Spin"
___license___ = "MIT"
___categories___ = ["Demo"]
___dependencies___ = ["app", "ugfx_helper", "sleep", "buttons"]

@ -1,6 +1,6 @@
""" starts an LED party on your badge
"""
___name___ = "LED Party (Party Party)"
___title___ = "LED Party (Party Party)"
___license___ = "MIT"
___dependencies___ = ["wifi", "http", "ugfx_helper", "sleep"]
___categories___ = ["LEDs"]

@ -1,6 +1,6 @@
"""A simple homescreen diplaying an avatar from an url and the user's name"""
___name___ = "Avatar Homescreen"
___title___ = "Avatar Homescreen"
___license___ = "WTFPL"
___categories___ = ["Homescreens"]
___dependencies___ = ["homescreen", "wifi", "http", "sleep", "app", "buttons"]

@ -1,6 +1,6 @@
"""This app creates a real EMF badge experience"""
___name___ = "EMF 2018 badge simulator"
___title___ = "EMF 2018 badge simulator"
___license___ = "MIT"
___categories___ = ["EMF"]
___dependencies___ = ["sleep", "app"]

@ -1,5 +1,6 @@
"""An NTP time app"""
___name___ = "NTP time"
___title___ = "NTP time"
___license___ = "MIT"
___dependencies___ = ["ntp", "wifi", "app"]
___categories___ = ["EMF"]

@ -2,7 +2,7 @@
Get up to date information on what's in stock at The Robot Arms!
"""
___name___ = "beer"
___title___ = "beer"
___license___ = "MIT"
___dependencies___ = ["app", "sleep", "wifi", "http", "ugfx_helper"]
___categories___ = ["EMF"]

@ -1,6 +1,6 @@
"""Breakout!"""
___name___ = "Breakout"
___title___ = "Breakout"
___license___ = "MIT"
___categories___ = ["Games"]
___dependencies___ = ["app", "ugfx_helper", "buttons"]

@ -1,6 +1,6 @@
"""Scan for and display nearby bluetooth devices"""
___name___ = "Bluetooth Scan"
___title___ = "Bluetooth Scan"
___license___ = "MIT"
___dependencies___ = ["sleep", "app", "sim800"]
___categories___ = ["Other", "System"]

@ -3,7 +3,7 @@ Clone of the default homescreen for the Tilda Mk4.
Shows the EMF homescreen and a picture loaded on the badge alternately.
"""
___name___ = "Custom Image Home"
___title___ = "Custom Image Home"
___license___ = "MIT"
___categories___ = ["Homescreens"]
___dependencies___ = ["homescreen", "shared/logo.png", "shared/sponsors.png"]

@ -1,6 +1,6 @@
"""This is a dowsing rod for WiFi APs"""
___name___ = "Dowsing Rod"
___title___ = "Dowsing Rod"
___license___ = "MIT"
___dependencies___ = ["sleep", "app", "wifi", "sim800"]
___categories___ = ["EMF", "System"]

@ -2,7 +2,7 @@
emfcampqueer theme by ganbariley
"""
___name___ = "EMFCamp Rainbow Homescreen"
___title___ = "EMFCamp Rainbow Homescreen"
___license___ = "MIT"
___categories___ = ["Homescreens"]
___dependencies___ = ["homescreen"]

@ -4,7 +4,7 @@ Similar to the default homescreen, but the
background is the enby flag. Based on Pride Flag Homescreen by marekventur
"""
___name___ = "Enby"
___title___ = "Enby"
___license___ = "MIT"
___categories___ = ["Homescreens"]
___dependencies___ = ["homescreen", "app"]

@ -1,6 +1,6 @@
"""Game of Life"""
___name___ = "Conway game of life"
___title___ = "Conway game of life"
___license___ = "MIT"
___categories___ = ["Games"]
___dependencies___ = ["app", "ugfx_helper", "sleep", "buttons"]

@ -1,6 +1,6 @@
"""This is a simple hello world app"""
___name___ = "Hello World"
___title___ = "Hello World"
___license___ = "MIT"
___dependencies___ = ["sleep", "app"]
___categories___ = ["EMF"]

@ -1,6 +1,6 @@
"""Camp Holland app
"""
___name___ = "Holland"
"""Camp Holland app"""
___title___ = "Holland"
___license___ = "MIT"
___dependencies___ = ["app", "sim800", "ugfx_helper"]
___categories___ = ["Villages"]

@ -5,7 +5,7 @@ It gets automatically installed when a badge is
newly activated or reset.
"""
___name___ = "Homescreen (Default)"
___title___ = "Homescreen (Default)"
___license___ = "MIT"
___categories___ = ["Homescreens"]
___dependencies___ = ["homescreen", "shared/logo.png", "shared/sponsors.png"]

@ -3,7 +3,7 @@
This is a modified version of the default homescreen that allows you to set a callsign
"""
___name___ = "Amateur Radio Homescreen"
___title___ = "Amateur Radio Homescreen"
___license___ = "MIT"
___categories___ = ["Homescreens"]
___dependencies___ = ["homescreen"]

@ -3,7 +3,7 @@
This is the Stratum 0 flavored homescreen for the Tilda Mk4.
"""
___name___ = "Homescreen (Stratum 0)"
___title___ = "Homescreen (Stratum 0)"
___license___ = "MIT"
___categories___ = ["Homescreens"]
___dependencies___ = ["homescreen"]

@ -5,7 +5,7 @@ Press 0 to go back to normal or 8 to show the flag.
Hold * to activate all LEDs for use as a torch.
"""
___name___ = "Homescreen (Trans)"
___title___ = "Homescreen (Trans)"
___license___ = "MIT"
___categories___ = ["Homescreens"]
___dependencies___ = ["homescreen", "shared/logo.png"]

@ -1,6 +1,6 @@
"""Launcher for apps currently installed"""
___name___ = "Launcher"
___title___ = "Launcher"
___license___ = "MIT"
___categories___ = ["System"]
___dependencies___ = ["dialogs", "app", "ugfx_helper"]

@ -1,6 +1,6 @@
"""View images from the EMF 2018 time-lapse camera
"""
___name___ = "Lobster Vision"
___title___ = "Lobster Vision"
___license___ = "MIT"
___dependencies___ = ["app", "dialogs", "wifi", "buttons", "http", "ugfx_helper"]
___categories___ = ["Other"]

@ -2,7 +2,7 @@
Learn your personal lucky melody.
"""
___name___ = "lucky_melody_machine"
___title___ = "Lucky Melody Machine"
___license___ = "WTFPL"
___dependencies___ = ["app", "buttons", "dialogs", "speaker", "sleep", "ugfx_helper"]
___categories___ = ["Sound"]

@ -5,7 +5,7 @@ Gracefully reboot into main menu on Menu Press.
Replay Track when user pushes a button.
"""
___name___ = "Mario Theme"
___title___ = "Mario Theme"
___license___ = ""
___categories___ = ["Sound"]
___dependencies___ = ["speaker", "buttons", "ugfx_helper", "app", "wifi", "http", "sleep" ]

@ -1,6 +1,6 @@
"""Enables mass storage mode in a safe way"""
___name___ = "Mass Storage Enabler"
___title___ = "Mass Storage Enabler"
___license___ = "MIT"
___dependencies___ = ["dialogs", "ugfx_helper"]
___categories___ = ["EMF"]

@ -1,6 +1,6 @@
"""This app tests all the onboard sensors and system info"""
___name___ = "Memobadge"
___title___ = "Memobadge"
___license___ = "MIT"
___dependencies___ = ["app", "sim800", "sleep", "ugfx_helper"]
___categories___ = ["Sound"]

@ -2,7 +2,7 @@
'''
___author___ = 'Skybound - ECS'
___name___ = 'Party'
___title___ = 'Party'
___license___ = 'MIT'
___categories___ = ['LEDs']
___bootstrapped___ = False

@ -1,6 +1,6 @@
"""Phone app for baic calling functions
"""
___name___ = "Phone"
___title___ = "Phone"
___license___ = "MIT"
___dependencies___ = ["app", "dialogs", "sim800", "ugfx_helper"]
___categories___ = ["System"]

@ -4,7 +4,7 @@ Similar to the default homescreen, but the
background is the pride flag.
"""
___name___ = "Pride"
___title___ = "Pride"
___license___ = "MIT"
___categories___ = ["Homescreens"]
___dependencies___ = ["homescreen", "app"]

@ -1,6 +1,6 @@
"""Helps to test incoming PRs"""
___name___ = "PR Review Helper"
___title___ = "PR Review Helper"
___license___ = "MIT"
___categories___ = ["System"]
___dependencies___ = ["dialogs", "app", "ugfx_helper", "badge_store", "http", "stack_nav", "wifi"]

@ -1,7 +1,7 @@
""" Flashes random colours on your screen
"" By Pez (@Pezmc)
"""
___name___ = "Screen Party"
___title___ = "Screen Party"
___license___ = "MIT"
___dependencies___ = ["ugfx_helper", "sleep"]
___categories___ = ["Homescreens"]

@ -3,7 +3,7 @@
Annoy your friends! Annoy your enemies! Annoy yourself! Maybe (maybe) make music!
"""
___name___ = "Sequencer"
___title___ = "Sequencer"
___license___ = "MIT"
___categories___ = ["Sound"]
___dependencies___ = ["speaker", "buttons", "ugfx_helper", "app", "shared/sequencer_info.png"]

@ -11,7 +11,7 @@ Todo:
"""
___name___ = "Settings"
___title___ = "Settings"
___license___ = "MIT"
___dependencies___ = ["dialogs", "ugfx_helper", "database", "app", "stack_nav", "wifi"]
___categories___ = ["System"]

@ -1,6 +1,6 @@
"""SMS app for reading and sending messages
"""
___name___ = "SMS"
___title___ = "SMS"
___license___ = "MIT"
___dependencies___ = ["app", "dialogs", "sim800", "ugfx_helper"]
___categories___ = ["System"]

@ -1,6 +1,6 @@
"""Snake!"""
___name___ = "Snake"
___title___ = "Snake"
___license___ = "MIT"
___categories___ = ["Games"]
___dependencies___ = ["dialogs", "app", "ugfx_helper", "sleep", "buttons"]

@ -1,6 +1,6 @@
"""A big "thank you" to all our Sponsors who made this year's badge possible!"""
___name___ = "Sponsors"
___title___ = "Sponsors"
___license___ = "MIT"
___dependencies___ = ["wifi", "http", "ugfx_helper", "sleep", "app"]
___categories___ = ["EMF"]

@ -1,6 +1,6 @@
"""A home screen with squares that spin"""
___name___ = "Squares home"
___title___ = "Squares home"
___license___ = "MIT"
___dependencies___ = ["sleep", "app", "ugfx_helper", "buttons", "homescreen"]
___categories___ = ["Homescreens"]

@ -3,7 +3,7 @@
Will play music, maybe
"""
___name___ = "Play Music"
___title___ = "Star Wars Music"
___license___ = "MIT"
___categories___ = ["Sound"]
___dependencies___ = ["speaker", "shared/sw.png", "buttons"]

@ -1,6 +1,6 @@
"""Read stories from twentythreemillionstories.org"""
___name___ = "twenty-three million stories"
___title___ = "twenty-three million stories"
___license___ = "MIT"
___categories___ = ["Other"]
___dependencies___ = [ "app", "dialogs", "http", "ugfx_helper", "sleep" ]

@ -3,7 +3,7 @@
Todo: fix this, it doesn't work at at the moment
"""
___name___ = "Synthesizers"
___title___ = "Synthesizers"
___license___ = "MIT"
___categories___ = ["Sound"]
___dependencies___ = ["speaker", "buttons", "ugfx_helper", "app"]

@ -1,6 +1,6 @@
"""This app tests all the onboard sensors and system info"""
___name___ = "System Info"
___title___ = "System Info"
___license___ = "MIT"
___dependencies___ = ["sleep", "app", "sim800"]
___categories___ = ["EMF", "System"]

@ -1,6 +1,6 @@
"""This app goes with the Torch Tutorial"""
___name___ = "Tilda Torch"
___title___ = "Tilda Torch"
___license___ = "MIT"
___dependencies___ = ["sleep", "app"]
___categories___ = ["EMF"]

@ -1,6 +1,6 @@
""" Tildr Dating
"""
___name___ = "Tildr Dating"
___title___ = "Tildr Dating"
___license___ = "MIT"
___dependencies___ = ["wifi", "http", "ugfx_helper", "sleep", "dialogs", "sim800", "database"]
___categories___ = ["Other"]

@ -1,7 +1,7 @@
"""
TiNDA: A dating app for TiLDA. Find your perfect EMF match!
"""
___name___ = "tinda"
___title___ = "TiNDA"
___license___ = "WTFPL"
___dependencies___ = ["app", "buttons", "database", "dialogs", "http", "sleep", "ugfx_helper"]
___categories___ = ["Other", "EMF"]

@ -1,6 +1,6 @@
""" <your description>
"""
___name___ = "my_app"
___title___ = "Warm and Wet"
___license___ = "MIT"
___dependencies___ = ["dialogs", "ugfx_helper", "app", "sleep"]
___categories___ = ["Other"]

Loading…
Cancel
Save