From 3e6ee110a5a6adba05777733e2db7d9e8731c1bd Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Wed, 18 Mar 2026 09:20:24 +0100 Subject: [PATCH] Rename hotspot and webserver to add settings --- .../apps/com.micropythonos.hotspot/META-INF/MANIFEST.JSON | 4 ++-- .../assets/{hotspot.py => hotspot_settings.py} | 2 +- .../apps/com.micropythonos.webserver/META-INF/MANIFEST.JSON | 4 ++-- .../assets/{webserver.py => webserver_settings.py} | 0 4 files changed, 5 insertions(+), 5 deletions(-) rename internal_filesystem/builtin/apps/com.micropythonos.hotspot/assets/{hotspot.py => hotspot_settings.py} (99%) rename internal_filesystem/builtin/apps/com.micropythonos.webserver/assets/{webserver.py => webserver_settings.py} (100%) diff --git a/internal_filesystem/builtin/apps/com.micropythonos.hotspot/META-INF/MANIFEST.JSON b/internal_filesystem/builtin/apps/com.micropythonos.hotspot/META-INF/MANIFEST.JSON index a4866909..4a85e53f 100644 --- a/internal_filesystem/builtin/apps/com.micropythonos.hotspot/META-INF/MANIFEST.JSON +++ b/internal_filesystem/builtin/apps/com.micropythonos.hotspot/META-INF/MANIFEST.JSON @@ -10,8 +10,8 @@ "category": "networking", "activities": [ { - "entrypoint": "assets/hotspot.py", - "classname": "Hotspot", + "entrypoint": "assets/hotspot_settings.py", + "classname": "HotspotSettings", "intent_filters": [ { "action": "main", diff --git a/internal_filesystem/builtin/apps/com.micropythonos.hotspot/assets/hotspot.py b/internal_filesystem/builtin/apps/com.micropythonos.hotspot/assets/hotspot_settings.py similarity index 99% rename from internal_filesystem/builtin/apps/com.micropythonos.hotspot/assets/hotspot.py rename to internal_filesystem/builtin/apps/com.micropythonos.hotspot/assets/hotspot_settings.py index 56d18cc2..5058c42e 100644 --- a/internal_filesystem/builtin/apps/com.micropythonos.hotspot/assets/hotspot.py +++ b/internal_filesystem/builtin/apps/com.micropythonos.hotspot/assets/hotspot_settings.py @@ -3,7 +3,7 @@ import lvgl as lv from mpos import Activity, DisplayMetrics, Intent, SettingsActivity, SharedPreferences, WifiService -class Hotspot(Activity): +class HotspotSettings(Activity): """ Hotspot configuration app. diff --git a/internal_filesystem/builtin/apps/com.micropythonos.webserver/META-INF/MANIFEST.JSON b/internal_filesystem/builtin/apps/com.micropythonos.webserver/META-INF/MANIFEST.JSON index 7a7614d5..e2cc5d18 100644 --- a/internal_filesystem/builtin/apps/com.micropythonos.webserver/META-INF/MANIFEST.JSON +++ b/internal_filesystem/builtin/apps/com.micropythonos.webserver/META-INF/MANIFEST.JSON @@ -10,8 +10,8 @@ "category": "networking", "activities": [ { - "entrypoint": "assets/webserver.py", - "classname": "WebServerApp", + "entrypoint": "assets/webserver_settings.py", + "classname": "WebServerSettings", "intent_filters": [ { "action": "main", diff --git a/internal_filesystem/builtin/apps/com.micropythonos.webserver/assets/webserver.py b/internal_filesystem/builtin/apps/com.micropythonos.webserver/assets/webserver_settings.py similarity index 100% rename from internal_filesystem/builtin/apps/com.micropythonos.webserver/assets/webserver.py rename to internal_filesystem/builtin/apps/com.micropythonos.webserver/assets/webserver_settings.py