├── .github └── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml └── README.md /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- 1 | name: Bug report 2 | description: Report a bug 3 | body: 4 | - type: dropdown 5 | id: platform 6 | attributes: 7 | label: "Stremio Platform" 8 | description: "Select the Stremio Platform you are using" 9 | options: 10 | - Desktop (Windows) 11 | - Desktop (macOS) 12 | - Desktop (Linux) 13 | - Web 14 | - Android Mobile 15 | - Android Mobile Beta 16 | - Android TV 17 | - Samsung Native TV 18 | - LG Native TV 19 | - Sony TV Android 20 | - Philips TV Android 21 | - Meta Quest VR 22 | - Raspberry Pi v4 (RPI4) 23 | - Raspberry Pi v5 (RPI5) 24 | - Steam Deck 25 | - iOS / iPadOS / macOS Native Beta 26 | validations: 27 | required: true 28 | 29 | - type: textarea 30 | id: describe_bug 31 | attributes: 32 | label: "Describe the bug" 33 | description: "A clear and concise description of what the bug is." 34 | placeholder: "Describe the issue in detail..." 35 | validations: 36 | required: true 37 | 38 | - type: textarea 39 | id: to_reproduce 40 | attributes: 41 | label: "To Reproduce" 42 | description: "Steps to reproduce the behavior." 43 | placeholder: | 44 | 1. Go to '...' 45 | 2. Click on '...' 46 | 3. Scroll down to '...' 47 | 4. See error 48 | validations: 49 | required: true 50 | 51 | - type: textarea 52 | id: expected_behavior 53 | attributes: 54 | label: "Expected behavior" 55 | description: "A clear and concise description of what you expected to happen." 56 | placeholder: "Explain what you expected to see instead..." 57 | validations: 58 | required: true 59 | 60 | - type: textarea 61 | id: screenshots 62 | attributes: 63 | label: "Screenshots" 64 | description: "If applicable, add screenshots to help explain your problem." 65 | placeholder: "Provide URLs or drag-and-drop images after creating the issue." 66 | 67 | - type: textarea 68 | id: desktop_info 69 | attributes: 70 | label: "Desktop (if applicable)" 71 | description: "If you're using a desktop platform, complete the following info: OS, Browser, Version." 72 | placeholder: "OS: e.g. Windows 10\nBrowser: e.g. Chrome\nVersion: e.g. 1.0.0" 73 | 74 | - type: textarea 75 | id: smartphone_info 76 | attributes: 77 | label: "Smartphone (if applicable)" 78 | description: "If you're using a smartphone, complete the following info: Device, OS, Browser, Version." 79 | placeholder: "Device: e.g. iPhone 6\nOS: e.g. iOS 14.4\nBrowser: e.g. Safari\nVersion: e.g. 1.0.0" 80 | 81 | - type: textarea 82 | id: tv_info 83 | attributes: 84 | label: "TV (if applicable)" 85 | description: "If you're using a TV platform, complete the following info: Device, OS, Version." 86 | placeholder: "Device: e.g. Samsung 50Q64B\nOS: e.g. Tizen\nVersion: e.g. 2.0.0" 87 | 88 | - type: textarea 89 | id: logs 90 | attributes: 91 | label: "Logs" 92 | description: "Paste any relevant logs here (optional)" 93 | render: shell 94 | 95 | - type: textarea 96 | id: notes 97 | attributes: 98 | label: "Notes" 99 | description: "Any additional information (optional)" 100 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # stremio-bugs 2 | 3 | Report bugs related to the Stremio desktop, android mobile and android tv apps here. 4 | 5 | Do NOT report any bugs in addons unless it's related to one of the official add-ons: 6 | cinemeta (catalogue / metadata) 7 | youtube (streaming/catalogue from youtube) 8 | --------------------------------------------------------------------------------