From c5478f3e61ddf11744855acdc933ac08a923ebb7 Mon Sep 17 00:00:00 2001 From: rpotter12 Date: Fri, 16 Aug 2019 18:48:07 +0530 Subject: [PATCH 01/12] adding pull request template --- PULL_REQUEST_TEMPLATE.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 PULL_REQUEST_TEMPLATE.md diff --git a/PULL_REQUEST_TEMPLATE.md b/PULL_REQUEST_TEMPLATE.md new file mode 100755 index 000000000..b087ab06c --- /dev/null +++ b/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,23 @@ + + +#### Checklist + +- [ ] There is a corresponding issue for this pull request. +- [ ] My branch is up-to-date with the Upstream `master` branch. +- [ ] I have added tests that prove my fix is effective or that my feature works +- [ ] I have added necessary documentation (if appropriate) + +#### Short description of what this resolves: + + +#### Changes proposed in this pull request: + +- +- +- + + + +Fixes # From 186e521131195c9214d5670e4e80f9346c97fc3f Mon Sep 17 00:00:00 2001 From: rpotter12 Date: Fri, 16 Aug 2019 18:48:48 +0530 Subject: [PATCH 02/12] adding issue templates --- ISSUE_TEMPLATE/bug_report.md | 32 +++++++++++++++++++++++++++++++ ISSUE_TEMPLATE/feature_request.md | 32 +++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100755 ISSUE_TEMPLATE/bug_report.md create mode 100755 ISSUE_TEMPLATE/feature_request.md diff --git a/ISSUE_TEMPLATE/bug_report.md b/ISSUE_TEMPLATE/bug_report.md new file mode 100755 index 000000000..1028dbaae --- /dev/null +++ b/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,32 @@ +--- +name: Bug report +about: Create a report to help us improve + +--- + +**I'm submitting a ...** (check one with "x") +- [x] bug report +- [ ] feature request + +**Actual Behaviour** + + + +**Expected Behaviour** + + + +**Steps to reproduce it** + + + +**System information:** + + +``` +Your operating system +``` + +**Would you like to work on the issue?** + + diff --git a/ISSUE_TEMPLATE/feature_request.md b/ISSUE_TEMPLATE/feature_request.md new file mode 100755 index 000000000..d05fcaef0 --- /dev/null +++ b/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,32 @@ +--- +name: Feature request +about: Suggest an idea for this project + +--- + +**I'm submitting a ...** (check one with "x") +- [ ] bug report +- [x] feature request + +**Actual Behaviour** + + + +**Expected Behaviour** + + + +**Steps to reproduce it** + + + +**System information:** + + +``` +Your operating system +``` + +**Would you like to work on the issue?** + + From 200916282ed8f613c3ab8916650b6a78814323db Mon Sep 17 00:00:00 2001 From: Jacob Hrbek Date: Sun, 18 Aug 2019 09:52:11 +0000 Subject: [PATCH 03/12] Moved in docs --- PULL_REQUEST_TEMPLATE.md => docs/PULL_REQUEST_TEMPLATE.md | 0 {ISSUE_TEMPLATE => docs}/bug_report.md | 0 {ISSUE_TEMPLATE => docs}/feature_request.md | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename PULL_REQUEST_TEMPLATE.md => docs/PULL_REQUEST_TEMPLATE.md (100%) rename {ISSUE_TEMPLATE => docs}/bug_report.md (100%) rename {ISSUE_TEMPLATE => docs}/feature_request.md (100%) diff --git a/PULL_REQUEST_TEMPLATE.md b/docs/PULL_REQUEST_TEMPLATE.md similarity index 100% rename from PULL_REQUEST_TEMPLATE.md rename to docs/PULL_REQUEST_TEMPLATE.md diff --git a/ISSUE_TEMPLATE/bug_report.md b/docs/bug_report.md similarity index 100% rename from ISSUE_TEMPLATE/bug_report.md rename to docs/bug_report.md diff --git a/ISSUE_TEMPLATE/feature_request.md b/docs/feature_request.md similarity index 100% rename from ISSUE_TEMPLATE/feature_request.md rename to docs/feature_request.md From 22268cc86dc2a552e951d24211fa388ea1a68bdb Mon Sep 17 00:00:00 2001 From: Jacob Hrbek Date: Sun, 18 Aug 2019 09:54:16 +0000 Subject: [PATCH 04/12] Added labels and assignees to bug format --- docs/bug_report.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/bug_report.md b/docs/bug_report.md index 1028dbaae..ad453f46b 100755 --- a/docs/bug_report.md +++ b/docs/bug_report.md @@ -1,5 +1,7 @@ --- name: Bug report +labels: bug-report "P3 - Normal" +assignees: kreyren nntoan about: Create a report to help us improve --- From 8896ef549dacbd413a007f23283d6f5275587014 Mon Sep 17 00:00:00 2001 From: Jacob Hrbek Date: Sun, 18 Aug 2019 09:56:56 +0000 Subject: [PATCH 05/12] Added title in bug format --- docs/bug_report.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/bug_report.md b/docs/bug_report.md index ad453f46b..74c41bfb2 100755 --- a/docs/bug_report.md +++ b/docs/bug_report.md @@ -1,4 +1,5 @@ --- +title: "BUG: " name: Bug report labels: bug-report "P3 - Normal" assignees: kreyren nntoan From 2506f5c69fdf93983d3c40b5c672c8146f5be5c4 Mon Sep 17 00:00:00 2001 From: Jacob Hrbek Date: Sun, 18 Aug 2019 09:58:15 +0000 Subject: [PATCH 06/12] better order of yaml for bug format --- docs/bug_report.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/bug_report.md b/docs/bug_report.md index 74c41bfb2..2b59ea6e6 100755 --- a/docs/bug_report.md +++ b/docs/bug_report.md @@ -1,9 +1,11 @@ --- -title: "BUG: " name: Bug report +about: Create a report to help us improve + +title: "BUG: " labels: bug-report "P3 - Normal" assignees: kreyren nntoan -about: Create a report to help us improve + --- From b4430964456cc2be6bb56d178779a3f3fa665138 Mon Sep 17 00:00:00 2001 From: Jacob Hrbek Date: Sun, 18 Aug 2019 09:58:44 +0000 Subject: [PATCH 07/12] Removed unnecesary glob --- docs/bug_report.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/bug_report.md b/docs/bug_report.md index 2b59ea6e6..015828d5f 100755 --- a/docs/bug_report.md +++ b/docs/bug_report.md @@ -9,10 +9,6 @@ assignees: kreyren nntoan --- -**I'm submitting a ...** (check one with "x") -- [x] bug report -- [ ] feature request - **Actual Behaviour** From 22d53bc7493e2635816af8e981b463fd7062ed62 Mon Sep 17 00:00:00 2001 From: Jacob Hrbek Date: Sun, 18 Aug 2019 09:59:27 +0000 Subject: [PATCH 08/12] Improved syntax of bug format --- docs/bug_report.md | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/docs/bug_report.md b/docs/bug_report.md index 015828d5f..7aa461f86 100755 --- a/docs/bug_report.md +++ b/docs/bug_report.md @@ -9,25 +9,14 @@ assignees: kreyren nntoan --- -**Actual Behaviour** - +### Actual Behaviour -**Expected Behaviour** - +### Expected Behaviour -**Steps to reproduce it** - +### Steps to reproduce it -**System information:** - +### System information: -``` -Your operating system -``` - -**Would you like to work on the issue?** - - From ffc9f45bd5b90188cbc7a1a1631ec558effbb678 Mon Sep 17 00:00:00 2001 From: Jacob Hrbek Date: Sun, 18 Aug 2019 09:59:50 +0000 Subject: [PATCH 09/12] Added spaces --- docs/bug_report.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/bug_report.md b/docs/bug_report.md index 7aa461f86..f9a0f511d 100755 --- a/docs/bug_report.md +++ b/docs/bug_report.md @@ -12,11 +12,17 @@ assignees: kreyren nntoan ### Actual Behaviour + + ### Expected Behaviour + + ### Steps to reproduce it + + ### System information: From a42e3d8048d0f73c396973c675f686d7d3dc05f3 Mon Sep 17 00:00:00 2001 From: Jacob Hrbek Date: Sun, 18 Aug 2019 10:01:05 +0000 Subject: [PATCH 10/12] Requesting verbose informations from end-user for a bug in bug format --- docs/bug_report.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/bug_report.md b/docs/bug_report.md index f9a0f511d..2ee2f4f34 100755 --- a/docs/bug_report.md +++ b/docs/bug_report.md @@ -20,7 +20,7 @@ assignees: kreyren nntoan ### Steps to reproduce it - + From fd62f4bad80afd67c5578881ff0516e6f243370d Mon Sep 17 00:00:00 2001 From: Jacob Hrbek Date: Sun, 18 Aug 2019 10:01:37 +0000 Subject: [PATCH 11/12] removed unnecessary spaces --- docs/bug_report.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/bug_report.md b/docs/bug_report.md index 2ee2f4f34..3addb8358 100755 --- a/docs/bug_report.md +++ b/docs/bug_report.md @@ -5,8 +5,6 @@ about: Create a report to help us improve title: "BUG: " labels: bug-report "P3 - Normal" assignees: kreyren nntoan - - --- ### Actual Behaviour From 85562ca40175f0d6336a40f70335de7885b82d27 Mon Sep 17 00:00:00 2001 From: Jacob Hrbek Date: Sun, 18 Aug 2019 10:04:43 +0000 Subject: [PATCH 12/12] rework of feature request --- docs/feature_request.md | 32 +++++++++----------------------- 1 file changed, 9 insertions(+), 23 deletions(-) diff --git a/docs/feature_request.md b/docs/feature_request.md index d05fcaef0..0b872e0d9 100755 --- a/docs/feature_request.md +++ b/docs/feature_request.md @@ -2,31 +2,17 @@ name: Feature request about: Suggest an idea for this project +title: "REQUEST: " +labels: feature-request "P3 - Normal" +assignees: kreyren nntoan --- -**I'm submitting a ...** (check one with "x") -- [ ] bug report -- [x] feature request +### Description/Abstract + -**Actual Behaviour** - +### Expected Behaviour + -**Expected Behaviour** - - - -**Steps to reproduce it** - - - -**System information:** - - -``` -Your operating system -``` - -**Would you like to work on the issue?** - - +### Actual behaviour (optional) +