about summary refs log tree commit homepage
path: root/lib/dtas/player
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2013-09-09 07:51:06 +0000
committerEric Wong <normalperson@yhbt.net>2013-09-09 07:51:06 +0000
commit72bdee181ad5d95f1925d3abedd7f860101a75d3 (patch)
tree7896769d343304962d967777039323549f83e9e2 /lib/dtas/player
parent0a2c2084eaca34fb869ee338315e91cbf809212f (diff)
downloaddtas-72bdee181ad5d95f1925d3abedd7f860101a75d3.tar.gz
This means we can go back and forth in the tracklist like a normal
music player.  This will allow an easier MPRIS 2.0 implementation.
Diffstat (limited to 'lib/dtas/player')
-rw-r--r--lib/dtas/player/client_handler.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/dtas/player/client_handler.rb b/lib/dtas/player/client_handler.rb
index 355451d..33cae05 100644
--- a/lib/dtas/player/client_handler.rb
+++ b/lib/dtas/player/client_handler.rb
@@ -583,6 +583,13 @@ module DTAS::Player::ClientHandler # :nodoc:
     when "current-id"
       path = @tl.cur_track
       io.emit(path ? path.object_id.to_s : "NONE")
+    when "next"
+      _tl_skip
+      io.emit("OK")
+    when "previous"
+      @tl.previous!
+      _tl_skip
+      io.emit("OK")
     end
   end
 end