├── .github └── ISSUE_TEMPLATE │ ├── bug-report.yaml │ └── feature_request.md └── README.md /.github/ISSUE_TEMPLATE/bug-report.yaml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: File a bug report 3 | title: "[Bug]: " 4 | labels: ["bug"] 5 | assignees: 6 | - [] 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: | 11 | Thanks for taking the time to fill out this bug report! 12 | - type: textarea 13 | id: whats-wrong 14 | attributes: 15 | label: What went wrong? 16 | description: Provide a detailed description of what did not work as expected. 17 | placeholder: Provide a detailed description of what did not work as expected. 18 | validations: 19 | required: true 20 | - type: input 21 | id: version 22 | attributes: 23 | label: Version 24 | description: What version of Remindr are you running? 25 | placeholder: e.g. 2.1.4 26 | validations: 27 | required: true 28 | - type: input 29 | id: operating-system 30 | attributes: 31 | label: Operating System 32 | description: Which operating system do you use? 33 | placeholder: e.g. Windows 34 | validations: 35 | required: true 36 | - type: textarea 37 | id: additional-info 38 | attributes: 39 | label: Additional information 40 | description: Add any screenshots/links to videos/other relevant information to help explain the bug. 41 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for Remindr 4 | title: '' 5 | labels: ["enhancement"] 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Remindr 2 | 3 | We've moved over [here](http://github.com/MrDavidRios/remindr). Go check it out! 4 | --------------------------------------------------------------------------------