File tree 3 files changed +12
-22
lines changed
3 files changed +12
-22
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ def asset_path(asset_name):
72
72
"toml" : file_icon ,
73
73
"bmp" : file_image_icon ,
74
74
"png" : file_image_icon ,
75
+ "jpg" : file_image_icon ,
75
76
"wav" : file_music_icon ,
76
77
"mp3" : file_music_icon ,
77
78
"mid" : file_music_icon ,
Original file line number Diff line number Diff line change 31
31
SHOWN_FILETYPES = [
32
32
"py" ,
33
33
"mpy" ,
34
+ "txt" ,
35
+ "toml" ,
34
36
"bmp" ,
35
- "pcf " ,
36
- "bdf " ,
37
+ "png " ,
38
+ "jpg " ,
37
39
"wav" ,
38
40
"mp3" ,
39
41
"mid" ,
40
- "json " ,
41
- "txt " ,
42
+ "pcf " ,
43
+ "bdf " ,
42
44
"csv" ,
45
+ "json" ,
46
+ "license" ,
43
47
]
44
48
SHOWN_FILETYPES_EXAMPLE = [s for s in SHOWN_FILETYPES if s != "py" ]
45
49
Original file line number Diff line number Diff line change 7
7
"""
8
8
9
9
10
- LIBRARIES_THAT_REQUIRE_SETTINGS = [
11
- "adafruit_requests.mpy" ,
12
- "adafruit_esp32spi" ,
13
- "adafruit_minimqtt" ,
14
- "adafruit_portalbase" ,
15
- "adafruit_azureiot" ,
16
- "adafruit_connection_manager.mpy" ,
17
- ]
18
-
19
-
20
10
def settings_required (files_and_libs ):
21
11
"""
22
12
Returns True if the project needs ot have a settings.toml file
@@ -28,11 +18,6 @@ def settings_required(files_and_libs):
28
18
# settings.toml file is already in the files so we don't need to add it again
29
19
return False
30
20
31
- # if any of the libraries that require settings.toml are included in this project
32
- if any (
33
- libs_that_require_settings in files_and_libs
34
- for libs_that_require_settings in LIBRARIES_THAT_REQUIRE_SETTINGS
35
- ):
36
- return True
37
-
38
- return False
21
+ # always show settings.toml because it is created by default when
22
+ # circuitpython is loaded, and when storage.erase_filesystem() is called
23
+ return True
You can’t perform that action at this time.
0 commit comments