├── README.mkdn └── .github └── ISSUE_TEMPLATE ├── config.yml └── bug-issue.yaml /README.mkdn: -------------------------------------------------------------------------------- 1 | ![alt text][logo] 2 | 3 | [logo]:https://crdroid.net/img/logo.png "crDroid Android" 4 | 5 | ## Submit new issue ## 6 | In order to submit new issue, [click me](https://github.com/crdroidandroid/issue_tracker/issues/new/choose) 7 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: 📃 Build crDroid 4 | url: https://github.com/crdroidandroid/android/ 5 | about: See initial crDroid build documentation 6 | - name: 🗨 Telegram 7 | url: https://t.me/crDroidAndroid 8 | about: Join the chat on Telegram -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-issue.yaml: -------------------------------------------------------------------------------- 1 | name: "🐞 Bug report" 2 | description: "Report an inssue" 3 | title: "bug: " 4 | labels: ["bug", "needs-triage"] 5 | body: 6 | - attributes: 7 | value: | 8 | # crDroid bug report 9 | 10 | Important to note that your issue may have already been reported before. 11 | Please check for existing issues [here](https://github.com/crdroidandroid/issue_tracker/issues/labels/bug). 12 | *Do note that unofficial versions will not get supported since we can not check device specific source.* 13 | type: markdown 14 | - attributes: 15 | label: Issue type 16 | options: 17 | - "User interface" 18 | - "Feature not working as intended" 19 | - "Source code related" 20 | - "Other" 21 | type: dropdown 22 | validations: 23 | required: true 24 | - attributes: 25 | description: "Device should be listed as **Device (codename)**" 26 | label: Device 27 | type: textarea 28 | validations: 29 | required: true 30 | - attributes: 31 | description: "*Only current still updated source code is listed*" 32 | label: "crDroid version" 33 | options: 34 | - "crDroid 11" 35 | - "crDroid 12" 36 | type: dropdown 37 | validations: 38 | required: true 39 | - attributes: 40 | description: "Exact crDroid version **Ex: 8.6/2022-06-17**" 41 | label: Exact version / Build date 42 | type: textarea 43 | validations: 44 | required: true 45 | - attributes: 46 | description: "Simple description of the issue" 47 | label: "Bug description" 48 | type: textarea 49 | validations: 50 | required: true 51 | - attributes: 52 | description: "Steps to reproduce the issue" 53 | label: "Steps to reproduce" 54 | placeholder: "Step 1. Go to crDroid settings. Step 2. ..." 55 | type: textarea 56 | validations: 57 | required: true 58 | - attributes: 59 | description: "Please copy and paste any relevant log output. 60 | This will be automatically formatted into code, so no need for backticks." 61 | label: "Relevant log (logcat/build log)" 62 | render: shell 63 | type: textarea 64 | validations: 65 | required: true 66 | - attributes: 67 | description: "Add screenshots or videos that show the bug here." 68 | label: "Screenshots or videos" 69 | placeholder: "Drag and drop the screenshots/videos into this box." 70 | type: textarea 71 | validations: 72 | required: false 73 | - attributes: 74 | description: "If applicable, add a possible solution." 75 | label: Solution 76 | type: textarea 77 | validations: 78 | required: false 79 | - attributes: 80 | description: "Add additional context here." 81 | label: "Additional context" 82 | type: textarea 83 | validations: 84 | required: false 85 | - attributes: 86 | description: "Your issue will be closed if you haven't done these steps." 87 | label: Acknowledgements 88 | options: 89 | - label: "I've checked device is officially supported and that no support is provided for unofficial devices (for device specific reports and not source related)." 90 | required: false 91 | - label: "I'm running latest version available on crdroid.net for this device and that the device is still maintainer supported (not flagged unsupported on download page)" 92 | required: true 93 | - label: "I have searched the existing issues and this is a new and no duplicate or related to another open issue." 94 | required: true 95 | - label: "I have written a short but informative title." 96 | required: true 97 | - label: "I filled out all of the requested information in this issue properly and understand that not doing so will automatically result in closing of ticket." 98 | required: true 99 | id: acknowledgements 100 | type: checkboxes 101 | --------------------------------------------------------------------------------