-
Notifications
You must be signed in to change notification settings - Fork 311
Create issue templates #387
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: release/v0.4.2-rc
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,36 @@ | ||||||||||||
| --- | ||||||||||||
| name: Bug report | ||||||||||||
| about: Create a report to help us improve WireViz | ||||||||||||
| title: "[bug] " | ||||||||||||
| labels: 'bug' | ||||||||||||
| assignees: '' | ||||||||||||
|
|
||||||||||||
| --- | ||||||||||||
|
|
||||||||||||
| <!-- Please add a brief summary of your issue to the title above, after the | ||||||||||||
| "[bug]" prefix --> | ||||||||||||
|
|
||||||||||||
| **Describe the bug** | ||||||||||||
| A clear and concise description of what the bug is. | ||||||||||||
|
|
||||||||||||
| **To Reproduce** | ||||||||||||
| Steps to reproduce the behavior: | ||||||||||||
| 1. Go to '...' | ||||||||||||
| 2. Click on '....' | ||||||||||||
| 3. Scroll down to '....' | ||||||||||||
| 4. See error | ||||||||||||
|
|
||||||||||||
| **Expected behavior** | ||||||||||||
| A clear and concise description of what you expected to happen. | ||||||||||||
|
|
||||||||||||
| **Screenshots** | ||||||||||||
| If applicable, add screenshots to help explain your problem. | ||||||||||||
|
Comment on lines
+26
to
+27
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe also suggest copy of text output from WireViz in the terminal, including exception traceback and other error messages, any output file with unexpected contents, etc.? |
||||||||||||
|
|
||||||||||||
| **Desktop (please complete the following information):** | ||||||||||||
| - WireViz version: | ||||||||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
WireViz supports the -V option (since v0.2) |
||||||||||||
| - Graphviz version (`dot -V`): | ||||||||||||
| - Python version: (`python -V`): | ||||||||||||
| - Operating System and version: | ||||||||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Maybe you find a better way to write these alternatives to help the user to find the information we need?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. One option to be sure you get the info you need/want is to collect it yourselves. For example...
|
||||||||||||
|
|
||||||||||||
| **Additional context** | ||||||||||||
| Add any other context about the problem here. | ||||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| --- | ||
| name: Feature request | ||
| about: Suggest an idea for this project | ||
| title: "[feature] " | ||
| labels: 'enhancement' | ||
| assignees: '' | ||
|
|
||
| --- | ||
|
|
||
| <!-- Please add a brief summary of your request to the title above, after the | ||
| "[feature]" prefix --> | ||
|
|
||
| **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. | ||
|
|
||
| **Describe alternatives you've considered** | ||
| A clear and concise description of any alternative solutions or features you've considered. | ||
|
|
||
| **Additional context** | ||
| Add any other context or screenshots about the feature request here. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| --- | ||
| name: Documentation issue | ||
| about: Help us improve the WireViz documentation | ||
| title: "[doc] " | ||
| labels: 'documentation' | ||
| assignees: '' | ||
|
|
||
| --- | ||
| <!-- Please add a brief summary of your issue to the title above, after the | ||
| "[doc]" prefix --> | ||
|
|
||
| **What documentation page(s) does this involve?** | ||
| Links to the relevant documentation files, e.g. [docs/README.md][]. | ||
|
|
||
| **Describe the problem** | ||
| A clear and concise description of the documentation issue. | ||
|
|
||
| **Describe your suggested improvement** | ||
| A clear and concise summary of how the documentation could be better. | ||
|
|
||
| **Screenshots** | ||
| If applicable, add screenshots to help explain your problem. | ||
|
|
||
| **Additional context** | ||
| Add any other context about the problem here. | ||
|
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| blank_issues_enabled: true | ||
|
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| <!-- Where appropriate, prefix your issue title with one of these | ||
| category prefixes, followed by a space: | ||
|
|
||
| [internal] - When suggesting code improvements that don't change | ||
| any output. | ||
| [meta] - For issues about the development or contribution process. | ||
|
|
||
| For [bug], [feature], or [doc] issues, please use the corresponding | ||
| issue templates if possible, as they provide more guidance on what | ||
| information to include. --> | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These template steps seem to fit to a GUI application, but WireViz is more often used as a CLI tool or imported as a Python library. Maybe suggest a few alternative lists of steps so the user can use what fits best and delete the others?
Maybe also remind the user to supply other info according to CONTRIBUTING.md - e.g.
"The relevant input files unless (preferably) you can demonstrate the same issue using one of the example files. If your input file is large or complex, please try to find a smaller/simplified input that still can reproduce the same issue."