[Pkg-mpd-commits] [python-mpd] 89/262: adding prior, priorid and seekcur commands

Simon McVittie smcv at debian.org
Sun May 22 18:16:29 UTC 2016


This is an automated email from the git hooks/post-receive script.

smcv pushed a commit to branch upstream
in repository python-mpd.

commit 0f49d96f8733db54bf278157387a40a4b83f3367
Author: Jörg Thalheim <jthalheim at gmail.com>
Date:   Thu Feb 9 07:11:19 2012 +0100

    adding prior, priorid and seekcur commands
---
 doc/commands.txt | 3 +++
 mpd.py           | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/doc/commands.txt b/doc/commands.txt
index 82e42e3..6efc6a6 100644
--- a/doc/commands.txt
+++ b/doc/commands.txt
@@ -27,6 +27,7 @@ playid             [<int>]                 -> fetch_nothing
 previous                                   -> fetch_nothing
 seek               <int> <int>             -> fetch_nothing
 seekid             <int> <int>             -> fetch_nothing
+seekcur            <int>                   -> fetch_nothing
 stop                                       -> fetch_nothing
 
 == Playlist Commands
@@ -44,6 +45,8 @@ playlistinfo       [<int>]                 -> fetch_songs
 playlistsearch     <locate>                -> fetch_songs
 plchanges          <int>                   -> fetch_songs
 plchangesposid     <int>                   -> fetch_changes
+prior              <int> <str>             -> fetch_nothing
+priorid            <int> <id>              -> fetch_nothing
 shuffle            [<str>]                 -> fetch_nothing
 swap               <int> <int>             -> fetch_nothing
 swapid             <int> <int>             -> fetch_nothing
diff --git a/mpd.py b/mpd.py
index 9b219bd..e25e5b2 100644
--- a/mpd.py
+++ b/mpd.py
@@ -80,6 +80,7 @@ _commands = {
     "previous":           "_fetch_nothing",
     "seek":               "_fetch_nothing",
     "seekid":             "_fetch_nothing",
+    "seekcur":            "_fetch_nothing",
     "stop":               "_fetch_nothing",
     # Playlist Commands
     "add":                "_fetch_nothing",
@@ -96,6 +97,8 @@ _commands = {
     "playlistsearch":     "_fetch_songs",
     "plchanges":          "_fetch_songs",
     "plchangesposid":     "_fetch_changes",
+    "prior":              "_fetch_nothing",
+    "priorid":            "_fetch_nothing",
     "shuffle":            "_fetch_nothing",
     "swap":               "_fetch_nothing",
     "swapid":             "_fetch_nothing",

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mpd/python-mpd.git



More information about the Pkg-mpd-commits mailing list