-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a2f5c16
commit bf79cc0
Showing
2 changed files
with
94 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
name: "🐛 Bug Report / Bug反馈" | ||
description: | | ||
Report issues with FeatherMorph, like something is not working or appear to broken. | ||
反馈一个FeatherMorph的问题,像是有东西不工作或者坏掉了 | ||
title: "🐛 [BUG] - <title>" | ||
labels: [ | ||
"bug" | ||
] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: >- | ||
Before you open an issue, please make sure that... | ||
1. You're running a supported version of FeatherMorph, either the latest or the latest LTS (If we have one) | ||
2. You're running the latest version of Paper/Folia, outdated server software may have missing APIs | ||
3. There ISN'T have a hot load/reload for FeatherMorph on the server | ||
--- | ||
在你开新的issue前,请确保... | ||
1. 你正在运行受支持的 FeatherMorph 版本,最新或最新LTS(如果我们有的话) | ||
2. 你正在运行最新版 Paper/Folia,过期的服务端可能会存在API缺失 | ||
3. 你**没有**对FeatherMorph进行过热加载/重载 | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: "Description / 描述" | ||
description: | | ||
Describe the issue you have encountered | ||
描述你遇到的问题 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: log-file | ||
attributes: | ||
label: "Log file / 日志文件" | ||
description: A log file that's related to this issue / 一个与此问题相关的日志 | ||
placeholder: We recommend using https://mclo.gs to paste the log file / 我们建议使用 https://mclo.gs 粘贴日志文件 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: "Reproduction steps / 复现步骤" | ||
description: How can we reproduce this issue? 如何复现此问题? | ||
value: | | ||
1. ... | ||
2. ... | ||
3. ... | ||
4. See error | ||
render: bash | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: server-software | ||
attributes: | ||
label: "Server software / 服务端" | ||
description: Which server software do you use? 你正在使用哪个服务端? | ||
multiple: true | ||
options: | ||
- Paper | ||
- Folia | ||
- Hybrid software (Arclight, Mohist etc.) | ||
- Other | ||
validations: | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please note that we DON'T support hybrid servers like Mohist, issues about running on such servers would likely not get solved! | ||
请注意我们不支持Mohist这样的模组端,任何在模组端上运行出现的问题很可能不会得到解决! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: "🌌️ Feature Request / 功能请求" | ||
description: | | ||
File a new feature request | ||
发起一个功能请求 | ||
title: "🌌️ [FR] - <title>" | ||
labels: [ | ||
"enhancement" | ||
] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
For disguising as non-living entities (blocks, display entities etc.), see [here](https://github.com/NiFeather/FeatherMorph/discussions/24). | ||
tldr: It's not supported by our current disguise renderer as it isn't designed for these, currently you can use LibsDisguises as an alternative :) | ||
--- | ||
如果是关于伪装成非生物实体(像是方块、展示实体),请参阅[这里](https://github.com/NiFeather/FeatherMorph/discussions/24) | ||
长话短说就是:当前的伪装渲染器不支持此类功能,因为它并不是为了这些设计的。当前你可以使用LibsDisguises来实现这些功能 :) | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: "Description / 描述" | ||
description: | | ||
Describe the feature that you are looking for. / 描述你想看到实装在插件中的功能。 | ||
validations: | ||
required: true |