docs: 清理根目录临时文档

- 删除过时的版本发布说明(RELEASE.md 和 RELEASE_NOTES_v2.0.*.md)
- 删除临时检查报告(CHECK_AND_FIX_REPORT.md、IMPLEMENTATION_COMPLETE.md、MISSING_ITEMS_CHECK.md)
- 所有版本发布信息统一在 RELEASE_NOTES.md 中管理
- 添加新的部署指南文档和 Docker 构建配置

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
WrBug
2026-02-08 23:34:46 +08:00
co-authored by Cursor
parent b616e10ceb
commit 01a1836659
10 changed files with 339 additions and 2076 deletions
+4 -1
View File
@@ -722,7 +722,10 @@ const BacktestList: React.FC = () => {
<Select placeholder={t('backtest.leader')} showSearch>
{leaders.map((leader) => (
<Option key={leader.id} value={leader.id}>
{leader.leaderName || leader.leaderAddress}
<div style={{ display: 'flex', flexDirection: 'column' }}>
<span>{leader.leaderName || `Leader ${leader.id}`}</span>
<span style={{ fontSize: '12px', color: '#999' }}>{leader.leaderAddress}</span>
</div>
</Option>
))}
</Select>