+29Jun99=======================================================================
+1. fixed merge command that I broke.
28Jun99=======================================================================
1. console.pl now works with history and editting.
2. added scrolling to stuff sent by the cluster.
my ($self, $line) = @_;
my @f = split /\s+/, $line;
+my $call = uc $f[0];
# check for callsign
return (1, $self->msg('e5')) if $self->priv < 5;
return (1, $self->msg('e12')) if !$f[0];
return (1, $self->msg('e11')) if $call eq $main::mycall;
-my $call = uc $f[0];
my $ref = DXCluster->get_exact($call);
my $dxchan = $ref->dxchan if $ref;
return (1, $self->msg('e10', $call)) unless $ref;
@inqueue = (); # the main input queue, an array of hashes
$systime = 0; # the time now (in seconds)
-$version = "1.30"; # the version no of the software
+$version = "1.31"; # the version no of the software
$starttime = 0; # the starting time of the cluster
$lockfn = "cluster.lock"; # lock file name
$pos++;
$lth++;
} elsif ($r eq "\014" || $r eq "\022") {
+ $top->touchwin();
+ $bot->touchwin();
$scr->touchwin();
$scr->refresh();
+ $top->refresh();
} elsif ($r eq "\013") {
$inbuf = substr($inbuf, 0, $pos);
$lth = length $inbuf;