├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── Bug Report.yml │ └── config.yml └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | 2 | custom: ['https://muvi.gg/donate'] 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug Report.yml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: File a bug report. 3 | title: "[Bug]: " 4 | labels: ["bug"] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Thanks for taking the time to fill out this bug report! You can also report bugs in a ticket on our [Discord](https://muvi.gg/discord) 10 | - type: textarea 11 | id: what-happened 12 | attributes: 13 | label: What happened? 14 | description: Also tell us, what did you expect to happen? 15 | placeholder: Tell us what you see! 16 | validations: 17 | required: true 18 | - type: input 19 | id: version 20 | attributes: 21 | label: Version 22 | description: What version of our software are you running? (v1.XX.X, you can check it out by pressing the 3 dots on the top right corner of the app) 23 | validations: 24 | required: true 25 | - type: input 26 | id: region 27 | attributes: 28 | label: Country 29 | description: What country are you in? (e.g. UK, Germany, France, etc.) 30 | validations: 31 | required: true 32 | - type: dropdown 33 | id: os 34 | attributes: 35 | label: What operating system are you using? 36 | multiple: false 37 | options: 38 | - Windows 39 | - macOS 40 | - Linux 41 | validations: 42 | required: true 43 | - type: input 44 | id: os-version 45 | attributes: 46 | label: OS Version 47 | description: What version of your operating system are you using? (e.g. Windows 11, Windows 10, macOS Sequoia, Debian, etc.) 48 | validations: 49 | required: true 50 | - type: dropdown 51 | id: subscription 52 | attributes: 53 | label: What subscription do you have? 54 | multiple: false 55 | options: 56 | - F1 TV Access 57 | - F1 TV Pro 58 | - F1 TV Premium 59 | - N/A 60 | validations: 61 | required: true 62 | - type: textarea 63 | id: troubleshooting 64 | attributes: 65 | label: Troubleshooting payload 66 | description: If applicable, open the troubleshooting page (Bottom left -> Troubleshooting or [click here](https://muvi.gg/troubleshooting) after opening the MultiViewer app). On that page, press `C`, it will copy some essential debug data to your clipboard, then just paste it in this box. (The data is automatically sanitized of all tokens or personal data before copying it) 67 | render: shell 68 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: MultiViewer's Discord 4 | url: https://muvi.gg/discord 5 | about: Our support team is more active on Discord. If you require urgent support, please join the server and create a ticket in the help channel. 6 | - name: Feature request 7 | url: https://github.com/f1multiviewer/issue-tracker/discussions/new?category=feature-requests 8 | about: For ideas or feature requests 9 | - name: MultiViewer Documentation 10 | url: https://multiviewer.app/docs 11 | about: View the documentation 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MultiViewer's Issue Tracker 2 | 3 | You can download the app at [https://muvi.gg/download](https://muvi.gg/download) and donate at [https://muvi.gg/donate](https://muvi.gg/donate). 4 | 5 | Please [open an issue](https://github.com/f1multiviewer/issue-tracker/issues) if you find a bug to report, you can also report it on our [Discord](https://muvi.gg/discord) where our support team is more active. 6 | 7 | If you have a feature request to make, talk about it in the Discussions tab [here](https://github.com/f1multiviewer/issue-tracker/discussions/categories/feature-requests). 8 | 9 | Also, make sure to check our [docs](https://muvi.gg/docs) before opening an issue, you might find your answer in there. 10 | --------------------------------------------------------------------------------