Disable more apps

...and remove the disabled apps from the Software app
This commit is contained in:
Peter Cai 2022-06-14 22:41:29 -04:00
parent a7a20608b2
commit 978b647cea
3 changed files with 0 additions and 7 deletions

View File

@ -28,7 +28,6 @@ class FacesApp():
choices.append(('chrono', 'Chrono'))
choices.append(('dual_clock', 'DualClock'))
choices.append(('fibonacci_clock', 'FibonacciClock'))
choices.append(('word_clock', 'WordClock'))
self.choices = choices
self.choice = 0

View File

@ -41,15 +41,11 @@ class SoftwareApp():
db = []
db.append(('alarm', factory('Alarm')))
db.append(('calc', factory('Calculator')))
db.append(('disaBLE', factory('DisaBLE')))
db.append(('faces', factory('Faces')))
db.append(('gallery', factory('Gallery')))
db.append(('musicplayer', factory('Music Player')))
db.append(('play2048', factory('Play 2048')))
db.append(('snake', factory('Snake Game')))
db.append(('sports', factory('Sports')))
db.append(('flashlight', factory('Torch')))
db.append(('testapp', factory('Test')))
db.append(('timer', factory('Timer')))
db.append(('weather', factory('Weather')))

View File

@ -7,7 +7,6 @@ manifest = (
'apps/calc.py',
'apps/clock.py',
'apps/chrono.py',
'apps/disaBLE.py',
'apps/dual_clock.py',
'apps/faces.py',
'apps/fibonacci_clock.py',
@ -24,7 +23,6 @@ manifest = (
'apps/timer.py',
'apps/weather.py',
'apps/week_clock.py',
'apps/word_clock.py',
'apps/SleepTk.py',
'fonts/__init__.py',
'fonts/clock.py',