├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml └── workflows │ └── stale.yml └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | custom: "https://l.tetr.io/support" 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: Create a report of unintended behavior or problems 3 | labels: [bug] 4 | body: 5 | - type: checkboxes 6 | attributes: 7 | label: Checklist 8 | description: Issue will be disregarded & closed if incomplete! 9 | options: 10 | - label: I've **checked both [open and recently closed issues](https://github.com/tetrio/issues/issues?q=is%3Aissue)** to ensure this issue is not already reported. 11 | required: true 12 | - label: I am using the **newest version** of TETR.IO. 13 | required: true 14 | - label: I am using a **supported browser** or the Desktop Client. 15 | required: true 16 | - label: I am not using anything that **modifies game code** (e.g. TETR.IO PLUS). 17 | required: true 18 | - label: I am certain this is a **bug**, not a feature request. 19 | required: true 20 | - type: input 21 | attributes: 22 | label: OS and Version 23 | placeholder: e.g. Windows 7 24 | validations: 25 | required: true 26 | - type: input 27 | attributes: 28 | label: Browser and version 29 | placeholder: e.g. Chrome 94 30 | validations: 31 | required: true 32 | - type: textarea 33 | attributes: 34 | label: Describe the bug/issue 35 | description: A clear and concise description of what the bug is. 36 | validations: 37 | required: true 38 | - type: textarea 39 | attributes: 40 | label: Reproducing 41 | description: Steps to reproduce the behavior. 42 | placeholder: | 43 | 1. Go to '...' 44 | 2. Click on '...' 45 | 3. Scroll down to '...' 46 | 4. See error 47 | - type: textarea 48 | attributes: 49 | label: Expected behavior 50 | description: A clear and concise description of what you expected to happen. 51 | validations: 52 | required: true 53 | - type: textarea 54 | attributes: 55 | label: Screenshots 56 | description: If applicable, add screenshots to help explain your problem. 57 | - type: textarea 58 | attributes: 59 | label: Console logs 60 | description: Press F12 and go to the Console tab, then copy or screenshot the logs. This helps us quickly identify the cause of the bug. 61 | - type: textarea 62 | attributes: 63 | label: Additional context 64 | description: Add any other context about the problem here. 65 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: TETR.IO Discord 4 | url: https://l.tetr.io/discord 5 | about: Have a quick question? You can ask it on the official TETR.IO Discord. 6 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- 1 | name: Feature Request 2 | description: Suggest an idea that may improve TETR.IO 3 | labels: [improvement] 4 | body: 5 | - type: checkboxes 6 | attributes: 7 | label: Checklist 8 | description: Issue will be disregarded & closed if incomplete! 9 | options: 10 | - label: I've **checked both [open and recently closed issues](https://github.com/tetrio/issues/issues?q=is%3Aissue)** to ensure this feature is not already requested. 11 | required: true 12 | - label: I am using the **newest version** of TETR.IO. 13 | required: true 14 | - label: I am certain this is a **feature request**, not a bug. 15 | required: true 16 | - label: I've **thought this feature through** properly. 17 | required: true 18 | - type: textarea 19 | attributes: 20 | label: Is your feature request related to a problem? Please describe. 21 | description: A clear and concise description of what the problem is. 22 | placeholder: I'm always frustrated when [...] 23 | validations: 24 | required: true 25 | - type: textarea 26 | attributes: 27 | label: Describe the solution you'd like 28 | description: A clear and concise description of what you want to happen. 29 | validations: 30 | required: true 31 | - type: textarea 32 | attributes: 33 | label: Describe alternatives you've considered 34 | description: A clear and concise description of any alternative solutions or features you've considered. 35 | validations: 36 | required: true 37 | - type: textarea 38 | attributes: 39 | label: Additional context 40 | description: Add any other context or screenshots about the feature request here. 41 | -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- 1 | name: Mark stale issues and pull requests 2 | 3 | on: 4 | schedule: 5 | - cron: "*/10 * * * *" 6 | 7 | jobs: 8 | stale: 9 | 10 | runs-on: ubuntu-latest 11 | 12 | steps: 13 | - uses: actions/stale@v3 14 | with: 15 | repo-token: ${{ secrets.GITHUB_TOKEN }} 16 | stale-issue-message: 'This bug report has not seen any activity in a while. If the issue is still relevant, please comment on it or the issue will be automatically closed. This way, the issue tracker can be kept clean. Thank you!' 17 | stale-issue-label: 'stale' 18 | days-before-stale: 90 19 | days-before-close: 15 20 | exempt-issue-labels: 'priority, never-stale, improvement' 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![tetr.io](https://kagari.moe/outer_assets/tetrio/logo.png) 2 | 3 | ## TETR.IO issue tracker 4 | 5 | This is the place to report issues you found and features/improvements you'd like to see in TETR.IO. Please be civil, and understand that TETR.IO is developed by a small team. Thank you! 6 | 7 | ## [New Issue](https://github.com/o5k/tetrio-issues/issues/new/choose) 8 | --------------------------------------------------------------------------------