├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── CONTRIBUTING.md └── README.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Please use this template when you create an issue 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Links:** 11 | 12 | from WoWHead or our Armory 13 | 14 | **What is happening:** 15 | 16 | 17 | 18 | **What should happen:** 19 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## READ FIRST! 2 | This is a simple guideline on how to report an issue in a way that it makes it easier for you and us to reproduce and fix. 3 | 4 | ### Before you open a new Bug Report you need to check: 5 | * If there is already an open report for your issue. 6 | * Is it a personal or character specific issue? 7 | * Is it a UI or addon issue? 8 | 9 | If the answer is **YES** to any of the following statements above you should NOT open a bug report. 10 | 11 | ### Issue Self Checklist 12 | * Am I using WoW-KOI Client? (If no, then do not open a bug report) 13 | * Did I include the steps to reproduce the problem? 14 | * Did I include the description of how it should work? 15 | * Did I include the description of what is happening? 16 | * Did I include NPC/Item/Spell names (or IDs) from wowhead.com or Armory? 17 | * Have I been descriptive and precise? 18 | * Did I follow the template? 19 | 20 | **DO NOT log multiple issues in one (each boss/item/quest must have its own report).** 21 | 22 | Please include links to reputable sources to confirm your statements. The acceptable list is: 23 | 24 | * [http://www.wowhead.com/](http://www.wowhead.com/) 25 | 26 | We will ignore and potentially close issues with links to other server or unacceptable reference. 27 | 28 | Now that you have read and understood the rules click on the link below to go to the issues repository: 29 | 30 | https://github.com/GuabinaCore/wowkoi/issues 31 | 32 | Remember that if you rush to log a "FAKE" issue you will be delaying the fix of "REAL" issues. 33 | 34 | Thank you! 35 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Welcome to the WoW Koi! 2 | 3 | * [How to Properly Report an Issue](https://github.com/GuabinaCore/wowkoi/wiki/How-to-Properly-Report-an-Issue) 4 | * [Solve an Issue and Get Paid](https://github.com/GuabinaCore/wowkoi/wiki/Solve-an-Issue-and-get-Paid) 5 | * [Bug Report Template](https://github.com/GuabinaCore/WoWKoi/wiki/Bug-Report-Template) 6 | * [List of Current Issues](https://github.com/GuabinaCore/wowkoi/issues) 7 | 8 | Please check our [Discord](https://discord.gg/wSVkTwe) if you have any questions. 9 | --------------------------------------------------------------------------------