From 16db5c8664d5b7d1d72e660034db8a2a806b9181 Mon Sep 17 00:00:00 2001 From: ElKowar <5300871+elkowar@users.noreply.github.com> Date: Sun, 25 Oct 2020 12:16:35 +0100 Subject: [PATCH] Add issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 21 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 17 +++++++++++++++++ .github/ISSUE_TEMPLATE/widget-request.md | 23 +++++++++++++++++++++++ 3 files changed, 61 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/widget-request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..42a5d02 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,21 @@ +--- +name: Bug report +about: Report a bug you have encountered +title: "[BUG] " +labels: bug +assignees: '' + +--- + +## Describe the bug +A clear and concise description of what the bug is. + +## Reproducing the issue +Please provide a clear and and minimal description of how to reproduce the bug. +If possible, provide a simple example configuration that shows the issue. + +## Expected behaviour +A clear and concise description of what you expected to happen. + +## Additional context +If applicable, provide additional context or screenshots here diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..09c9a8f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,17 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: "[FEATURE] " +labels: enhancement +assignees: '' + +--- + +## Description of the requested feature +Give a clear and concise description of the feature you are proposing, including examples for when it would be useful. + +## Proposed configuration syntax +If the feature you are requesting would add or change something to the Eww configuration, please provide an example for how the feature could be used. + +# Additional context +Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/widget-request.md b/.github/ISSUE_TEMPLATE/widget-request.md new file mode 100644 index 0000000..7da309a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/widget-request.md @@ -0,0 +1,23 @@ +--- +name: Widget request +about: Request a new Widget +title: "[WIDGET] " +labels: widget-request +assignees: '' + +--- + +## Description of the widget +Provide an explanation of the widget. + +## Implementation proposal +If applicable, describe which GTK-widgets this widget would be based on. A gallery of GTK widgets can be found [here](https://developer.gnome.org/gtk3/stable/ch03.html). + +Please include links to the respective GTK documentation pages. + +## Example usage +Provide an example snippet of configuration showcasing how the widget could be used, including the attributes the widget should support. +For anything non-obvious, include an explanation of how the properties should behave. + +## Additional Context +Provide any additional context if applicable.