diff --git a/3dspin/main.py b/3dspin/main.py index dd4ab78..c444b4a 100644 --- a/3dspin/main.py +++ b/3dspin/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"] diff --git a/LED_Party/main.py b/LED_Party/main.py index a6c508d..e144681 100644 --- a/LED_Party/main.py +++ b/LED_Party/main.py @@ -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"] diff --git a/avatar/main.py b/avatar/main.py index e88fe6a..ddf021f 100644 --- a/avatar/main.py +++ b/avatar/main.py @@ -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"] diff --git a/badgesimulator/main.py b/badgesimulator/main.py index ccfc8a4..33b0bd7 100644 --- a/badgesimulator/main.py +++ b/badgesimulator/main.py @@ -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"] diff --git a/basic_clock/main.py b/basic_clock/main.py index 7d2b8b4..3ed86b6 100644 --- a/basic_clock/main.py +++ b/basic_clock/main.py @@ -1,5 +1,6 @@ """An NTP time app""" -___name___ = "NTP time" + +___title___ = "NTP time" ___license___ = "MIT" ___dependencies___ = ["ntp", "wifi", "app"] ___categories___ = ["EMF"] diff --git a/beer/main.py b/beer/main.py index 92c3d4f..78c894d 100644 --- a/beer/main.py +++ b/beer/main.py @@ -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"] diff --git a/breakout/main.py b/breakout/main.py index ed5447b..f2fbd87 100644 --- a/breakout/main.py +++ b/breakout/main.py @@ -1,6 +1,6 @@ """Breakout!""" -___name___ = "Breakout" +___title___ = "Breakout" ___license___ = "MIT" ___categories___ = ["Games"] ___dependencies___ = ["app", "ugfx_helper", "buttons"] diff --git a/btscan/main.py b/btscan/main.py index 787e227..bf72955 100644 --- a/btscan/main.py +++ b/btscan/main.py @@ -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"] diff --git a/custom_image_home/main.py b/custom_image_home/main.py index b6f475a..a4877cb 100644 --- a/custom_image_home/main.py +++ b/custom_image_home/main.py @@ -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"] diff --git a/dowsingrod/main.py b/dowsingrod/main.py index 2305417..e2cc1cc 100644 --- a/dowsingrod/main.py +++ b/dowsingrod/main.py @@ -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"] diff --git a/emfcampqueer_home/main.py b/emfcampqueer_home/main.py index 742eca4..5e6340e 100644 --- a/emfcampqueer_home/main.py +++ b/emfcampqueer_home/main.py @@ -2,7 +2,7 @@ emfcampqueer theme by ganbariley """ -___name___ = "EMFCamp Rainbow Homescreen" +___title___ = "EMFCamp Rainbow Homescreen" ___license___ = "MIT" ___categories___ = ["Homescreens"] ___dependencies___ = ["homescreen"] diff --git a/enby/main.py b/enby/main.py index de07335..a68cca3 100644 --- a/enby/main.py +++ b/enby/main.py @@ -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"] diff --git a/game-of-life/main.py b/game-of-life/main.py index bb577b4..afedcdd 100644 --- a/game-of-life/main.py +++ b/game-of-life/main.py @@ -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"] diff --git a/hello_world/main.py b/hello_world/main.py index 7cdd174..3afdddd 100644 --- a/hello_world/main.py +++ b/hello_world/main.py @@ -1,6 +1,6 @@ """This is a simple hello world app""" -___name___ = "Hello World" +___title___ = "Hello World" ___license___ = "MIT" ___dependencies___ = ["sleep", "app"] ___categories___ = ["EMF"] diff --git a/holland/main.py b/holland/main.py index d3a46b8..1fcfacb 100644 --- a/holland/main.py +++ b/holland/main.py @@ -1,6 +1,6 @@ -"""Camp Holland app -""" -___name___ = "Holland" +"""Camp Holland app""" + +___title___ = "Holland" ___license___ = "MIT" ___dependencies___ = ["app", "sim800", "ugfx_helper"] ___categories___ = ["Villages"] diff --git a/home_default/main.py b/home_default/main.py index e358791..263aa4d 100644 --- a/home_default/main.py +++ b/home_default/main.py @@ -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"] diff --git a/home_ham/main.py b/home_ham/main.py index 69dfadb..e471545 100644 --- a/home_ham/main.py +++ b/home_ham/main.py @@ -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"] diff --git a/home_stratum0/main.py b/home_stratum0/main.py index c39f74b..053fbbd 100644 --- a/home_stratum0/main.py +++ b/home_stratum0/main.py @@ -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"] diff --git a/home_trans/main.py b/home_trans/main.py index 1b2bead..fe3fcbe 100644 --- a/home_trans/main.py +++ b/home_trans/main.py @@ -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"] diff --git a/launcher/main.py b/launcher/main.py index 1fa4585..a5fe98e 100644 --- a/launcher/main.py +++ b/launcher/main.py @@ -1,6 +1,6 @@ """Launcher for apps currently installed""" -___name___ = "Launcher" +___title___ = "Launcher" ___license___ = "MIT" ___categories___ = ["System"] ___dependencies___ = ["dialogs", "app", "ugfx_helper"] diff --git a/lobstervision/main.py b/lobstervision/main.py index 947132c..811c9ce 100644 --- a/lobstervision/main.py +++ b/lobstervision/main.py @@ -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"] diff --git a/lucky_melody_machine/main.py b/lucky_melody_machine/main.py index a98e1b1..6200ab1 100644 --- a/lucky_melody_machine/main.py +++ b/lucky_melody_machine/main.py @@ -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"] diff --git a/mario/main.py b/mario/main.py index 2dcd37d..92d8173 100644 --- a/mario/main.py +++ b/mario/main.py @@ -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" ] diff --git a/mass_storage/main.py b/mass_storage/main.py index aa88772..0cee259 100644 --- a/mass_storage/main.py +++ b/mass_storage/main.py @@ -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"] diff --git a/memobadge/main.py b/memobadge/main.py index fe79a11..c797f72 100644 --- a/memobadge/main.py +++ b/memobadge/main.py @@ -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"] diff --git a/party/main.py b/party/main.py index b6c7687..708e5a6 100644 --- a/party/main.py +++ b/party/main.py @@ -2,7 +2,7 @@ ''' ___author___ = 'Skybound - ECS' -___name___ = 'Party' +___title___ = 'Party' ___license___ = 'MIT' ___categories___ = ['LEDs'] ___bootstrapped___ = False diff --git a/phone/main.py b/phone/main.py index d6087bf..137766b 100644 --- a/phone/main.py +++ b/phone/main.py @@ -1,6 +1,6 @@ """Phone app for baic calling functions """ -___name___ = "Phone" +___title___ = "Phone" ___license___ = "MIT" ___dependencies___ = ["app", "dialogs", "sim800", "ugfx_helper"] ___categories___ = ["System"] diff --git a/pride/main.py b/pride/main.py index 240fa44..96515b8 100644 --- a/pride/main.py +++ b/pride/main.py @@ -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"] diff --git a/review_helper/main.py b/review_helper/main.py index 8a799dc..db21e2a 100644 --- a/review_helper/main.py +++ b/review_helper/main.py @@ -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"] diff --git a/screendisco/main.py b/screendisco/main.py index 5fa8dce..cbea1c0 100644 --- a/screendisco/main.py +++ b/screendisco/main.py @@ -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"] diff --git a/sequencer/main.py b/sequencer/main.py index 987b95d..b9746d3 100644 --- a/sequencer/main.py +++ b/sequencer/main.py @@ -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"] diff --git a/settings/main.py b/settings/main.py index d7b80a4..ab344e2 100644 --- a/settings/main.py +++ b/settings/main.py @@ -11,7 +11,7 @@ Todo: """ -___name___ = "Settings" +___title___ = "Settings" ___license___ = "MIT" ___dependencies___ = ["dialogs", "ugfx_helper", "database", "app", "stack_nav", "wifi"] ___categories___ = ["System"] diff --git a/sms/main.py b/sms/main.py index ba61523..c1e0211 100644 --- a/sms/main.py +++ b/sms/main.py @@ -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"] diff --git a/snake/main.py b/snake/main.py index 9a29891..86eb8d3 100644 --- a/snake/main.py +++ b/snake/main.py @@ -1,6 +1,6 @@ """Snake!""" -___name___ = "Snake" +___title___ = "Snake" ___license___ = "MIT" ___categories___ = ["Games"] ___dependencies___ = ["dialogs", "app", "ugfx_helper", "sleep", "buttons"] diff --git a/sponsors/main.py b/sponsors/main.py index 759aec8..5f8a5b1 100644 --- a/sponsors/main.py +++ b/sponsors/main.py @@ -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"] diff --git a/square_home/main.py b/square_home/main.py index 0a50b29..f948086 100644 --- a/square_home/main.py +++ b/square_home/main.py @@ -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"] diff --git a/star_wars/main.py b/star_wars/main.py index a5a4ade..55209c8 100644 --- a/star_wars/main.py +++ b/star_wars/main.py @@ -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"] diff --git a/stories/main.py b/stories/main.py index d019bd6..84445bf 100755 --- a/stories/main.py +++ b/stories/main.py @@ -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" ] diff --git a/synth/main.py b/synth/main.py index d73a822..8dfae8c 100644 --- a/synth/main.py +++ b/synth/main.py @@ -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"] diff --git a/sysinfo/main.py b/sysinfo/main.py index 54e53c4..e07584a 100644 --- a/sysinfo/main.py +++ b/sysinfo/main.py @@ -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"] diff --git a/tildatorch/main.py b/tildatorch/main.py index 73bbcd2..5837bdd 100644 --- a/tildatorch/main.py +++ b/tildatorch/main.py @@ -1,6 +1,6 @@ """This app goes with the Torch Tutorial""" -___name___ = "Tilda Torch" +___title___ = "Tilda Torch" ___license___ = "MIT" ___dependencies___ = ["sleep", "app"] ___categories___ = ["EMF"] diff --git a/tildr/main.py b/tildr/main.py index 521095b..5006d31 100644 --- a/tildr/main.py +++ b/tildr/main.py @@ -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"] diff --git a/tinda/main.py b/tinda/main.py index 7095b8c..b1bac7e 100644 --- a/tinda/main.py +++ b/tinda/main.py @@ -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"] diff --git a/warm_and_wet/main.py b/warm_and_wet/main.py index 40fa4d3..6665c35 100644 --- a/warm_and_wet/main.py +++ b/warm_and_wet/main.py @@ -1,6 +1,6 @@ """ """ -___name___ = "my_app" +___title___ = "Warm and Wet" ___license___ = "MIT" ___dependencies___ = ["dialogs", "ugfx_helper", "app", "sleep"] ___categories___ = ["Other"]