Skip to content

Commit 163c2d5

Browse files
committed
Add screenshots to project intro pages
1 parent 58630a9 commit 163c2d5

5 files changed

Lines changed: 135 additions & 2 deletions

File tree

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,17 @@ go build -o codextools .
6565
6. Legacy conversation repair
6666
Provider sync tools help recover visibility for older local conversations.
6767

68+
## Screenshots
69+
70+
The project introduction page now includes real manager screenshots with feature descriptions:
71+
72+
- Home dashboard: launch status, active connection, UI enhancement mode, entry paths, and key health checks.
73+
- Beginner guide: system detection, Codex install check, CCSwitch import, mode selection, and Codex++ launch flow.
74+
- Connection service: official login, mixed API mode, relay/API providers, CCSwitch import, and connectivity testing.
75+
- UI features: session delete, Markdown export, project move, Timeline, plugin entry unlock, and forced plugin install controls.
76+
77+
Screenshot assets live in `docs/assets/` and are referenced directly by the public project page.
78+
6879
## New in 1.1.8
6980

7081
- Published standalone macOS and Windows desktop packages from this repository.

README.zh-CN.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,17 @@ go build -o codextools .
6565
6. 历史对话修复
6666
提供旧会话提供商归属修复能力,减少“记录看不见”的问题。
6767

68+
## 界面截图
69+
70+
项目介绍页已加入真实管理器截图和文字功能描述:
71+
72+
- 首页仪表盘:展示启动状态、当前连接、界面增强模式、入口路径和关键状态。
73+
- 新手安装引导:按系统识别、Codex 安装、CCSwitch 导入、模式选择、启动 Codex++ 的顺序完成首次配置。
74+
- 连接服务:集中管理官方登录、官方混合 API、中转 API、供应商列表、CCSwitch 导入和连通性测试。
75+
- 界面功能:管理会话删除、Markdown 导出、项目移动、Timeline、插件入口解锁和特殊插件强制安装。
76+
77+
截图资源位于 `docs/assets/`,项目介绍页会直接引用这些公开资源。
78+
6879
## 1.1.8 新版本内容
6980

7081
- 已从独立仓库发布 macOS 和 Windows 桌面下载包。

docs/assets/screenshot-home.png

483 KB
Loading
483 KB
Loading

docs/index.html

Lines changed: 113 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
content="Standalone Go + React manager for Codex workflows, relay setup, script tooling, diagnostics, and repair operations."
1515
/>
1616
<meta property="og:type" content="website" />
17-
<meta property="og:image" content="https://github.com/hereww/codextools" />
17+
<meta property="og:image" content="./assets/screenshot-home.png" />
1818
<meta name="twitter:card" content="summary_large_image" />
1919
<meta name="twitter:title" content="CodexTools" />
2020
<meta
2121
name="twitter:description"
2222
content="Standalone Go + React manager for Codex workflows, relay setup, script tooling, diagnostics, and repair operations."
2323
/>
24-
<meta name="twitter:image" content="https://github.com/hereww/codextools" />
24+
<meta name="twitter:image" content="./assets/screenshot-home.png" />
2525
<style>
2626
:root {
2727
--bg: #eef5fb;
@@ -213,6 +213,57 @@
213213
margin-top: 18px;
214214
}
215215

216+
.screenshots {
217+
display: grid;
218+
gap: 18px;
219+
}
220+
221+
.screenshot-lead {
222+
display: flex;
223+
align-items: flex-start;
224+
justify-content: space-between;
225+
gap: 18px;
226+
}
227+
228+
.screenshot-lead p {
229+
margin: 0;
230+
max-width: 760px;
231+
}
232+
233+
.shot-grid {
234+
display: grid;
235+
grid-template-columns: minmax(0, 1fr);
236+
gap: 16px;
237+
}
238+
239+
.shot-card {
240+
border: 1px solid var(--line);
241+
border-radius: 22px;
242+
background: rgba(255, 255, 255, 0.72);
243+
overflow: hidden;
244+
}
245+
246+
.shot-card img {
247+
display: block;
248+
width: 100%;
249+
height: auto;
250+
background: #f8fafc;
251+
}
252+
253+
.shot-caption {
254+
border-top: 1px solid var(--line);
255+
padding: 16px 18px 18px;
256+
}
257+
258+
.shot-caption h4 {
259+
margin: 0 0 6px;
260+
font-size: 18px;
261+
}
262+
263+
.shot-caption p {
264+
margin: 0;
265+
}
266+
216267
.release {
217268
overflow: hidden;
218269
position: relative;
@@ -355,12 +406,17 @@
355406
@media (max-width: 920px) {
356407
.hero,
357408
.grid,
409+
.screenshot-lead,
358410
.release-grid,
359411
.origin,
360412
.telegram {
361413
grid-template-columns: 1fr;
362414
}
363415

416+
.screenshot-lead {
417+
display: block;
418+
}
419+
364420
.release-head {
365421
flex-direction: column;
366422
}
@@ -486,6 +542,61 @@ <h3>运维能力内置</h3>
486542
</article>
487543
</div>
488544

545+
<section class="section screenshots">
546+
<div data-lang="en" class="active">
547+
<div class="screenshot-lead">
548+
<div>
549+
<h3>Manager screenshots</h3>
550+
<p>
551+
The desktop manager is organized around everyday actions: start Codex, confirm connection mode, finish first-run setup, and keep page enhancements visible without editing local files by hand.
552+
</p>
553+
</div>
554+
</div>
555+
<div class="shot-grid">
556+
<article class="shot-card">
557+
<img src="./assets/screenshot-home.png" alt="CodexTools home dashboard showing launch status, connection mode, UI enhancement mode, and repair entry points" />
558+
<div class="shot-caption">
559+
<h4>Home dashboard</h4>
560+
<p>The first screen shows whether the local setup is ready, exposes the primary launch button, and keeps connection, UI features, and repair entry points close together.</p>
561+
</div>
562+
</article>
563+
<article class="shot-card">
564+
<img src="./assets/screenshot-onboarding.png" alt="CodexTools beginner guide showing system detection, Codex install status, CCSwitch import, mode selection, and launch steps" />
565+
<div class="shot-caption">
566+
<h4>Beginner guide</h4>
567+
<p>The guided flow checks platform and architecture, confirms Codex installation, imports CCSwitch providers, selects the connection mode, and ends at launch.</p>
568+
</div>
569+
</article>
570+
</div>
571+
</div>
572+
<div data-lang="zh">
573+
<div class="screenshot-lead">
574+
<div>
575+
<h3>管理器界面截图</h3>
576+
<p>
577+
桌面管理器围绕日常操作组织:启动 Codex、确认连接模式、完成新手配置,并把页面增强能力放在可见位置,不需要手动找本地配置文件。
578+
</p>
579+
</div>
580+
</div>
581+
<div class="shot-grid">
582+
<article class="shot-card">
583+
<img src="./assets/screenshot-home.png" alt="CodexTools 首页仪表盘,展示启动状态、连接模式、界面增强模式和修复入口" />
584+
<div class="shot-caption">
585+
<h4>首页仪表盘</h4>
586+
<p>首页直接显示本地环境是否就绪,提供主要启动按钮,并把连接服务、界面功能、入口修复和关键状态集中到一个页面。</p>
587+
</div>
588+
</article>
589+
<article class="shot-card">
590+
<img src="./assets/screenshot-onboarding.png" alt="CodexTools 新手引导,展示系统识别、Codex 安装状态、CCSwitch 导入、模式选择和启动步骤" />
591+
<div class="shot-caption">
592+
<h4>新手安装引导</h4>
593+
<p>新手流程按顺序完成系统识别、Codex 安装检查、CCSwitch 导入、连接模式选择和启动,降低第一次配置成本。</p>
594+
</div>
595+
</article>
596+
</div>
597+
</div>
598+
</section>
599+
489600
<section class="section release">
490601
<div data-lang="en" class="active">
491602
<div class="release-head">

0 commit comments

Comments
 (0)