From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS22989 208.118.235.0/24 X-Spam-Status: No, score=-4.9 required=3.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: dtas-all@80x24.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 49E551F8C3 for ; Mon, 22 Dec 2014 09:08:41 +0000 (UTC) Received: from localhost ([::1]:39711 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y2yyl-00072V-Jb for dtas-all@80x24.org; Mon, 22 Dec 2014 04:08:39 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45744) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y2yyd-0006nS-MD for dtas-all@nongnu.org; Mon, 22 Dec 2014 04:08:37 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Y2yyU-0002Gn-3S for dtas-all@nongnu.org; Mon, 22 Dec 2014 04:08:31 -0500 Received: from dcvr.yhbt.net ([64.71.152.64]:60927) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y2yyT-0002GQ-Un for dtas-all@nongnu.org; Mon, 22 Dec 2014 04:08:22 -0500 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 064441F8A1; Mon, 22 Dec 2014 09:08:19 +0000 (UTC) From: Eric Wong To: Subject: [PATCH] doc: flesh out "tl" subcommand docs Date: Mon, 22 Dec 2014 09:08:17 +0000 Message-Id: <1419239297-25018-1-git-send-email-e@80x24.org> X-Mailer: git-send-email 2.1.2.571.ged78782.dirty X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 64.71.152.64 Cc: Eric Wong X-BeenThere: dtas-all@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dtas-all-bounces+dtas-all=80x24.org@nongnu.org Sender: dtas-all-bounces+dtas-all=80x24.org@nongnu.org The following subcommands are now documented: * current * current-id * next * prev --- Documentation/dtas-player_protocol.txt | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Documentation/dtas-player_protocol.txt b/Documentation/dtas-player_protocol.txt index 8cde50d..b8f8264 100644 --- a/Documentation/dtas-player_protocol.txt +++ b/Documentation/dtas-player_protocol.txt @@ -248,6 +248,10 @@ Commands here should be alphabetized according to `LC_ALL=C sort' currently playing track with the newly-added one. Returns the TRACKID of the newly added track +* tl current - display the pathname to the currently playing track + +* tl current-id - display the TRACKID of the currently playing track + * tl remove TRACKID - remove the track with the given TRACKID from the track list @@ -258,6 +262,10 @@ Commands here should be alphabetized according to `LC_ALL=C sort' An optional timestamp may be added to prevent playing the same part(s) repeated.y +* tl next - jump to the next track in the tracklist + +* tl prev - jump to the previous track in the tracklist + * tl repeat [BOOLEAN|1] - show/or change repeat status of the tracklist. With no args, this will show "true", "false", or "1" If set to "1", dtas-player will repeat the current track. -- EW