diff --git a/client/public/changelog.md b/client/public/changelog.md
index d7de982..b55354f 100644
--- a/client/public/changelog.md
+++ b/client/public/changelog.md
@@ -1,14 +1,19 @@
# What's New
-> This document records feature updates and bug fixes for the Luxsin X8 controller. A new entry is appended here after each release.
+> This document records feature updates and bug fixes for the Luxsin X8 controller. Entries are listed in reverse chronological order — the newest release appears first.
+
+## v2026.08.17
+
+### Changes
+- Removed the "Legacy version" entry from the home page. The legacy Web UI is no longer being updated or maintained — please use this new Web UI for the best experience.
+
+## v2026.08.12
+
+### Bug Fixes
+- Effects → Loudness: fixed the threshold slider minimum incorrectly stopping at -30 dB; it now correctly goes down to -40 dB.
## v2026.08.06
### New Features
- Added a "What's New" entry on the home page, allowing you to view release notes online.
- Added Undo support on the EQ page: tap the Undo button to revert your most recent change. It covers band parameter edits (frequency / gain / Q / filter type), slider drag adjustments, preamp and auto-preamp changes, A/B mode copy & switch, and batch edits. Each undo shows a toast describing exactly what was reverted (e.g. "A Band 3 GAIN +2.0 → 0.0").
-
-## v2026.08.12
-
-### Bug Fixes
-- Effects → Loudness: fixed the threshold slider minimum incorrectly stopping at -30 dB; it now correctly goes down to -40 dB.
diff --git a/client/src/locales/data-de.json b/client/src/locales/data-de.json
index 992de2f..10ef00c 100644
--- a/client/src/locales/data-de.json
+++ b/client/src/locales/data-de.json
@@ -29,7 +29,6 @@
"powerOffToastDemo": "Demomodus: Abschaltbefehl gesendet.",
"powerOffToastSent": "Abschaltbefehl gesendet.",
"doubleClickHint": "Doppelklick zum Eintreten",
- "backToLegacy": "Alte Version",
"changelog": "Neuerungen",
"changelogLoadFailed": "Laden fehlgeschlagen, bitte später erneut versuchen"
},
diff --git a/client/src/locales/data-en.json b/client/src/locales/data-en.json
index 86132ea..1a85673 100644
--- a/client/src/locales/data-en.json
+++ b/client/src/locales/data-en.json
@@ -29,7 +29,6 @@
"powerOffToastDemo": "Demo mode: shutdown command sent.",
"powerOffToastSent": "Shutdown command sent.",
"doubleClickHint": "Double-click to enter",
- "backToLegacy": "Legacy version",
"changelog": "What's New",
"changelogLoadFailed": "Failed to load, please try again later"
},
diff --git a/client/src/locales/data-es.json b/client/src/locales/data-es.json
index 95adedf..2bf6ec3 100644
--- a/client/src/locales/data-es.json
+++ b/client/src/locales/data-es.json
@@ -29,7 +29,6 @@
"powerOffToastDemo": "Modo demo: comando de apagado enviado.",
"powerOffToastSent": "Comando de apagado enviado.",
"doubleClickHint": "Doble clic para entrar",
- "backToLegacy": "Versión anterior",
"changelog": "Novedades",
"changelogLoadFailed": "Error al cargar, inténtelo de nuevo más tarde"
},
diff --git a/client/src/locales/data-fr.json b/client/src/locales/data-fr.json
index c526007..088cccc 100644
--- a/client/src/locales/data-fr.json
+++ b/client/src/locales/data-fr.json
@@ -29,7 +29,6 @@
"powerOffToastDemo": "Mode démo : commande d'extinction envoyée.",
"powerOffToastSent": "Commande d'extinction envoyée.",
"doubleClickHint": "Double-clic pour entrer",
- "backToLegacy": "Ancienne version",
"changelog": "Nouveautés",
"changelogLoadFailed": "Échec du chargement, veuillez réessayer plus tard"
},
diff --git a/client/src/locales/data-zh-HK.json b/client/src/locales/data-zh-HK.json
index 864f39c..92c8ca7 100644
--- a/client/src/locales/data-zh-HK.json
+++ b/client/src/locales/data-zh-HK.json
@@ -29,7 +29,6 @@
"powerOffToastDemo": "演示模式:已傳送關機指令",
"powerOffToastSent": "已傳送關機指令",
"doubleClickHint": "按兩下進入",
- "backToLegacy": "返回舊版",
"changelog": "更新說明",
"changelogLoadFailed": "載入失敗,請稍後再試"
},
diff --git a/client/src/locales/data-zh.json b/client/src/locales/data-zh.json
index 055b63a..5e52baf 100644
--- a/client/src/locales/data-zh.json
+++ b/client/src/locales/data-zh.json
@@ -29,7 +29,6 @@
"powerOffToastDemo": "演示模式:已发送关机指令",
"powerOffToastSent": "已发送关机指令",
"doubleClickHint": "双击进入",
- "backToLegacy": "返回旧版",
"changelog": "更新说明",
"changelogLoadFailed": "加载失败,请稍后重试"
},
diff --git a/client/src/pages/Home.tsx b/client/src/pages/Home.tsx
index 4af25f3..ed649de 100644
--- a/client/src/pages/Home.tsx
+++ b/client/src/pages/Home.tsx
@@ -32,7 +32,6 @@ import {
Sliders,
Activity,
Gauge,
- Undo2,
Bluetooth,
SkipBack,
SkipForward,
@@ -876,15 +875,6 @@ export default function Home() {
thumbnail={`${import.meta.env.BASE_URL}images/vu/vu${(ds.vu ?? 0) + 1}.png`}
onClick={() => setLocation("/vu")}
/>
- }
- label={homeText.backToLegacy ?? "返回旧版"}
- onClick={() => {
- const target = ip.trim();
- if (!target) return;
- window.location.href = `https://am.luxsinaudio.com/x8/i.html?ip=${encodeURIComponent(target)}#/home`;
- }}
- />
}
label={homeText.changelog ?? "更新说明"}