* riece-300.el (riece-handle-353-message): Separate the previous
[riece] / lisp / ChangeLog
index eab13cd..f411319 100644 (file)
@@ -1,3 +1,139 @@
+2006-06-01  Daiki Ueno  <ueno@unixuser.org>
+
+       * riece-300.el (riece-handle-353-message): Separate the previous
+       353 line by " ".
+
+2006-05-29  Daiki Ueno  <ueno@unixuser.org>
+
+       * Riece: Version 3.0.0 released.
+       * configure.ac: Bump up version to 3.0.0.
+
+2006-05-16  Daiki Ueno  <ueno@unixuser.org>
+
+       * riece-options.el (riece-realname): New user option.
+
+       * riece-irc.el (riece-irc-open-server): Changed the meaning of
+       riece-username.  i.e. now riece-username represents the user's
+       login name and riece-realname is the replacement of the former
+       riece-username.
+       * riece-server.el (riece-server-keyword-map): New keyword :realname.
+
+2006-05-06  Yoichi NAKAYAMA  <yoichi@geiin.org>
+
+       * riece-commands.el (riece-command-close-server): Cause error
+       on non-existent server process.
+
+2006-04-26  Daiki Ueno  <ueno@unixuser.org>
+
+       * riece-skk-kakutei.el: Declare some variables and autoload
+       'skk-kakutei to suppress compilation warnings.
+
+       * riece-xfaceb.el: Don't enclose autoloads with ignore-errors;
+       autoloads should not report errors.
+
+       * riece-commands.el (riece-command-save-variables): New command.
+
+       * riece-epg.el
+       (riece-epg-passphrase-callback-function-for-decrypt): New
+       function.
+       (riece-command-set-passphrase): Renamed.
+       (riece-epg-message-filter): Don't query passphrase; if decryption
+       fails add button to try again.
+       (riece-epg-add-encrypted-button): New function.
+       (riece-epg-encrypted-button-notify): New function.
+
+2006-04-25  Daiki Ueno  <ueno@unixuser.org>
+
+       * riece-epg.el: New add-on.
+       * riece-addon-modules.el (riece-addon-modules): Added riece-epg.
+       * Makefile.am (EXTRA_DIST): Added riece-epg.el.
+
+2006-04-13  Steve Youngs  <steve@sxemacs.org>
+
+       * riece-commands.el (riece-command-invite): Add missing `:' to
+       string sent to server.
+
+       * riece-300.el (riece-handle-341-message): swap values for
+       `channel' and `user'.
+
+2006-04-03  Daiki Ueno  <ueno@unixuser.org>
+
+       * riece.el (riece-buffer-alist): " *Debug*" -> "*Debug*".
+       (riece-save-variables-files): Fixed a typo in the docstring.
+
+2006-01-14  Daiki Ueno  <ueno@unixuser.org>
+
+       * riece-display.el (riece-part-channel): Emit
+       'channel-list-changed signal.
+
+2005-12-29  Daiki Ueno  <ueno@unixuser.org>
+
+       * riece-alias.el (riece-alias-alternate-separator): Reverted the
+       default value.
+
+2005-11-19  Daiki Ueno  <ueno@unixuser.org>
+
+       * Riece: Version 2.0.2 released.
+       * configure.ac: Bump up version to 2.0.2.
+
+2005-11-19  Daiki Ueno  <ueno@unixuser.org>
+
+       * riece-alias.el (riece-alias-alternate-separator): Changed from
+       "@" -> "%".
+
+       * test/test-riece-cache.el: New test cases.
+       * test/Makefile.am (EXTRA_DIST): Added test-riece-cache.el.
+
+       * Makefile.am (EXTRA_DIST): Added riece-cache.el.
+
+       * riece-commands.el (riece-command-part-channel): Signal an error
+       if TARGET server has not opened.
+
+       * riece-channel.el: Require 'riece-cache.
+       (riece-find-channel): Increase priority of given channel name in
+       riece-channel-cache.
+       (riece-forget-channel): Remove given channel name from
+       riece-channel-cache.
+       (riece-get-channel): Register given channel name in
+       riece-channel-cache (if it is being added to riece-channel-obarray.)
+       * riece-server.el (riece-reset-process-buffer): Initialize
+       riece-channel-cache.
+       * riece-options.el (riece-channel-cache-max-size): New user
+       option.
+       * riece-misc.el (riece-get-channels-on-server): Get channel names
+       from riece-channel-cache.
+       * riece-globals.el (riece-channel-cache): New variable.
+
+2005-11-18  Daiki Ueno  <ueno@unixuser.org>
+
+       * riece-cache.el: Renamed from riece-lru.el.
+
+2005-11-18  Daiki Ueno  <ueno@unixuser.org>
+
+       * riece-user.el: Require 'riece-lru.
+       (riece-find-user): Increase priority of given username in
+       riece-user-lru.
+       (riece-forget-user): Remove given username from riece-user-lru.
+       (riece-rename-user): Rename given username in riece-user-lru.
+       (riece-get-user): Register given username in riece-user-lru (if
+       it is being added to riece-user-obarray.)
+       * riece-server.el: Require 'riece-lru.
+       (riece-reset-process-buffer): Initialize riece-user-lru.
+       * riece-options.el (riece-user-lru-max-size): New user option.
+       * riece-misc.el: Require 'riece-lru.
+       (riece-get-users-on-server): Get usernames from riece-user-lru.
+       * riece-globals.el (riece-user-lru): New variable.
+       * COMPILE (riece-modules): Added riece-lru.
+       * riece-lru.el: New file.
+
+       * riece-develop.el: New file.
+
+2005-10-27  Masatake YAMATO  <jet@gyve.org>
+
+       * url-riece.el (url-irc-riece): Use `server-name'
+       to create an argument for `riece-parse-identity'.
+       `server' was used.
+
 2005-09-29  Daiki Ueno  <ueno@unixuser.org>
 
        * Riece: Version 2.0.1 released.