-
Notifications
You must be signed in to change notification settings - Fork 10
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
7 changed files
with
258 additions
and
82 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 @@ | ||
blank_issues_enabled: false |
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,58 @@ | ||
name: Feature or Enhancement Request | ||
about: Open an issue to give request a feature or engine enhancement. | ||
title: "[New Feature] Your new feature request title here" | ||
labels: [new-feature] | ||
assignees: '' | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to post a new feature or enhancement request. | ||
|
||
Please follow these instructions and fill in every question with as much detial as possible. | ||
|
||
__NOTE: Please do not remove the `[New Feature]` prefix from the issue title, this helps us with filtering issues.__ | ||
|
||
- type: checkboxes | ||
id: checks | ||
attributes: | ||
label: First Check | ||
description: Please confirm and check all the following options. | ||
options: | ||
- label: I added a very descriptive title to this issue. | ||
required: true | ||
- label: I used the GitHub search to find a similar issue and didn't find it. | ||
required: true | ||
- label: I have attached as much information as possible (screenshots, debug logs, etc). | ||
required: true | ||
|
||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: | | ||
Describe your new feature or enhancement request here. Please use as much detail as possible. | ||
|
||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: implementation | ||
attributes: | ||
label: Example Code | ||
implementation: | | ||
Tell us how this new feature could be implemented, using any example INI code, etc. | ||
placeholder: | | ||
For example; | ||
|
||
[GAPOWR] | ||
NewFeatureValue=500 | ||
render: ini | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional Context | ||
description: Add any additional context information, screenshots, images, videos, debug logs, and/or exception files you think would be useful. |
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,94 @@ | ||
name: Vanilla Bugfix Request | ||
about: Open an issue to request a vanilla bug to be fixed. | ||
title: "[Vanilla Bug] Your bug report title here" | ||
labels: [vanilla-bug] | ||
assignees: '' | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to report a vanilla Tiberian Sun bug. | ||
|
||
Please follow these instructions and fill in every question with as much detial as possible. | ||
|
||
__NOTE: Please do not remove the `[Vanilla Bug]` prefix from the issue title, this helps us with filtering issues.__ | ||
|
||
- type: checkboxes | ||
id: checks | ||
attributes: | ||
label: First Check | ||
description: Please confirm and check all the following options. | ||
options: | ||
- label: I added a very descriptive title to this issue. | ||
required: true | ||
- label: I used the GitHub search to find a similar issue and didn't find it. | ||
required: true | ||
- label: I have attached as much information as possible (screenshots, debug logs, etc). | ||
required: true | ||
|
||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: | | ||
What is the bug, issue, or crash? | ||
|
||
Write a detailed description telling us what the issue is. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: examplecode | ||
attributes: | ||
label: Example Code | ||
examplecode: | | ||
Any INI code or external changes that are required to reproduce the bug. | ||
placeholder: | | ||
For example; | ||
|
||
[GAPOWR] | ||
Cost=500 | ||
render: ini | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: Steps To Reproduce | ||
steps: | | ||
Tell us how to reproduce this issue so the developer(s) can reproduce the bug. | ||
placeholder: | | ||
For example; | ||
|
||
1. Start a skirmish game. | ||
2. Build a power plant. | ||
3. Save the game. | ||
etc. | ||
|
||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected Behaviour | ||
expected: | | ||
Tell us what should happen. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: actual | ||
attributes: | ||
label: Actual Behaviour | ||
actual: | | ||
Tell us what happens instead. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional Context | ||
description: Add any additional context information, screenshots, images, videos, debug logs, and/or exception files you think would be useful. |
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,105 @@ | ||
name: Vinifera Bugfix Request | ||
about: Open an issue to ask for a Vinifera bug to be fixed. | ||
title: "[Vinifera Bug] Your bug report title here" | ||
labels: [vinifera-bug] | ||
assignees: '' | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to report a Vinifera bug. | ||
|
||
Please follow these instructions and fill in every question with as much detial as possible. | ||
|
||
__NOTE: Please do not remove the `[Vinifera Bug]` prefix from the issue title, this helps us with filtering issues.__ | ||
|
||
- type: checkboxes | ||
id: checks | ||
attributes: | ||
label: First Check | ||
description: Please confirm and check all the following options. | ||
options: | ||
- label: I added a very descriptive title to this issue. | ||
required: true | ||
- label: I used the GitHub search to find a similar issue and didn't find it. | ||
required: true | ||
- label: I have attached as much information as possible (screenshots, debug logs, etc). | ||
required: true | ||
|
||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: | | ||
What is the bug, issue, or crash? | ||
|
||
Write a detailed description telling us what the issue is. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: examplecode | ||
attributes: | ||
label: Example Code | ||
examplecode: | | ||
Any INI code or external changes that are required to reproduce the bug. | ||
placeholder: | | ||
For example; | ||
|
||
[GAPOWR] | ||
Cost=500 | ||
render: ini | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: Steps To Reproduce | ||
steps: | | ||
Tell us how to reproduce this issue so the developer(s) can reproduce the bug. | ||
placeholder: | | ||
For example; | ||
|
||
1. Start a skirmish game. | ||
2. Build a power plant. | ||
3. Save the game. | ||
etc. | ||
|
||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected Behaviour | ||
expected: | | ||
Tell us what should happen. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: actual | ||
attributes: | ||
label: Actual Behaviour | ||
actual: | | ||
Tell us what happens instead. | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: vinifera-version | ||
attributes: | ||
label: Version | ||
description: | | ||
What version of Vinifera are you using? | ||
|
||
You can find the Vinifera version on the bottom right of the main menu. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional Context | ||
description: Add any additional context information, screenshots, images, videos, debug logs, and/or exception files you think would be useful. |