-
Notifications
You must be signed in to change notification settings - Fork 138
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
Showing
3 changed files
with
144 additions
and
21 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,101 @@ | ||
name: Bug report | ||
description: Submit a new bug report. | ||
labels: [bug] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## This issue tracker is only for technical issues related to Vertcoin OCM. | ||
* General Vertcoin questions and/or support requests should reach out in one of the Vertcoin forums. See more here https://vertcoin.org/community/. | ||
* For reporting security issues, please reach out to the project maintainers or other members of the Vertcoin Github Organization | ||
---- | ||
- type: checkboxes | ||
attributes: | ||
label: Is there an existing issue for this? | ||
description: Please search to see if an issue already exists for the bug you encountered. | ||
options: | ||
- label: I have searched the existing issues | ||
required: true | ||
type: checkboxes | ||
attributes: | ||
label: Did you read [Common issues and fixes](https://github.com/vertcoin-project/one-click-miner-vnext/issues/618)?. | ||
options: | ||
- label: Yes / Not relevant | ||
required: true | ||
- type: textarea | ||
id: current-behaviour | ||
attributes: | ||
label: Current behaviour | ||
description: Tell us what went wrong. Add pictures if relevant. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-behaviour | ||
attributes: | ||
label: Expected behaviour | ||
description: Tell us what you expected to happen | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction-steps | ||
attributes: | ||
label: Steps to reproduce | ||
description: | | ||
Tell us how to reproduce your bug. Please attach related screenshots if necessary. | ||
* Run-time or compile-time configuration options | ||
* Actions taken | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: | | ||
Please copy and paste any relevant log output or attach a debug.log file. | ||
You can find the debug.log in your OCM's data directory: Windows: `%appdata%\vertcoin-ocm`or Linux: `.vertcoin-ocm` | ||
Please be aware that the debug log might contain identifying information. | ||
validations: | ||
required: false | ||
- type: dropdown | ||
attributes: | ||
label: How did you obtain Vertcoin OCM? | ||
multiple: false | ||
options: | ||
- Pre-built binaries | ||
- Compiled from source | ||
- Other | ||
validations: | ||
required: true | ||
- type: input | ||
id: ocm-version | ||
attributes: | ||
label: What version of Vertcoin OCM are you using? | ||
description: When OCM is running, the version is listed at the bottom. | ||
placeholder: e.g. v2.2-beta3 or master@e1bf547 | ||
validations: | ||
required: true | ||
- type: input | ||
id: os | ||
attributes: | ||
label: Operating system and version | ||
placeholder: e.g. "Windows 10" or "Ubuntu 22.04 LTS" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: machine-specs | ||
attributes: | ||
label: Machine specifications | ||
description: | | ||
What are the specifications of the host machine? | ||
e.g. CPU and GPU | ||
If building OCM from source please supply used versions of required dependencies. | ||
eg. GO version, NPM version and NodeJS version. | ||
For the GUI-related issue on Linux provide names and versions of a distro, a desktop environment and a graphical shell (if relevant). | ||
validations: | ||
required: false |
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,43 @@ | ||
name: Feature Request | ||
description: Suggest an idea for this project. | ||
labels: [feature] | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Is there an existing feature request for this? | ||
description: Please search to see if a feature request already exists. | ||
options: | ||
- label: I have searched for existing feature requests | ||
required: true | ||
- type: textarea | ||
id: feature | ||
attributes: | ||
label: Please describe the feature you'd like to see added. | ||
description: Attach screenshots or logs if applicable. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: related-problem | ||
attributes: | ||
label: Is your feature related to a problem, if so please describe it. | ||
description: Attach screenshots or logs if applicable. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Describe the solution you'd like | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Describe any alternatives you've considered | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Please leave any additional context | ||
validations: | ||
required: false |