Epochify #1

Merged
eburk merged 6 commits from epochify into main 2025-07-22 20:47:04 +00:00
27 changed files with 352 additions and 1328 deletions
Showing only changes of commit b744b6bc2b - Show all commits

View File

@@ -121,12 +121,12 @@ func createBottomBar(myWindow fyne.Window) fyne.CanvasObject {
showTroubleshootingPopup() showTroubleshootingPopup()
}) })
// GitHub button // Git button
githubButton := widget.NewButton("GitHub", func() { gitButton := widget.NewButton("Source Code", func() {
githubURL := "https://github.com/tairasu/EpochSilicon" githubURL := "https://git.burkey.co/eburk/epochsilicon"
parsedURL, err := url.Parse(githubURL) parsedURL, err := url.Parse(githubURL)
if err != nil { if err != nil {
debug.Printf("Error parsing GitHub URL: %v", err) debug.Printf("Error parsing git URL: %v", err)
return return
} }
fyne.CurrentApp().OpenURL(parsedURL) fyne.CurrentApp().OpenURL(parsedURL)
@@ -148,7 +148,7 @@ func createBottomBar(myWindow fyne.Window) fyne.CanvasObject {
leftButtons := container.NewHBox( leftButtons := container.NewHBox(
optionsButton, optionsButton,
troubleshootingButton, troubleshootingButton,
githubButton, gitButton,
) )
// Create the large play button with fixed size // Create the large play button with fixed size