Browse Source

*** empty log message ***

master
milkbone57 22 years ago
parent
commit
46341195cc
  1. 4
      docs/VERSION.txt
  2. 2
      mb.conf
  3. 3
      plugins/Tk-GUI/Tk-GUI.pl

4
docs/VERSION.txt

@ -21,7 +21,7 @@
* Monitor can be used to send messages to cell phones * Monitor can be used to send messages to cell phones
* Monitor now works (even with SMTP authentication) * Monitor now works (even with SMTP authentication)
* Plugin reloading works pretty darned well * Plugin reloading works pretty darned well
* Uses ~/.milkbone on Linux, AppData on Win2K, XP, etc. and profiles on Win98, etc.; needs testing on NT * Uses ~/.milkbone on *NIX, AppData on Win2K, XP, etc. and profiles on Win98, etc.; I have no idea what it does on NT
* Reloading of the core (Milkbone.pm) is now supported * Reloading of the core (Milkbone.pm) is now supported
* mb.conf is only saved if changed * mb.conf is only saved if changed
* Reloading of plugins works * Reloading of plugins works
@ -29,7 +29,7 @@
* Sounds off by default * Sounds off by default
* Cleaned out some useless files * Cleaned out some useless files
* Removed some useless sounds * Removed some useless sounds
* Now runs on Perl 5.6 on non-Win32 machines * Now runs on Perl 5.6 on non-Win32 machines (the Win32 installer includes teh 5.8 interpreter)
* Tray icon now allows hiding and showing of windows (enabled by default) * Tray icon now allows hiding and showing of windows (enabled by default)
* XAMP rewritten * XAMP rewritten
* Timeout renamed to AwayTimeout * Timeout renamed to AwayTimeout

2
mb.conf

@ -1,7 +1,7 @@
# mb.conf - milkbone global configuration file # mb.conf - milkbone global configuration file
Goodbye sorry, gotta, go Goodbye sorry, gotta, go
Modules Tk-PluginsConf, Net-OSCAR, Tk-GUI, Tk-Logon, Tk-BList, Tk-Profile, Tk-File, Tk-About, Tk-AddBuddy, Tk-Convo Modules Tk-PluginsConf, Net-OSCAR, Tk-GUI, Tk-Logon, Tk-BList, Tk-Profile, Tk-File, Tk-About, Tk-Convo
Plugins Sound, XAMP, Templog, Monitor, Counterstrike Plugins Sound, XAMP, Templog, Monitor, Counterstrike
Port 5190 Port 5190
HeavyLogging 0 HeavyLogging 0

3
plugins/Tk-GUI/Tk-GUI.pl

@ -22,7 +22,8 @@ $mw->OnDestroy(\&on_destroy);
$mw->optionAdd("*font", "-*-arial-norma-r-*-*-*-120-*-*-*-*-*-*"); $mw->optionAdd("*font", "-*-arial-norma-r-*-*-*-120-*-*-*-*-*-*");
$mw->optionAdd("*borderWidth", 1); $mw->optionAdd("*borderWidth", 1);
$mw->optionAdd("*highlightThickness", 0); $mw->optionAdd("*highlightThickness", 0);
$mw->optionAdd("*background", option("ThemeColor"));
$mw->optionAdd("*background", option("ThemeColor")) if(option("ThemeColor"));
my $icon = $mw->Photo(-file => path("images/icon.bmp")); my $icon = $mw->Photo(-file => path("images/icon.bmp"));

Loading…
Cancel
Save