Rename to ADS-Bit and show receiver IP

- Rename app from "SKY WATCH" to "ADS-Bit" (8-bit wordplay)
- Update page title to "ADS-Bit - Retro Flight Tracker"
- Add receiver IPs to /api/config endpoint
- Display connected receiver IP(s) in status bar
- Update screenshot

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
root
2026-01-20 13:05:57 -08:00
parent c017636660
commit 707df72def
4 changed files with 11 additions and 4 deletions

View File

@@ -308,7 +308,8 @@ async def handle_config(request):
"""Return client-relevant configuration"""
return web.json_response({
"theme": config.get("theme", "desert"),
"location": config["location"]
"location": config["location"],
"receivers": receivers
})
async def handle_http(request):