use vars qw($VERSION %IRSSI);
$VERSION = "2.2.4beta";
-my ($REV) = '$Rev: 650 $' =~ /(\d+)/;
+my ($REV) = '$Rev: 652 $' =~ /(\d+)/;
%IRSSI = (
authors => 'Dan Boger',
contact => 'zigdon@gmail.com',
. 'Can optionally set your bitlbee /away message to same',
license => 'GNU GPL v2',
url => 'http://twirssi.com',
- changed => '$Date: 2009-06-11 16:51:40 -0700 (Thu, 11 Jun 2009) $',
+ changed => '$Date: 2009-06-29 14:36:38 -0700 (Mon, 29 Jun 2009) $',
);
my $window;
¬ice("Welcome to twirssi!"
. " Perhaps you should add \@twirssi to your friends list,"
. " so you can be notified when a new version is release?"
- . " Just type /twitter_friend twirssi." );
+ . " Just type /twitter_follow twirssi." );
}
}
%nicks = %friends;
}
);
Irssi::command_bind(
- "twitter_friend",
+ "twitter_follow",
&gen_cmd(
- "/twitter_friend <username>",
+ "/twitter_follow <username>",
"create_friend",
sub { ¬ice("Following $_[0]"); $nicks{ $_[0] } = time; }
)
);
Irssi::command_bind(
- "twitter_unfriend",
+ "twitter_unfollow",
&gen_cmd(
"/twitter_unfriend <username>",
- "destroy_friend",
+ "destroy_follow",
sub { ¬ice("Stopped following $_[0]"); delete $nicks{ $_[0] }; }
)
);