diff --git a/.gitignore b/.gitignore index bbd0e4f..0059351 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ !*.yml !*.yaml !*.md +!*.txt !go.sum !go.mod !assets/ diff --git a/internal/app/assets/urls/featureRequestURL.txt b/internal/app/assets/urls/featureRequestURL.txt new file mode 100644 index 0000000..da72944 --- /dev/null +++ b/internal/app/assets/urls/featureRequestURL.txt @@ -0,0 +1 @@ +https://github.com/joshuar/autocorrector/issues/new?assignees=&labels=&template=feature_request.md&title= \ No newline at end of file diff --git a/internal/app/assets/urls/issueURL.txt b/internal/app/assets/urls/issueURL.txt new file mode 100644 index 0000000..551962d --- /dev/null +++ b/internal/app/assets/urls/issueURL.txt @@ -0,0 +1 @@ +https://github.com/joshuar/autocorrector/issues/new?assignees=joshuar&labels=&template=bug_report.md&title=%5BBUG%5D \ No newline at end of file diff --git a/internal/app/ui.go b/internal/app/ui.go index 7713267..b740a62 100644 --- a/internal/app/ui.go +++ b/internal/app/ui.go @@ -22,10 +22,10 @@ import ( "github.com/rs/zerolog/log" ) -//go:embed assets/urls/issueURL +//go:embed assets/urls/issueURL.txt var issueURL string -//go:embed assets/urls/featureRequestURL +//go:embed assets/urls/featureRequestURL.txt var featureRequestURL string func newUI() fyne.App {