Skip to content

Commit 01ead76

Browse files
Tweak about app
1 parent dd1a789 commit 01ead76

File tree

1 file changed

+3
-3
lines changed
  • internal_filesystem/builtin/apps/com.micropythonos.about/assets

1 file changed

+3
-3
lines changed

internal_filesystem/builtin/apps/com.micropythonos.about/assets/about.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ def onCreate(self):
1616
focusgroup.add_obj(screen)
1717

1818
label0 = lv.label(screen)
19-
label0.set_text(f"Hardware ID: {mpos.info.get_hardware_id()}")
19+
label0.set_text(f"MicroPythonOS version: {mpos.info.CURRENT_OS_VERSION}")
2020
label1 = lv.label(screen)
21-
label1.set_text(f"MicroPythonOS version: {mpos.info.CURRENT_OS_VERSION}")
21+
label1.set_text(f"Hardware ID: {mpos.info.get_hardware_id()}")
2222
label2 = lv.label(screen)
2323
label2.set_text(f"sys.version: {sys.version}")
2424
label3 = lv.label(screen)
@@ -103,7 +103,7 @@ def onCreate(self):
103103
# but they will not be able to install libraries into /lib.
104104
print("main.py: WARNING: could not import/run freezefs_mount_builtin: ", e)
105105
label11 = lv.label(screen)
106-
label11.set_text(f"freezefs_mount_builtin exception (normal on dev builds): {e}")
106+
label11.set_text(f"freezefs_mount_builtin exception (normal if internal storage partition has overriding /builtin folder): {e}")
107107
# Disk usage:
108108
import os
109109
try:

0 commit comments

Comments
 (0)