From: g4570n Date: Thu, 25 Feb 2021 16:33:57 +0000 (-0300) Subject: Update deadbeef.pl X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=977be9e588d1441be6fbf02c07e18dd978547511;p=irssi-scripts.irssi.org.git Update deadbeef.pl fix typos in the help comments --- diff --git a/scripts/deadbeef.pl b/scripts/deadbeef.pl index f215f60..645b979 100644 --- a/scripts/deadbeef.pl +++ b/scripts/deadbeef.pl @@ -1,4 +1,7 @@ # +# 2021-02-25 +# - fix typos in the help comments +# # 2017-12-30 bcattaneo: # - initial release # @@ -11,19 +14,19 @@ use vars qw($VERSION %IRSSI); # # List of commands: # /np - now playing -# /ddplay - Start playback -# /ddstop - Stop playback -# /ddpause - Pause playback -# /ddnext - Next song in playlist -# /ddprev - Previous song in playlist -# /ddrandom - Random song in playlist +# /dbplay - Start playback +# /dbstop - Stop playback +# /dbpause - Pause playback +# /dbnext - Next song in playlist +# /dbprev - Previous song in playlist +# /dbrandom - Random song in playlist # # Settings: # /set deadbeef_format [Formatting syntax for "now playing" command] # For more info, see https://github.com/DeaDBeeF-Player/deadbeef/wiki/Title-formatting # -our $VERSION = '1.0.0'; +our $VERSION = '1.0.1'; our %IRSSI = ( authors => 'bcattaneo', contact => 'c@ttaneo.uy', @@ -31,7 +34,7 @@ our %IRSSI = ( url => 'http://github.com/bcattaneo', description => 'deadbeef control and now playing script', license => 'Public Domain', - #changed => "2017-12-30", + #changed => "2021-02-25", ); Irssi::settings_add_str('deadbeef', 'deadbeef_format' => '%a - %t');