Merge from main

This commit is contained in:
E1int
2025-08-09 23:39:44 +02:00
30 changed files with 593 additions and 50 deletions
+10
View File
@@ -76,6 +76,16 @@ func (c *Client) PlayPause() error {
return err
}
func (c *Client) Stop() error {
_, err := c.sendRequest(StopPath)
return err
}
func (c *Client) StopAfterCurrent() error {
_, err := c.sendRequest(StopAfterCurrentPath)
return err
}
func (c *Client) SeekNext() error {
_, err := c.sendRequest(NextPath)
return err