Browse Source

fixed control-return bug in convo

master
milkbone57 22 years ago
parent
commit
dd8b9ef8ab
  1. 16
      docs/VERSION.txt
  2. 2
      plugins/Tk-Convo/Milkbone/Convo.pm

16
docs/VERSION.txt

@ -1,6 +1,7 @@
0.37 0.37
-- --
* Fixed Ctrl-Return bug in convos
* Balloon information for link mouseovers * Balloon information for link mouseovers
* Error dialog now properly focuses the OK button * Error dialog now properly focuses the OK button
* Idle time fixed * Idle time fixed
@ -18,7 +19,8 @@
* Net-Demo mostly working * Net-Demo mostly working
* Fixed a random typing notifications bug that appeared out of nowhere * Fixed a random typing notifications bug that appeared out of nowhere
* Temporarily fixed the fatal chat invitation bug * Temporarily fixed the fatal chat invitation bug
* Finally got around to changing milkbone.batkins.com to milkbone.org in the default profile * Finally got around to changing milkbone.batkins.com to milkbone.org in the
default profile
* Text selection works a lot better in profiles and convos * Text selection works a lot better in profiles and convos
* Resized profile windows * Resized profile windows
* Antialiasing in X (only works with Tk804) * Antialiasing in X (only works with Tk804)
@ -59,19 +61,23 @@
* Browser option in the conf * Browser option in the conf
* Configuration dialog * Configuration dialog
* Customizable Monitor-ing * Customizable Monitor-ing
* Graceful failure of Win32 plugins on *NIX (so graceful it'll bring a tear to your eye) * Graceful failure of Win32 plugins on *NIX (so graceful it'll bring a tear
to your eye)
* Fixed a dependency bug in Tk-BList (thanks Dan) * Fixed a dependency bug in Tk-BList (thanks Dan)
* Customizable themes * Customizable themes
* Errors are handled a little more smoothly * Errors are handled a little more smoothly
* Compiled with PDK 5.2 (EXE size is roughly 50% smaller) * Compiled with PDK 5.2 (EXE size is roughly 50% smaller)
* Experimental mosh guidance script * Experimental mosh guidance script
* deregister_hook no longer clears all handlers registered on a hookname (hehe - oops) * deregister_hook no longer clears all handlers registered on a hookname
* No more PAR packages - 50% decrease in loadup time + easier modification of source (hehe - oops)
* No more PAR packages - 50% decrease in loadup time + easier modification of
source
* Notification when your rate limit expires * Notification when your rate limit expires
* Dropdown in AddBuddy works * Dropdown in AddBuddy works
* New interface * New interface
* Your typing status is cleared when you close a convo box * Your typing status is cleared when you close a convo box
* Newlines can be sent with Ctrl-Return; also, pasted newlines are sent properly * Newlines can be sent with Ctrl-Return; also, pasted newlines are sent
properly
* Milkbone::AllHooks now works, allowing shorthand access to hooks * Milkbone::AllHooks now works, allowing shorthand access to hooks
* Fully working unloading, loading, and reloading of plugins and the core * Fully working unloading, loading, and reloading of plugins and the core
* The buddy list logo can be disabled with HideBListLogo * The buddy list logo can be disabled with HideBListLogo

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

@ -208,7 +208,7 @@ sub init
$self->{top}->tagConfigure('buddy_stamp', -foreground => 'blue', -elide => 1, -font => 'times 9 bold'); $self->{top}->tagConfigure('buddy_stamp', -foreground => 'blue', -elide => 1, -font => 'times 9 bold');
$self->{bottom}->bind("<Return>", [$self, "on_send"]); $self->{bottom}->bind("<Return>", [$self, "on_send"]);
$self->{bottom}->bind("<Control-Return>", [sub { $self->{bottom}->insert('insert', "\r\n")}, $self]); $self->{bottom}->bind("<Control-Return>", sub { });
$self->{bottom}->bind("<KeyPress>", [$self, "on_key"]); $self->{bottom}->bind("<KeyPress>", [$self, "on_key"]);
$self->bind("<F2>", [$self, "toggle_stamps"]); $self->bind("<F2>", [$self, "toggle_stamps"]);
$self->{bottom}->bind("<F2>", [$self, "toggle_stamps"]); $self->{bottom}->bind("<F2>", [$self, "toggle_stamps"]);

Loading…
Cancel
Save