team: 组建产品和需求团队

新增产品和需求团队:
- 张婉琳 - 产品总监(前字节抖音产品总监)
- 李明哲 - 需求分析师(前腾讯微信需求分析师)
- 王思远 - 架构师(前阿里淘宝资深架构师)

更新管理架构:
- 产品线:产品总监 → 需求分析师 → PRD/需求文档
- 技术线:PM + 架构师 → 开发团队 → QA 团队
- 工作流程:产品规划 → 需求分析 → 架构设计 → 需求评审 → 开发实现 → 质量保证

团队职责:
- 产品总监:制定产品战略和路线图
- 需求分析师:细化需求,编写需求规格说明
- 架构师:设计技术方案,编写技术设计文档
This commit is contained in:
showen
2026-03-12 06:38:37 +08:00
parent def75d3d02
commit 62c02b541c
13 changed files with 508 additions and 30 deletions

View File

@@ -111,6 +111,12 @@ impl HttpPlugin {
}
}
impl Default for HttpPlugin {
fn default() -> Self {
Self::new()
}
}
impl Plugin for HttpPlugin {
fn id(&self) -> &'static str { "http" }

View File

@@ -771,9 +771,7 @@ fn list_video_files(dir: &Path) -> Vec<VideoFileInfo> {
}
fn sanitize_filename(name: &str) -> String {
name.replace('/', "_")
.replace('\\', "_")
.replace("..", "_")
name.replace(['/', '\\'], "_").replace("..", "_")
}
fn video_dir(config: &AppConfig) -> PathBuf {