2000-12-27  Javier Kohen  <jkohen@tough.com>

	* com/lyrisoft/awt/TextView.java: added support for rendering mIRC attributes (doesn't support background colors, yet).

	* com/lyrisoft/awt/HyperlinkTextView.java: more fixes here, there was a problem with the original parser.

	* ChannelWindow.java: removed ChanServ URL from the GUI now it's clickable; dropped support for setting it from the GUI, but I'm sure it wasn't of much use, and it occupied valuable screen space.

	* ChatTabs.java: made the paint process use a double-buffer to avoid flickering and a couple of rendering problems that showed without it.

	* ChatPanelContainer.java: added arrow buttons that allow the user to scroll left or right the tabs, if they don't fit the visible area.

2000-12-22  Javier Kohen  <jkohen@tough.com>

	* com/lyrisoft/awt/HyperlinkTextView.java: fixed my previous fix, and also corrected a bug in the original code that changed the style of the text for lines that contained a link. (Submitted patch to the original author.)

2000-12-21  Javier Kohen  <jkohen@tough.com>

	* ChatTabs.java: split channel tabs into two rows, one for channels and the other for privates.

	* ChatPanelContainer.java: when a channel is closed, the default channel is shown, unless it was closed, in which case the status is shown instead.

	* Message.java: fixed a bug in the message parser that was causing the last parameter to be slightly different from what was received under some circumstances. This also closes another bug that made EIRC.processMessage() throw an unhandled Exception when a PRIVMSG or a NOTICE were received which contained only spaces.

2000-12-20  Javier Kohen  <jkohen@tough.com>

	* com/lyrisoft/awt/HyperlinkTextView.java: fixed a bug that made hyperlinks out of strings with an @, but with no text placed previous to that character. (Submitted patch to the original author.)

	* ChatPanelContainer.java, ChatTabs.java, EIRC.java: added a lost feature where the window tabs labels weren't being updated on others' nick changes.

	* *: There have been a lot of changes last week. Remarkably the UI has been made SDI (in contrast to MDI) by popular request. There have been several bug fixes, and HtmlLayout has been almost dropped because it was causing a lot of problems (it was kept in ControlPanel where it did no harm, AFAIK). I'm sorry I haven't kept a list of changes, but it's been a busy development week.

2000-12-06  Javier Kohen  <jkohen@tough.com>

	* OutputWindow.java, ChannelWindow.java, PrivateWindow.java: added support for clickable hyperlinks.

	* ChangeFont.java: cleaned up the code.

	* EIRC.java, OutputWindow.java, ChatWindow.java: split ChangeFont class into its own file. Cleaned up font handling code.

	* EIRCApplet.java, EIRC.java: fixed a bug that appeared in the code split: if server couldn't be contacted, the applet would get in an unstable state.

2000-11-28  Javier Kohen  <jkohen@tough.com>

	* EIRC.java: fixed a bug that caused EIRC to send a QUIT message on disconnection in the case that the server denied access.

	* EIRC.java: added a missing newline to the end of the help messages that caused staircase effect.

	* {Channel,Private}Window.java: made use of HtmlLayout. Also concatenated these classes' event listeners, resulting in a JAR size shrinkage by 11kB (debug info included).

	* EIRC.java, ControlPanel.java: separated the control panel into its own class. The idea is to be able to use it in more than one window, but after spending lots of time, I couldn't came up with a working solution. This is the first component in EIRC to use the HtmlLayout LayoutManager, it seems to work fine, so I'll add support for it to the rest of the program, thus making it more flexible to modify the windows' layout.

2000-11-23  Javier Kohen  <jkohen@tough.com>

	* EIRC.java: implemented dummy SERVER command, so users that try to invoke it, don't upset the servers logs, and at the same time, get a more significative message. (Suggested by Skold.)

	* EIRC.java: split Applet code into EIRCApplet.java, note that you'll have to change your APPLET or OBJECT tag to reflect this change. This was needed in order to be able to derive EIRC from OutputWindow, now that it isn't an interface anymore.

	* {Channel,Private}Window.java: made both extend ChatWindow, removed redundant code, and modified where necessary.

	* {Output,Chat}Window.java: modified both interfaces to make them more clear, and to make use com.lyrisoft.awt package. Converted both of them to classes; ChatWindow being an extention of OutputWindow. This change brings a better interface, smaller code and more functionality.

	* src/com/lyrisoft/awt/*: copied from NFCChat's codebase. Now EIRC has a colored text canvas :) I made some modifications to get it consistent with JDK 1.1.x AWT event model and deprecations.

2000-11-14  Javier Kohen  <jkohen@tough.com>

	* NickList.java: fixed a couple of unexpected MSIE behaviors related to painting "infinite" sized rectangles, even though they were clipped to a small visible rectangle.

	* EIRC.java: fixed bug that caused "Connect/Disconnect" button to disappear on failed connection in MSIE.

	* ChannelWindow.java: corrected the PopupMenu behavior, now it doesn't require the user to select a NickItem to be popped up. The old -incorrect- behavior was a remain of the java.awt.List limitations.

	* SimpleNickInfo.java: this class is the simplest implementation of NickInfo. It's used to pass NickInfo data without instancing a NickItem; moreover, it could be used by classes external to NickList, while NickItem can't.

	* NickList.java: modified according to the changes in NickInfo.

	* NickInfo.java: made an interface out of the class. This way the design is better, and for instance, it was needed in order to make possible some enhancements in the PopupMenu in the ChannelWindow.

2000-11-13  Javier Kohen  <jkohen@tough.com>

	* NickList.java: beautified a little the titles.

	* NickList.java: fixed a couple of bugs related to nick and mode change in methods change and remove.

2000-11-08  Javier Kohen  <jkohen@tough.com>

	* NickInfo.java: moved info stored in NickItem to an external class to optimize and clarify some points.

2000-11-05  Javier Kohen  <jkohen@tough.com>

	* NickList.java: bugs fixes here and there.

2000-11-04  Javier Kohen  <jkohen@tough.com>

	* ChannelWindow.java: added support for multiple nick selections.

	* NickList.java: completely rewritten to get rid of java.awt.List; it was awfully rigid. The current implementation is a lot more flexible and permits using customized nick list displays. The current implementation of NickItem, even when not complete, is already better looking and more user friendly than the former.

2000-11-02  Javier Kohen  <jkohen@tough.com>

	* EIRC.java: providers can now specify the list of service bot names, instead of relying on them ending with "Serv".

2000-11-01  Javier Kohen  <jkohen@tough.com>

	* EIRC.java, ChannelWindow.java: added support for showing, setting and visiting channel URLs. As this depends on ChanServ, it's only enabled if special_services option is enabled. (Suggested by Skold.)

	* EIRC.java: fixed a DoS when service bots are enabled and a notice is received from a nick with less than 4 characters. (Initial report by Armando Montiel Caba.)

2000-10-31  Javier Kohen  <jkohen@tough.com>

	* EIRC.java, ChannelWindow.java: added method addNicks to replace the lousy need to call freezeList, addNick (N times) and then thawList.

	* ChannelWindow.java: "Channel Operators" submenu only shows up if user is opped. (Suggested by Skold.)

	* EIRC.java, ChannelWindow.java: providers can now select whether their servers support half-ops. (Suggested by Skold.)

	* EIRC.java: added support for window icons. Channels and Privates may have different icons. (Suggested by Marc Packenius.)

2000-10-30  Javier Kohen  <jkohen@tough.com>

	* TextWriterThread.java: a few thread niceness improvements.

	* Message.java: very tiny optimization carried out by replacing string concatenations that used the + operator with concat method calls. Probably wasn't worth the effort, 'cos there were only two cases of this :)

	* EIRC.java: many class scoped variables have been made final to reduce memory consumption a bit.

	* EIRC.java: commands help code clean-up. Help for non-internal commands can be written in the language resource files and will be honored.

	* Resources_e[sn].properties: added long help messages provided by Skold. I made the Spanish translation.

	* EIRC.java: now the line prefixes (---, ###, etc.) are stored in the resource file. (Suggested by Skold.)

2000-10-26  Javier Kohen  <jkohen@tough.com>

	* NickServCommander.java: simplified dialog.

	* EIRC.java: now it tries to parse unknown numeric messages if see_everything_from_server is true. The algorithm is very accurate, it's of the family of "show last paramater only" :P (Suggested by Skold.)

	* EIRC.java, {Channel,Private}Window.java: made use of TextWriterThread class.

	* TextWriterThread.java: implemented a new class together with Christian Bucks with the intention of closing BUG #16. This code apparently brings stability to MSIE, but it's only hiding a bug in Microsoft's JVM. See docs/TextWriterThread.txt for more information.

2000-10-23  Javier Kohen  <jkohen@tough.com>

	* Table.java: thanks to jean-marc Drouaud for reporting a Java 1.1 discompliance. Strange that no-one reported this before, as it break joining channels from the list. This passed unnoticed the -manual- compliance tests, even though it sent output to the Java Console.

2000-10-19  Javier Kohen  <jkohen@tough.com>

	* EIRC.java: fixed an off by one error when processing CTCP messages that contained an argument, ie: PING.

2000-10-18  Javier Kohen  <jkohen@tough.com>

	* Resources_fr_FR.properties: added translation contributed by jean-marc Drouaud.

2000-10-15  Javier Kohen  <jkohen@tough.com>

	* Configurator.java: fixed layout problem in "Pre-connect" page.

2000-10-14  Javier Kohen  <jkohen@tough.com>

	* EIRC.java: added kban (Kick & Ban), ignore and unignore commands.

	* EIRC.java: added a number of new server response messages.

	* NickList.java: added new user class, BANNED.

	* ChannelWindow.java: added a context sensitive pop-up menu on the channel list.

	* EIRC.java: hopefully fixed a race condition that sometimes prevented pos_login() from being called.

	* data/pics/*: Skold provided an updated GFX set. These have tiny icons that make them more friendly to the user; and also have transparent backgrounds that make them look fine on different color schemes.

	* Table.java: fixed a bug in table resizing that got introduced when implementing ItemSelectable interface.

	* Message.java: fixed a bug that caused a misparse of messages that had a colon in a parameter that wasn't the last. This change is based on a diff sent by Jean-Marc.

	* EIRC.java: added a hack to guess when the server has changed our nick on login, for example when it's trimmed to 9 chars. The guessing takes place on receiving RPL_ENDOFMOTD or ERR_NOMOTD, before calling pos_login(). It could be better placed earlier, but these are the only message we're -hopefully- guaranteed to receive. This could also be the fix to bug #20.

	* EIRC.java: added configure option to send all traffic to stderr for debuging purposes. This helps to get reports from users that can't access to an sniffer.

2000-10-09  Javier Kohen  <jkohen@tough.com>

	* ChannelList.java: modified to follow the interface change in Table.

	* Table.java: implemented interface ItemSelectable in class Table.

	* {Output,Chat}Window.java: removed method getName from interface OutputWindow and placed it in the new ChatWindow interface under the name getTargetName.

	* {EIRC,NewChannel}.java: class NewChannel split from outer class EIRC.

	* {EIRC,Configurator}.java: class Configurator split from outer class EIRC.

	* TextFieldLabeled.java: removed, it was too rigid and useless.

	* EIRC.java: fixed a compatibility issue with JDK 1.3 in sendCommand method.

	* EIRC.java: SetPass dialog functionality has been moved into the Configuration dialog. Hence SetPass class and the "Password" button are now gone.

	* EIRC.java: added some checks to avoid Sun's JDK 1.3 AppletViewer's brain damage. (See bug #24.)

	* EIRC.java: re-introduced a fix that was accidentally reverted while merging Rick Herbel's patch. It was just a cosmetic issue, though.

2000-10-05  Javier Kohen  <jkohen@tough.com>

	* ChannelList.java: fixed a couple of layout problems. Now it won't be bigger than the screen.

	* Table.java: "s/getMinimun/getMinimum/g"... what a shame :-\

2000-10-04  Javier Kohen  <jkohen@tough.com>

	* EIRC.java: integrated (and slightly modified) a patch from Rick Herbel that makes the identification of the server sent commands hash driven instead of using string comparations. This will increase speed in that area.

2000-10-01  Javier Kohen  <jkohen@tough.com>

	* TextFieldLabeled.java: this class is a combo between a Label and a TextField. At this moment it's used in the configuration dialog.

	* NickServCommander.java, EIRC.java: modified to support NickServ's that require e-mail address for registering new nicks. (Reponted by Skold.)

	* data/pics/*: image updates by Skold, and slightly retouch by me. He's greatly decreased the files size.

	* EIRC.java: added support for filtering mIRC attribs from incoming text.

	* Message.java: added code to optionally strip mIRC attribs from messages.

2000-09-29  Javier Kohen  <jkohen@tough.com>

	* EIRC.java: clarified the channel list presentation of the auto-join channel in the case it was closed.

2000-09-28  Javier Kohen  <jkohen@tough.com>

	* EIRC.java: modified to make use of NickServCommander.

	* NickServCommander.java: new class added that provides a dialog to deal with NickServ services. (Thanks to Marc Packenius and Skold for their support here.)

	* EIRC.java, Table.java: added code to resize ChannelList after a refresh if it were necesary.

	* EIRC.java: corrected a bug that made the channel listed into autojoin to appear as not opened if everybody joined it with another case than expected. (Reported by Marc Packenius.)

	* EIRC.java: very little GUI change to make the look more design neutral.

	* {Channel,Private}Window.java: removed Ping button by popular request. It could be easily used to flood others away, and it didn't make much sense anyway. The command PING is still valid at the command line.

	* data/pics/*: Skold contributed a complete GFX set. I did some modifications with his authorization.

2000-09-27  Javier Kohen  <jkohen@tough.com>

	* EIRC.java: modified to not force an error when an unknown command is requested. The user is informed to report if the command doesn't do what was expected. (Suggested by Skold.)

	* EIRC.java, {Channel,Private}Window.java: modified to support new features in ResourceImage. An extra goodie is that the new code is simpler.

	* ResourceImage.java: added coded to support soft-coded image names. Each image has now a property-name, which is looked upon file Images.properties (currently stored in EIRC-gfx.jar, but not mandatory.) As ResourceBundle properties are locale enabled by nature, a side effect is that image sets can be easily localizated now. Read included Images.properties header for more info.

2000-09-26  Javier Kohen  <jkohen@tough.com>

	* EIRC.java: put a workaround to bug with some browsers that trimmed PARAM's, causing the titleExtra to not have a space at the beginning. The bad thing is that that space is always forced to appear (unless titleExtra is not provided.)

	* PrivateWindow.java: very little change to improve slightly the look.

	* ChannelWindow.java: improved Component's layout to fix a few issues that were floating around. (Usefully reported by Skold.)

	* EIRC.java: added a configuration option to select whether to request MOTD after log-in. Some servers don't have one, some send it automatically. (Suggested by Skold.)

	* EIRC.java: made it easier to add command aliases (still hard-coded.)

	* EIRC.java: added two new commands, privmsg (aliased as msg) and eirc. The later shows EIRC's About info to the user.

2000-09-21  Javier Kohen  <jkohen@tough.com>

	* NickList.java: this widget has been optimized to reduce updates when modificating the list. That means that flicker should now be gone.

2000-09-19  Javier Kohen  <jkohen@tough.com>

	* EIRC.java: the Channel List now gets closed on disconnection. (Suggested by Marc Packenius.)

	* EIRC.java, ChannelList.java, Table.java: added functionality to improve Channel List's behavior. Now an opened list will get updated if the user tries to open it once it was opened, or if she actions the newly added Refresh button. Additionally, a message is printed to the status window when she clicks on the Channel List button to tell her that the list is being retrieved from the server. (Marc Packenius reported on the bad behavior.)

2000-09-13  Javier Kohen  <jkohen@tough.com>

	* index.{php,html}: splited JAR in two archives: one for gfx and the other for classes. This makes it easier to change GFX on a user basis and is more kind to http caches.

	* EIRC.java: fixed a bug that shown in MSIE which made it report "no available time" instead of 0 for very fast ping responses. MSIE still fails to understand correctly ChoiceFormats.

	* EIRC.java, ChannelWindow.java, ChannelList.java: commented out calls to class java.awt.Frame's setState method for MSIE doesn't implement it. According to Sun's docs, it's been there since Java API 1.0, so blame MS.

2000-09-11  Javier Kohen  <jkohen@tough.com>

	* ConfigurationBundle.java, EIRC.java: put up a working in-program run-time configuration support. See configuration.properties for more information.

2000-09-10  Javier Kohen  <jkohen@tough.com>

	* EIRC.java: channel lists are unique, there won't be more than one opened at a time.

	* ChannelList.java: splited from class EIRC.

2000-09-09  Javier Kohen  <jkohen@tough.com>

	* EIRC.java: accomplished first steps towards supporting a flexible run-time configuration. Added code to use a ConfigurationBundle.

	* ConfigurationBundle.java: added class to handle configuration values. It takes default values, and a ResourceBundle's name (corresponding either to a file or to class) from where to load customizations.

2000-09-06  Javier Kohen  <jkohen@tough.com>

	* EIRC.java, PrivateWindow.java: if you use the GUI to join a channel that's been already joined, the corresponding window pops to the front, *now, even if it was minimized*. (Suggested by Marc Packenius.)

	* {Channel,Private}Window.java: message logs' buffer size has been limited to avoid Out of Memory situations. (Closes bug #21.)

2000-09-05  Javier Kohen  <jkohen@tough.com>

	* TextFieldHistory.java: modified so cursor moves to line's end on accessing history.

	* RFC1459TextField.java: now it doesn't filter VK_ENTER anymore. Fixes nick list not accepting Enter key. (Reported by Marc Packenius.)

2000-08-31  Javier Kohen  <jkohen@tough.com>

	* ChannelWindow.java: addded {freeze,thaw}List methods to stop nick list flickering when joining very concurred channels. This is currently experimental. It seems to work right with Sun's JDK 1.2.2 and NN 4.75 on Linux. It's very funny to watch the components rearrange :P

2000-08-30  Javier Kohen  <jkohen@tough.com>

	* {Channel,Private}Window.java: windows whose text change while they're not focused, get a mark ("[!]") at the beginning of their titles. (Suggested by Marc Packenius.)

	* EIRC.java, {Channel,Private}Window.java: entry fields now get focused on window open. I just wasn't making the window visible before atempting to focus its entry (RTFM.)

	* EIRC.java, {Channel,Private}Window.java: changed to use TextFieldHistory for entry-lines.

	* TextFieldHistory.java: added a widget that's basically a TextField which keeps the recent entries in memory. To move along the entries, use the VK_UP and VK_DOWN keys (which usually are maped to the up and down arrow keys.)

	* EIRC.java: fixed a stupid NullPointerException that occurred when the help command was passed an unknow command as parameter.

	* Table.java: implemented double-buffering in the body of the table, the rendering speed improvement is big.

	* EIRC.java: the channel specified in the "channel" PARAM is always shown in the channel list, and it's placed in the topmost position. (Suggested by Marc Packenius.)

	* ChannelWindow.java: extended the previous feature to private windows, too.

	* EIRC.java: if you use the GUI to join a channel that's been already joined, the corresponding window pops to the front. (Suggested by Marc Packenius.)

	* EIRC.java: double-clicking on the channel list, makes the client join the channel under the mouse pointer. (Requested by Marc Packenius.)

2000-08-29  Javier Kohen  <jkohen@tough.com>

	* RFC1459TextField.java: fixed widget's behavior regarding to invalid keys. It was filtering bad chars the bad way.

	* EIRC.java: beautified slightly windows' layouts by adding insets.

	* Table.java: added a vertical scroll bar to the widget, so large tables don't get large on the display. ChannelList gets directly benfited from this. An horizontal scroll bar should be straight forward to add if needed. Table output was enhanced a little, too. Widget's rendering speed was appearently increased slightly due to internal code reorganization.

2000-08-27  Javier Kohen  <jkohen@tough.com>

	* Resources_it_IT.properties: translation to Italian contributed by Chiuppesi Giorgio.

2000-08-26  Javier Kohen  <jkohen@tough.com>

	* NickList.java: normalized the behavior of the widget regarding to users appearing under more than one list. It confused people. Also fixed a small bug reported by Mark Johnston.

	* EIRC.java: now EIRC will open a private window if the user receives a notice from *Serv and she's logged in a server that supports *Serv services. This support is specified via the specialServ PARAM. (Suggested by Marc Packenius.)

2000-08-24  Javier Kohen  <jkohen@tough.com>

	* EIRC.java: added "query" command and a corresponding "q" alias. (Requested by Marc Packenius.)

	* EIRC.java: modified the behavior of the "password" PARAM, if it's not specified, the "Password" button isn't shown. This is a short-term solution for those sites that don't require a password; and that such button would confuse the users. (Change requested by Marc Packenius.)

	* EIRC.java, {Channel,Private}Window.java: added support for "prefixOwn" PARAM, which enables prefixing own messages with the user's nick. (Suggested by Skold.)

	* EIRC.java: added more prefixes to messages to quickly distinguish among server, private and action classes. (Suggested by Skold.)

	* NickList.java: added the missing feature. Method isTitle return whether a particular item is a sublist title, so programs can act accordingly. No behavior is impossed, so anything that can be done with normal items can be aplied to titles, but the consecuences are undetermined.

2000-08-23  Javier Kohen  <jkohen@tough.com>

	* NickList.java: fixed a JDK 1.x compatibilty issue. (Reported by Chiuppesi Giorgio.)

2000-08-22  Javier Kohen  <jkohen@tough.com>

	* EIRC.java: added limited support for channel modes, just op, half-op and voice commands recognized.

	* NickList.java: implemented the nick sorting feature. ATM, it's as featured as the previous list. There's left to correct the behavior of the sublist titles, that whouldn't be clickable.

	* EIRC.java: added support for DalNet's response #307 (WHOISREGISTERED).

2000-08-21  Javier Kohen  <jkohen@tough.com>

	* ChannelWindow.java: got simplified as the sorting nick list code was moved to NickList.java.

	* NickList.java: derived NickList from java.awt.List. This class is a specialized RFC1459 compliant nick list. It also features grouping users by mode. The sort of nicks is left for the next programming session :).

	* EIRC.java: added a "hideip" PARAM to avoid scaring newbies. It isn't intended as a security meassure, as that would require server action instead. This was suggested by Marc Packenius.

	* EIRC.java: client will start sending command only after having received RPL_ENDOFMOTD message. (Fixes bug #5.)

2000-08-19  Javier Kohen  <jkohen@tough.com>

	* EIRC.java: NN threw a security exception when a command was given from the command-line. I had to change the processing scheme, but the compromise solution makes the code awful in method invokeCommand. Old code is still there if someone wants to give a better solution.

	* EIRC.java: fixed a bug that prevented newly opened windows from having their font set properly.

	* EIRC.java: fixed a bug that caused stale private windows on applet reload under NN (it probably affected MSIE, too.)

	* EIRC.java: calling method disconnect instead of quit prevented a clean quit when closing a connection using the "disconnect" button.

	* EIRC.java, {Channel,Private}Window.java: some layout fixes done, it seems to work correctly with mainstream browsers.

2000-08-18  Javier Kohen  <jkohen@tough.com>

	* ChannelWindow.java: while working with the latest fix, I discovered the nick list sort routine got broken at some point, I guess at i18n. Now it works correctly again.

	* ChannelWindow.java: fixed a long standing bug that didn't show in my development environment (Sun's JDK 1.2.2 f/Linux). Though, under NN and MSIE the nick list was completely broken. The problem was that (CollatorKey).equals() was broken, I tried using the 0 == (CollatorKey).compareTo() construction instead, and it misteriously -for me- worked. Thanks to those who insisted on this one.

2000-08-17  Javier Kohen  <jkohen@tough.com>

	* EIRC.java: made use of RFC1459TextField and RFC1459.filterString() for validating nick input.

	* RFC1459Collator.java: removed, functionality moved into RFC1459.

	* RFC1459.java: new class to implement misc RFC 1459 related stuff.

	* RFC1459TextField.java: implemented a self validating TextField which only accepts RFC 1459 characters.

	* EIRC.java: overriden Applet's getAppletInfo and getParameterInfo methods.

	* EIRC.java: added password support for accessing server which so require. This is also PARAM configurable.

	* EIRC.java: added PARAM configurable username and nickname (lack of this noticed by Tomaz Borstnar.) Nickname may also be randomized by the client from a PARAM configurable mask. Also added the posibility to make the client automatically establish a connection to the server on start up; this is PARAM configurable (addition also suggested by Tomaz Borstnar.)

2000-08-14  Javier Kohen  <jkohen@tough.com>

	* README: documented the installing procedures, and the new translation options.

2000-08-13  Javier Kohen  <jkohen@tough.com>

	* Resources*.properties: program text is now available both in Spanish and English.

	* EIRC.java: implemented internationalization. Now multi-language support is straightforward.

	* Message.java: fixed a bug in method toStrings that caused commands without parameters to be just ignored, thus preventing "motd" and "quit" -among others- from working.

	* pics/*: new set of images based on the originals, but somewhat enhanced and translated to English provided by Travis.

2000-08-10  Javier Kohen  <jkohen@tough.com>

	* ClientThread.java: modified to acomplish with the previous change.

	* Message.java: add toStrings method to class Message that returns a message splited in 512-bytes segments, for RFC 1459 compliment.

	* EIRC.java: fixed a little bug that kept a private window to self from following nick changes.

	* ChannelWindow.java: used CollationKey's for faster and RFC 1459 collated string sorting.

	* CollatedHashtable.java: written this class to be able to use RFC1459Collator for Hashtable's keys.

	* RFC1459Collator.java: written this Collator derived class to take {}| as lower case equivalents of []\ respectively, and hence comply with RFC 1459.

	* EIRC.java: restructured some code to fix a major bug that caused EIRC to swallow *all* CPU while waiting for the server to ping it back at login. (Bug reported by Tomaz Borstnar.)

	* EIRC.java: Some fixes to avoid "You're not connected" message when loging in fails.

	* EIRC.java: No longer depends on the server PINGing the client after login. That was modern UnderNet behavior, and not stated by the RFC 1459.	

	* Message.java: fixed one bug that caused prefix being null under some circumstances. I've noticed this when I failed connecting to a password enabled server.
