-
-
Notifications
You must be signed in to change notification settings - Fork 45
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
1 changed file
with
16 additions
and
12 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 |
---|---|---|
@@ -1,20 +1,24 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
title: "[Enhancement] YOUR IDEA!" | ||
--- | ||
|
||
**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 [...] | ||
## Summary | ||
Please provide a brief summary of your proposal. Two to three sentences is best here. | ||
|
||
## API Changes | ||
|
||
Include a list of all API changes, additions, subtractions as would be required by your proposal. These APIs should be considered placeholders, so the naming is not as important as getting the concepts correct. If possible you should include some "example" code of usage of your new API. | ||
|
||
e.g. | ||
|
||
In order to facilitate the new Shiny Button api, a bool is added to the Button class. This is done as a bool because it is simpler to data bind and other reasons... | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
var button = new Button (); | ||
button.MakeShiny = true; // new API | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
The MakeShiny API works even if the button is already visible. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. | ||
## Intended Use Case | ||
Provide a detailed example of where your proposal would be used and for what purpose. |