mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
run syncscripts.sh
This commit is contained in:
parent
ca3498d42d
commit
8c0e0c81ee
@ -1,6 +1,9 @@
|
|||||||
# automatically rejoin to channel after kick
|
# automatically rejoin to channel after kicked
|
||||||
# delayed rejoin: Lam 28.10.2001 (lam@lac.pl)
|
# delayed rejoin: Lam 28.10.2001 (lam@lac.pl)
|
||||||
|
|
||||||
|
# /SET autorejoin_channels #channel1 #channel2 ...
|
||||||
|
# /SET autorejoin_delay 5
|
||||||
|
|
||||||
# NOTE: I personally don't like this feature, in most channels I'm in it
|
# NOTE: I personally don't like this feature, in most channels I'm in it
|
||||||
# will just result as ban. You've probably misunderstood the idea of /KICK
|
# will just result as ban. You've probably misunderstood the idea of /KICK
|
||||||
# if you kick/get kicked all the time "just for fun" ...
|
# if you kick/get kicked all the time "just for fun" ...
|
||||||
@ -9,31 +12,22 @@ use Irssi;
|
|||||||
use Irssi::Irc;
|
use Irssi::Irc;
|
||||||
use strict;
|
use strict;
|
||||||
use vars qw($VERSION %IRSSI);
|
use vars qw($VERSION %IRSSI);
|
||||||
$VERSION = "1.0.0";
|
$VERSION = "1.1.0";
|
||||||
%IRSSI = (
|
%IRSSI = (
|
||||||
authors => "Timo 'cras' Sirainen, Leszek Matok",
|
authors => "Timo 'cras' Sirainen, Leszek Matok",
|
||||||
contact => "lam\@lac.pl",
|
contact => "lam\@lac.pl",
|
||||||
name => "autorejoin",
|
name => "autorejoin",
|
||||||
description => "Automatically rejoin to channel after being kick, after a (short) user-defined delay",
|
description => "Automatically rejoin to channel after being kicked, after a (short) user-defined delay",
|
||||||
license => "GPLv2",
|
license => "GPLv2",
|
||||||
changed => "10.3.2002 14:00"
|
changed => "10.3.2002 14:00"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
# How many seconds to wait before the rejoin?
|
|
||||||
# TODO: make this a /setting
|
|
||||||
my $delay = 5;
|
|
||||||
|
|
||||||
my @tags;
|
|
||||||
my $acttag = 0;
|
|
||||||
|
|
||||||
sub rejoin {
|
sub rejoin {
|
||||||
my ( $data ) = @_;
|
my ( $data ) = @_;
|
||||||
my ( $tag, $servtag, $channel, $pass ) = split( / +/, $data );
|
my ( $servtag, $channel, $pass ) = @{$data};
|
||||||
|
|
||||||
my $server = Irssi::server_find_tag( $servtag );
|
my $server = Irssi::server_find_tag( $servtag );
|
||||||
$server->send_raw( "JOIN $channel $pass" ) if ( $server );
|
$server->send_raw( "JOIN $channel $pass" ) if ( $server );
|
||||||
Irssi::timeout_remove( $tags[$tag] );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
sub event_rejoin_kick {
|
sub event_rejoin_kick {
|
||||||
@ -48,10 +42,31 @@ sub event_rejoin_kick {
|
|||||||
my $rejoinchan = $chanrec->{ name } if ( $chanrec );
|
my $rejoinchan = $chanrec->{ name } if ( $chanrec );
|
||||||
my $servtag = $server->{ tag };
|
my $servtag = $server->{ tag };
|
||||||
|
|
||||||
|
# check if we want to autorejoin this channel
|
||||||
|
my $chans = Irssi::settings_get_str( 'autorejoin_channels' );
|
||||||
|
|
||||||
|
if ( $chans ) {
|
||||||
|
my $found = 0;
|
||||||
|
foreach my $chan ( split( /[ ,]/, $chans ) ) {
|
||||||
|
if ( lc( $chan ) eq lc( $channel ) ) {
|
||||||
|
$found = 1;
|
||||||
|
last;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return unless $found;
|
||||||
|
}
|
||||||
|
|
||||||
|
my @args = ($servtag, $rejoinchan, $password);
|
||||||
|
my $delay = Irssi::settings_get_int( "autorejoin_delay" );
|
||||||
|
|
||||||
|
if ($delay) {
|
||||||
Irssi::print "Rejoining $rejoinchan in $delay seconds.";
|
Irssi::print "Rejoining $rejoinchan in $delay seconds.";
|
||||||
$tags[$acttag] = Irssi::timeout_add( $delay * 1000, "rejoin", "$acttag $servtag $rejoinchan $password" );
|
Irssi::timeout_add_once( $delay * 1000, "rejoin", \@args );
|
||||||
$acttag++;
|
} else {
|
||||||
$acttag = 0 if ( $acttag > 60 );
|
rejoin( \@args );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Irssi::settings_add_int('misc', 'autorejoin_delay', 5);
|
||||||
|
Irssi::settings_add_str('misc', 'autorejoin_channels', '');
|
||||||
Irssi::signal_add( 'event kick', 'event_rejoin_kick' );
|
Irssi::signal_add( 'event kick', 'event_rejoin_kick' );
|
||||||
|
@ -6,6 +6,7 @@ $VERSION = "2.92";
|
|||||||
contact => "tss\@iki.fi, matti\@hiljanen.com, joost\@carnique.nl, bart\@dreamflow.nl",
|
contact => "tss\@iki.fi, matti\@hiljanen.com, joost\@carnique.nl, bart\@dreamflow.nl",
|
||||||
name => "mail",
|
name => "mail",
|
||||||
description => "Fully customizable mail counter statusbar item with multiple mailbox and multiple Maildir support",
|
description => "Fully customizable mail counter statusbar item with multiple mailbox and multiple Maildir support",
|
||||||
|
sbitems => "mail",
|
||||||
license => "Public Domain",
|
license => "Public Domain",
|
||||||
url => "http://irssi.org, http://scripts.irssi.de",
|
url => "http://irssi.org, http://scripts.irssi.de",
|
||||||
);
|
);
|
||||||
|
@ -7,6 +7,7 @@ $VERSION = "1.19";
|
|||||||
contact => 'dgl@dgl.cx, tss@iki.fi, georg@boerde.de',
|
contact => 'dgl@dgl.cx, tss@iki.fi, georg@boerde.de',
|
||||||
name => 'usercount',
|
name => 'usercount',
|
||||||
description => 'Adds a usercount for a channel as a statusbar item',
|
description => 'Adds a usercount for a channel as a statusbar item',
|
||||||
|
sbitems => 'usercount',
|
||||||
license => 'GNU GPLv2 or later',
|
license => 'GNU GPLv2 or later',
|
||||||
url => 'http://irssi.dgl.cx/',
|
url => 'http://irssi.dgl.cx/',
|
||||||
changes => 'Only show halfops if server supports them',
|
changes => 'Only show halfops if server supports them',
|
||||||
|
Loading…
Reference in New Issue
Block a user