diff --git a/docs/VERSION.txt b/docs/VERSION.txt index c6ec41b..43eb0e8 100644 --- a/docs/VERSION.txt +++ b/docs/VERSION.txt @@ -1,6 +1,7 @@ 0.355 -- +* Configuration dialog * Customizable Monitor-ing * Graceful failure of Win32 plugins on *NIX * Fixed a dependency bug in Tk-BList (thanks Dan) diff --git a/mb.conf b/mb.conf index aafc99e..3a4f4e6 100644 --- a/mb.conf +++ b/mb.conf @@ -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 -Plugins XAMP, Monitor, Counterstrike, Win32X +Plugins XAMP, Monitor, Counterstrike, Win32X, Win32-Tray Port 5190 HeavyLogging 0 SoundsWhileAway 0 @@ -12,4 +12,4 @@ HideBListLogo 0 ThemeColor lightblue # MonitorServer smptauth.earthlink.net # MonitorUser batkins86@earthlink.net -# MonitorPass superfly \ No newline at end of file +# MonitorPass xxxxxxxxxxxxxxxxxxxx \ No newline at end of file diff --git a/mos.pl b/mos.pl index b299494..345f7eb 100755 --- a/mos.pl +++ b/mos.pl @@ -31,7 +31,7 @@ sub main hook("load_options"); -# require "plugins/Tk-Splash.pl" unless option("NoSplash"); + require "plugins/Tk-Splash.pl" unless option("NoSplash"); hook("load_plugins"); hook("pre_mainloop"); diff --git a/plugins/Tk-Conf/Milkbone/Conf.pm b/plugins/Tk-Conf/Milkbone/Conf.pm index 6ce04e1..99698a9 100644 --- a/plugins/Tk-Conf/Milkbone/Conf.pm +++ b/plugins/Tk-Conf/Milkbone/Conf.pm @@ -31,9 +31,9 @@ sub init $self->{text}->bind('', [ sub { $_[0]->yview('scroll', -($_[1] / 120), 'units') }, Tk::Ev('D')]); - $self->{text}->Load('mb.conf') + $self->{text}->Load('mb.conf'); - $self->{text}->focus; + $self->{text}->focus; hook("tk_seticon", -wnd => $self); }