categories
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
abs3nt 2024-02-18 11:59:39 -08:00
parent 775331ce69
commit 122c330c44
Signed by: abs3nt
GPG Key ID: A7BD96A8BAB04C09

View File

@ -32,6 +32,7 @@ func Run(c *commands.Commander, s fx.Shutdowner) {
Action: func(cCtx *cli.Context) error { Action: func(cCtx *cli.Context) error {
return c.Play() return c.Play()
}, },
Category: "Playback",
}, },
{ {
Name: "playurl", Name: "playurl",
@ -42,6 +43,7 @@ func Run(c *commands.Commander, s fx.Shutdowner) {
Action: func(ctx *cli.Context) error { Action: func(ctx *cli.Context) error {
return c.PlayUrl(ctx.Args().First()) return c.PlayUrl(ctx.Args().First())
}, },
Category: "Playback",
}, },
{ {
Name: "pause", Name: "pause",
@ -50,6 +52,7 @@ func Run(c *commands.Commander, s fx.Shutdowner) {
Action: func(cCtx *cli.Context) error { Action: func(cCtx *cli.Context) error {
return c.Pause() return c.Pause()
}, },
Category: "Playback",
}, },
{ {
Name: "toggleplay", Name: "toggleplay",
@ -58,6 +61,7 @@ func Run(c *commands.Commander, s fx.Shutdowner) {
Action: func(cCtx *cli.Context) error { Action: func(cCtx *cli.Context) error {
return c.TogglePlay() return c.TogglePlay()
}, },
Category: "Playback",
}, },
{ {
Name: "link", Name: "link",
@ -66,6 +70,7 @@ func Run(c *commands.Commander, s fx.Shutdowner) {
Action: func(cCtx *cli.Context) error { Action: func(cCtx *cli.Context) error {
return c.PrintLink() return c.PrintLink()
}, },
Category: "Sharing",
}, },
{ {
Name: "linkcontext", Name: "linkcontext",
@ -74,6 +79,7 @@ func Run(c *commands.Commander, s fx.Shutdowner) {
Action: func(cCtx *cli.Context) error { Action: func(cCtx *cli.Context) error {
return c.PrintLinkContext() return c.PrintLinkContext()
}, },
Category: "Sharing",
}, },
{ {
Name: "next", Name: "next",
@ -82,6 +88,7 @@ func Run(c *commands.Commander, s fx.Shutdowner) {
Action: func(cCtx *cli.Context) error { Action: func(cCtx *cli.Context) error {
return c.Next() return c.Next()
}, },
Category: "Playback",
}, },
{ {
Name: "previous", Name: "previous",
@ -90,6 +97,7 @@ func Run(c *commands.Commander, s fx.Shutdowner) {
Action: func(cCtx *cli.Context) error { Action: func(cCtx *cli.Context) error {
return c.Previous() return c.Previous()
}, },
Category: "Playback",
}, },
{ {
Name: "like", Name: "like",
@ -98,6 +106,7 @@ func Run(c *commands.Commander, s fx.Shutdowner) {
Action: func(cCtx *cli.Context) error { Action: func(cCtx *cli.Context) error {
return c.Like() return c.Like()
}, },
Category: "Library Management",
}, },
{ {
Name: "unlike", Name: "unlike",
@ -106,6 +115,7 @@ func Run(c *commands.Commander, s fx.Shutdowner) {
Action: func(cCtx *cli.Context) error { Action: func(cCtx *cli.Context) error {
return c.UnLike() return c.UnLike()
}, },
Category: "Library Management",
}, },
{ {
Name: "nowplaying", Name: "nowplaying",
@ -121,11 +131,13 @@ func Run(c *commands.Commander, s fx.Shutdowner) {
Action: func(cCtx *cli.Context) error { Action: func(cCtx *cli.Context) error {
return c.NowPlaying(cCtx.Bool("force")) return c.NowPlaying(cCtx.Bool("force"))
}, },
Category: "Info",
}, },
{ {
Name: "volume", Name: "volume",
Aliases: []string{"v"}, Aliases: []string{"v"},
Usage: "Control the volume", Usage: "Control the volume",
Category: "Playback",
Subcommands: []*cli.Command{ Subcommands: []*cli.Command{
{ {
Name: "up", Name: "up",
@ -194,6 +206,7 @@ func Run(c *commands.Commander, s fx.Shutdowner) {
Action: func(cCtx *cli.Context) error { Action: func(cCtx *cli.Context) error {
return c.DownloadCover(cCtx.Args().First()) return c.DownloadCover(cCtx.Args().First())
}, },
Category: "Info",
}, },
{ {
Name: "radio", Name: "radio",
@ -202,6 +215,7 @@ func Run(c *commands.Commander, s fx.Shutdowner) {
Action: func(cCtx *cli.Context) error { Action: func(cCtx *cli.Context) error {
return c.Radio() return c.Radio()
}, },
Category: "Radio",
}, },
{ {
Name: "clearradio", Name: "clearradio",
@ -210,6 +224,7 @@ func Run(c *commands.Commander, s fx.Shutdowner) {
Action: func(cCtx *cli.Context) error { Action: func(cCtx *cli.Context) error {
return c.ClearRadio() return c.ClearRadio()
}, },
Category: "Radio",
}, },
{ {
Name: "status", Name: "status",
@ -217,6 +232,7 @@ func Run(c *commands.Commander, s fx.Shutdowner) {
Action: func(ctx *cli.Context) error { Action: func(ctx *cli.Context) error {
return c.Status() return c.Status()
}, },
Category: "Info",
}, },
{ {
Name: "devices", Name: "devices",
@ -225,6 +241,7 @@ func Run(c *commands.Commander, s fx.Shutdowner) {
Action: func(cCtx *cli.Context) error { Action: func(cCtx *cli.Context) error {
return c.ListDevices() return c.ListDevices()
}, },
Category: "Info",
}, },
{ {
Name: "setdevice", Name: "setdevice",
@ -237,6 +254,7 @@ func Run(c *commands.Commander, s fx.Shutdowner) {
} }
return c.SetDevice(spotify.ID(cCtx.Args().First())) return c.SetDevice(spotify.ID(cCtx.Args().First()))
}, },
Category: "Playback",
}, },
{ {
Name: "repeat", Name: "repeat",
@ -244,6 +262,7 @@ func Run(c *commands.Commander, s fx.Shutdowner) {
Action: func(cCtx *cli.Context) error { Action: func(cCtx *cli.Context) error {
return c.Repeat() return c.Repeat()
}, },
Category: "Playback",
}, },
{ {
Name: "shuffle", Name: "shuffle",
@ -251,11 +270,13 @@ func Run(c *commands.Commander, s fx.Shutdowner) {
Action: func(cCtx *cli.Context) error { Action: func(cCtx *cli.Context) error {
return c.Shuffle() return c.Shuffle()
}, },
Category: "Playback",
}, },
{ {
Name: "seek", Name: "seek",
Usage: "Seek to a position in the song", Usage: "Seek to a position in the song",
Aliases: []string{"sk"}, Aliases: []string{"sk"},
Category: "Playback",
Action: func(cCtx *cli.Context) error { Action: func(cCtx *cli.Context) error {
pos, err := strconv.Atoi(cCtx.Args().First()) pos, err := strconv.Atoi(cCtx.Args().First())
if err != nil { if err != nil {