From e327074459fd1a98c720a4026b24cce0622f4788 Mon Sep 17 00:00:00 2001 From: WitheringAway <124115470+notwithering@users.noreply.github.com> Date: Sat, 11 Oct 2025 06:14:03 -0400 Subject: [PATCH] Switch out old issue creation links with templates (#946) switch out old issue creation links with templates --- README.md | 4 ++-- src/renderer/pages/settings-page.component.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 25a6bfb6..112cb443 100644 --- a/README.md +++ b/README.md @@ -24,11 +24,11 @@
Report + href="hhttps://github.com/Zagrios/bs-manager/issues/new?template=1-bug-report.yaml">Report Bug · Request + href="https://github.com/Zagrios/bs-manager/issues/new?template=2-feature-request.yaml">Request Feature · Report a security vulnerability diff --git a/src/renderer/pages/settings-page.component.tsx b/src/renderer/pages/settings-page.component.tsx index 0216f6a6..e6f40f4a 100644 --- a/src/renderer/pages/settings-page.component.tsx +++ b/src/renderer/pages/settings-page.component.tsx @@ -247,8 +247,8 @@ export function SettingsPage() { const openSupportPage = () => linkOpener.open("https://www.patreon.com/bsmanager"); const openGithub = () => linkOpener.open("https://github.com/Zagrios/bs-manager"); - const openReportBug = () => linkOpener.open("https://github.com/Zagrios/bs-manager/issues/new?assignees=Zagrios&labels=bug&template=-bug--bug-report.md&title=%5BBUG%5D+%3A+"); - const openRequestFeatures = () => linkOpener.open("https://github.com/Zagrios/bs-manager/issues/new?assignees=Zagrios&labels=enhancement&template=-feat---feature-request.md&title=%5BFEAT.%5D+%3A+"); + const openReportBug = () => linkOpener.open("https://github.com/Zagrios/bs-manager/issues/new?template=1-bug-report.yaml"); + const openRequestFeatures = () => linkOpener.open("https://github.com/Zagrios/bs-manager/issues/new?template=2-feature-request.yaml"); const openDiscord = () => linkOpener.open(DISCORD_URL); const openTwitter = () => linkOpener.open("https://twitter.com/BSManager_");