diff options
| author | Tom Feist <shabble@metavore.org> | 2011-10-10 17:50:02 +0000 | 
|---|---|---|
| committer | Tom Feist <shabble@metavore.org> | 2011-10-10 17:50:02 +0000 | 
| commit | 06b55d9e88f5f0f2505342c204a7e8729cfd561a (patch) | |
| tree | 2494202d562ac5abad9d648284fe0deb7d3af710 /fixery | |
| parent | nicklist: now with support for +a (admin, & sigil), and +q (~ sigil - channel... (diff) | |
| download | irssi-scripts-06b55d9e88f5f0f2505342c204a7e8729cfd561a.tar.gz irssi-scripts-06b55d9e88f5f0f2505342c204a7e8729cfd561a.zip | |
nicklist: bumped version number, added my contact details to header.
still need to update comments in head.
Diffstat (limited to 'fixery')
| -rw-r--r-- | fixery/nicklist.pl | 15 | 
1 files changed, 10 insertions, 5 deletions
| diff --git a/fixery/nicklist.pl b/fixery/nicklist.pl index 03f7754..3e5392a 100644 --- a/fixery/nicklist.pl +++ b/fixery/nicklist.pl @@ -7,15 +7,17 @@ use Fcntl;                      # for sysopen  use Data::Dumper; -our $VERSION = '0.4.6'; +our $VERSION = '0.5.0';  our %IRSSI = ( -          authors     => 'Wouter Coekaerts', -          contact     => 'coekie@irssi.org', +          authors     => 'Wouter Coekaerts, shabble', +          contact     => 'coekie@irssi.org, shabble+irssi@metavore.org',            name        => 'nicklist',            description => 'draws a nicklist to another terminal, ' -              . 'or at the right of your irssi in the same terminal', +                       . 'or at the right of your irssi in the same terminal',            license     => 'GPLv2', -          url         => 'http://wouter.coekaerts.be/irssi', +          url         => 'http://wouter.coekaerts.be/irssi, ' +                       . 'https://github.com/shabble/irssi-scripts' +                       . '/blob/master/fixery/nicklist.pl',            changed     => '10/10/2011'           ); @@ -727,6 +729,8 @@ Irssi::signal_add('setup changed', \&read_settings);  ##### settings #####  Irssi::settings_add_str('nicklist', 'nicklist_screen_prefix',      '\e[m '); +Irssi::settings_add_str('nicklist', 'nicklist_screen_mode_suffix', '\e[39m'); +  Irssi::settings_add_str('nicklist', 'nicklist_prefix_mode_owner',  '\e[31m~\e[39m');  Irssi::settings_add_str('nicklist', 'nicklist_prefix_mode_admin',  '\e[33m&\e[39m');  Irssi::settings_add_str('nicklist', 'nicklist_prefix_mode_op',     '\e[32m@\e[39m'); @@ -734,6 +738,7 @@ Irssi::settings_add_str('nicklist', 'nicklist_prefix_mode_halfop', '\e[34m%\e[39  Irssi::settings_add_str('nicklist', 'nicklist_prefix_mode_voice',  '\e[3m+\e[39m');  Irssi::settings_add_str('nicklist', 'nicklist_prefix_mode_normal', ' '); +  Irssi::settings_add_int('nicklist', 'nicklist_width',11);  Irssi::settings_add_int('nicklist', 'nicklist_height',24); | 
