diff --git a/mb.conf b/mb.conf index ee0bec9..272bd9d 100644 --- a/mb.conf +++ b/mb.conf @@ -4,14 +4,14 @@ Goodbye sorry, gotta, go Modules Tk-PluginsConf, Net-OSCAR, Tk-GUI, Tk-Logon, Tk-BList, Tk-Profile, Tk-File, Tk-About, Tk-Convo, Tk-Conf, Tk-AddBuddy Plugins XAMP, Monitor, Counterstrike, Win32X, Win32-Tray Port 5190 -HeavyLogging 1 +HeavyLogging 0 SoundsWhileAway 0 AwayTimeout 60 TrayIcon 1 HideBListLogo 0 # ThemeColor lightblue # MonitorServer mail.batkins.com -# MonitorRecipient savannah@batkins.com +# MonitorRecipient youraddress@yourdomain.com # these are only relevant if your mail server requires authentication # MonitorUser user_here diff --git a/plugins/Net-OSCAR/Net-OSCAR.pl b/plugins/Net-OSCAR/Net-OSCAR.pl index 0088bc9..260139a 100644 --- a/plugins/Net-OSCAR/Net-OSCAR.pl +++ b/plugins/Net-OSCAR/Net-OSCAR.pl @@ -138,7 +138,7 @@ sub signon hook("error", -short => "You've exceeded one of AOL's rate limits. You will be alerted when the rate limit ends."); hook("rate_alert"); - hook("tk_getmain")->after($_[2], sub { + hook("tk_getmain")->after($_[2] * 2, sub { hook("error", -short => "Rate limit has expired."); }); } diff --git a/plugins/Tk-GUI/Tk/BrowseEdit.pm b/plugins/Tk-GUI/Tk/BrowseEdit.pm index 352bcc8..a67f01a 100644 --- a/plugins/Tk-GUI/Tk/BrowseEdit.pm +++ b/plugins/Tk-GUI/Tk/BrowseEdit.pm @@ -34,6 +34,7 @@ $self]); }, $self] )->pack(-pady => 0, -side => 'left', -fill => 'both'); $self->bind('', [sub { shift->{''}->invoke; }, $self]); + $self->{''} = $self->{panel}->Button(-text => 'U', -relief => 'flat', -font => $self->Font(-family => 'times', -underline => 1, -size => '8'), -command => [sub { @@ -42,6 +43,16 @@ $self]); }, $self] )->pack(-pady => 0, -side => 'left', -fill => 'both'); $self->bind('', [sub { shift->{''}->invoke; }, $self]); + + $self->{''} = $self->{panel}->Button(-text => 'U', -relief => 'flat', -background => 'green', + -font => $self->Font(-family => 'times', -size => '8'), + -command => [sub { + my ($self) = @_; + $self->toggleTag(''); + }, $self] + )->pack(-pady => 0, -side => 'left', -fill => 'both'); + $self->bind('', [sub { shift->{''}->invoke; }, $self]); + $self->{text}->tagConfigure('elide', -elide => 1); $self->ConfigSpecs( 'DEFAULT' => [$self->{text}],