Update BUG_REPORT.yml

This commit is contained in:
Marc Rousavy 2023-09-19 13:14:04 +02:00
parent 18c7034b50
commit b574c8657e

View File

@ -22,7 +22,7 @@ body:
const device = useCameraDevices() const device = useCameraDevices()
// ... // ...
<Camera <Camera
style={StyleSheet.absoluteFill} style={StyleSheet.absoluteFill}
device={device} device={device}
@ -32,12 +32,12 @@ body:
- type: textarea - type: textarea
attributes: attributes:
label: Relevant log output label: Relevant log output
description: > description: >
Paste any relevant **native log output** (Xcode Logs/Android Studio Logcat) here. Paste any relevant **native log output** (Xcode Logs/Android Studio Logcat) here.
This will be automatically formatted into code, so no need for backticks. This will be automatically formatted into code, so no need for backticks.
* For iOS, run the project through Xcode and copy the logs from the log window. * For iOS, run the project through Xcode and copy the logs from the log window.
* For Android, either open the project through Android Studio and paste the logs from the logcat window, or run `adb logcat` in terminal. * For Android, either open the project through Android Studio and paste the logs from the logcat window, or run `adb logcat` in terminal.
render: shell render: shell
validations: validations:
@ -45,18 +45,18 @@ body:
- type: textarea - type: textarea
attributes: attributes:
label: Camera Device label: Camera Device
description: > description: >
Paste the JSON Camera `device` that was used here. Paste the JSON Camera `device` that was used here.
Make sure to leave out the `formats` prop as that is too long for the issue. Make sure to leave out the `formats` prop as that is too long for the issue.
``` ```
device.formats = undefined device.formats = undefined
console.log(JSON.stringify(device, null, 2)) console.log(JSON.stringify(device, null, 2))
``` ```
This will be automatically formatted into code, so no need for backticks. This will be automatically formatted into code, so no need for backticks.
render: json render: json
placeholder: > placeholder: >
@ -87,7 +87,7 @@ body:
- type: input - type: input
attributes: attributes:
label: Device label: Device
description: > description: >
Which device are you seeing this Problem on? Which device are you seeing this Problem on?
Mention the full name of the phone, as well as the operating system and version. Mention the full name of the phone, as well as the operating system and version.
If you have tested this on multiple devices (ex. Android and iOS) then mention all of those devices (comma separated) If you have tested this on multiple devices (ex. Android and iOS) then mention all of those devices (comma separated)
@ -101,12 +101,19 @@ body:
placeholder: ex. 3.1.6 placeholder: ex. 3.1.6
validations: validations:
required: true required: true
- type: checkboxes - type: dropdown
attributes: attributes:
label: Can you reproduce this issue in the VisionCamera Example app? label: Can you reproduce this issue in the VisionCamera Example app?
description: Run the example app (`package/example/`) and see if the issue is reproduceable here. description: >
Try to build the example app (`package/example/`) and see if the issue is reproduceable here.
**Note:** If you don't try this in the example app, I most likely won't help you with your issue.
multiple: true
options: options:
- label: I can reproduce the issue in the VisionCamera Example app. - Yes, I can reproduce the same issue in the Example app here
- No, I cannot reproduce the issue in the Example app
- I didn't try (⚠️ your issue might get ignored & closed if you don't try this)
validations:
required: true
- type: checkboxes - type: checkboxes
attributes: attributes:
label: Additional information label: Additional information