From d9bc0e1dea455c7932664368a29a111aa7358eb9 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 4 Mar 2021 16:44:20 +0100 Subject: [PATCH 1/4] Add new bugreport & template --- .github/ISSUE_TEMPLATE/bugreport.yaml | 68 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/featurerequest.yaml | 46 +++++++++++++++ 2 files changed, 114 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bugreport.yaml create mode 100644 .github/ISSUE_TEMPLATE/featurerequest.yaml diff --git a/.github/ISSUE_TEMPLATE/bugreport.yaml b/.github/ISSUE_TEMPLATE/bugreport.yaml new file mode 100644 index 0000000000..313cce6be9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bugreport.yaml @@ -0,0 +1,68 @@ +name: Bug report +about: Create a report to help us fix issues. +labels: "Type: Bug" +issue_body: true +body: +- type: markdown + attributes: + value: | + **Thank you for using Cura and wanting to report a bug.** + + Before filing, please check if the issue already exists (either open or closed) by using the search bar on the issues page. If it does, comment there. Even if it's closed, we can reopen it based on your comment. + + Also, please note the application version in the title of the issue "For example (3.2.1) Cannot connect to 3rd-party printer". Please do not write things like **Request** or **BUG** in the title, this is what labels are for. +- type: input + attributes: + label: Application Version + description: The version of Cura this issue occurs with. + placeholder: 4.8.0 + validations: + required: true +- type: input + attributes: + label: Platform + description: Information about the operating system the issue occurs on. Include at least the operating system and maybe GPU. + placeholder: Windows 10 + validations: + required: true +- type: input + attributes: + label: Printer + description: Which printer was selected in Cura? + placeholder: Ultimaker S5 + validations: + required: true +- type: textarea + attributes: + label: Reproduction steps + description: Tell us what you did! + placeholder: | + 1. Something you did + 2. Something you did next + validations: + required: true +- type: textarea + attributes: + label: Actual results + description: What happens after the above steps have been followed. + validations: + required: true +- type: textarea + attributes: + label: Expected results + description: What should happen after the above steps have been followed. + validations: + required: true +- type: markdown + attributes: + value: | + ## Additional information & file uploads + + Please be sure to add the following files: + * A **project file** that clearly shows the bug. + To save a project file go to `File -> Save project`. Please make sure to .zip your project file. For big files you may need to use WeTransfer or similar file sharing sites. + G-code files are not project files! + * **Screenshots** of showing the problem, perhaps before/after images. + * A **log file**, see [here](https://github.com/Ultimaker/Cura#logging-issues) how to find the log file. + + You can add these files and additional information that is relevant to the issue in the comments below. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/featurerequest.yaml b/.github/ISSUE_TEMPLATE/featurerequest.yaml new file mode 100644 index 0000000000..6e2dc5bc07 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/featurerequest.yaml @@ -0,0 +1,46 @@ +name: Feature request +about: Suggest an idea for this project. +labels: "Type: New Feature" +issue_body: true +body: +- type: markdown + attributes: + value: | + **Thank you for using Cura and wanting to suggest a new feature.** + + Before filing, please check if the feature request already exists (either open or closed) by using the search bar on the issues page. If it does, comment there. Even if it's closed, we can reopen it based on your comment. + + Please do not write things like **Request** or **BUG** in the title, this is what labels are for. +- type: textarea + attributes: + label: Is your feature request related to a problem? + description: Please describe a clear and concise description of what the problem is. + placeholder: I'm always frustrated when... + validations: + required: true +- type: textarea + attributes: + label: Describe the solution you'd like + description: A clear and concise description of what you want to happen. If possible, describe why you think this is a good solution. + placeholder: I believe this will solve... + validations: + required: true +- type: textarea + attributes: + label: Describe alternatives you've considerd + description: A clear and concise description of any alternative solutions or features you've considered. Again, if possible, think about why these alternatives are not working out. + placeholder: The alternatives I've considered are... + validations: + required: true +- type: textarea + attributes: + label: Affected users and/or printers + description: Who do you think will benefit from this? Is everyone going to benefit from these changes? Or specific kinds of users? + placeholder: It will affect... + validations: + required: true +- type: markdown + attributes: + value: | + ## Additional information & file uploads + You can add pictures or files to visualize your feature request in the comments below. \ No newline at end of file From 301a571a08aa5e74d712b6eadc2be957d4931a32 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 4 Mar 2021 16:46:18 +0100 Subject: [PATCH 2/4] Remove old bug templates --- .github/ISSUE_TEMPLATE/bug-report.md | 49 ----------------------- .github/ISSUE_TEMPLATE/feature_request.md | 23 ----------- 2 files changed, 72 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug-report.md delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md deleted file mode 100644 index b3fc10a5c1..0000000000 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -name: Bug report -about: Create a report to help us fix issues. -title: '' -labels: 'Type: Bug' -assignees: '' - ---- - - - -**Application version** -(The version of the application this issue occurs with.) - -**Platform** -(Information about the operating system the issue occurs on. Include at least the operating system and maybe GPU.) - -**Printer** -(Which printer was selected in Cura?) - -**Reproduction steps** -1. (Something you did.) -2. (Something you did next.) - -**Screenshot(s)** -(Image showing the problem, perhaps before/after images.) - -**Actual results** -(What happens after the above steps have been followed.) - -**Expected results** -(What should happen after the above steps have been followed.) - -**Project file** -(For slicing bugs, provide a project which clearly shows the bug, by going to File->Save Project. For big files you may need to use WeTransfer or similar file sharing sites. G-code files are not project files!) - -**Log file** -(See https://github.com/Ultimaker/Cura#logging-issues to find the log file to upload, or copy a relevant snippet from it.) - -**Additional information** -(Extra information relevant to the issue.) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index a10d664a04..0000000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: 'Type: New Feature' -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** -(A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]) - -**Describe the solution you'd like** -(A clear and concise description of what you want to happen. If possible, describe why you think this is a good solution.) - -**Describe alternatives you've considered** -(A clear and concise description of any alternative solutions or features you've considered. Again, if possible, think about why these alternatives are not working out.) - -**Affected users and/or printers** -(Who do you think will benefit from this? Is everyone going to benefit from these changes? Or specific kinds of users?) - -**Additional context** -(Add any other context or screenshots about the feature request here.) From 25834936388c4312af18406ff22d2b4bc88d7b73 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 4 Mar 2021 16:47:49 +0100 Subject: [PATCH 3/4] CHange name of template so that it's unique --- .github/ISSUE_TEMPLATE/bugreport.yaml | 4 ++-- .github/ISSUE_TEMPLATE/featurerequest.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bugreport.yaml b/.github/ISSUE_TEMPLATE/bugreport.yaml index 313cce6be9..2d9d2849a1 100644 --- a/.github/ISSUE_TEMPLATE/bugreport.yaml +++ b/.github/ISSUE_TEMPLATE/bugreport.yaml @@ -1,4 +1,4 @@ -name: Bug report +name: BugReport about: Create a report to help us fix issues. labels: "Type: Bug" issue_body: true @@ -65,4 +65,4 @@ body: * **Screenshots** of showing the problem, perhaps before/after images. * A **log file**, see [here](https://github.com/Ultimaker/Cura#logging-issues) how to find the log file. - You can add these files and additional information that is relevant to the issue in the comments below. \ No newline at end of file + You can add these files and additional information that is relevant to the issue in the comments below. diff --git a/.github/ISSUE_TEMPLATE/featurerequest.yaml b/.github/ISSUE_TEMPLATE/featurerequest.yaml index 6e2dc5bc07..7d9aafee33 100644 --- a/.github/ISSUE_TEMPLATE/featurerequest.yaml +++ b/.github/ISSUE_TEMPLATE/featurerequest.yaml @@ -1,4 +1,4 @@ -name: Feature request +name: FeatureRequest about: Suggest an idea for this project. labels: "Type: New Feature" issue_body: true @@ -43,4 +43,4 @@ body: attributes: value: | ## Additional information & file uploads - You can add pictures or files to visualize your feature request in the comments below. \ No newline at end of file + You can add pictures or files to visualize your feature request in the comments below. From 258313d192687ac63ac11c1ab8887ad83a20c551 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 4 Mar 2021 16:49:25 +0100 Subject: [PATCH 4/4] Swap out depricated tag --- .github/ISSUE_TEMPLATE/bugreport.yaml | 2 +- .github/ISSUE_TEMPLATE/featurerequest.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bugreport.yaml b/.github/ISSUE_TEMPLATE/bugreport.yaml index 2d9d2849a1..93c3dcaa39 100644 --- a/.github/ISSUE_TEMPLATE/bugreport.yaml +++ b/.github/ISSUE_TEMPLATE/bugreport.yaml @@ -1,5 +1,5 @@ name: BugReport -about: Create a report to help us fix issues. +description: Create a report to help us fix issues. labels: "Type: Bug" issue_body: true body: diff --git a/.github/ISSUE_TEMPLATE/featurerequest.yaml b/.github/ISSUE_TEMPLATE/featurerequest.yaml index 7d9aafee33..af475e9aeb 100644 --- a/.github/ISSUE_TEMPLATE/featurerequest.yaml +++ b/.github/ISSUE_TEMPLATE/featurerequest.yaml @@ -1,5 +1,5 @@ name: FeatureRequest -about: Suggest an idea for this project. +description: Suggest an idea for this project. labels: "Type: New Feature" issue_body: true body: