From 0310798868e8d89edc2e8a27830ae4467bb09dbf Mon Sep 17 00:00:00 2001 From: linyq Date: Mon, 18 Nov 2024 12:23:36 +0800 Subject: [PATCH 1/2] =?UTF-8?q?feat(webui):=20=E6=96=B0=E5=A2=9E=E8=84=9A?= =?UTF-8?q?=E6=9C=AC=E8=AE=BE=E7=BD=AE=E5=8A=9F=E8=83=BD=E5=B9=B6=E4=BC=98?= =?UTF-8?q?=E5=8C=96=E5=85=B3=E9=94=AE=E5=B8=A7=E6=8F=90=E5=8F=96-=20?= =?UTF-8?q?=E5=9C=A8=20script=5Fsettings.py=20=E4=B8=AD=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E4=BA=86=E4=B8=89=E4=B8=AA=E6=96=B0=E7=9A=84=E8=BE=93=E5=85=A5?= =?UTF-8?q?=E6=A1=86=EF=BC=8C=E7=94=A8=E4=BA=8E=E8=AE=BE=E7=BD=AE=20skip?= =?UTF-8?q?=5Fseconds=E3=80=81threshold=20=E5=92=8C=20vision=5Fbatch=5Fsiz?= =?UTF-8?q?e-=20=E6=9B=B4=E6=96=B0=E4=BA=86=E5=85=B3=E9=94=AE=E5=B8=A7?= =?UTF-8?q?=E6=8F=90=E5=8F=96=E8=BF=87=E7=A8=8B=EF=BC=8C=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E6=96=B0=E8=AE=BE=E7=BD=AE=E7=9A=84=E5=8F=82=E6=95=B0=E6=9B=BF?= =?UTF-8?q?=E4=BB=A3=E4=BA=86=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=E5=9B=BA=E5=AE=9A=E5=80=BC=20-=20=E5=9C=A8=20i18n/zh.?= =?UTF-8?q?json=20=E4=B8=AD=E6=B7=BB=E5=8A=A0=E4=BA=86=E7=9B=B8=E5=85=B3?= =?UTF-8?q?=E7=BF=BB=E8=AF=91=EF=BC=8C=E7=A1=AE=E4=BF=9D=E6=96=B0=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E6=94=AF=E6=8C=81=E4=B8=AD=E6=96=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/latest-changes.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/latest-changes.yml b/.github/workflows/latest-changes.yml index 3425cb3..bd40fb7 100644 --- a/.github/workflows/latest-changes.yml +++ b/.github/workflows/latest-changes.yml @@ -3,7 +3,7 @@ name: Latest Changes on: pull_request_target: branches: - - master + - main types: - closed workflow_dispatch: From bb4cea70e53070de53699ba455059d239ce21506 Mon Sep 17 00:00:00 2001 From: linyq Date: Mon, 18 Nov 2024 15:04:11 +0800 Subject: [PATCH 2/2] =?UTF-8?q?docs:=20=E6=B7=BB=E5=8A=A0=20Pull=20Request?= =?UTF-8?q?=20=E6=A8=A1=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加了 .github/pull_request_template.md 文件,用于指导贡献者提交高质量的 Pull Request。模板包含了以下部分: - PR 类型- 描述 - 相关 Issue - 更改内容 - 测试 - 截图- 检查清单 - 补充说明 这将有助于提高项目的维护效率和代码审查质量。 --- .github/pull_request_template.md | 46 ++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..06a1197 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,46 @@ +## PR 类型 +请选择一个适当的标签(必选其一): + +- [ ] 破坏性变更 (breaking) +- [ ] 安全修复 (security) +- [ ] 新功能 (feature) +- [ ] Bug修复 (bug) +- [ ] 代码重构 (refactor) +- [ ] 依赖升级 (upgrade) +- [ ] 文档更新 (docs) +- [ ] 翻译相关 (lang-all) +- [ ] 内部改进 (internal) + +## 描述 + + +## 相关 Issue + + +## 更改内容 + + +- +- +- + +## 测试 + + +- [ ] 单元测试 +- [ ] 集成测试 +- [ ] 手动测试 + +## 截图(如果适用) + + +## 检查清单 + +- [ ] 我的代码遵循项目的代码风格 +- [ ] 我已经添加了必要的测试 +- [ ] 我已经更新了相关文档 +- [ ] 我的更改不会引入新的警告 +- [ ] PR 标题清晰描述了更改内容 + +## 补充说明 + \ No newline at end of file