diff --git a/.goreleaser.yaml b/.goreleaser.yaml index edae32c..7881288 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -1,6 +1,6 @@ gitea_urls: - api: https://gitea.asdf.cafe/api/v1 - download: https://gitea.asdf.cafe + api: https://git.asdf.cafe/api/v1 + download: https://git.asdf.cafe skip_tls_verify: false before: diff --git a/README.md b/README.md index ad1b2b1..e63da0d 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -IF YOU ARE ON GITHUB.COM GO HERE INSTEAD: https://gitea.asdf.cafe/abs3nt/gospt :) +IF YOU ARE ON GITHUB.COM GO HERE INSTEAD: https://git.asdf.cafe/abs3nt/gospt :) -If you open an issue or PR on github I won't see it please use gitea. Register on asdf and open your PRs there +If you open an issue or PR on github I won't see it please use git. Register on asdf and open your PRs there This project is still under heavy development and some things might not work or not work as intended. Don't hesitate to open an issue to let me know. @@ -23,7 +23,7 @@ or # To build from source by pulling and building the binary -```git clone https://gitea.asdf.cafe/abs3nt/gospt``` +```git clone https://git.asdf.cafe/abs3nt/gospt``` ```cd gospt``` @@ -77,6 +77,6 @@ To view help: Very open to contributations feel free to open a PR -[tmux plugin](https://gitea.asdf.cafe/abs3nt/tmux-gospt) +[tmux plugin](https://git.asdf.cafe/abs3nt/tmux-gospt) -[wiki](https://gitea.asdf.cafe/abs3nt/gospt/wiki) +[wiki](https://git.asdf.cafe/abs3nt/gospt/wiki) diff --git a/go.mod b/go.mod index 08ac153..6912d9b 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module gitea.asdf.cafe/abs3nt/gospt +module git.asdf.cafe/abs3nt/gospt go 1.19 diff --git a/main.go b/main.go index 26ed350..9ff0a10 100644 --- a/main.go +++ b/main.go @@ -1,7 +1,7 @@ package main import ( - "gitea.asdf.cafe/abs3nt/gospt/src/cmd" + "git.asdf.cafe/abs3nt/gospt/src/cmd" ) func main() { diff --git a/src/auth/auth.go b/src/auth/auth.go index bd003d2..21ff4d8 100644 --- a/src/auth/auth.go +++ b/src/auth/auth.go @@ -11,8 +11,8 @@ import ( "tuxpa.in/a/zlog/log" - "gitea.asdf.cafe/abs3nt/gospt/src/config" - "gitea.asdf.cafe/abs3nt/gospt/src/gctx" + "git.asdf.cafe/abs3nt/gospt/src/config" + "git.asdf.cafe/abs3nt/gospt/src/gctx" "github.com/zmb3/spotify/v2" spotifyauth "github.com/zmb3/spotify/v2/auth" diff --git a/src/cmd/root.go b/src/cmd/root.go index bfe1e12..4b3b462 100644 --- a/src/cmd/root.go +++ b/src/cmd/root.go @@ -8,10 +8,10 @@ import ( "path/filepath" "strings" - cmds "gitea.asdf.cafe/abs3nt/gospt/src/commands" + cmds "git.asdf.cafe/abs3nt/gospt/src/commands" - "gitea.asdf.cafe/abs3nt/gospt/src/config" - "gitea.asdf.cafe/abs3nt/gospt/src/gctx" + "git.asdf.cafe/abs3nt/gospt/src/config" + "git.asdf.cafe/abs3nt/gospt/src/gctx" "tuxpa.in/a/zlog" "github.com/cristalhq/aconfig" diff --git a/src/cmd/setdevice.go b/src/cmd/setdevice.go index 075a6c9..6e458a3 100644 --- a/src/cmd/setdevice.go +++ b/src/cmd/setdevice.go @@ -1,7 +1,7 @@ package cmd import ( - "gitea.asdf.cafe/abs3nt/gospt/src/tui" + "git.asdf.cafe/abs3nt/gospt/src/tui" "github.com/spf13/cobra" ) diff --git a/src/cmd/tracks.go b/src/cmd/tracks.go index 70aa187..00cd376 100644 --- a/src/cmd/tracks.go +++ b/src/cmd/tracks.go @@ -4,7 +4,7 @@ import ( "os" "path/filepath" - "gitea.asdf.cafe/abs3nt/gospt/src/tui" + "git.asdf.cafe/abs3nt/gospt/src/tui" "github.com/spf13/cobra" ) diff --git a/src/cmd/tui.go b/src/cmd/tui.go index 54673b9..f23d4fc 100644 --- a/src/cmd/tui.go +++ b/src/cmd/tui.go @@ -4,7 +4,7 @@ import ( "os" "path/filepath" - "gitea.asdf.cafe/abs3nt/gospt/src/tui" + "git.asdf.cafe/abs3nt/gospt/src/tui" "github.com/spf13/cobra" ) diff --git a/src/commands/commands.go b/src/commands/commands.go index 22f877c..568618c 100644 --- a/src/commands/commands.go +++ b/src/commands/commands.go @@ -15,9 +15,9 @@ import ( "time" "gfx.cafe/util/go/frand" - "gitea.asdf.cafe/abs3nt/gospt/src/auth" - "gitea.asdf.cafe/abs3nt/gospt/src/cache" - "gitea.asdf.cafe/abs3nt/gospt/src/gctx" + "git.asdf.cafe/abs3nt/gospt/src/auth" + "git.asdf.cafe/abs3nt/gospt/src/cache" + "git.asdf.cafe/abs3nt/gospt/src/gctx" "github.com/zmb3/spotify/v2" _ "modernc.org/sqlite" diff --git a/src/tui/handlers.go b/src/tui/handlers.go index 8269b35..07e1485 100644 --- a/src/tui/handlers.go +++ b/src/tui/handlers.go @@ -1,8 +1,8 @@ package tui import ( - "gitea.asdf.cafe/abs3nt/gospt/src/commands" - "gitea.asdf.cafe/abs3nt/gospt/src/gctx" + "git.asdf.cafe/abs3nt/gospt/src/commands" + "git.asdf.cafe/abs3nt/gospt/src/gctx" "github.com/zmb3/spotify/v2" ) diff --git a/src/tui/main.go b/src/tui/main.go index 63e9f22..491736c 100644 --- a/src/tui/main.go +++ b/src/tui/main.go @@ -5,8 +5,8 @@ import ( "strings" "time" - "gitea.asdf.cafe/abs3nt/gospt/src/commands" - "gitea.asdf.cafe/abs3nt/gospt/src/gctx" + "git.asdf.cafe/abs3nt/gospt/src/commands" + "git.asdf.cafe/abs3nt/gospt/src/gctx" "github.com/atotto/clipboard" "github.com/charmbracelet/bubbles/key" diff --git a/src/tui/tui.go b/src/tui/tui.go index 4770490..f870e6a 100644 --- a/src/tui/tui.go +++ b/src/tui/tui.go @@ -3,8 +3,8 @@ package tui import ( "fmt" - "gitea.asdf.cafe/abs3nt/gospt/src/commands" - "gitea.asdf.cafe/abs3nt/gospt/src/gctx" + "git.asdf.cafe/abs3nt/gospt/src/commands" + "git.asdf.cafe/abs3nt/gospt/src/gctx" tea "github.com/charmbracelet/bubbletea" ) diff --git a/src/tui/views.go b/src/tui/views.go index 319d61e..0cd935d 100644 --- a/src/tui/views.go +++ b/src/tui/views.go @@ -5,8 +5,8 @@ import ( "sync" "time" - "gitea.asdf.cafe/abs3nt/gospt/src/commands" - "gitea.asdf.cafe/abs3nt/gospt/src/gctx" + "git.asdf.cafe/abs3nt/gospt/src/commands" + "git.asdf.cafe/abs3nt/gospt/src/gctx" "github.com/charmbracelet/bubbles/list" "github.com/zmb3/spotify/v2"