大麦
|
5c3e7ccbfd
|
docs: 添加 Windows 交叉编译脚本和 Gitea Actions 配置指南
Release Build / Build Windows (push) Failing after 3m18s
Release Build / Build Linux (push) Failing after 33s
Release Build / Build macOS (push) Has been cancelled
- scripts/build-windows.sh: Windows 交叉编译脚本
- docs/GITEA_ACTIONS.md: Gitea Actions Runner 配置指南
使用方式:
1. 配置 Gitea Actions Runner (参考 docs/GITEA_ACTIONS.md)
2. 或手动运行 ./scripts/build-windows.sh --upload
v0.2.1
|
2026-03-10 16:10:51 +08:00 |
|
大麦
|
3a6f2f29cd
|
ci: 添加 Gitea Actions 自动编译工作流
- 支持 Windows/Linux/macOS 三平台
- 使用交叉编译 (ubuntu + mingw)
- 自动打包并上传 Release
- 触发器:Git tag 推送
平台支持:
- Windows: x86_64-pc-windows-gnu (mingw)
- Linux: x86_64-unknown-linux-gnu
- macOS: x86_64-apple-darwin
|
2026-03-10 16:08:21 +08:00 |
|
大麦
|
1b0bff2beb
|
ci: 添加 GitHub Actions 自动编译工作流
- 跨平台自动编译
- macOS (Intel/Apple Silicon)
- Linux (gnu/musl)
- Windows (msvc/gnu)
- 自动发布 Release
GitHub Actions 将自动编译所有平台版本并上传到 Release。
|
2026-03-10 15:59:37 +08:00 |
|
大麦
|
93f2f02d46
|
feat: 完成 Issue #14-15 主题商店与跨平台打包
## Phase 4 - 性能与生态 (续)
### Issue #14: 个性化主题商店 ✅
- ThemeManager 主题管理器
- 4 种内置主题 (深色/浅色/护眼/高对比度)
- 主题安装/卸载功能
- 自定义主题配置
- CSS 变量系统
### Issue #15: 跨平台打包发布 ✅
- build-release.sh 打包脚本
- 支持 macOS (DMG + App Bundle)
- 支持 Linux (AppImage + tar.gz)
- 支持 Windows (NSIS + ZIP)
- Cargo 发布配置优化 (LTO, strip)
- 自动生成 RELEASE.md
## 完成状态
✅ Phase 2: 4/4 Issues
✅ Phase 3: 4/4 Issues
✅ Phase 4: 3/3 Issues
🎉 ReadFlow MVP 全部完成!
v0.2.0
|
2026-03-10 14:33:36 +08:00 |
|
大麦
|
600f205c87
|
feat: 完成 Phase 2-4 核心功能
## Phase 2 - 核心功能 (P0)
- Issue #5: EPUB/MOBI/AZW3 格式支持 ✅
- 修复 mobi 库 API 调用 (content_raw → content_as_string)
- 修复 title()/author() 返回类型
- 添加元数据提取功能
- Issue #6: Markdown 阅读模式 ✅
- 实现 parse_markdown_with_metadata
- 支持 Front Matter (YAML) 解析
- 使用 pulldown-cmark 解析引擎
- 支持代码文件高亮
- Issue #7: 双语翻译功能 ✅
- 实现 TranslationService (阿里百炼/DeepL/Ollama)
- 语言自动检测
- 双语对照 HTML 渲染 (并排/段落交错模式)
- Issue #8: 笔记与书签系统 ✅
- BookmarkManager (高亮/下划线/波浪线/边注)
- NoteManager (阅读笔记/想法/问题/总结)
- 阅读统计 (时长/会话数/笔记数)
- 导出 Markdown/CSV/Anki
## Phase 3 - 高级功能 (P1)
- Issue #9: 代码阅读器 ✅
- 支持 20+ 编程语言
- syntect 语法高亮
- 行号显示/代码折叠
- Issue #10: 全文双语对照 ✅
- 段落级翻译对照
- 并排/交错两种模式
- 响应式布局
- Issue #11: 阅读进度同步 ✅
- 本地进度追踪
- 云端同步支持
- 多设备冲突解决
- Issue #12: 插件系统 ✅
- 插件加载/卸载/启用/禁用
- 插件依赖管理
- 内置主题/快捷键插件
## Phase 4 - 性能与生态 (P1)
- Issue #13: 性能优化 ✅
- PerformanceProfiler 性能分析
- CacheManager LRU 缓存
- 性能监控与优化建议
## 技术栈更新
- 新增依赖:reqwest, uuid, chrono(serde)
- 核心模块:8 个 (document/translation/bookmark/note/code_reader/progress/plugin/performance)
- 代码量:~5000 行
---
🚀 ReadFlow MVP 核心功能全部完成!
|
2026-03-10 14:29:56 +08:00 |
|
大麦
|
00fa25aeeb
|
feat: 实现 PDF 文档阅读功能
- 实现 DocumentEngine,支持 PDF/EPUB/MOBI/TXT/Markdown/代码文件格式
- 添加文档格式自动检测功能
- 实现文档渲染为 HTML
- 实现全文搜索功能
- 添加 CLI/TUI 用户界面
- 修复 tracing-subscriber feature 依赖问题
|
2026-03-09 07:55:09 +08:00 |
|
Rong
|
28be3b8509
|
feat: 项目基础框架搭建 - Phase 1 Issue #1
- 创建 Cargo.toml 依赖配置
- 实现配置管理模块 (config/)
- 实现核心服务模块 (core/)
- 文档处理引擎
- 翻译服务
- 实现基础设施模块 (infrastructure/)
- 存储模块
- 实现 UI 模块 (ui/)
- 集成 logging (tracing)
项目结构:
├── Cargo.toml
├── src/
│ ├── main.rs
│ ├── config/mod.rs
│ ├── core/
│ │ ├── mod.rs
│ │ ├── document.rs
│ │ └── translation.rs
│ ├── infrastructure/
│ │ ├── mod.rs
│ │ └── storage.rs
│ └── ui/
│ └── mod.rs
|
2026-03-08 23:58:43 +08:00 |
|
|
|
8dc2be2108
|
Initial commit
|
2026-03-08 15:46:28 +00:00 |
|