|
| 1 | +name: 🐛 Report a problem |
| 2 | +description: Report an issue with MagicMirror² 🚨 |
| 3 | +title: "[Bug] {{ brief description }}" |
| 4 | +labels: |
| 5 | + - bug |
| 6 | +body: |
| 7 | + - type: markdown |
| 8 | + attributes: |
| 9 | + value: | |
| 10 | + Thanks for reporting a bug! Please fill in the following template to help us reproduce the issue. |
| 11 | + Please only submit reproducible issues. If you're not sure if it's a real bug or if it's just you, please open a topic on the forum. |
| 12 | + - type: textarea |
| 13 | + id: environment |
| 14 | + attributes: |
| 15 | + label: Environment |
| 16 | + description: | |
| 17 | + Please tell us about how your MagicMirror² is set up. |
| 18 | +
|
| 19 | + Optimal would be the systeminformation from the logs, which looks like this: |
| 20 | + ```bash |
| 21 | + [2025-01-14 20:05:03.529] [INFO] System information: |
| 22 | + ### SYSTEM: manufacturer: Raspberry Pi Foundation; model: Raspberry Pi 4 Model B Rev 1.5; virtual: false |
| 23 | + ### OS: platform: linux; distro: Debian GNU/Linux; release: 12; arch: arm64; kernel: 6.1.21-v8+ |
| 24 | + ### VERSIONS: electron: 31.2.1; used node: 20.15.0; installed node: 22.4.1; npm: 10.8.1; pm2: |
| 25 | + ### OTHER: timeZone: Europe/Berlin; ELECTRON_ENABLE_GPU: undefined |
| 26 | + ``` |
| 27 | +
|
| 28 | + If you can't provide this information, please provide the following: |
| 29 | + - MagicMirror² version: Can be found in the `package.json` file. Please use the latest version before reporting a bug. |
| 30 | + - Node version: Run `node -v` to find out. Make sure it's version 20 or later (recommended is 22). |
| 31 | + - npm version: Run `npm -v` to find out. |
| 32 | + - Platform: Are you using a Raspberry Pi (2/3/4/5), Windows, Mac, Linux, Docker, or something else? |
| 33 | + value: | |
| 34 | + MagicMirror² version: |
| 35 | + Node version: |
| 36 | + npm version: |
| 37 | + Platform: |
| 38 | + validations: |
| 39 | + required: true |
| 40 | + - type: dropdown |
| 41 | + id: start-option |
| 42 | + attributes: |
| 43 | + label: Which start option are you using? |
| 44 | + description: | |
| 45 | + Please keep in mind that some problems are specific to certain start options. |
| 46 | + options: |
| 47 | + - "npm run start" |
| 48 | + - "npm run start:wayland" |
| 49 | + - "npm run start:windows" |
| 50 | + - "npm run start:x11" |
| 51 | + - "npm run server" |
| 52 | + - "node clientonly --address ... --port ..." |
| 53 | + validations: |
| 54 | + required: true |
| 55 | + - type: dropdown |
| 56 | + id: pm2 |
| 57 | + attributes: |
| 58 | + label: Are you using PM2? |
| 59 | + options: |
| 60 | + - "No" |
| 61 | + - "Yes" |
| 62 | + - "I don't know" |
| 63 | + validations: |
| 64 | + required: true |
| 65 | + - type: dropdown |
| 66 | + id: module |
| 67 | + attributes: |
| 68 | + label: Module |
| 69 | + description: | |
| 70 | + If the issue is related to a specific module, please provide the name of the module. |
| 71 | + Note: Please don't report issues with 3rd party modules here. Report them on the module's repository. |
| 72 | + options: |
| 73 | + - "alert" |
| 74 | + - "calendar" |
| 75 | + - "clock" |
| 76 | + - "compliments" |
| 77 | + - "helloworld" |
| 78 | + - "newsfeed" |
| 79 | + - "updatenotification" |
| 80 | + - "weather" |
| 81 | + - type: checkboxes |
| 82 | + id: module-disabled |
| 83 | + attributes: |
| 84 | + label: Have you tried disabling other modules? |
| 85 | + options: |
| 86 | + - label: "Yes" |
| 87 | + - label: "No" |
| 88 | + - type: checkboxes |
| 89 | + id: search |
| 90 | + attributes: |
| 91 | + label: Have you searched if someone else has already reported the issue on the forum or in the issues? |
| 92 | + options: |
| 93 | + - label: "Yes" |
| 94 | + required: true |
| 95 | + - type: textarea |
| 96 | + id: description |
| 97 | + attributes: |
| 98 | + label: What did you do? |
| 99 | + description: | |
| 100 | + Please include a *minimal* reproduction case. List the step by step process to reproduce the issue. |
| 101 | + You can use Markdown in this field. |
| 102 | + value: | |
| 103 | + <details> |
| 104 | + <summary>Configuration</summary> |
| 105 | +
|
| 106 | + ``` |
| 107 | + <!-- Paste your configuration here. Don't forget to remove any sensitive information! --> |
| 108 | + ``` |
| 109 | + </details> |
| 110 | +
|
| 111 | + ```js |
| 112 | + <!-- Paste relevant code here --> |
| 113 | + ``` |
| 114 | +
|
| 115 | + Steps to reproduce the issue: |
| 116 | + validations: |
| 117 | + required: true |
| 118 | + - type: textarea |
| 119 | + id: expectation |
| 120 | + attributes: |
| 121 | + label: What did you expect to happen? |
| 122 | + description: | |
| 123 | + You can use Markdown in this field. |
| 124 | + validations: |
| 125 | + required: true |
| 126 | + - type: textarea |
| 127 | + id: lint-output |
| 128 | + attributes: |
| 129 | + label: What actually happened? |
| 130 | + description: | |
| 131 | + Please copy-paste relevant log output or error messages. |
| 132 | + You can use Markdown in this field. |
| 133 | + validations: |
| 134 | + required: true |
| 135 | + |
| 136 | + - type: textarea |
| 137 | + id: comments |
| 138 | + attributes: |
| 139 | + label: Additional comments |
| 140 | + description: | |
| 141 | + Is there anything else that's important for the team to know? |
| 142 | + Fill out all fields and provide as much information as possible. |
| 143 | + Adding screenshots might help us understand your problem better. |
| 144 | +
|
| 145 | + - type: checkboxes |
| 146 | + attributes: |
| 147 | + label: Participation |
| 148 | + options: |
| 149 | + - label: "I am willing to submit a pull request for this change." |
| 150 | + required: false |
| 151 | + |
| 152 | + - type: markdown |
| 153 | + attributes: |
| 154 | + value: Please **do not** open a pull request until this issue has been accepted by the team. |
0 commit comments