From fc754b1b200f4632311ff7a78b2dc19170a01364 Mon Sep 17 00:00:00 2001 From: JHubi1 Date: Mon, 18 Aug 2025 17:10:14 +0200 Subject: [PATCH 1/2] Update bug.yaml --- .github/ISSUE_TEMPLATE/bug.yaml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml index 2e27ee9..294b96d 100644 --- a/.github/ISSUE_TEMPLATE/bug.yaml +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -11,9 +11,10 @@ body: required: true - label: I have confirmed this bug exists on the latest version of the app required: true - - type: dropdown + - id: platforms + type: dropdown attributes: - label: "Platform" + label: "Platforms" description: "The platforms on which the bug occurs or had occurred. Select all that apply." multiple: true options: @@ -23,7 +24,8 @@ body: - Web validations: required: true - - type: input + - id: description + type: input attributes: label: "Description" description: "A short description of what the bug is." @@ -51,7 +53,8 @@ body: placeholder: "Instead, I saw..." validations: required: true - - type: textarea + - id: context + type: textarea attributes: label: "Screenshots or additional context" - description: "If applicable, add screenshots to help explain your problem." \ No newline at end of file + description: "If applicable, add screenshots to help explain your problem." From 3759d32049771096b172b99400edae6d4f1a2557 Mon Sep 17 00:00:00 2001 From: JHubi1 Date: Sun, 24 Aug 2025 22:11:07 +0200 Subject: [PATCH 2/2] Fix capability check for model details --- lib/worker/setter.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/worker/setter.dart b/lib/worker/setter.dart index c2a3d44..50e9b49 100644 --- a/lib/worker/setter.dart +++ b/lib/worker/setter.dart @@ -42,7 +42,7 @@ void setModel(BuildContext context, Function setState) { models.add(list.models![i].model!.split(":")[0]); modelsReal.add(list.models![i].model!); modal.add((list.models![i].details!.families ?? []).contains("clip") || - (details.capabilities ?? []).contains("vision")); + (details.capabilities ?? []).contains(llama.Capability.vision)); } addIndex = models.length;