From 18c726ddc27bd78aefbd715d7aff7a82c55f5123 Mon Sep 17 00:00:00 2001 From: Awawa <69086569+awawa-dev@users.noreply.github.com> Date: Sat, 7 Feb 2026 07:22:34 +0100 Subject: [PATCH 1/9] Update feature request and issue forms --- .github/ISSUE_TEMPLATE/bug_report.md | 28 ----- .github/ISSUE_TEMPLATE/bug_report.yml | 136 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 5 + .github/ISSUE_TEMPLATE/feature_request.md | 22 ---- .github/ISSUE_TEMPLATE/feature_request.yml | 23 ++++ .github/workflows/verify-issue.yml | 36 ++++++ 6 files changed, 200 insertions(+), 50 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml create mode 100644 .github/workflows/verify-issue.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 8cec3214b..000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improving HyperHDR -labels: Waiting For Review ---- - - - - - - - - -## Bug report, debug log and your config file (FULL LOGS ARE MANDATORY) - - -#### Steps to reproduce - -#### What is expected? - -#### What is actually happening? - -#### System - diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 000000000..824065eb7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,136 @@ +name: ๐Ÿž Bug Report +description: Report an issue with HyperHDR +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + ### ๐Ÿ›ก๏ธ SECURITY & PRIVACY FIRST + **IMPORTANT:** Before posting any logs or screenshots, **sanitize your data**. + Remove any: + * **API Tokens/Keys** (e.g., Philips Hue, WLED, Home Assistant, etc.) + * **Passwords or Credentials** + * **Private Network Details** (if you consider them sensitive) + + *Your logs are public. It is your responsibility to remove private information.* + + ### ๐Ÿงช TEST LATEST VERSION FIRST + Before reporting, please check the **latest Github Actions/beta builds**. The issue might already be fixed there! + + - type: textarea + id: reproduction-path + attributes: + label: Detailed Reproduction Path + description: Describe exactly how the error occurred. Provide a step-by-step path. If it happens randomly also try to provide a context. + placeholder: "1. Open HyperHDR, 2. Go to 'X' tab, 3. Change setting 'Y' to..." + validations: + required: true + min_length: 30 + + - type: dropdown + id: tested-beta + attributes: + label: Have you tested the latest Github Action/beta build? + description: We strongly recommend testing the latest dev build before reporting. + options: + - "Yes, the problem still exists in the latest beta/Github Action builds" + - "No, I am only using the official stable release" + validations: + required: true + + - type: dropdown + id: previous-version + attributes: + label: Did this work in a previous stable version? + options: + - "Yes, it worked in the previous version" + - "No, it never worked for me" + - "N/A (This is a new feature)" + validations: + required: true + + - type: dropdown + id: platform + attributes: + label: Platform + description: Select your hardware platform + options: + - "Raspberry Pi Zero 2 W (your grabber may be affected by the V4L2 kernel bug)" + - "Raspberry Pi 3 (your grabber may be affected by the V4L2 kernel bug)" + - "Raspberry Pi 4" + - "Raspberry Pi 5" + - "Windows (x64)" + - "Linux (x64: Ubuntu/Debian/Fedora/Arch)" + - "Linux (arm64)" + - "macOS" + - "webOS (remember that we do not handle webOS builds)" + validations: + required: true + + - type: dropdown + id: grabber + attributes: + label: Capture Device / Grabber + description: Which grabber or software capture method are you using? + options: + - Pipewire (Software) + - DirectX11 (Software) + - Flatbuffers/Protobuffers (Software) + - MS2109 (USB) + - MS2130 (USB) + - UGREEN 25173 (USB) + - Other USB Grabber (provide model in the "Detailed Reproduction Path") + - Other software Grabber (provide type in the "Detailed Reproduction Path") + - Not applicable + validations: + required: true + + - type: dropdown + id: led-driver + attributes: + label: LED Driver + description: Which main LED driver is selected in the configuration? + options: + - HyperSerialPico + - HyperSerialSpi + - HyperSerialESP32 + - WLED + - Neopixel WS281x/SK6812 (GPIO/FTDI) + - DotStart APA102/SK9822 (GPIO/FTDI) + - Philips Hue + - Adalight + - Skydimo + - Other + validations: + required: true + + - type: textarea + id: system-about + attributes: + label: System About Info + description: Paste the content of the 'Advanced' -> 'About' system configuration tab here. + placeholder: "If the WebUI does not start, type: 'GUI not accessible'" + validations: + required: true + render: text + + - type: textarea + id: logs + attributes: + label: Application Log + description: | + Logs must refer to the issue and be taken in its entirety after approx. 2-3 minutes of runtime. + If the application doesn't start: run it from the command line (on Windows use the `-c` parameter) and copy the output from the terminal. + Accepted links: PrivateBin, Pastebin, Hastebin, mPaste. + placeholder: "Paste your sanitized logs here or provide a link..." + validations: + required: true + render: shell + + - type: checkboxes + id: terms + attributes: + label: Validation Check + options: + - label: I understand that my issue will be automatically closed if logs are missing/incomplete or description is insufficient. + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..7221cb247 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: ๐Ÿ’ฌ HyperHDR Discussions + url: https://github.com/awawa-dev/HyperHDR/discussions + about: Ask questions, get help with configuration, or share your setup here! \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index fa5d6406d..000000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for HyperHDR -labels: feature request ---- - - - - -## Feature request - - - - - -#### What problem does this feature solve? - -#### What does the proposed API look like? - -#### How should this be implemented in your opinion? - -#### Are you willing to work on this yourself? diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 000000000..9de765fb0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,23 @@ +name: ๐Ÿš€ Feature Request +description: Suggest a new functionality +labels: ["enhancement"] +body: + - type: textarea + id: functionality-path + attributes: + label: Detailed functionality path + description: Describe exactly how this should work (user flow). + validations: + required: true + min_length: 50 + render: text + + - type: textarea + id: justification + attributes: + label: Justification + description: Why is this needed and how does it improve HyperHDR? + validations: + required: true + min_length: 30 + render: text \ No newline at end of file diff --git a/.github/workflows/verify-issue.yml b/.github/workflows/verify-issue.yml new file mode 100644 index 000000000..374ff18ba --- /dev/null +++ b/.github/workflows/verify-issue.yml @@ -0,0 +1,36 @@ +name: Verify New Issue +on: + issues: + types: [opened, edited] + +jobs: + check-logs: + if: contains(github.event.issue.labels.*.name, 'bug') + runs-on: ubuntu-latest + steps: + - name: Validate issue content + uses: actions/github-script@v7 + with: + script: | + const body = context.payload.issue.body; + + // Check for markers or supported links + const hasMarkers = /\[MAIN\] Starting HyperHdr|PERFORMANCE/.test(body); + const hasLinks = /(pastebin\.com|privatebin\.net|hastebin\.com|mpaste\.com)/i.test(body); + + if (!hasMarkers && !hasLinks) { + await github.rest.issues.createComment({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: context.payload.issue.number, + body: "โŒ **Log verification failed!**\n\nTo process this report, we need valid logs. Please update your issue:\n1. Include **`[MAIN] Starting HyperHdr`** or **`PERFORMANCE`** markers.\n2. Or provide a link to **Pastebin, PrivateBin, Hastebin or mPaste**.\n3. Logs should represent ~2-3 minutes of runtime.\n\nโš ๏ธ **SECURITY:** Remove all private tokens/keys before posting!\n\n*This issue is closed. It will be reviewed once valid logs are provided.*" + }); + + await github.rest.issues.update({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: context.payload.issue.number, + state: 'closed', + labels: ['bug', 'missing-logs'] + }); + } \ No newline at end of file From 57927d9a5fece0d1a217072165aec681bd026929 Mon Sep 17 00:00:00 2001 From: Awawa <69086569+awawa-dev@users.noreply.github.com> Date: Sat, 7 Feb 2026 07:44:49 +0100 Subject: [PATCH 2/9] Update feature request and issue forms (2) --- .github/ISSUE_TEMPLATE/bug_report.yml | 4 +--- .github/ISSUE_TEMPLATE/feature_request.yml | 2 -- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 824065eb7..492fd041a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -112,7 +112,6 @@ body: placeholder: "If the WebUI does not start, type: 'GUI not accessible'" validations: required: true - render: text - type: textarea id: logs @@ -125,7 +124,6 @@ body: placeholder: "Paste your sanitized logs here or provide a link..." validations: required: true - render: shell - type: checkboxes id: terms @@ -133,4 +131,4 @@ body: label: Validation Check options: - label: I understand that my issue will be automatically closed if logs are missing/incomplete or description is insufficient. - required: true \ No newline at end of file + required: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 9de765fb0..0fee34c73 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -10,7 +10,6 @@ body: validations: required: true min_length: 50 - render: text - type: textarea id: justification @@ -20,4 +19,3 @@ body: validations: required: true min_length: 30 - render: text \ No newline at end of file From 60849029fa37e0d2c645271da8378934487e294c Mon Sep 17 00:00:00 2001 From: Awawa <69086569+awawa-dev@users.noreply.github.com> Date: Sat, 7 Feb 2026 08:38:03 +0100 Subject: [PATCH 3/9] Update feature request and issue forms (3) --- .github/workflows/verify-issue.yml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/verify-issue.yml b/.github/workflows/verify-issue.yml index 374ff18ba..b944edd8e 100644 --- a/.github/workflows/verify-issue.yml +++ b/.github/workflows/verify-issue.yml @@ -15,7 +15,7 @@ jobs: const body = context.payload.issue.body; // Check for markers or supported links - const hasMarkers = /\[MAIN\] Starting HyperHdr|PERFORMANCE/.test(body); + const hasMarkers = /Starting HyperHdr|PERFORMANCE/.test(body); const hasLinks = /(pastebin\.com|privatebin\.net|hastebin\.com|mpaste\.com)/i.test(body); if (!hasMarkers && !hasLinks) { diff --git a/README.md b/README.md index 84911b040..0c3fa8a26 100644 --- a/README.md +++ b/README.md @@ -56,11 +56,11 @@ Official Linux repository: [https://awawa-dev.github.io/](https://awawa-dev.github.io/) Latest test builds (GitHub Action โ€” login required, select latest build from master branch, setups in ZIP artifacts): -[https://github.com/awawa-dev/HyperHDR/actions](https://github.com/awawa-dev/HyperHDR/actions) +![Latest build on master](https://github.com/awawa-dev/HyperHDR/workflows/Build/badge.svg?branch=master) ## Documentation -๐Ÿ‘‰ [Explore Our Wiki](https://awawa-dev.github.io/wiki/) ๐Ÿ‘ˆ +๐Ÿ‘‰ [Explore Our Wiki](https://wiki.hyperhdr.eu/) ๐Ÿ‘ˆ ## Community From 8fd7ffb391776b10494c8194cea15361497df6c6 Mon Sep 17 00:00:00 2001 From: Awawa <69086569+awawa-dev@users.noreply.github.com> Date: Sat, 7 Feb 2026 08:45:03 +0100 Subject: [PATCH 4/9] Update feature request and issue forms (4) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c3fa8a26..899967646 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Official Linux repository: [https://awawa-dev.github.io/](https://awawa-dev.github.io/) Latest test builds (GitHub Action โ€” login required, select latest build from master branch, setups in ZIP artifacts): -![Latest build on master](https://github.com/awawa-dev/HyperHDR/workflows/Build/badge.svg?branch=master) +![Latest build on master](https://github.com/awawa-dev/HyperHDR/actions?query=branch%3Amaster) ## Documentation From 01b300ac256b8df6b70fd9d1907040fc680ab395 Mon Sep 17 00:00:00 2001 From: Awawa <69086569+awawa-dev@users.noreply.github.com> Date: Sat, 7 Feb 2026 08:47:00 +0100 Subject: [PATCH 5/9] Update feature request and issue forms (5) --- .github/workflows/verify-issue.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/verify-issue.yml b/.github/workflows/verify-issue.yml index b944edd8e..de37f05c6 100644 --- a/.github/workflows/verify-issue.yml +++ b/.github/workflows/verify-issue.yml @@ -4,7 +4,7 @@ on: types: [opened, edited] jobs: - check-logs: + verify-new-issue: if: contains(github.event.issue.labels.*.name, 'bug') runs-on: ubuntu-latest steps: From 163c22b597911422eac2fa968cc5fd7f021a5bf0 Mon Sep 17 00:00:00 2001 From: Awawa <69086569+awawa-dev@users.noreply.github.com> Date: Sat, 7 Feb 2026 12:47:37 +0100 Subject: [PATCH 6/9] Update feature request and issue forms (6) --- .github/ISSUE_TEMPLATE/bug_report.yml | 53 +++++++++++++++------------ 1 file changed, 29 insertions(+), 24 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 492fd041a..753b79d5d 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -5,17 +5,17 @@ body: - type: markdown attributes: value: | - ### ๐Ÿ›ก๏ธ SECURITY & PRIVACY FIRST - **IMPORTANT:** Before posting any logs or screenshots, **sanitize your data**. - Remove any: - * **API Tokens/Keys** (e.g., Philips Hue, WLED, Home Assistant, etc.) - * **Passwords or Credentials** - * **Private Network Details** (if you consider them sensitive) - - *Your logs are public. It is your responsibility to remove private information.* + #### ๐Ÿ›ก๏ธ SECURITY & PRIVACY FIRST +

+ IMPORTANT: Before posting any logs or screenshots, sanitize your data.
+ Remove any: API Tokens/Keys (Hue, WLED, HA, etc.), Passwords, or Private Network Details.
+ Your logs are public. It is your responsibility to remove private information. +

- ### ๐Ÿงช TEST LATEST VERSION FIRST - Before reporting, please check the **latest Github Actions/beta builds**. The issue might already be fixed there! + #### ๐Ÿงช USE SEARCH AND TEST LATEST VERSION FIRST +

+ Please search existing Issues and Discussions to see if this has been reported.
Also, check the latest Github Actions/beta builds โ€“ the issue might already be fixed there.
+

- type: textarea id: reproduction-path @@ -33,6 +33,7 @@ body: label: Have you tested the latest Github Action/beta build? description: We strongly recommend testing the latest dev build before reporting. options: + - "..." - "Yes, the problem still exists in the latest beta/Github Action builds" - "No, I am only using the official stable release" validations: @@ -43,6 +44,7 @@ body: attributes: label: Did this work in a previous stable version? options: + - "..." - "Yes, it worked in the previous version" - "No, it never worked for me" - "N/A (This is a new feature)" @@ -55,15 +57,16 @@ body: label: Platform description: Select your hardware platform options: - - "Raspberry Pi Zero 2 W (your grabber may be affected by the V4L2 kernel bug)" - - "Raspberry Pi 3 (your grabber may be affected by the V4L2 kernel bug)" - - "Raspberry Pi 4" - - "Raspberry Pi 5" + - "..." - "Windows (x64)" + - "Raspberry Pi 5" + - "Raspberry Pi 4" + - "Raspberry Pi 3 (your grabber may be affected by the V4L2 kernel bug)" + - "Raspberry Pi Zero 2 W (your grabber may be affected by the V4L2 kernel bug)" - "Linux (x64: Ubuntu/Debian/Fedora/Arch)" - "Linux (arm64)" - "macOS" - - "webOS (remember that we do not handle webOS builds)" + - "webOS (please note: we do not provide official webOS installers)" validations: required: true @@ -73,14 +76,15 @@ body: label: Capture Device / Grabber description: Which grabber or software capture method are you using? options: - - Pipewire (Software) - - DirectX11 (Software) - - Flatbuffers/Protobuffers (Software) + - "..." - MS2109 (USB) - MS2130 (USB) - UGREEN 25173 (USB) - - Other USB Grabber (provide model in the "Detailed Reproduction Path") - - Other software Grabber (provide type in the "Detailed Reproduction Path") + - Pipewire (Software) + - DirectX11 (Software) + - Flatbuffers/Protobuffers (Software) + - Other software capture (provide type in the "Detailed Reproduction Path") + - Other USB Grabber (provide model in the "Detailed Reproduction Path") - Not applicable validations: required: true @@ -91,6 +95,7 @@ body: label: LED Driver description: Which main LED driver is selected in the configuration? options: + - "..." - HyperSerialPico - HyperSerialSpi - HyperSerialESP32 @@ -108,7 +113,7 @@ body: id: system-about attributes: label: System About Info - description: Paste the content of the 'Advanced' -> 'About' system configuration tab here. + description: "Paste the content of the 'Advanced' -> 'About HyperHDR' system configuration tab here." placeholder: "If the WebUI does not start, type: 'GUI not accessible'" validations: required: true @@ -118,9 +123,9 @@ body: attributes: label: Application Log description: | - Logs must refer to the issue and be taken in its entirety after approx. 2-3 minutes of runtime. - If the application doesn't start: run it from the command line (on Windows use the `-c` parameter) and copy the output from the terminal. - Accepted links: PrivateBin, Pastebin, Hastebin, mPaste. + Logs must be relevant to the issue and provided in full after approx. 2-3 minutes of runtime or immediately after the error occurs.
+ If the application doesn't start: run it from the command line (use the -c parameter on Windows) and copy the output.
+ Accepted links: PrivateBin, Pastebin, Hastebin, mPaste.
placeholder: "Paste your sanitized logs here or provide a link..." validations: required: true From 772c7be858c8d583b1415217f3bf14cd6e84e56a Mon Sep 17 00:00:00 2001 From: Awawa <69086569+awawa-dev@users.noreply.github.com> Date: Sat, 7 Feb 2026 12:48:09 +0100 Subject: [PATCH 7/9] Update feature request and issue forms (7) --- .github/workflows/verify-issue.yml | 36 ------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/verify-issue.yml diff --git a/.github/workflows/verify-issue.yml b/.github/workflows/verify-issue.yml deleted file mode 100644 index de37f05c6..000000000 --- a/.github/workflows/verify-issue.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Verify New Issue -on: - issues: - types: [opened, edited] - -jobs: - verify-new-issue: - if: contains(github.event.issue.labels.*.name, 'bug') - runs-on: ubuntu-latest - steps: - - name: Validate issue content - uses: actions/github-script@v7 - with: - script: | - const body = context.payload.issue.body; - - // Check for markers or supported links - const hasMarkers = /Starting HyperHdr|PERFORMANCE/.test(body); - const hasLinks = /(pastebin\.com|privatebin\.net|hastebin\.com|mpaste\.com)/i.test(body); - - if (!hasMarkers && !hasLinks) { - await github.rest.issues.createComment({ - owner: context.repo.owner, - repo: context.repo.repo, - issue_number: context.payload.issue.number, - body: "โŒ **Log verification failed!**\n\nTo process this report, we need valid logs. Please update your issue:\n1. Include **`[MAIN] Starting HyperHdr`** or **`PERFORMANCE`** markers.\n2. Or provide a link to **Pastebin, PrivateBin, Hastebin or mPaste**.\n3. Logs should represent ~2-3 minutes of runtime.\n\nโš ๏ธ **SECURITY:** Remove all private tokens/keys before posting!\n\n*This issue is closed. It will be reviewed once valid logs are provided.*" - }); - - await github.rest.issues.update({ - owner: context.repo.owner, - repo: context.repo.repo, - issue_number: context.payload.issue.number, - state: 'closed', - labels: ['bug', 'missing-logs'] - }); - } \ No newline at end of file From d34f2d6a27a32ac7b578e441bcbf15cc1b22c211 Mon Sep 17 00:00:00 2001 From: Awawa <69086569+awawa-dev@users.noreply.github.com> Date: Sat, 7 Feb 2026 12:49:35 +0100 Subject: [PATCH 8/9] Update feature request and issue forms (8) --- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 0fee34c73..1b9003ee3 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -9,7 +9,7 @@ body: description: Describe exactly how this should work (user flow). validations: required: true - min_length: 50 + min_length: 30 - type: textarea id: justification From 6b12d51ff7669e4b0649e405f37753a716266f61 Mon Sep 17 00:00:00 2001 From: Awawa <69086569+awawa-dev@users.noreply.github.com> Date: Sat, 7 Feb 2026 13:00:12 +0100 Subject: [PATCH 9/9] Update feature request and issue forms (9) --- .github/ISSUE_TEMPLATE/bug_report.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 753b79d5d..f3fc87add 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -14,7 +14,7 @@ body: #### ๐Ÿงช USE SEARCH AND TEST LATEST VERSION FIRST

- Please search existing Issues and Discussions to see if this has been reported.
Also, check the latest Github Actions/beta builds โ€“ the issue might already be fixed there.
+ Please search existing FAQ, Github Issues and Discussions to see if this has been reported.
Also, check the latest Github Actions/beta builds โ€“ the issue might already be fixed there.

- type: textarea @@ -58,7 +58,7 @@ body: description: Select your hardware platform options: - "..." - - "Windows (x64)" + - "Windows" - "Raspberry Pi 5" - "Raspberry Pi 4" - "Raspberry Pi 3 (your grabber may be affected by the V4L2 kernel bug)"