From 1841e4c4b0e6990785b5a93e334992bf2ea4ee3b Mon Sep 17 00:00:00 2001 From: David Brett Date: Fri, 29 May 2026 15:48:27 +0200 Subject: [PATCH 1/3] Remove confusing "/ Downloads via GitHub" message from download dialog --- src/components/DownloadDIalog.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/DownloadDIalog.astro b/src/components/DownloadDIalog.astro index 2b4d8b1..515c297 100644 --- a/src/components/DownloadDIalog.astro +++ b/src/components/DownloadDIalog.astro @@ -52,7 +52,7 @@ const data = await getGitHubReleaseData(); - Supports Windows 7+ / Downloads via GitHub + Supports Windows 7+ From 4577001def52764cb28dbc7fd950bf6285253547 Mon Sep 17 00:00:00 2001 From: David Brett Date: Fri, 29 May 2026 15:49:45 +0200 Subject: [PATCH 2/3] Increase minimum supported windows version to 10 in download dialog --- src/components/DownloadDIalog.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/DownloadDIalog.astro b/src/components/DownloadDIalog.astro index 515c297..2eb7a76 100644 --- a/src/components/DownloadDIalog.astro +++ b/src/components/DownloadDIalog.astro @@ -52,7 +52,7 @@ const data = await getGitHubReleaseData(); - Supports Windows 7+ + Supports Windows 10+ From b1eb9aad26c988080532d88cfa4de939b386b965 Mon Sep 17 00:00:00 2001 From: David Brett Date: Fri, 29 May 2026 16:15:17 +0200 Subject: [PATCH 3/3] Rename DownloadDialog.astro to fix casing No behavioral changes, just fixing the capitalized I that shouldn't be --- src/components/{DownloadDIalog.astro => DownloadDialog.astro} | 0 src/layouts/Layout.astro | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/components/{DownloadDIalog.astro => DownloadDialog.astro} (100%) diff --git a/src/components/DownloadDIalog.astro b/src/components/DownloadDialog.astro similarity index 100% rename from src/components/DownloadDIalog.astro rename to src/components/DownloadDialog.astro diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 83ecd44..ebea776 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -2,7 +2,7 @@ import Header from "@/components/Header.astro"; import Footer from "@/components/Footer.astro"; import {getBaseUrl} from "@/utils"; -import DownloadDialog from "@/components/DownloadDIalog.astro"; +import DownloadDialog from "@/components/DownloadDialog.astro"; import CopyButtonsScript from "../components/CopyButtonsScript.astro"; interface Props {