├── .github └── ISSUE_TEMPLATE │ ├── FORM_FEATURE.yml │ ├── FORM_ISSUE.yml │ └── config.yml └── README.md /.github/ISSUE_TEMPLATE/FORM_FEATURE.yml: -------------------------------------------------------------------------------- 1 | name: Feature Request 2 | description: Suggest an idea for this project 3 | labels: 4 | - feature request 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Thanks for taking the time to fill out this feature request ! 10 | We will ask your first to check a few things : 11 | - type: checkboxes 12 | id: checks 13 | attributes: 14 | label: Preliminary Checks 15 | description: Before submitting this issue, please make sure the following 16 | stataments are TRUE 17 | options: 18 | - label: I use a modern operating system (Windows 7 with SP1 or newer) 19 | required: true 20 | - label: I checked that the feature I'm requesting is not available in UCheck Beta 21 | required: true 22 | - label: I checked that the feature I'm requesting was not already requested 23 | required: true 24 | - type: textarea 25 | id: what-happened 26 | attributes: 27 | label: Which feature do you want to be added ? 28 | description: Tell use about the feature in detail and why we should prioritize it. 29 | validations: 30 | required: true 31 | - type: textarea 32 | id: ucheck-report 33 | attributes: 34 | label: ucheck-report 35 | description: Please copy and paste any relevant log output. This will be 36 | automatically formatted into code, so no need for backticks. 37 | validations: 38 | required: false 39 | - type: checkboxes 40 | id: vote 41 | attributes: 42 | label: Don't forget to vote ! 43 | description: Vote for your features 44 | options: 45 | - label: | 46 | Bugs and new features will be treated by priority and popularity. 47 | Make sure **you vote below** with a :thumbsup: ! 48 | required: false 49 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FORM_ISSUE.yml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: File a bug report 3 | labels: 4 | - bug 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Thanks for taking the time to fill out this bug report! 10 | We will ask your first to check a few things : 11 | - type: checkboxes 12 | id: checks 13 | attributes: 14 | label: Preliminary Checks 15 | description: Before submitting this issue, please make sure the following 16 | stataments are TRUE 17 | options: 18 | - label: I use a modern operating system (Windows 7 with SP1 or newer) 19 | required: true 20 | - label: I use the latest version of UCheck available (stable or beta version) 21 | required: true 22 | - label: I checked that the issue I'm reporting was not already reported 23 | required: true 24 | - type: checkboxes 25 | id: beta 26 | attributes: 27 | label: Beta Version 28 | description: If you are reporting an issue with latest BETA version, please 29 | check the following checkbox 30 | options: 31 | - label: I am reporting an issue for UCheck BETA 32 | required: false 33 | - type: textarea 34 | id: what-happened 35 | attributes: 36 | label: What happened? 37 | description: Tell use about the issue in detail 38 | validations: 39 | required: true 40 | - type: textarea 41 | id: ucheck-report 42 | attributes: 43 | label: ucheck-report 44 | description: Please copy and paste any relevant log output. This will be 45 | automatically formatted into code, so no need for backticks. 46 | validations: 47 | required: false 48 | - type: dropdown 49 | id: reproductible 50 | attributes: 51 | label: Is the issue reproductible? 52 | options: 53 | - 'Yes' 54 | - 'No' 55 | default: 0 56 | validations: 57 | required: true 58 | - type: checkboxes 59 | id: vote 60 | attributes: 61 | label: Don't forget to vote ! 62 | description: Vote for your features 63 | options: 64 | - label: | 65 | Bugs and new features will be treated by priority and popularity. 66 | Make sure **you vote below** with a :thumbsup: ! 67 | required: false 68 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # UCheck 2 | UCheck Bug Tracker 3 | 4 | ## FAQ 5 | **Q : Why is there no UCheck code here at all ?** 6 | 7 | **A :** This repository is intended to be used as a bug tracker. UCheck is closed source. 8 | 9 | 10 | **Q : Why are the features/issues I submitted still not implemented ?** 11 | 12 | **A :** We do our best to prioritize bugs and features, if you think some ticket is useful please vote for it. 13 | 14 | 15 | **Q : Where should I download UCheck beta ?** 16 | 17 | **A :** https://download.adlice.com/UCheck/Beta/UCheck64.exe 18 | 19 | 20 | 21 | 22 | 23 | 24 | --------------------------------------------------------------------------------