From b744b6bc2bdf9e60ce0ff1c8d38f755fa22361ee Mon Sep 17 00:00:00 2001 From: Evan Burkey Date: Tue, 22 Jul 2025 07:24:12 -0700 Subject: [PATCH] change link --- pkg/ui/components.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkg/ui/components.go b/pkg/ui/components.go index 09a0c83..5464c2e 100644 --- a/pkg/ui/components.go +++ b/pkg/ui/components.go @@ -121,12 +121,12 @@ func createBottomBar(myWindow fyne.Window) fyne.CanvasObject { showTroubleshootingPopup() }) - // GitHub button - githubButton := widget.NewButton("GitHub", func() { - githubURL := "https://github.com/tairasu/EpochSilicon" + // Git button + gitButton := widget.NewButton("Source Code", func() { + githubURL := "https://git.burkey.co/eburk/epochsilicon" parsedURL, err := url.Parse(githubURL) if err != nil { - debug.Printf("Error parsing GitHub URL: %v", err) + debug.Printf("Error parsing git URL: %v", err) return } fyne.CurrentApp().OpenURL(parsedURL) @@ -148,7 +148,7 @@ func createBottomBar(myWindow fyne.Window) fyne.CanvasObject { leftButtons := container.NewHBox( optionsButton, troubleshootingButton, - githubButton, + gitButton, ) // Create the large play button with fixed size