From 0d5ef24391cf6e0e44c3defefaa9135e5c703321 Mon Sep 17 00:00:00 2001 From: Gavin Atkinson Date: Fri, 28 Sep 2018 17:29:42 +0100 Subject: [PATCH] Set ___bootstrapped___ = False on two apps that don't need to be. - home_pycon: Home screen for PyCon, not relevent to most EMF users - orbs: Game no longer usable after EMF as server is offline While here, correct comment in home_pycon explaining what it is. --- home_pycon/main.py | 4 ++-- orbs/main.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/home_pycon/main.py b/home_pycon/main.py index bad3158..4d27e05 100644 --- a/home_pycon/main.py +++ b/home_pycon/main.py @@ -1,4 +1,4 @@ -"""Default homescreen +"""PyCon homescreen This is the default homescreen for the Tilda Mk4. It gets automatically installed when a badge is @@ -10,7 +10,7 @@ ___license___ = "MIT" ___categories___ = ["Homescreens"] ___dependencies___ = ["homescreen"] ___launchable___ = False -___bootstrapped___ = True +___bootstrapped___ = False import ugfx from homescreen import * diff --git a/orbs/main.py b/orbs/main.py index 8b52d9a..8606763 100644 --- a/orbs/main.py +++ b/orbs/main.py @@ -5,7 +5,7 @@ ___name___ = "Orbs Game" ___license___ = "MIT" ___dependencies___ = ["app", "dialogs", "sim800", "ugfx_helper"] ___categories___ = ["Games"] -___bootstrapped___ = True +___bootstrapped___ = False from app import * from dialogs import *