mirror of
https://github.com/gesellix/Bose-SoundTouch.git
synced 2026-08-19 00:56:16 +00:00
- Refactors BMX service to support multiple radio providers - Adds RadioBrowser.com API integration with search and browse - Splits TuneIn logic into separate module for better organization - Adds new web UI components for radio station discovery - Includes new SVG icons for RadioBrowser branding
27 lines
1.0 KiB
HTML
27 lines
1.0 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>AfterTouch</title>
|
|
<meta name="description" content="AfterTouch — A replacement for Bose SoundTouch cloud services. Control your speakers after the cloud shutdown." />
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"preact": "/static/lib/preact.module.js",
|
|
"preact/hooks": "/static/lib/preact-hooks.module.js",
|
|
"htm": "/static/lib/htm.module.js"
|
|
}
|
|
}
|
|
</script>
|
|
<link rel="icon" type="image/svg+xml" href="/static/img/favicon.svg" />
|
|
<link rel="alternate icon" href="/static/img/favicon.ico" />
|
|
<link rel="stylesheet" href="/static/css/app.css" />
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<p style="display:none">Bose SoundTouch Toolkit</p>
|
|
<script type="module" src="/static/js/app.js"></script>
|
|
</body>
|
|
</html>
|