增加 版本记录网页

This commit is contained in:
zhengxuan.zhang
2026-08-07 10:20:31 +08:00
parent fcc22e746b
commit 2d1f544ab0
3 changed files with 195 additions and 0 deletions
+5
View File
@@ -221,6 +221,11 @@ D:\\XPData
└── Results\\ # Inspection、DetectorImages、Reports、Video
```
### 版本记录
- [查看 XplorePlane 版本变更说明](ReleaseFiles/XplorePlane-ReleaseNotes.html)
- [版本记录网页源码](doc/release-notes/index.html)
### TO-DO List
- [x] 软件基于 WPF + Prism 基础的框架
+187
View File
@@ -0,0 +1,187 @@
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>XplorePlane 版本记录</title>
<style>
:root {
--bg: #f4f7f9;
--card: #ffffff;
--ink: #17313b;
--muted: #6d8189;
--line: #d8e4e8;
--accent: #168da8;
--accent-dark: #0e667b;
--soft: #e6f5f8;
}
* { box-sizing: border-box; }
body {
margin: 0;
color: var(--ink);
background: var(--bg);
font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
line-height: 1.6;
}
.hero {
padding: 72px 24px 92px;
color: white;
background: linear-gradient(135deg, #123b48, #168da8);
}
.wrap { width: min(960px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow {
margin: 0 0 12px;
color: #9fe1eb;
font-size: 13px;
font-weight: 700;
letter-spacing: .14em;
text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.2; }
h1 { max-width: 680px; font-size: clamp(34px, 6vw, 60px); }
.intro { max-width: 620px; margin: 20px 0 0; color: #d9f2f5; font-size: 18px; }
.current {
display: inline-flex;
align-items: center;
gap: 10px;
margin-top: 30px;
padding: 10px 16px;
border: 1px solid rgba(255,255,255,.3);
border-radius: 999px;
background: rgba(255,255,255,.1);
font-weight: 700;
}
main { padding: 56px 0 80px; }
.section-heading { margin-bottom: 28px; }
.section-heading p { margin: 10px 0 0; color: var(--muted); }
.release {
position: relative;
display: grid;
grid-template-columns: 150px 1fr;
gap: 28px;
padding: 28px;
border: 1px solid var(--line);
border-radius: 18px;
background: var(--card);
box-shadow: 0 12px 30px rgba(23,49,59,.06);
}
.version {
color: var(--accent-dark);
font-size: 28px;
font-weight: 800;
}
.date { margin-top: 6px; color: var(--muted); font-size: 14px; }
.badge {
display: inline-block;
margin-top: 18px;
padding: 4px 9px;
border-radius: 6px;
color: var(--accent-dark);
background: var(--soft);
font-size: 12px;
font-weight: 700;
}
.release h3 { font-size: 22px; }
.release p { margin: 10px 0 20px; color: var(--muted); }
.features {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
margin: 0;
padding: 0;
list-style: none;
}
.features li {
padding: 12px 14px;
border-radius: 10px;
background: #f5fafb;
font-size: 15px;
}
.features li::before { content: "✓"; margin-right: 8px; color: var(--accent); font-weight: 800; }
.next {
display: grid;
grid-template-columns: auto 1fr;
gap: 18px;
align-items: center;
margin-top: 22px;
padding: 20px 24px;
border: 1px dashed var(--line);
border-radius: 14px;
color: var(--muted);
}
.next strong { color: var(--ink); }
footer { padding: 24px; color: var(--muted); text-align: center; font-size: 13px; }
@media (max-width: 640px) {
.hero { padding-top: 52px; }
.wrap { width: min(100% - 32px, 960px); }
.release { grid-template-columns: 1fr; gap: 14px; padding: 22px; }
.badge { margin-top: 10px; }
.features { grid-template-columns: 1fr; }
.next { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<header class="hero">
<div class="wrap">
<p class="eyebrow">Release notes</p>
<h1>XplorePlane 版本记录</h1>
<p class="intro">记录每个版本带来的功能变化,让系统演进清晰、可追踪。</p>
<div class="current">当前版本 <span>1.0.0</span></div>
</div>
</header>
<main class="wrap">
<section class="section-heading">
<h2>版本历史</h2>
<p>从第一个正式版本开始,持续记录产品能力和重要改进。</p>
</section>
<article class="release">
<div>
<div class="version">1.0.0</div>
<div class="date">首次发布</div>
<span class="badge">首个版本</span>
</div>
<div>
<h3>XplorePlane 初始版本</h3>
<p>提供平面 CT 设备控制、图像采集、图像处理和检测分析的一体化基础平台。</p>
<ul class="features">
<li>相机连接与实时图像预览</li>
<li>射线源、探测器及运动控制基础能力</li>
<li>CNC 程序与检测流程编辑</li>
<li>图像处理流水线和检测分析</li>
<li>校准、检测结果与报告输出</li>
<li>统一数据目录与运行日志管理</li>
</ul>
</div>
</article>
<div class="next">
<strong>后续版本</strong>
<span>新增版本时,继续按版本号、发布日期和功能变更补充记录。</span>
</div>
</main>
<footer>XplorePlane · Product release history</footer>
</body>
</html>
@@ -497,6 +497,9 @@
<Component Id="cmp13421742207F78A9B1CA7FB6ADB0B96E" Directory="RELEASEFILES" Guid="*">
<File Id="filBCC1B5443D981F56B3A6A07BB70500C2" KeyPath="yes" Source="$(var.ReleaseFilesSource)\XP.Scan.pdb" />
</Component>
<Component Id="cmp3A5D1FB03A6568B46BECB415380C5CD9" Directory="RELEASEFILES" Guid="*">
<File Id="filC5715091F7E6205E376A06B53E23E27D" KeyPath="yes" Source="$(var.ReleaseFilesSource)\XplorePlane-ReleaseNotes.html" />
</Component>
<Component Id="cmp716D6CBAF5021679C637C223F23E7ABB" Directory="RELEASEFILES" Guid="*">
<File Id="filB9AC1EAC709B17113206321122CB663C" KeyPath="yes" Source="$(var.ReleaseFilesSource)\XplorePlane.deps.json" />
</Component>