From 4743606222e070ee93a751ba3cdb1269caa0d83a Mon Sep 17 00:00:00 2001 From: jinchao <383321154@qq.com> Date: Mon, 9 Jun 2025 13:51:14 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=9B=B4=E6=96=B0=E8=AE=B0?= =?UTF-8?q?=E5=BD=95=E7=9A=84=E6=96=87=E6=9C=AC=E5=AF=B9=E9=BD=90=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Release/database/XNSim.db | Bin 1224704 -> 1224704 bytes XNSimHtml/components/overview-page.js | 24 +++++++++++++++++++++++- XNSimHtml/components/update-history.js | 8 +++++--- 3 files changed, 28 insertions(+), 4 deletions(-) diff --git a/Release/database/XNSim.db b/Release/database/XNSim.db index 14ffbff2890c6f2e73bf2ed9467ef0834c1f0ed5..4685e530b2a0458a78bfa58ee2ea810deab58621 100644 GIT binary patch delta 295 zcmZp8;MMTJYl1Xm?nD`9#@vkwOZ=I&`5Y#*2e>ghZ1xHG#5>tLj+4nyyV*Og-8+sE zh?#(x8Hibcm=%cGfS4VKIe?gRyLTMd&WSQS?8g}R1^5bi=kmPc$>u)D?aUR&*~{^Z zBar>rW<`Nz?DdTt+8mOKveAvK;s$y~dWMEZ21cg324=bjmWIYwrUq8V22b{{d%C3e z+3YRPrfqn!Zo|{PQ=iXjc{Z*6*_<^`*YA9}cf!l*>s~IJ@w{)t(>W`icXoip`?tTG zy8r2}WlwhWKAq6>Z2GqMdwL*Rp6s0eqIvJLwTqwb*zt5d4@m!$U2TaextV$Gfj_u_ Zm>Y{t#Th9RO9dhll_G delta 150 zcmZp8;MMTJYl1Xm&O{k!#+;1_OZ=I&_`D~x2e@ta5BSJCF@SfnLmX#wNL+hJ93v1j z0WmWWvj8zG5VHX>I}mdKG3WM>IIay7rMNi)8TbYG3VG-9yyMB{KFICN7021j@rxsH jv!Z}8M|^4P!N4 diff --git a/XNSimHtml/components/overview-page.js b/XNSimHtml/components/overview-page.js index 6b8cad6..b35506f 100644 --- a/XNSimHtml/components/overview-page.js +++ b/XNSimHtml/components/overview-page.js @@ -43,7 +43,7 @@ class OverviewPage extends HTMLElement { const verNum = version.verNum; const title = version.title; - return `【${date} ${time}】v${verNum} ${title}`; + return `【${date} ${time}】v${verNum}${title}`; } startClock() { @@ -519,6 +519,28 @@ class OverviewPage extends HTMLElement { line-height: 1; margin-top: -2px; } + + .update-list li { + padding: 8px 0; + border-bottom: 1px solid #eee; + color: #2c3e50; + display: flex; + align-items: baseline; + gap: 8px; + } + + .version-date { + white-space: nowrap; + } + + .version-number { + min-width: 60px; + white-space: nowrap; + } + + .version-title { + flex: 1; + }
diff --git a/XNSimHtml/components/update-history.js b/XNSimHtml/components/update-history.js index fca2a22..3ff5297 100644 --- a/XNSimHtml/components/update-history.js +++ b/XNSimHtml/components/update-history.js @@ -284,13 +284,15 @@ class UpdateHistory extends HTMLElement { display: flex; align-items: center; line-height: 1; + flex-wrap: wrap; + gap: 15px; } .version-number { font-size: 18px; font-weight: bold; color: #667eea; - margin-right: 15px; + min-width: 80px; display: inline-flex; align-items: center; } @@ -299,7 +301,7 @@ class UpdateHistory extends HTMLElement { font-size: 16px; font-weight: 500; color: #2d3748; - margin-right: 15px; + min-width: 200px; display: inline-flex; align-items: center; } @@ -307,6 +309,7 @@ class UpdateHistory extends HTMLElement { .version-date { color: #718096; font-size: 14px; + min-width: 150px; display: inline-flex; align-items: center; } @@ -316,7 +319,6 @@ class UpdateHistory extends HTMLElement { font-size: 14px; display: inline-flex; align-items: center; - margin-left: 15px; } .expand-btn {