X-Git-Url: https://cgit.sxemacs.org/?p=riece;a=blobdiff_plain;f=lisp%2FChangeLog;h=7e2b70f6025f6795093239c2323ce4e8928ce776;hp=8e854f76136ae798521989eb3afb9d76d5b79080;hb=132e10f9d686391e69187de89744a13400ab9b2c;hpb=73f2dff06239a509c3f091527fd24cb71219a7c1 diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8e854f7..7e2b70f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,428 @@ +2003-12-22 Daiki Ueno + + * riece-keyword.el (riece-notify-keyword-functions): Mark as obsolete. + (riece-keyword-notify-functions): New user option. + (riece-keyword-message-filter): Call riece-keyword-notify-functions. + +2003-12-17 Daiki Ueno + + * riece-log.el (riece-log-flashback): Use + riece-match-string-no-properties instead of match-string-no-properties. + + * riece-xemacs.el (riece-match-string-no-properties): New function. + * riece-emacs.el (riece-match-string-no-properties): New alias. + + * riece-identity.el: Don't require 'riece-compat. + (riece-identity-prefix-case-table): Abolish. + (riece-identity-prefix-case-pair-alist): New constant. + (riece-identity-canonicalize-prefix): Don't use case-table. + + * riece-emacs.el (riece-set-case-syntax-pair): Abolish. + (riece-copy-case-table): Abolish. + * riece-xmacs.el (riece-set-case-syntax-pair): Abolish. + (riece-copy-case-table): Abolish. + +2003-12-15 Daiki Ueno + + * riece-options.el: Require 'riece-version. + (riece-quit-message): Set default to (riece-extended-version). + (riece-away-message): Set default to "Gone". + + * riece-commands.el: Don't require 'riece-version. + (riece-command-quit): Don't check riece-quit-message. + (riece-command-close-server): Ditto. + (riece-command-toggle-away): Always supply a parameter to the AWAY + command when the user is not away. Thanks to Yuki Fujimura + + [cf. ] + +2003-12-14 Daiki Ueno + + * riece.el (riece): Connect to servers in riece-startup-server-list. + + * riece-000.el (riece-handle-001-message): Ignore entries in + riece-startup-channel-list which doesn't match riece-server-name. + + * riece-options.el (riece-startup-server-list): New user option. + + * riece-async.el (riece-async-max-buffer-size): New user option. + (riece-async-server-program): Use io/nonblock & IO#syswrite to + check whether the write end of pipe (i.e. input to emacs process) + would block. + +2003-12-13 Daiki Ueno + + * riece-options.el (riece-default-open-connection-function): New + user option. + + * riece-server.el (riece-server-keyword-map): Use + riece-default-open-connection-function. + + * riece-async.el: New add-on. + * COMPILE (riece-modules): Add riece-async. + * Makefile.am (EXTRA_DIST): Add riece-async.el + +2003-12-09 OHASHI Akira + + * riece-mini.el (riece-mini-display-message-function): Don't set + riece-mini-last-channel when message is not a privmsg. + +2003-12-04 OHASHI Akira + + * riece-server.el (riece-with-server-buffer): Store 'edebug-form-spec + property. + +2003-12-03 OHASHI Akira + + * riece-log.el (riece-log-requires): New function. + (riece-log-flashback): Revert 'riece-identity property and button. + +2003-11-28 OHASHI Akira + + * riece-unread.el (riece-unread-after-display-message-function): + Do nothing when message is not a privmsg. + +2003-11-22 Daiki Ueno + + * riece-log.el (riece-log-coding-system): New user option. + (riece-log-display-message-function): Bind + coding-system-for-write; don't create temp buffer. + + * riece-rdcc.el (riece-rdcc-filter): Use write-region instead of + append-to-file to suppress "Wrote file" messages. + +2003-11-10 Daiki Ueno + + * Riece: Version 0.1.6 released. + * riece-version.el (riece-version-number): Bump up to 0.1.6. + +2003-11-08 Daiki Ueno + + * riece-ctcp.el (riece-command-ctcp-action): Display channel names + in "*Others*" buffer. + +2003-11-05 OHASHI Akira + + * riece-unread.el (riece-unread-switch-to-channel): Protect + switching to the channel not existing. + +2003-10-29 OHASHI Akira + + * riece-log.el (riece-log-get-directory): Support riece-identity + for mapping. + +2003-10-28 Daiki Ueno + + * riece-layout.el (riece-set-window-points): Move point in + the channel-buffer's window. + + * riece-ctcp.el (riece-command-ctcp-version): Prompt to select + an identity on the current server. + (riece-command-ctcp-ping): Ditto. + (riece-command-ctcp-clientinfo): Ditto. + (riece-command-ctcp-action): Ditto. + + * riece-commands.el (riece-command-change-mode): Prompt to select + an identity on the current server. + (riece-command-join): Ditto. + +2003-10-27 Daiki Ueno + + * riece-keyword.el (riece-keywords): Change custom spec. + (riece-keyword-message-filter): Normalize riece-keywords. + + * riece-identity.el (riece-identity-prefix-case-table): Use + riece-copy-case-table to define. + + * riece-xemacs.el (riece-set-case-syntax-pair): Workaround for + XEmacs 21.1. + (riece-copy-case-table): Ditto. + + * riece-emacs.el (riece-copy-case-table): New alias. + + * riece-globals.el (riece-channel-regexp): Use + riece-make-interval-regexp to define. + (riece-user-regexp): Ditto. + + * riece-compat.el (riece-make-interval-regexp): New function. + + * riece-icon.el (riece-icon-available-p): Check + the existence of image-type-available-p. + +2003-10-27 OHASHI Akira + + * riece-log.el (riece-log-get-directory): Fix for server name and + private messages handling. + +2003-10-26 Daiki Ueno + + * riece-xemacs.el (riece-run-with-idle-timer): Pass an integer to + the RESTART argument of start-itimer. + + * riece-commands.el (riece-command-user-list-scroll-down): Rename + from riece-command-nick-scroll-down. + (riece-command-user-list-scroll-up): Rename from + riece-command-nick-scroll-up. + (riece-command-scroll-down): Check if riece-current-channel is bound. + (riece-command-scroll-up): Ditto. + (riece-command-quit): Clean up if no server process is available. + +2003-10-25 Daiki Ueno + + * riece-rdcc.el: Bind temporary-file-directory. + (riece-rdcc-send-program): Allow block-size to be controlled from + elisp. + (riece-rdcc-block-size): New user option. + (riece-rdcc-temp-file): New variable. + (riece-rdcc-received-size): New variable. + (riece-rdcc-filter): Don't keep received bytes in the process + buffer; use riece-rdcc-format-size to display progress. + (riece-command-dcc-receive): Create a temporary directory which + holds a received file. + +2003-10-24 Daiki Ueno + + * riece-options.el (riece-gather-channel-modes): Default to nil. + * riece-handle.el (riece-handle-join-message): Send MODE if + riece-gather-channel-modes is non-nil. + + * riece-url.el: Add autoload setting for 'browse-url. + + * riece-menu.el: Require 'riece-options, 'riece-globals, + 'riece-identity, 'riece-layout, and 'riece-server; bind + riece-command-mode-map. + + * riece-history.el: Require 'riece-options, 'riece-globals, + 'riece-highlight, and 'riece-identity. + + * riece-naming.el (riece-naming-assert-rename): Fixed. + +2003-10-24 Daiki Ueno + + * Riece: Version 0.1.5 released. + * riece-version.el (riece-version-number): Bump up to 0.1.5. + +2003-10-24 Daiki Ueno + + * riece-ctcp.el (riece-command-ctcp-action): If the current + command line is not empty, insert it into the minibuffer before + reading input. Thanks to Akinori MUSHA + [cf. ] + + * riece.el: Add autoload setting for derived-mode-class. + (riece-shrink-buffer-idle-timer): New variable. + (riece): Set idle timer to shrink channel buffers. + (riece-shrink-buffer): New function. + + * riece-xemacs.el (riece-overlays-in): New function. + (riece-delete-overlay): New alias. + (riece-kill-all-overlays): New function. + + * riece-server.el (riece-quit-server-process): Don't set timer if + riece-quit-timeout is nil. + + * riece-options.el (riece-quit-timeout): Change custom type. + (riece-shrink-buffer-idle-time-delay): New user option. + (riece-max-buffer-size): New user option. + + * riece-icon.el (riece-icon-add-image-region) [XEmacs]: Delete + extents if already exists. + + * riece-emacs.el (riece-overlays-in): New alias. + (riece-delete-overlay): New alias. + (riece-kill-all-overlays): New function. + (riece-run-with-idle-timer): New alias. + (riece-cancel-timer): New alias. + + * riece-display.el (riece-update-user-list-buffer): Kill all + overlays in buffer. + (riece-update-channel-list-buffer): Ditto. + + * riece-commands.el (riece-command-set-operators): Reset group. + (riece-command-set-speakers): Ditto. + +2003-10-23 Daiki Ueno + + * riece-naming.el (riece-naming-assert-rename): Follow the + change of riece-channel.el. + + * riece-message.el (riece-message-external-p): Follow the + change of riece-channel.el. + + * riece-display.el (riece-update-user-list-buffer): Follow the + change of riece-channel.el. + + * riece-commands.el (riece-command-kick): Follow the change of + riece-channel.el. + (riece-command-set-operators): Ditto. + (riece-command-set-speakers): Ditto. + + * riece-button.el (riece-user-button-set-operators): Follow the + change of riece-channel.el. + (riece-user-button-set-speakers): Ditto. + + * riece-channel.el (riece-make-channel): Abolish 2nd and 3rd + arguments. + (riece-get-channel): Follow the change of riece-make-channel. + (riece-channel-operators): Abolish. + (riece-channel-speakers): Abolish. + (riece-channel-set-operators): Abolish. + (riece-channel-set-speakers): Abolish. + (riece-channel-get-operators): Abolish. + (riece-channel-get-speakers): Abolish. + (riece-channel-toggle-user): Follow the change of the return type + of riece-channel-users. + (riece-channel-toggle-operator): Ditto. + (riece-channel-toggle-speaker): Ditto. + (riece-channel-operator-p): Abolish. + (riece-channel-speaker-p): Abolish. + (riece-channel-intern-user): Abolish. + +2003-10-23 Daiki Ueno + + * riece-identity.el (riece-identity-member): Take an optional 3rd + argument to instruct to use riece-identity-equal-no-server. + (riece-identity-assoc): Ditto. + + * riece-display.el (riece-update-user-list-buffer): Use + riece-channel-operator-p and riece-channel-speaker-p. + + * riece-button.el (riece-user-button-set-operators): Use + riece-channel-operator-p. + (riece-user-button-set-speakers): Use riece-channel-speaker-p. + + * riece-channel.el (riece-channel-intern-user): New function. + (riece-channel-toggle-operator): Use it. + (riece-channel-toggle-speaker): Use it. + (riece-channel-operator-p): New function. + (riece-channel-speaker-p): New function. + +2003-10-23 OHASHI Akira + + * riece-log.el (riece-log-get-directory): Follow the change of + `riece-channel-regexp'. + +2003-10-22 Daiki Ueno + + * riece-identity.el (riece-format-identity): Return copied strings. + +2003-10-22 OHASHI Akira + + * riece.el (riece): When riece server was opened, Do + `riece-command-configure-windows' instead of signaling. + +2003-10-22 Daiki Ueno + + * riece-rdcc.el (riece-rdcc-send-program): Flush $stdout before + accepting a connection. + (riece-command-dcc-send): Use riece-completing-read-identity; take + an identity object in the 1st argument. + (riece-rdcc-format-size): New function. + (riece-handle-dcc-request): Use it. + + * riece-ndcc.el (riece-command-dcc-send): Use + riece-completing-read-identity; take an identity object in the 1st + argument. + + * riece-display.el (riece-update-buffers): Run + riece-update-buffer-hook. + + * riece-button.el (riece-user-button-finger): Pass an identity + object instead of the prefix. + + * riece-ctcp.el: Require 'riece-highlight. + (riece-ctcp-action-face): New face. + (riece-ctcp-action-face): New variable. + (riece-ctcp-action-prefix): New variable. + (riece-ctcp-requires): Require 'riece-highlight if it is enabled. + (riece-ctcp-insinuate): Modify riece-dialogue-font-lock-keywords + if 'riece-highlight is enabled. + (riece-handle-ctcp-action-request): Prepend + riece-ctcp-action-prefix instead of riece-change-prefix. + (riece-command-ctcp-action): Ditto. + + * riece-server.el (riece-quit-server-process): Use riece-run-at-time. + * riece-xemacs.el (riece-run-at-time): New function. + * riece-emacs.el (riece-run-at-time): New alias. + + * riece-misc.el (riece-get-identities-on-server): New function. + (riece-get-users-on-server): Use it. + + * riece-ctcp.el (riece-ctcp-completing-read-identity): Abolish. + (riece-command-ctcp-version): Use riece-completing-read-identity + and riece-get-identities-on-server. + (riece-command-ctcp-ping): Ditto. + (riece-command-ctcp-clientinfo): Ditto. + (riece-command-ctcp-action): Ditto. + + * riece-commands.el (riece-command-finger): Pass the current + server name to riece-get-users-on-server; use + riece-completing-read-identity. + (riece-command-invite): Ditto. + (riece-command-enter-message-to-user): Ditto. + + * riece-000.el (riece-handle-001-message): Register myself with + riece-obarray. + +2003-10-21 Daiki Ueno + + * riece-ctcp.el (riece-ctcp-completing-read-identity): New + function. + (riece-command-ctcp-version): Use it. + (riece-command-ctcp-ping): Ditto. + (riece-command-ctcp-clientinfo): Ditto. + (riece-command-ctcp-action): Ditto; don't encode CHANNEL identity + twice. + +2003-10-20 Daiki Ueno + + * riece-xemacs.el (riece-xemacs-mode-line-buffer-identification): + Abolish. + (riece-mode-line-buffer-identification): Don't define alias. + + * riece-server.el (riece-open-server): Handle errors occurred + during reading password. + + * riece-options.el (riece-addons): Add riece-icon. + + * riece-layout.el (riece-configure-windows-top): Collect arguments. + + * riece-icon.el: New add-on. + * COMPILE (riece-modules): Add riece-icon. + * Makefile.am (EXTRA_DIST): Add riece-icon.el + +2003-10-20 Daiki Ueno + + * riece-options.el (riece-saved-forms): Add riece-layout. + + * riece-layout.el (riece-layout-alist): Change format. + (riece-configure-windows): Take 2 args to specify the position of + the command buffer window. + + * riece-commands.el (riece-command-change-layout): Set + riece-save-variables-are-dirty. + +2003-10-19 Daiki Ueno + + * Riece: Version 0.1.4 released. + * riece-version.el (riece-version-number): Bump up to 0.1.4. + +2003-10-19 Daiki Ueno + + * riece-server.el (riece-server-process-opened): Return t. + + * riece.el (riece-dialogue-mode-map): Bind "p" to + riece-command-enter-message-to-user. + + * riece-misc.el (riece-current-nickname): Use + riece-current-server-name. + (riece-get-users-on-server): Ditto. + + * riece-server.el (riece-current-server-name): New function. + (riece-send-string): Use it. + + * riece-commands.el (riece-command-enter-message-to-user): New command. + 2003-10-19 Daiki Ueno * riece-menu.el (riece-menu-create-layouts-menu): New function.