-
Notifications
You must be signed in to change notification settings - Fork 293
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update template for new bug and feature
- Loading branch information
Showing
5 changed files
with
102 additions
and
51 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,60 @@ | ||
name: Bug Report | ||
description: Create a report to help us to fix the issue | ||
labels: ["Type: Bug", "triage"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: Describe the bug. What happened? | ||
description: Also tell us, what did you expect to happen? | ||
placeholder: Tell us what you see! | ||
value: "A clear and concise description of what you observe. If applicable, add screenshots to illustrate your problem. | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: version | ||
attributes: | ||
label: Weasis Version | ||
description: What version of Weasis are you running? | ||
options: | ||
- current SNAPSHOT from github | ||
- modified version | ||
- latest release | ||
- previous release 4.x | ||
- previous release 3.x | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: system | ||
attributes: | ||
label: On which system the problem occurs? | ||
multiple: true | ||
options: | ||
- Windows | ||
- Linux | ||
- macOS | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant [log output from Weasis](https://nroduit.github.io/en/tutorials/logging/) or from the DICOM archive. | ||
render: shell | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional contextual elements | ||
description: Add more contextual information about the problem (e.g. for network issue, give information about anti-virus or network security software, firewall, proxy...). | ||
placeholder: Contextual elements | ||
value: "List of contextual elements (e.g. OS version, type of Weasis installer, Graphic card, OpenGL version...)" | ||
|
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 |
---|---|---|
@@ -1,8 +1,11 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Frequently Asked Questions (FAQs) | ||
url: https://nroduit.github.io/en/faq | ||
about: Frequently Asked Questions (FAQs) on Weasis | ||
- name: Questions or ideas | ||
url: https://github.com/nroduit/Weasis/discussions | ||
about: if you have questions, ideas or if you want to tell something about Weasis | ||
- name: Google group | ||
url: https://groups.google.com/g/dcm4che | ||
about: Discussion about dcm4chee and Weasis | ||
about: Questions and discussions about dcm4che and Weasis |
This file was deleted.
Oops, something went wrong.
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,38 @@ | ||
name: "Feature Request" | ||
description: Suggest an idea, a feature or an enhancement | ||
labels: ["Type: Feature", "triage"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to request a new feature! | ||
- type: textarea | ||
attributes: | ||
label: Is your feature request related to a problem? (optional) | ||
placeholder: A clear and concise description of what the issue is. Ex. I'm always frustrated when [...] | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Description of the new feature/enhancement | ||
placeholder: A clear and concise description of what you want to see or to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Proposed technical implementation details (optional) | ||
placeholder: Suggest how this might be implemented. | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Describe alternatives you've considered (optional) | ||
placeholder: A clear and concise description of any alternative solutions or features you've considered. | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Additional context (optional) | ||
placeholder: Add any other contextual information or screenshots about the feature request here. | ||
validations: | ||
required: false |