docs: add chineses issue template

This commit is contained in:
kangfenmao 2024-12-03 18:58:14 +08:00
parent a170dbd6f0
commit 368de84440
7 changed files with 155 additions and 1 deletions

View File

@ -0,0 +1,73 @@
name: 🐛 错误报告
description: 创建一个报告以帮助我们改进
title: '[错误]: '
labels: ['bug']
body:
- type: markdown
attributes:
value: |
感谢您花时间填写此错误报告!
- type: dropdown
id: platform
attributes:
label: 平台
description: 您正在使用哪个平台?
options:
- Windows
- macOS
- Linux
validations:
required: true
- type: input
id: version
attributes:
label: 版本
description: 您正在运行的 Cherry Studio 版本是什么?
placeholder: 例如 v1.0.0
validations:
required: true
- type: textarea
id: description
attributes:
label: 错误描述
description: 清晰简洁地描述错误是什么
placeholder: 告诉我们发生了什么...
validations:
required: true
- type: textarea
id: reproduction
attributes:
label: 重现步骤
description: 重现行为的步骤
placeholder: |
1. 转到 '...'
2. 点击 '....'
3. 向下滚动到 '....'
4. 看到错误
validations:
required: true
- type: textarea
id: expected
attributes:
label: 预期行为
description: 清晰简洁地描述您期望发生的事情
validations:
required: true
- type: textarea
id: logs
attributes:
label: 相关日志输出
description: 请复制并粘贴任何相关的日志输出
render: shell
- type: textarea
id: additional
attributes:
label: 附加信息
description: 在此添加有关问题的任何其他上下文

View File

@ -0,0 +1,38 @@
name: 💡 功能建议
description: 为项目提出新的想法
title: '[功能]: '
labels: ['enhancement']
body:
- type: markdown
attributes:
value: |
感谢您花时间提出新的功能建议!
- type: textarea
id: problem
attributes:
label: 您的功能建议是否与某个问题相关?
description: 请简明扼要地描述您遇到的问题
placeholder: 我总是感到沮丧,因为...
validations:
required: true
- type: textarea
id: solution
attributes:
label: 请描述您希望实现的解决方案
description: 请简明扼要地描述您希望发生的情况
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: 请描述您考虑过的其他方案
description: 请简明扼要地描述您考虑过的任何其他解决方案或功能
- type: textarea
id: additional
attributes:
label: 其他补充信息
description: 在此添加任何其他与功能建议相关的上下文或截图

View File

@ -0,0 +1,43 @@
name: 📝 文档问题
description: 报告文档相关的问题
title: '[文档]: '
labels: ['documentation']
body:
- type: markdown
attributes:
value: |
感谢您花时间来改进我们的文档!
- type: dropdown
id: type
attributes:
label: 文档问题类型
options:
- 缺失文档
- 不清晰的文档
- 不正确的文档
- 需要翻译
- 其他
validations:
required: true
- type: input
id: location
attributes:
label: 文档位置
description: 您所指的文档在哪里?
placeholder: 例如 README.md, 贡献指南等
- type: textarea
id: description
attributes:
label: 描述
description: 请描述文档存在的问题
validations:
required: true
- type: textarea
id: suggestion
attributes:
label: 建议修改
description: 如果您有具体的建议来改进文档,请在此提供

View File

@ -184,7 +184,7 @@ const AboutSettings: FC = () => {
<GithubOutlined />
{t('settings.about.feedback.title')}
</SettingRowTitle>
<Button onClick={() => onOpenWebsite('https://github.com/kangfenmao/cherry-studio/issues/new')}>
<Button onClick={() => onOpenWebsite('https://github.com/kangfenmao/cherry-studio/issues/new/choose')}>
{t('settings.about.feedback.button')}
</Button>
</SettingRow>