Updated templates, added pull request template.
parent
e7670c0bcc
commit
887712a6f1
@ -1,7 +1,12 @@
|
||||
(Please carefully read guidelines in [CONTRIBUTING.md](https://github.com/ocornut/imgui/blob/master/.github/CONTRIBUTING.md) then delete this line)
|
||||
You may use the Issue tracker to ask for help, submit bug reports, feature requests or suggestions.
|
||||
Please carefully read this document before doing so:
|
||||
[CONTRIBUTING.md](https://github.com/ocornut/imgui/blob/master/.github/CONTRIBUTING.md).
|
||||
|
||||
You can include code this way:
|
||||
You can include code snippets using `Begin()` for short in-line snippets, or:
|
||||
```cpp
|
||||
ImGui::Begin("Hello");
|
||||
ImGui::ThisIsMoreCode();
|
||||
```
|
||||
For multiline snippets.
|
||||
|
||||
(Clear this form before submitting your issue)
|
||||
|
@ -0,0 +1,5 @@
|
||||
- If you are adding a feature, please explain the context of the change: what do you need the feature for?
|
||||
- Make sure you create a branch for the pull request. In Git, 1 PR is associated to 1 branch. If you keep pushing to the same branch after you submitted the PR, your new commits will appear in the PR.
|
||||
- You can read [CONTRIBUTING.md](https://github.com/ocornut/imgui/blob/master/.github/CONTRIBUTING.md) for more details.
|
||||
|
||||
(Clear this form before submitting your PR)
|
Loading…
Reference in New Issue