From 98409d47376a44bd04e57e04d22ba779f48f2234 Mon Sep 17 00:00:00 2001 From: Jonathan Hoffstadt Date: Fri, 9 Jul 2021 14:34:58 -0500 Subject: [PATCH] added bug report and feature request issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 64 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 +++++++ 2 files changed, 84 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..466a1e1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,64 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +1. PLEASE CAREFULLY READ: [Wiki](https://github.com/Nelarius/imnodes/wiki) + +2. PLEASE MAKE SURE that you have: read the comments in [imnodes.h](https://github.com/Nelarius/imnodes/blob/master/imnodes.h); explored the [example](https://github.com/Nelarius/imnodes/tree/master/example); searched among Issues; and read the link provided in (1). + +3. Be mindful that messages are being sent to the e-mail box of "Watching" users. Try to proof-read your messages before sending them. Edits are not seen by those users. + +4. Delete points 1-4 and PLEASE FILL THE TEMPLATE BELOW before submitting your issue or we will immediately close it. + +Thank you! + +---- + +## Version of imnodes + +Version (or commit): XXX +Operating System: XXX (Windows 10, macOs xx, Ubuntu 20.04, etc.) +Graphics API: XXX (Directx11, Metal, OpenGL 3, etc.) + +## My Issue/Question + +A clear and concise description of what the issue/question is. Please provide as much context as possible. + +## 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/Video + +XXX _(you can drag files here)_ + +## Standalone, minimal, complete and verifiable example + +```cpp +// Here's some code anyone can copy and paste to reproduce your issue +ImGui::Begin("Testing"); + + imnodes::BeginNodeEditor(); + + imnodes::BeginNode(53); + ImGui::Dummy(ImVec2(80.0f, 45.0f)); + imnodes::EndNode(); + + imnodes::EndNodeEditor(); + + +ImGui::End(); +``` diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..bbcbbe7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' + +--- + +**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.