Show
Ignore:
Timestamp:
07/16/06 08:36:52 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/etc/ERC-NEWS

    r4058 r4111  
    22 
    33* Changes in ERC 5.2 (unreleased) 
     4 
     5* Changes in ERC 5.1.3 
     6 
     7** Fix use of /quote command with no initial whitespace. 
     8 
     9** Make it possible to customize the colorization of the header line. 
     10The `erc-header-line' face is used to color the header line. 
     11The `erc-header-line-face-method' determines the method to use when 
     12colorizing the header line. 
     13 
     14** Add the new function `erc-handle-irc-url', which is a suitable 
     15candidate to use for `url-irc-function'.  This permits some 
     16integration of url.el and ERC. 
     17 
     18** Fix several errors that occur when server or channel buffers are killed 
     19prematurely. 
     20 
     21** Fix toggling of flood control. 
     22 
     23** Match the patterns in `erc-encoding-coding-alist' as regexps, 
     24instead of verbatim text.  Also, match case-insensitively. 
     25 
     26** The /SMV command has been removed, since we no longer have 
     27meaningful module-specific version information. 
     28 
     29** Fix a "(stringp nil)" error that can happen when doing /PART. 
     30 
     31** Use a better example in the `erc-part-reason-various-alist' 
     32documentation. 
     33 
     34** When using `erc-quit-reason-various' and `erc-part-reason-various' 
     35and no matches are found, default to using the ERC version string 
     36rather than "nil". 
     37 
     38** Add the `list' and `page' modules to the `erc-modules' customize 
     39interface. 
     40 
     41** Changes to the ERC manual 
     42 
     43*** Update the list of available modules. 
     44 
     45*** Revise information about releases and development. 
     46 
     47*** Provide a simpler example in the "Getting Started" chapter. 
     48 
     49*** Fully document how to connect to an IRC server in the new 
     50"Connecting" chapter. 
     51 
     52** Changes and additions to modules 
     53 
     54*** Autoaway (erc-autoaway.el) 
     55 
     56**** Rename the `erc-autoaway-use-emacs-idle' option to 
     57`erc-autoaway-idle-method'. 
     58 
     59**** Add support for autoaway based on user idle time. 
     60This is now the default. 
     61 
     62**** If you set the AWAY status yourself, erc-autoaway will not 
     63interfere by un-setting AWAY prematurely. 
     64 
     65**** If you are set away while visiting a non-ERC buffer, 
     66erc-autoaway used to fail in bringing the user back.  This is now 
     67fixed. 
     68 
     69*** BBDB (erc-bbdb.el) 
     70 
     71**** Add new option `erc-bbdb-electric-p', which determines whether 
     72to make the BBDB buffer electric.  This defaults to not electric. 
     73 
     74*** Button (erc-button.el) 
     75 
     76**** Use <backtab> instead of <C-tab> for `erc-button-previous'. 
     77 
     78*** Identd (erc-identd.el) 
     79 
     80**** Fix a bug that involves starting the identd server. 
     81 
     82**** Make this work with Emacs 22. 
     83 
     84**** Provide a real ERC module named `identd'. 
     85 
     86**** Don't create an extra buffer for the identd process. 
     87 
     88*** Logging (erc-log.el) 
     89 
     90**** By default, don't insert old logs when opening an ERC buffer. 
     91This may be changed by customizing `erc-log-insert-log-on-open'. 
     92 
     93**** New option `erc-log-write-after-send' determines whether the 
     94log file will be written to after every sent message.  The default is 
     95not to do this. 
     96 
     97**** New option `erc-log-write-after-insert' determines whether the 
     98log file will be written to when new text is added to a logged ERC 
     99buffer.  The default is not to do this.  With this option and the 
     100previous option, logging should no longer slow down ERC as much. 
     101 
     102**** Default to saving buffers and queries on quit. 
     103This may be changed by customizing the `erc-save-buffer-on-quit' and 
     104`erc-save-queries-on-quit' options, respectively. 
     105 
     106**** Only perform logging when the `logging' module is added to 
     107`erc-modules'.  This prevents logging from being activated just by 
     108loading the erc-log.el file, and makes logging act like other ERC 
     109modules. 
     110 
     111*** Programmable completion (erc-pcomplete.el) 
     112 
     113**** Don't complete the user's current nickname. 
    4114 
    5115* Changes in ERC 5.1.2