From 5f121198d452ef933e4ae75f360f68b7d7d7eb94 Mon Sep 17 00:00:00 2001 From: Gilles <43683714+corp-0@users.noreply.github.com> Date: Sun, 7 Jun 2026 22:49:30 -0400 Subject: [PATCH 1/3] fix: update overlay to use all the window height --- src/components/layouts/UpdateLayout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/layouts/UpdateLayout.tsx b/src/components/layouts/UpdateLayout.tsx index a33e001..4400605 100644 --- a/src/components/layouts/UpdateLayout.tsx +++ b/src/components/layouts/UpdateLayout.tsx @@ -60,7 +60,7 @@ export default function UpdateLayout(props: UpdateLayoutProps) { return ( Date: Sun, 7 Jun 2026 22:50:05 -0400 Subject: [PATCH 2/3] fix: make sure links in the update notes are open as external links --- .../molecules/update/ReleaseNotesCard.tsx | 20 ++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/src/components/molecules/update/ReleaseNotesCard.tsx b/src/components/molecules/update/ReleaseNotesCard.tsx index d99bfa9..30ef69f 100644 --- a/src/components/molecules/update/ReleaseNotesCard.tsx +++ b/src/components/molecules/update/ReleaseNotesCard.tsx @@ -1,10 +1,28 @@ import { Box, Typography } from "@mui/joy"; import Markdown from "react-markdown"; +import type { Components } from "react-markdown"; +import { openExternalUrl } from "../../../utils/navigation/openExternalUrl"; interface ReleaseNotesCardProps { content: string; } +const markdownComponents: Components = { + a: ({ href, children, ...rest }) => ( + { + if (href) { + void openExternalUrl(event, href); + } + }} + > + {children} + + ), +}; + export default function ReleaseNotesCard(props: ReleaseNotesCardProps) { const { content } = props; @@ -54,7 +72,7 @@ export default function ReleaseNotesCard(props: ReleaseNotesCardProps) { "& a:hover": { textDecoration: "underline" }, "& strong": { color: "text.primary" }, }}> - {content} + {content} ); From 518f8a83c29a56501213355bdf87979ebc30d0fd Mon Sep 17 00:00:00 2001 From: Gilles <43683714+corp-0@users.noreply.github.com> Date: Sun, 7 Jun 2026 22:50:12 -0400 Subject: [PATCH 3/3] chore: bump version --- src-tauri/tauri.conf.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 81013e0..55d3720 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "pudu-launcher", - "version": "2.0.0", + "version": "2.0.1", "identifier": "com.corp0.pudu-launcher", "build": { "beforeDevCommand": "npm run generate-ts && npm run build-sidecar && npm run dev",