feat: add credits page with team acknowledgments and technology stack details

This commit is contained in:
Flavio Fois
2026-02-05 23:42:29 +01:00
parent e9500209a8
commit f1d603cc45
9 changed files with 398 additions and 8 deletions

View File

@@ -144,3 +144,16 @@ func (a *App) OpenFolderInExplorer(folderPath string) error {
cmd := exec.Command("explorer", folderPath)
return cmd.Start()
}
// OpenURLInBrowser opens the specified URL in the system's default web browser.
// Uses the Windows "start" command to launch the default browser.
//
// Parameters:
// - url: The URL to open (must be a valid http/https URL)
//
// Returns:
// - error: Error if launching the browser fails
func (a *App) OpenURLInBrowser(url string) error {
cmd := exec.Command("cmd", "/c", "start", "", url)
return cmd.Start()
}