225 lines
7.6 KiB
HTML
225 lines
7.6 KiB
HTML
<!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.1</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>
|
|
|
|
<article class="release" style="margin-top: 22px;">
|
|
<div>
|
|
<div class="version">1.0.1</div>
|
|
<div class="date">2026-08-12</div>
|
|
<span class="badge">功能更新与问题修复</span>
|
|
</div>
|
|
<div>
|
|
<h3>执行流程、结果归档与检测显示全面优化</h3>
|
|
<p>本版本覆盖 1.0.0 发布后的 CNC 执行、复核、结果归档、检测叠加显示和界面本地化改进。</p>
|
|
|
|
<h4>新增与优化</h4>
|
|
<ul class="features">
|
|
<li>增加 CNC 节点局部执行、禁用节点和按当前状态更新位置节点功能。</li>
|
|
<li>增加 CNC 复核的接受、跳过和中止操作,并支持一次性标记模式。</li>
|
|
<li>统一视图叠加层并补充流水线标题,优化调试面板和检测任务向导布局。</li>
|
|
<li>增加探测器标记到导航图像的坐标换算,支持标记位置准确回显。</li>
|
|
<li>BGA 空洞率、空隙、BGA 球、QFN 检测及色阶图例的编号、文字和行距自适应。</li>
|
|
<li>完善多语言界面,覆盖核心视图、检测面板、设置页、主功能区及状态/调试区域。</li>
|
|
<li>语言切换即时生效;支持使用外部运行时配置和相对路径加载虚拟相机默认图片。</li>
|
|
<li>拆分射线源电流与功率状态字段,优化 XPZ 文件导入解析和特殊算子的输出字段显示。</li>
|
|
<li>统一 CNC 与检测池结果存储目录,并规范结果文件和报告模板的发布内容。</li>
|
|
</ul>
|
|
|
|
<h4>问题修复</h4>
|
|
<ul class="features">
|
|
<li>修复 CNC 节点预览、实时预览及执行后的结果预览恢复问题,避免叠加图层错乱。</li>
|
|
<li>修复 CNC 节点浏览时残留标记、标记恢复失败和总览图标记渲染异常。</li>
|
|
<li>修复 CNC 总览图归档:分别保存原图与标记图,并正确归档导航相机合成截图。</li>
|
|
<li>修复无叠加层节点的结果图保存,以及结果查看器无法显示总览图的问题。</li>
|
|
<li>调整标记归档逻辑,仅将人工审核确认的标记写入导航标记层,避免自动生成多余 OK/NG 标记。</li>
|
|
<li>统一 CNC 标记和人工标记的右键菜单,修复关联图像、状态单位和图像匹配显示问题。</li>
|
|
<li>修复 CNC 模板匹配对位的 XY 运动逻辑,以及结果 manifest 中位置名称和旧数据兼容问题。</li>
|
|
<li>修复创建 CNC 前未提示保存,以及非特殊算子错误显示输出字段的问题。</li>
|
|
</ul>
|
|
</div>
|
|
</article>
|
|
|
|
<div class="next">
|
|
<strong>版本范围</strong>
|
|
<span>以上内容整理自 v1.0.0 至 1.0.1 发布提交期间的功能变更和问题修复。</span>
|
|
</div>
|
|
</main>
|
|
|
|
<footer>XplorePlane · Product release history</footer>
|
|
</body>
|
|
</html>
|