milkbone57 22 years ago
parent
commit
6c925c65df
  1. 4
      Makefile
  2. 1
      docs/VERSION.txt
  3. 9
      plugins/Log.pl
  4. 2
      plugins/Tk-Convo/Tk-Convo.pl
  5. 2
      plugins/Tk-GUI/Tk/Browser.pm

4
Makefile

@ -1,3 +1,5 @@
# based on tkabber's Makefile
PREFIX = /usr/local PREFIX = /usr/local
SUBDIRS = plugins \ SUBDIRS = plugins \
@ -13,4 +15,4 @@ install:
mkdir -p $(DESTDIR)/$(PREFIX)/bin/ 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 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 chmod +x $(DESTDIR)/$(PREFIX)/bin/milkbone
ln $(DESTDIR)/$(PREFIX)/bin/milkbone /usr/bin/milkbone ln -f $(DESTDIR)/$(PREFIX)/bin/milkbone /usr/bin/milkbone

1
docs/VERSION.txt

@ -1,6 +1,7 @@
0.356 0.356
-- --
* Logging works
* Multiple styles in BrowseEdit * Multiple styles in BrowseEdit
* More font-tweaking * More font-tweaking
* Fixed the %a - %s bug (thanks Dan) * Fixed the %a - %s bug (thanks Dan)

9
plugins/Log.pl

@ -6,8 +6,13 @@ use File::Path;
use strict; use strict;
use warnings; use warnings;
my $dir = user_file("log"); our $dir;
register_hook("signed_in", sub {
$dir = user_file("log");
print $dir;
mkpath($dir); mkpath($dir);
});
register_hook("msg_in", \&on_msg_in); register_hook("msg_in", \&on_msg_in);
register_hook("protocol_send_im", \&on_protocol_send_im); register_hook("protocol_send_im", \&on_protocol_send_im);
@ -50,6 +55,8 @@ sub log_item
{ {
my ($file, $text) = @_; my ($file, $text) = @_;
print $file, $text;
open(LOG, ">>$file"); open(LOG, ">>$file");
print LOG $text; print LOG $text;
close(LOG); close(LOG);

2
plugins/Tk-Convo/Tk-Convo.pl

@ -57,7 +57,7 @@ register_hook("create_convo", sub {
}); });
register_hook("remove_convo", sub { register_hook("remove_convo", sub {
i
deregister_hook("msg_in_$ARGS{-user}"); deregister_hook("msg_in_$ARGS{-user}");
deregister_hook("buddy_in_$ARGS{-user}"); deregister_hook("buddy_in_$ARGS{-user}");
deregister_hook("buddy_out_$ARGS{-user}"); deregister_hook("buddy_out_$ARGS{-user}");

2
plugins/Tk-GUI/Tk/Browser.pm

@ -179,7 +179,7 @@ sub font_begin
$realsize = int((8, 10, 12, 14, 18, 24, 38) [int($size) + 1]) if $size and $^O !~ /Win32/; $realsize = int((8, 10, 12, 14, 18, 24, 38) [int($size) + 1]) if $size and $^O !~ /Win32/;
$font->{-family} = $family if $family; $font->{-family} = "{$family}" if $family;
$font->{-size} = $realsize if $size; $font->{-size} = $realsize if $size;
my %opts; my %opts;

Loading…
Cancel
Save