From 8037f2b8cc6410371889bb0c132032804d64a132 Mon Sep 17 00:00:00 2001 From: choibk Date: Sun, 25 Jan 2026 01:53:28 +0900 Subject: [PATCH] =?UTF-8?q?UI=20=EB=B3=B4=EC=99=84:=20=EB=B0=B0=EB=84=88?= =?UTF-8?q?=20=EB=82=B4=20=EC=97=85=EB=8D=B0=EC=9D=B4=ED=8A=B8=20=EC=83=81?= =?UTF-8?q?=EC=84=B8=20=EB=82=B4=EC=97=AD=20=ED=91=9C=EC=8B=9C=20=EA=B8=B0?= =?UTF-8?q?=EB=8A=A5=20=EB=B3=B5=EA=B5=AC=20=EB=B0=8F=20=EB=94=94=EB=B2=84?= =?UTF-8?q?=EA=B7=B8=20=EC=A0=95=EB=B3=B4=20=EC=A0=9C=EA=B1=B0=20(v0.4.0.1?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/platform/pages/VersionPage.tsx | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/src/platform/pages/VersionPage.tsx b/src/platform/pages/VersionPage.tsx index 4cb8a53..5aa62a4 100644 --- a/src/platform/pages/VersionPage.tsx +++ b/src/platform/pages/VersionPage.tsx @@ -136,16 +136,11 @@ export function VersionPage() { - {/* Debug Info (Visible only for investigation) */} -
- [Debug] Current: {currentVersion}, Latest: {remoteInfo?.latest}, NeedsUpdate: {String(needsUpdate)}, LatestInfo: {remoteInfo?.latestInfo ? 'Yes' : 'No'} -
- - {/* Update Alert Banner - Enhanced Visibility */} + {/* Update Alert Banner - Enhanced Visibility with Details */} {needsUpdate && !updateResult && remoteInfo?.latestInfo && (
-
-
+
+
@@ -160,6 +155,19 @@ export function VersionPage() {

현재: v{currentVersion} 차기: {remoteInfo.latest}

+ + {/* Detailed Changes from Tag Message */} +
+

[{remoteInfo.latestInfo.title}]

+
    + {remoteInfo.latestInfo.changes.map((c, i) => ( +
  • +
    + {c} +
  • + ))} +
+