├── .github └── ISSUE_TEMPLATE │ ├── Bug_Report.md │ ├── Feature.md │ └── Question.md └── README.md /.github/ISSUE_TEMPLATE/Bug_Report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug Report 3 | about: Report a bug 4 | labels: bug 5 | --- 6 | 7 | ## Bug Description 8 | 9 | ### Reproduction steps 10 | 11 | ### Expected Outcome 12 | 13 | ### Browser 14 | 15 | Include browser name and version 16 | 17 | ### OS 18 | 19 | Include OS name and version 20 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature 3 | about: Suggest a new feature / enhancement 4 | labels: enhancement 5 | --- 6 | 7 | ## Feature 8 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Question.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Question 3 | about: Ask a question / start a discussion. 4 | labels: question 5 | --- 6 | 7 | ## Question 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 | 4 | 5 |

6 | 7 | # Frontend Toolkit 8 | This repository is used for issue tracking and feature requests for [fetoolkit.io](https://www.fetoolkit.io/). 9 | 10 | ## Feature Prioritisation 11 | The prioritisation of features is done according to the upvotes of the individual issues. If you want to have a feature implemented, please indicate this with a 👍. 12 | 13 | ## Changelog 14 | You can find the [changelog directly on the website](https://www.fetoolkit.io/changelog). 15 | --------------------------------------------------------------------------------