diff --git a/Release/database/XNSim.db b/Release/database/XNSim.db
index 14ffbff..4685e53 100644
Binary files a/Release/database/XNSim.db and b/Release/database/XNSim.db differ
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 {