From c558123cb2994aa27abad378ed19d42d0cb24b67 Mon Sep 17 00:00:00 2001 From: Stephanie Anderl <46726333+sanderl@users.noreply.github.com> Date: Mon, 11 Feb 2019 11:21:42 -0800 Subject: [PATCH 1/6] Added Bug Report and Feature Request Issue Templates Updated the default Bug Report template to customize the Device and Application information section. The Feature Request template is the default one. --- .github/ISSUE_TEMPLATE/bug_report.md | 32 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 ++++++++++++++ 2 files changed, 52 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 00000000..17838a21 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,32 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**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** +If applicable, add screenshots to help explain your problem. + +**Device and Application Information (please complete the following information):** + - OS Build Number: + - Architecture: + - Application Version Number: + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..bbcbbe7d --- /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. From 6afad0b7da8b8e5559eb5cdb2966b09d703e8fc8 Mon Sep 17 00:00:00 2001 From: Stephanie Anderl <46726333+sanderl@users.noreply.github.com> Date: Mon, 11 Feb 2019 11:35:28 -0800 Subject: [PATCH 2/6] Updated feature_request.md to link to NewFeatureRequest.md --- .github/ISSUE_TEMPLATE/feature_request.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index bbcbbe7d..7feb6992 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -7,6 +7,9 @@ assignees: '' --- +**Please describe your feature request.** +*For more information see the [NewFeatureProcess.md](../../docs/NewFeatureProcess.md)* + **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 [...] From 82cfa338d4b2c009cb821bc7b5f332abb80de0cd Mon Sep 17 00:00:00 2001 From: Stephanie Anderl <46726333+sanderl@users.noreply.github.com> Date: Wed, 13 Feb 2019 10:57:13 -0800 Subject: [PATCH 3/6] Added a before filing section and updated the device info section to inlcude the powershell commands to get the info --- .github/ISSUE_TEMPLATE/bug_report.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 17838a21..3000313f 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -6,6 +6,9 @@ labels: '' assignees: '' --- +**Before filing a bug** +- Ensure the bug reproduces on the latest version of the app. +- Search existing issues and make sure this issue is not already filed. **Describe the bug** A clear and concise description of what the bug is. @@ -28,5 +31,10 @@ If applicable, add screenshots to help explain your problem. - Architecture: - Application Version Number: + Run the following commands in Powershell and copy/paste the output. + - OS Build: "$([Environment]::OSVersion.Version)" + - Architecture: "$((Get-AppxPackage -Name Microsoft.WindowsCalculator).Architecture)" + - Application Version: "$((Get-AppxPackage -Name Microsoft.WindowsCalculator).Version)" + **Additional context** Add any other context about the problem here. From e0ae35560d9e6ed825e58198a27df1a7dcd4d52d Mon Sep 17 00:00:00 2001 From: Stephanie Anderl <46726333+sanderl@users.noreply.github.com> Date: Thu, 14 Feb 2019 14:31:22 -0800 Subject: [PATCH 4/6] updated issue templates to put placeholder text in comments --- .github/ISSUE_TEMPLATE/bug_report.md | 22 +++++++++++----------- .github/ISSUE_TEMPLATE/feature_request.md | 10 +++++----- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 3000313f..1ef22a72 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -6,35 +6,35 @@ labels: '' assignees: '' --- -**Before filing a bug** + **Describe the bug** -A clear and concise description of what the bug is. + -**To Reproduce** -Steps to reproduce the behavior: +**Steps To Reproduce** + **Expected behavior** -A clear and concise description of what you expected to happen. + **Screenshots** -If applicable, add screenshots to help explain your problem. + **Device and Application Information (please complete the following information):** - OS Build Number: - Architecture: - Application Version Number: - Run the following commands in Powershell and copy/paste the output. + **Additional context** -Add any other context about the problem here. + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 7feb6992..f5b947eb 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -8,16 +8,16 @@ assignees: '' --- **Please describe your feature request.** -*For more information see the [NewFeatureProcess.md](../../docs/NewFeatureProcess.md)* + **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. + From 99a60dddc5a4d1af4374b92232ea8c94afa95cad Mon Sep 17 00:00:00 2001 From: Stephanie Anderl <46726333+sanderl@users.noreply.github.com> Date: Wed, 20 Feb 2019 10:05:21 -0800 Subject: [PATCH 5/6] removed 'the' before the link to the NewFeatureRequest.md link --- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index f5b947eb..035dc234 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -8,7 +8,7 @@ assignees: '' --- **Please describe your feature request.** - + **Is your feature request related to a problem? Please describe.** From 73e685fe53925a22c5bb4513ede1facd2221112d Mon Sep 17 00:00:00 2001 From: Stephanie Anderl <46726333+sanderl@users.noreply.github.com> Date: Wed, 20 Feb 2019 14:25:01 -0800 Subject: [PATCH 6/6] Added space after NewFeatureRequest.md link to make it easier to copy --- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 035dc234..a2641fa8 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -8,7 +8,7 @@ assignees: '' --- **Please describe your feature request.** - + **Is your feature request related to a problem? Please describe.**