milkbone57 22 years ago
parent
commit
2f701c2bfe
  1. 3
      Makefile
  2. 4
      docs/VERSION.txt
  3. 7
      mb.conf
  4. 10
      plugins/Log.pl
  5. 2
      plugins/Tk-BList/Milkbone/BList.pm
  6. 10
      plugins/XAMP.pl

3
Makefile

@ -7,9 +7,10 @@ SUBDIRS = plugins \ @@ -7,9 +7,10 @@ SUBDIRS = plugins \
install:
mkdir -p $(DESTDIR)/$(PREFIX)/share/milkbone
cp -r *.p* $(SUBDIRS) $(DESTDIR)/$(PREFIX)/share/milkbone
cp -r *.p* *.conf $(SUBDIRS) $(DESTDIR)/$(PREFIX)/share/milkbone
mkdir -p $(DESTDIR)/$(PREFIX)/share/doc/milkbone/
cp -r docs/* $(DESTDIR)/$(PREFIX)/share/doc/milkbone
mkdir -p $(DESTDIR)/$(PREFIX)/bin/
echo -e "#!/bin/sh \n cd ${PREFIX}/share/milkbone \n exec $(PREFIX)/share/milkbone/mos.pl \"\$$@\"\n" > $(DESTDIR)/$(PREFIX)/bin/milkbone
chmod +x $(DESTDIR)/$(PREFIX)/bin/milkbone
ln $(DESTDIR)/$(PREFIX)/bin/milkbone /usr/bin/milkbone

4
docs/VERSION.txt

@ -1,6 +1,10 @@ @@ -1,6 +1,10 @@
0.356
--
* More font-tweaking
* Fixed the %a - %s bug (thanks Dan)
* A little more cleaning in XAMP
* Bugs in convo-flashing fixe
* Beta Makefile
* Beta ebuild (for Gentoo Linux users)
* No more extraneous warnings on startup

7
mb.conf

@ -2,7 +2,7 @@ @@ -2,7 +2,7 @@
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
Plugins XAMP, Monitor, Counterstrike, Win32X, Win32-Tray, Sound
Port 5190
HeavyLogging 0
SoundsWhileAway 0
@ -11,8 +11,11 @@ TrayIcon 1 @@ -11,8 +11,11 @@ TrayIcon 1
HideBListLogo 0
# ThemeColor lightblue
# MonitorServer mail.batkins.com
# MonitorRecipient youraddress@yourdomain.com
# MonitorRecipient your_address
# these are only relevant if your mail server requires authentication
# MonitorUser user_here
# MonitorPass password_here

10
plugins/Log.pl

@ -1,16 +1,17 @@ @@ -1,16 +1,17 @@
package Log;
use Milkbone;
use File::Path;
use strict;
use warnings;
my $dir = option("LogDir");
my $dir = user_file("log");
mkpath($dir);
register_hook("msg_in", \&on_msg_in);
register_hook("protocol_send_im", \&on_protocol_send_im);
register_hook("buddy_in", \&on_buddy_in);
register_hook("buddy_info_changed", \&on_buddy_info_changed);
register_hook("buddy_out", \&on_buddy_out);
sub on_msg_in
@ -28,10 +29,6 @@ sub on_buddy_in @@ -28,10 +29,6 @@ sub on_buddy_in
{
}
sub on_buddy_info_changed
{
}
sub on_buddy_out
{
}
@ -42,7 +39,6 @@ sub on_protocol_send_im @@ -42,7 +39,6 @@ sub on_protocol_send_im
$year += 1900;
$month++;
mkdir "$logdir/$ARS{-user}" unless -e "$logdir/$ARS{-user}/;
log_item("$logdir/$ARS{-user}/$day-$month-$year", data("me") . " ($day-$month-$year $hour:$min:$sec) " .
": $ARGS{-msg} \n");
}

2
plugins/Tk-BList/Milkbone/BList.pm

@ -288,7 +288,7 @@ sub init @@ -288,7 +288,7 @@ sub init
$self->{tree}->Subwidget("yscrollbar")->configure(-width => 15);
$self->{group_style} = $self->{tree}->ItemStyle('imagetext',
-background => 'white', -font => hook("tk_get_default_font") . ' 11 bold', -fg => 'black',
-background => 'white', -font => hook("tk_get_default_font") . ' 10 bold', -fg => 'black',
-selectbackground => "white", -selectforeground => "white", -stylename => 'group');
$self->{changed_style} = $self->{tree}->ItemStyle('imagetext',
-background => 'white', -font => hook("tk_get_default_font") . ' 10', -fg => 'red',

10
plugins/XAMP.pl

@ -62,26 +62,26 @@ eval $code or die "$! $@ $^E"; @@ -62,26 +62,26 @@ eval $code or die "$! $@ $^E";
sub get_title
{
my $text = get_text();
my $text = shift;
my ($title) = $text =~ /-\s+(.*)/;
return $title || "Nothing";
}
sub get_artist
{
my $text = get_text();
my $text = shift;
my ($artist) = $text =~ /(.*?)\s+-/;
return $artist || "Nobody";
}
sub update
{
my ($text) = get_text();
return unless defined($text);
my $text = get_text();
$text = 'Nobody - Nothing' unless defined($text);
return if $text eq $last_text;
$last_text = $text;
my ($artist, $title) = (get_artist(), get_title());
my ($artist, $title) = (get_artist($text), get_title($text));
hook('protocol_mod_prof', -name => '%a', -value => $artist);
hook('protocol_mod_prof', -name => '%s', -value => $title);

Loading…
Cancel
Save