From 94cfc4abafaf85531b4bab82fddaff55026b54d5 Mon Sep 17 00:00:00 2001 From: klabast <74070528+klabast@users.noreply.github.com> Date: Tue, 8 Sep 2026 20:03:27 +0200 Subject: [PATCH] chore: feature request form both issues so far were feature requests filed blank. the bug form placeholder was still 0.4.0. --- .github/ISSUE_TEMPLATE/bug.yml | 2 +- .github/ISSUE_TEMPLATE/feature.yml | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 .github/ISSUE_TEMPLATE/feature.yml diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 0f8e330..1c277a9 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -31,7 +31,7 @@ body: attributes: label: Versions description: "`mda --version`, or the app version from its About window. Plus your macOS version." - placeholder: "0.4.0 on macOS 15.6" + placeholder: "0.7.1 on macOS 15.6" validations: required: true diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml new file mode 100644 index 0000000..88a4b7b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -0,0 +1,29 @@ +name: Feature request +description: Something the app or the cli should do +labels: ["enhancement"] +body: + - type: textarea + id: what + attributes: + label: What should it do + description: The behaviour you want, not how to build it. + validations: + required: true + + - type: textarea + id: why + attributes: + label: Why + description: What you do today instead, and what that costs you. + validations: + required: true + + - type: dropdown + id: surface + attributes: + label: App or CLI + options: + - macOSDefaultApps (the app) + - mda (the cli) + - both + - don't care