home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Spezial / SPEZIAL2_97.zip / SPEZIAL2_97.iso / ANWEND / ONLINE / SLRN_CP / CHANGES.TXT < prev    next >
Text File  |  1996-12-24  |  38KB  |  944 lines

  1. Changes since 0.9.2.0
  2. 0.  Bug causing slrn to hang on VMS fixed.  The bug was tracked down
  3.     with the help of Andrew Brennan <brennan@crashprone.allegheny.edu>.
  4.     
  5. 1.  man page and slrn.rc updated to reflect the fact that
  6.     `art_header_bob' and `art_header_eob' functions were renamed to
  7.     simply `header_bob' and `header_eob', resp.  Also, the functions
  8.     `goto_beginning' and `goto_end' are being phased out in favor of
  9.     `art_bob' and `art_eob', resp.
  10. 2.  Fixed a compilation problem on NeXT.  mching@inow.com
  11.     submitted OS/2 makefile and config patches for EMX compiler, and
  12.     cardio@orsola.med.unibo.it (cardio) submitted patches for Ultrix.
  13.     
  14. 3.  Some of the documentation updated.
  15.  
  16. 3.  The default for min_high_score was incorrectly set to 0.  It has
  17.     been changed to 1.
  18. 4.  New intrinsics for macros:
  19.      get_header_score
  20.      set_header_score
  21. 5.  New feature: SLRN_HAS_END_OF_THREAD
  22.     See src/slrnfeat.h for more information.  This feature is enabled
  23.     by default.  In the current implementation, it is a compile-time
  24.     option-- there is nothing to disable it at run-time.
  25.  
  26. Changes since 0.9.1.0
  27. 0.  The macro functions read_mini and read_mini_no_echo now take three
  28.     arguments.  See README.macros for more information.  This change
  29.     was necessary because the ``read input from user'' routines are
  30.     now more flexible and support recall of previously entered text.
  31.  
  32. 1.  Renamed `group_mode_hook' to `group_mode_startup_hook'.  Added a new
  33.     hook `group_mode_hook' that is called every time group mode is
  34.     re-entered.
  35. 2.  Oops.  A horrible bug that manifested itself when the quote string
  36.     was not specified via `set quote_string' has been fixed.
  37. 3.  `set use_color' added so that `set use_color 0' may be used to
  38.     turn off color support.
  39. 4.  The name of a header and its value may be be given a different
  40.     colors using, e.g.,
  41.     
  42.         color headers "green" "white"
  43.         color header_name "red" "white"
  44.     
  45.     This means that the header 'From: davis@space.mit.edu' will appear
  46.     with 'From:' in red/white and the rest will appear as green/white.
  47. 5.  It is now possible to customize the keybindings of the command
  48.     prompt.  The defaults are:
  49.     
  50. setkey readline bol         "^A"        % Beginning of line
  51. setkey readline eol         "^E"        % End of line
  52. setkey readline right         "\e[C"        % Move right
  53. setkey readline left         "\e[D"        % Move left
  54. setkey readline bdel         "^H"        % Delete backward
  55. setkey readline bdel         "^?"        % Delete Backward
  56. setkey readline del         "^D"        % Delete Foreword
  57. setkey readline deleol         "^K"        % Delete to End of line
  58. setkey readline trim         "\e/"        % Trim whitespace
  59. setkey readline quoted_insert     "^Q"        % Quoted insert
  60.  
  61.     The name of the keymap is `readline'.
  62.  
  63. 6.  New intrinsic functions for macros include:
  64.  
  65.       thread_size              % Returns number of headers in thread
  66.       collapse_thread          % Collapse current thread
  67.       uncollapse_thread        % Uncollapse current thread
  68.       is_thread_collapsed      % Returns non-zero if current thread is collapsed
  69.       get_header_tag_number   
  70.       article_as_string        % Returns whole article as a string
  71.       tt_send                  % Send argument to terminal
  72.       header_next_unread       % goto next unread header
  73.       input_pending            % Wait for input or timeout
  74.       getkey                   % read keyboard character
  75.       ungetkey                 % push back keyboard character
  76.       set_input_string         % provide answer to prompt
  77.       get_yes_no_cancel        % get response from user
  78.       
  79.     See README.macros for more information.
  80.  
  81. 7.  New .slrnrc variable macro_directory controls where macro file are
  82.     loaded from.  For example, 
  83.     
  84.         set macro_dir "News/macros,/usr/local/lib/slrn/macros"
  85.     interpret "util.sl"
  86.     interpret "tin.sl"
  87.     
  88.     will search for the macro files in $HOME/News/macros,
  89.     /usr/local/lib/slrn/macros, and, as a last resort, in the home
  90.     directory ($HOME).
  91.  
  92. 8.  Now possible to add custom headers to followups and replies.  The
  93.     actual headers are controlled by new slrn.rc variables:
  94.     
  95.          set reply_custom_headers "X-Bla: Bla bla"
  96.          set followup_custom_headers "X-Bla: Bla bla"
  97.      
  98.     The string assigned to these variables may contain the format
  99.     specifiers of the 'followup' variable.  This idea was presented to
  100.     me by John Goerzen <jgoerzen@complete.org>.
  101.     
  102. 9.  Several people have sent me patches for customization of high/low
  103.     score thresholds.  The following .slrnrc variables are now available:
  104.     
  105.           set min_high_score 1
  106.       set max_low_score 0
  107.       set kill_score -9999
  108.  
  109.     One might want to set these on a group by group basis.  This is
  110.     possible via a macro.  The best way to do this is to put the
  111.     appropriate statements in a 'pre_article_mode_hook' described below.
  112.     
  113. 10. New hooks for macros:
  114.  
  115.         resize_screen_hook : called when screen size changes
  116.     pre_article_mode_hook: called before grabbing headers from server
  117.       in article mode.
  118.  
  119.  
  120.     
  121. Changes since 0.9.0.0
  122. -1. features.h changed to slrnfeat.h to avoid GNU C problems.
  123.  
  124. 0.  Misc bug-fixes, e.g., xgtitle operational again.  In addition, I
  125.     rewrote the lowlevel tcp/ip code so that slrn should now be more
  126.     responsive to Ctrl-G abortion and suspension.
  127.  
  128. 1.  The following .slrnrc commands are obsolete and will not be
  129.     supported for too much longer:
  130.  
  131.      "quote_string"
  132.      "realname"
  133.      "replyto"
  134.      "organization"
  135.      "followup"
  136.      "cc_followup_string"
  137.      "decode_directory"
  138.      "editor_command"
  139.  
  140.     These are now `set' type variables.  That is, the new usage is:
  141.     
  142.       set quote_string ">"
  143.       
  144.     etc...
  145.  
  146. 2.  If a piece of authentication information is supplied as an empty
  147.     string as in
  148.     
  149.          nnrpaccess "news.mit.edu"  "davis"  ""
  150.      
  151.     slrn will prompt for the information.  
  152.  
  153. 3.  It is now possible to specify the ``help'' string that is
  154.     displayed at the bottom of the display via the variables:
  155.  
  156.        set art_help_line "bla bla"
  157.        set header_help_line "more bla bla"
  158.        set group_help_line "and even more"
  159.        
  160. 4.  Scrolling improvements.
  161. 5.  It is now possible to use, e.g., 
  162.  
  163.         setkey article "digit_arg"  "\eOP1"
  164.         setkey group   "digit_arg"  "\eOP1"
  165.        
  166.     to bind a key to the prefix argument function.
  167. 6.  Group search also search group description
  168. 7.  `set use_tilde 0' may be used to turn off tilde feature.
  169. 8.  New interpreter intrinsics:
  170.  
  171.       get_group_flags
  172.       set_group_flags
  173.       is_article_visible
  174.       is_group_mode
  175.       extract_article_header
  176.       set_article_window_size
  177.       read_mini_no_echo
  178.       save_current_article
  179.       select_group
  180.       group_search
  181.       group_down_n
  182.       group_up_n
  183.       group_unread
  184.  
  185.  
  186. Changes since 0.8.8.4
  187. 0.  Tiny problem with server timeout fixed.
  188. 1.  GroupLens support added.  See README.GroupLens
  189.  
  190. 2.  Sort by score implemented.  See src/features.h to disable it.  To
  191.     sort by score, add:
  192.     
  193.         set sorting_method 5
  194.     set display_score 1
  195.     
  196.     to your .slrnrc file.  Set display_score to 0 to disable
  197.     displaying the score value.  If the score value is displayed, the
  198.     number of lines in the article will not be displayed.
  199.     Thanks go to Olly Betts <olly@mantis.co.uk> for this feature.
  200.  
  201. 3.  Score file lines such as:
  202.  
  203.        [~rec.crafts.*, rec.hobbies.*]
  204.        
  205.     are now supported.  The `~' character means that the set of scores
  206.     implied by this line applies to any group EXCEPT rec.crafts.* and
  207.     rec.hobbies.*.  That is, the `~' character may be used as a NOT
  208.     operator in this context.
  209.     
  210. 4.  New slrnrc configuration option:
  211.  
  212.       set custom_headers "X-Whatever: bla\nX-Misc: bla bla"
  213.  
  214. 5.  New group mode function: move_group.  This will allow you to use the
  215.     up/down arrow keys to move a group to a different location.  It
  216.     has a default binding of `m'.
  217.  
  218. 6.  Added Felix von Leitner's cross posting and tilde patches.  The
  219.     cross posting patch is enabled via the SLRN_HAS_MSGID_CACHE feature.
  220.     Similarly, the tilde patch is available via SLRN_HAS_TILDE_FEATURE.
  221.     Thanks Felix.
  222.  
  223. 7.  S-Lang interpreter available.  Set SLRN_HAS_SLANG in features.h to
  224.     enable it.  See also README.slang and slrn.sl for more
  225.     information.  The 0.9 series of slrn releases will feature more
  226.     and more interpreter capabilities.
  227.  
  228. Changes since 0.8.8.3
  229. 0.  Bug fix release and patches to get it to compile under VMS again.
  230.  
  231. Changes since 0.8.8.2
  232. 0.  Misc bug fixes
  233. 1.  Support for INEWS and LOCAL NEWS SPOOL.  The INEWS patches were
  234.     originally provided by Erik Manders <erik@il.ft.hse.nl>.
  235.     Olly Betts <olly@mantis.co.uk> is responsible for the local spool support.
  236.     Edit src/features.h to enable these options.
  237.     
  238.     The following slrn.rc variables are are related to the spool support:
  239.     
  240.      set spool_inn_root "/export/opt/inn"
  241.      set spool_root "/export/news"
  242.      set spool_nov_root "/export/news"
  243.      % -- The following filenames are relative to spool_root
  244.      set spool_nov_file ".overview"
  245.      set spool_active_file "data/active"
  246.      set spool_activetimes_file "data/active.times"
  247.      set spool_newsgroups_file "data/newsgroups"
  248.  
  249.     Of course default values for these files may be hard-coded.  See
  250.     src/features.h.
  251.     
  252.     In addition, new command line arguments have been added:
  253.     
  254.           --inews ==> use inews for posting
  255.       --nntp  ==> use nntp
  256.       --spool ==> use local news spool
  257.       --version
  258.       
  259. 2.  Score files now allow more than one newsgroup pattern to be specified,
  260.     e.g., 
  261.     
  262.         [sci.*, comp.*]
  263.        .
  264.        .
  265.  
  266. Changes since 0.8.8.1
  267. 1.  base 64 decoding support
  268. 2.  On VMS, the personal slrn configuration file has been renamed to slrn.rc.
  269.     See features.h for changing this.  Also, many thanks to Andy Harper
  270.     (A.HARPER@kcl.ac.uk) for work on DCL make files.
  271. 3.  Small bug fixes
  272.  
  273. Changes since 0.8.8.0
  274.  
  275. 0.  Bug fixes (hangup, connection aborts, article/header percentage counts,
  276.     etc..)
  277.  
  278. 1.  Oops.  Forgot to provide a way to turn off video attributes.  Now you can
  279.     use `none', e.g.,
  280.     
  281.         mono headers none
  282.     
  283. 2.  New variable for group descriptions: group_dsc_start_column
  284.  
  285.         set group_dsc_start_column 40
  286.     
  287.     causes descriptions to start in column 40.
  288. 3.  Now possible to color descriptions via:
  289.  
  290.         color description blue white
  291.     mono description bold 
  292.  
  293. 4.  ^G abort of header retrieval.
  294. 5.  New variable:
  295.  
  296.         set lines_per_update 50
  297.     
  298.     sets the granularity of slrn's percentage meters.
  299.  
  300. 6.  Spoiler support provided by Olly Betts (olly@mantis.co.uk).  The .slrnrc
  301.     variable `spoiler_char' may be used to specify the character used to
  302.     hide the text.  The default is '*':
  303.     
  304.         set spoiler_char '*'
  305.  
  306. 7.  .slrnrc `ignore_quotes' specifier can take up to 5 regular expression
  307.     patterns, e.g.,
  308.     
  309.         ignore_quotes  "^ *[:=|+>]"    "^ *[A-Za-z]>"
  310.     
  311.     specifies two patterns.
  312.  
  313. 8.  Certain compiler symbols such as NO_DECODE have been renamed and moved to
  314.     the new file: features.h
  315. Changes since 0.8.7
  316. 0.  Misc bug fixes
  317.  
  318. 1.  Use of the XGTITLE command is turned off by default.  Use the variable
  319.     `use_xgtitle' to turn it on.
  320.  
  321. 2.  New configuration settings for your .slrnrc file
  322.  
  323.        set Xbrowser "netscape %s &"
  324.        set non_Xbrowser "lynx %s"
  325.  
  326.     Press the `U' key (browse_url) for slrn to search for a URL and call the
  327.     appropriate browser.  Thanks go to Justus Pendleton
  328.     <justus@ryoohki.res.cmu.edu> for the patches.
  329.     
  330. 3.  When creating a score from within article mode, you will be prompted for
  331.     whether or not the score is local or global.  This patch was the idea of 
  332.     Colin Perkins <csp@ohm.york.ac.uk>.
  333.  
  334. 4.  Use `set query_reconnect 0' in your .slrnrc file to turn off
  335.     reconnection confirmation.
  336.  
  337. 5.  `ESC 1 *' now removes all `*' marks.
  338. 6.  If `cc_followup' is -1, slrn will prompt whether or not to cc the
  339.     followup message.
  340. 7.  If linked against slang version 0.99-30 or later, it is possible to
  341.     customize the video attributes on mono-chrome terminals, e.g.,
  342.     
  343.          mono cursor reverse blink
  344.      mono headers bold
  345.      mono author bold blink
  346.        .
  347.        .
  348.  
  349.     The above lines will cause the author part of the header to blink in
  350.     bold, the cursor will blink in reverse video, etc...
  351.  
  352. 8.  New variable to set: write_newsrc_flags
  353.     
  354.          % If 0, save all groups when writing newsrc file
  355.      % if 1, do not save any unsubscribed groups
  356.      % if 2, do not save any unread-unsubscribed groups
  357.      set write_newsrc_flags 0
  358.  
  359. 9.  Better checking of articles before posting.  Now, a new screen will
  360.     appear with error messages if the article appears badly formatted.
  361.  
  362. 10. Modified scrolling behavior when the article window is open.  Now the
  363.     next and previous headers are always visible.
  364.  
  365. Changes since 0.8.6
  366. 0.  Under Unix there is a new `configure' script for building slrn.
  367. 1.  ``Header Numbers'' add for more efficient article selection.  This is
  368.     enabled by default and may be disabled by adding
  369.     
  370.         set use_header_numbers 0
  371.     
  372.     in your .slrnrc file.  In addition, the color of these numbers may be
  373.     controlled via something like
  374.     
  375.         color header_number "green" "white"
  376.     
  377.     The numbers appear at the left margin of the header window.  To goto a
  378.     particular numbered header, e.g., 12, simply press `1' then `2' followed
  379.     by RETURN, SPACE, etc...
  380. 2.  The function ``xpunge'' has been added for article mode.  The default
  381.     binding of this function is to the `x' key.  It removes already read
  382.     articles from the list.
  383. 3.  If slrn does not read the active file, then it will now attempt to use
  384.     the `xgtitle' command to query the server for newsgroups matching a
  385.     pattern.  (This affects the `L' key in group-mode).
  386. Changes since 0.8.5
  387. -1. New distribution structure
  388. 0.  Thanks to Jay Maynard (jmaynard@nwpros.com), slrn now runs under OS/2.  
  389.     Since this is the first OS/2 version, it should be regarded as ALPHA.
  390. 1.  New .slrnrc configuration variable: prompt_next_group.  If 0, slrn will
  391.     not provide the opportunity to use up/down arrow keys to select the next
  392.     group.  Instead, pressing a key that performs a goto next group action,
  393.     e.g., the Next-Group mouse button, will simply put you in the headers of
  394.     the next group in the group list.
  395. 2.  When the mouse is clicked on a button at the top of the display, the
  396.     button will ``flash''.  The color that is used to simulate the flash may
  397.     be specified by using, e.g., 
  398.     
  399.          set color menu_press blue yellow
  400.      
  401.     in your .slrnrc file.
  402. 3.  New groups are displayed with an `N' in the flags column.
  403. 4.  `ESC 1 L' will hide unsubscribed groups  (`L' with a prefix argument).
  404. 5.  The `?' key may be used in help mode to re-start help.
  405. 6.  OS/2 port thanks to Jay Maynard <jmaynard@admin5.hsc.uth.tmc.edu>.
  406.     Note: this port is still considered to be in its alpha stage.
  407. 7.  slrn will nolonger run unless the user has a username and a FQDN.
  408. 8.  New article mode functions (Thanks to Alain.Knaff@imag.fr (Alain Knaff)):
  409.       fast_quit                       % quit news reader from article mode
  410.       skip_to_prev_group              %
  411.     None of these function have default bindings.
  412. 9.  When replying, slrn will warn the user if the email address appears
  413.     invalid.
  414. 10. New configuration variable:
  415.  
  416.        set use_metamail 0
  417.        
  418.     If non-zero, metamail will be called to process MIME articles that 
  419.     slrn does not support.
  420.  
  421. Changes since 0.8.4
  422. 1.  Small bug fixes (nothing major).
  423. 2.  Cosmetic change where one can more easily see the progress of the
  424.     download of tagged articles.  In addition the server name is printed on
  425.     the top status line.
  426. 3.  The `*' (toggle_header_tag) function has been changed.  If used on a
  427.     collapsed thread, it will tag the entire thread.  In addition, after
  428.     pressing `*', the pointer moves down one header.
  429. 4.  -m command line option forces XTerm mouse reporting to be turned on.
  430. 5.  When the mouse is enabled, ``buttons'' also appear on the top status
  431.     line.  Simply click on them with the mouse.  Perhaps in the future,
  432.     these buttons will become menus.
  433.  
  434. Changes since 0.8.3
  435. 0.  The slrn makefile has changed.  Now it asks for a location to put slrn
  436.     object files and it asks for the location of the slang library file.
  437.     The nice thing about this is that it is easy to compile slrn under
  438.     multiple architectures.  The down side is that some makes will not work
  439.     with the Makefile.  If your make fails, use Makefile.old.  Since I do
  440.     not plan to continue support for Makefile.old, please look into
  441.     installing GNUmake.
  442. 1.  .newsrc file is now created in mode where only user has read permission
  443.     to it.
  444. 2.  If a prefix argument is given to the subscribe/unsubscribe commands, the
  445.     user will be prompted for a group pattern which will be used, e.g., 
  446.     pressing `ESC 1 s' and entering `*linux*' at the prompt will result in
  447.     a subscription to all newsgroups of form `*linux*'.
  448. 3.  If a prefix argument is given to the `K' (create_score) function, the
  449.     editor will be called to edit the score file-- no questions asked.
  450. 4.  New .slrnrc variable: query_read_group_cutoff
  451.     Whenever slrn enters a group with `query_read_group_cutoff' or more
  452.     unread articles in it, it will prompt for how many to read.  The default
  453.     is 100.  If set to 0 or less than 0, slrn will not prompt at all, i.e.,
  454.     
  455.         set query_read_group_cutoff 0
  456.  
  457. 5.  It is now possible to have articles automatically wrapped by adding 4 to
  458.     the wrap flags value.  See the slrn.rc file.
  459. 6.  VMS changes: some patches added, ``makefiles'' fixed
  460.  
  461. Changes since 0.8.2
  462. 1.  If slrn cannot find a fully qualified domain name, it will not run.
  463.     This name can be specified in the .slrnrc file so there is no excuse for
  464.     not having one.  There are too many articles already floating around
  465.     usenet with bad hostnames and I do not want slrn to contribute to this.
  466. 2.  Bug in authorization fixed
  467. 3.  Oops.  If one were editing a file from within slrn and the window was
  468.     resized, slrn would re-draw the window!  That is fixed.
  469. 4.  article wrapping added-- press `w' in article mode to wrap/unwrap.  The
  470.     variable `wrap_flags' may be used to control whether or not headers or
  471.     quoted material is wrapped, e.g.,
  472.     
  473.         set wrap_flags 1    % Wrap headers
  474.     set wrap_flags 2    % Wrap quoted material
  475.     set wrap_flags 3    % Wrap headers and quoted material
  476.     
  477.     The default is to wrap everything (3).
  478.  
  479. 5.  slrn may be started as in `slrn -h server.name:XXX' where XXX in an
  480.     integer that represents a port number. 
  481.  
  482. 6.  `set sendmail_command' may be used in the .slrnrc file to specify an
  483.     alternative mail program.  The default is: 
  484.     
  485.           "/usr/lib/sendmail -oi -t -oem -odb"
  486.       
  487.     See config.h for selecting a different default.
  488.        
  489. 7.  ESC u in group mode may be used to Un-Catchup on a group.
  490.  
  491. Changes since 0.8.1
  492. 1.  Misc bug fixes:
  493.       MIME re-worked
  494.       some VMS problems ironed out
  495.       VMS: callable mail support
  496.  
  497. Changes since 0.8.0
  498. 1.  The `toggle_sort' function bound to `ESC s' in article mode has been
  499.     modifed.  Now, it prompts for the sorting method.
  500. 2.  New variables for the .slrnrc file:
  501.  
  502.       % If 0, do not sort.  If 1, perform threading.  If 2, sort by subject
  503.       % If 3, thread then sort result by subject
  504.       set sorting_method 3
  505.  
  506.       % If non-zero, threads will be uncollapsed when a group is entered
  507.       set uncollapse_threads 0
  508.       
  509.     Note: methods 2 and 3 were not available in previous versions of slrn.
  510.     This is why the `toggle_sort' function needed to be modified.
  511. 3.  It is now possible to have all posted articles saved in a file.  The
  512.     file is specified in the .slrnrc with a line like:
  513.  
  514.         set save_posts "News/My_Posts"
  515.  
  516. 4.  slrn now generates its own message id provided that it can find the
  517.     machines fully qualified domain name (FQDN).  The reason for this is
  518.     that one can easily more efficiently score follow-ups to the user's
  519.     posted articles.  For example, if the FQDN is `machine.my.domain' and
  520.     the user's name is `user' then simply put:
  521.     
  522.        [*]
  523.        Score: 100      (or whatever)
  524.        References: user@machine.my.domain>
  525.        
  526.     in the score file.  (The first part of the generated message-id is
  527.     composed of a base 32 representation of the current time and process-id).
  528. 5.  Default values available at all yes/no prompts.
  529.  
  530. 6.  Saving an article is slightly different but simpler.  The new bindings
  531.     are: 
  532.     
  533.     `:'  uudecode file
  534.         `o'  save a file-- no decoding
  535.     
  536.     Use "decode" and "save_article" to re-bind these.
  537.     See the FAQ for more detailed help on uudecoding articles.
  538.     
  539. 7.  New variable: 'save_directory' may be used to specify where files are
  540.     saved.  The default is 'News'.  Use something in your .slrnrc file:
  541.     
  542.         set save_directory "News"
  543.     
  544. 8.  There is now an option for slrn to read the active file upon startup.
  545.     Using this option may result in faster startup times.  Using the active
  546.     file also has the advantage that the `L' key will list all groups
  547.     available at the server.  
  548.     
  549.     There are two ways of enabling this option:
  550.     
  551.         a.  Startup slrn with the -a switch:  slrn -a
  552.     b.  Add the line:
  553.       
  554.              set read_active 1
  555.        
  556.         to your .slrnrc file.
  557.  
  558. 9.  The `Expires' date may be given in one of the following formats:
  559.  
  560.        MM/DD/YYYY
  561.        DD-MM-YYYY
  562.        
  563.     Previous versions only allowed the first format.
  564.  
  565. 10.  MIME support add by Michael Elkins <elkins@aero.org>.
  566.     To enable MIME support, add:
  567.     
  568.         set use_mime 1
  569.     
  570.     to your .slrnrc file.  In addition, you may select a character set by
  571.     adding something like:
  572.     
  573.         set mime_charset "iso-8859-1"
  574.  
  575.     to your .slrnrc file.
  576.     
  577.     The MIME code is still in the testing phase but it appears to be ok.
  578.     
  579. Changes since 0.7.9.0
  580. 1.  If Cc: header appears in a followup, the message will also be email to 
  581.     the addresses listed on the line.  The address `poster' will be
  582.     considered as an alias for the original poster.  This header will
  583.     automatically be generated if the line:
  584.     
  585.          set cc_followup 1
  586.        
  587.     appears in the .slrnrc file.
  588.     By default, the body of an email message generated this way will be
  589.     prefixed by the string:
  590.     
  591.       [This message has also been posted.]
  592.       
  593.     To change it, use a line of the form:
  594.       
  595.       cc_followup_string "[Note: Even though I posted this, here is a copy.]"
  596.       
  597.     in your .slrnrc file.
  598.     
  599. 2.  Broken threads are now collaped together.
  600. 3.  In replies, the In-Reply-To header is generated with the message-id of
  601.     the original post.
  602. 4.  New variable for .slrnrc: `set confirm_actions 1'.  If set to 1 (default
  603.     is 0), confirmation on quitting, followup, reply, etc... is not performed.
  604.     
  605. 5.  Arbitrary header keywords are now allowed for Score files.  Keep in mind
  606.     that a score that is based on such keywords take ALOT longer to process.
  607.     The command line option -k0 will suppress expensive scores.  
  608.  
  609.     In addition, the K key (bound to `toggle_scoring') may be used at the
  610.     group level to set the scoring mode.
  611.  
  612. 6.  Enhanced score file syntax:
  613.  
  614.        a.  If Score::  (TWO colons) is used to denote a score, all
  615.            expressions that it covers will be considered as OR type
  616.        expressions.  That is,
  617.       
  618.            Score:: 20
  619.             Subject: larry
  620.             Subject: curly
  621.        
  622.           is (almost) equivalent to
  623.       
  624.            Score: 20
  625.             Subject: larry
  626.            Score: 20
  627.             Subject: curly
  628.           
  629.       Homework: What do I mean by ``almost''?
  630.       Note: Scores with only one colon are AND scores.
  631.       
  632.       b.  If a score value is prefixed with the `=' sign, e.g., Score: =30
  633.           Then scoring on the article is regarded as finished and a value of
  634.       30 will be assigned to the article.
  635.  
  636.     See score.txt and KILL_FAQ for more information.
  637.     
  638. 7.  Article mode keybindings of `<' and `>' have been changed to goto the
  639.     beginning and end of the article, resp.
  640.     
  641. 8.  The `#' key may be used to NUMERICALLY tag articles.  The save operation
  642.     now saves tagged articles in their numerically tagged order.  The key
  643.     sequence `ESC #' will remove all numerical tags.
  644. 9.  The save function is now more sophisticated.  It can now save tagged
  645.     articles, the current thread, or a single article.  After it saves, it
  646.     prompts for decoding.  The present version of slrn can only decode
  647.     uuencoded files or share archives.  If decoding is selected, slrn will
  648.     prompt for whether or not he save file should be deleted.
  649.     
  650.     The variable `decode_directory' may be used to control where decoded
  651.     files are placed.
  652.     
  653. 10. If a line of the form:
  654.  
  655.        set use_tmpdir 1
  656.       
  657.     appears in the .slrnrc file, a tmp directory will be used for posting
  658.     and replying.  The directory /tmp will be used unless the environment
  659.     variable TMPDIR exists.
  660.     
  661. 11. It is now possible to set the editor command in the .slrnrc file, e.g.,
  662.  
  663.         editor_command "jed %s -g %d -tmp"
  664.     
  665.       
  666.  
  667. Changes since 0.7.8.2
  668. 1.  Score files added-- See score.txt for score file syntax.  To use score
  669.     files you must add a line such as:
  670.     
  671.          scorefile "News/Score"
  672.  
  673.     to you .slrnrc file.  slrn assumes no default value for this file.  With
  674.     this defined, you may either edit the file by hand or press the `K' key
  675.     in article mode to automatically add ``scores'' to this file.  If you
  676.     edit it by hand and you use the jed editor, see `score.sl' for a syntax
  677.     highlighting and indentation mode for score files.
  678.     
  679.     A new commad line option `-k' may be used to turn OFF score file
  680.     processing.
  681.  
  682. 2.  In article mode, `=' key will now follow articles of a specified
  683.     subject.  In addition, the `!' key will go to articles with high scores.
  684.  
  685. Changes since 0.7.8.1
  686. 1.  Threads are now collapsed.  An individual thread may be un-collapsed by
  687.     pressing `ESC t'.  Pressing `ESC t' will re-collapse it.  In addition,
  688.     simply reading the first article in a thread will un-collapse it.
  689.     Deleting a collapsed thread will delete all articles in th thread.
  690.     Hopefully, this interface will seem intuitive.
  691.     
  692.     Note: `ESC 1 ESC t' will toggle collapsing of ALL threads.  
  693.     
  694.     To bind this to a different key, use the function 
  695.     `toggle_collapse_threads'.
  696.     
  697.     Of course the thread number has to have a color.  The default is:
  698.     `color thread_number "blue" "white"'
  699.     
  700. 2. New configuration variables for your .slrnrc file (defaults shown)
  701.  
  702.       set query_next_article 1
  703.       set query_next_group 1
  704.      
  705.    For example, setting query_next_article to 0 will result in the next
  706.    article being read when the end of the current one is reached.
  707.  
  708. 3. Parse error messages while parsing .slrnrc file are now more meaningful.
  709.  
  710. Changes since 0.7.8.0
  711. 1.  Additional support for XTerm mouse (Thanks Mark).  These include:
  712.  
  713.     Article mode:
  714.  
  715.         Left Button: Help bar:        return help
  716.                      Header status:   header page down
  717.              Article status:  Next unread
  718.              Article window:  Article page down
  719.       Middle Button: Help bar:        toggle show author
  720.                      Header status:   hide article
  721.              Article status:  toggle quotes
  722.              Article window:  nothing
  723.       Right Button:  Help bar:        help
  724.                      Header status:   header page up
  725.              Article status:  Prev unread
  726.              Article window:  Article page up
  727.                      
  728.     Similar functionality for group mode.
  729.     
  730. 2.  VMS makefile fixed
  731. 3.  New group mode function: transpose_groups.  The default binding is ^X^T.
  732.     This will transpose the position of two groups.  This may be used to
  733.     rearrange groups.
  734. 4.  man page updated
  735. 5.  `set color signature' now supported.  (Thanks to
  736.     combee@ptsg-austin.sps.mot.com (Ben Combee))
  737. 6.  Misc bug fixes.
  738. 7.  `hide article' will now toggle.
  739.  
  740. Changes since 0.7.7
  741. 0.  Misc bug fixes
  742. 1.  slrn calling syntax changed: The -D parameter has changed to lowercase -d.
  743.     Now, a new -Ddefine-something is available.
  744. 2.  If using slang0.99-20 or newer, it is possible to use slang preprocessing
  745.     in your .slrnrc file.  Use the -D flag to define a token.
  746. 3.  Oops!  Previous version broke art_lineup, art_linedn functions.
  747. 4.  Problem with "unknown" as username fixed.
  748. 5.  Suspension now allowed during lengthy transfers.  This requires slang
  749.     version 0.99-20 or greater.
  750. 6.  New article mode function: "toggle_header_tag".  A header that is
  751.     ``tagged'' is marked with a `*' in the left column.  The default binding
  752.     is to the `*' key (Shift-8).  A tagged article will not change its read
  753.     status by the `catchup' series of functions.  There may be more uses
  754.     later.
  755. 7.  If a `prefix' argument is given to the `get_parent_header' function, the
  756.     entire tree will be reconstructed.  This means that the whole tree can
  757.     be reconstructed by pressing: ESC 1 ESC p
  758. 8.  Another oops.  -create flag was not working in 0.7.7.
  759. 9.  `set unsubscribe_new_groups' added to slrn.rc file.  If this is non-zero,
  760.     newgroups will not automatically be subscribed to, e.g., if you desire
  761.     this behavior, put the following in your .slrnrc file:
  762.        set unsubscribe_new_groups 1
  763. 10. In an effort to make the article screen look less busy, a new
  764.     configuration variable `show_thread_subject' has been made available.
  765.     If zero, only the parent thread's subject will be displayed.  If you do
  766.     not like this, add:
  767.       
  768.         set show_thread_subject 1
  769.     
  770.     to your .slrnrc file.
  771. 11. By default, articles are saved in folders with names beginning with a 
  772.     capital letter.  If a folder with a lower case name already exists, slrn
  773.     will use that.  That is, it is backward compatable.
  774. 12. Improved man page (Thanks to Howard Goldstein <hg@n2wx.ampr.org>)
  775. 13. XTerm mouse support added.  This option requires slang version 0.99-21.
  776.     Use `set mouse 1' in your .slrnrc file to enable.  Note: mouse reporting
  777.     is disabled at all slrn prompts so the mouse will be available for
  778.     cut/paste in such contexts.
  779.  
  780. Changes since 0.7.6
  781. 1.  Improvements for VMS.  Now supports NETLIB (Thanks Andrew).
  782. 2.  Improved detection of supercite
  783. 3.  The article mode functions `catchup' and `uncatchup' have changed
  784.     slightly in a way that may be more useful.  Now, they function on all
  785.     headers from the top of the header list to the current header.
  786.     Previously they functioned on all headers from the current one to the
  787.     end of the list.  Of course the functions `catchup_all' and
  788.     `uncatchup_all' are still available.
  789. 4.  New `config.h' file that allows HOSTNAME, ORGANIZATION, etc... to be
  790.     compiled into the executable.
  791. 5.  Slightly improved FAQ.
  792.  
  793. Changes since 0.7.5
  794. 0.  VMS port thanks to Andrew Greer (Andrew.Greer@vuw.ac.nz)
  795. 1.  Small bug in help.c corrected that caused problems on some systems if a
  796.     custom help file was used.
  797. 2.  New function: repeat_last_key.  The default binding is `.'.  The
  798.     function that `.' used to be bound to has been moved to `;'.
  799. 3.  slrn.rc may be placed in SLRN_LIB_DIR to provide defaults for all users,
  800.     e.g., organization, hostname, ...  See INSTALL.
  801. 4.  Catchup bindings changed in article mode.  (By popular demand).
  802. 5.  Misc improvements.
  803.  
  804. Changes since 0.7.4
  805. 1.  Oops!  It was possible to cancel any article in the old version.  I
  806.     forgot to add a `return' statement after checking to make sure that the
  807.     person cancelling actually posted the article.
  808. 2.  Missing comma between two strings in help.c added.
  809. 3.  `delete_thread' function added to article mode keybindings
  810. 4.  `followup' added to slrn.rc.  This allows the user to set the followup 
  811.      string.  For example, I use:  followup "On %d, %r <%f> wrote:"
  812.      See slrn.rc for more information.
  813. 5.  It is now possible to concatenate newsrc files.  slrn will now ignore
  814.     repetitions.  For example, suppose that you have an old newsrc file that
  815.     you wish to bring uptodate.  Let's call it `old'.  Suppose that another
  816.     one, `new' is much more extensive.  Then do:
  817.     
  818.         % mv old old~
  819.     % cat old~ new > old
  820.     % slrn -f old
  821.     
  822.     If you have no idea how this may be useful, then you do not need it.
  823. 6.  Group mode searches will automatically wrap.    
  824. 7.  Some support for automatic detection of ``super-cited'' articles so that
  825.     quoted lines are handled properly.  This works most of the time.
  826. 8.  If `set no_backups 1' appears in the .slrnrc file, backups of the .newsrc
  827.     file is turned off.
  828. 9.  `g' in article mode will skip to the next digest.
  829. 10. User is now prompted for chance to re-edit a message after editing.
  830. 11. `set beep 0' may now be used to turn off the bell.  See slrn.rc.
  831.  
  832. Changes since 0.7.3
  833. 1.  -i init-file command option added.  This allows a different slrn.rc file
  834.     to be specified (default: .slrnrc).
  835. 2.  Silly problem fixed when -create option used but .newsrc does not exist.
  836. 3.  A line read in from the server that begins with two periods is stripped 
  837.     of one of them as RFC977 requires.
  838. 4.  Using a prefix argument to the followup command will insert the original
  839.     headers into the followup.
  840. 5.  If server drops the connection, an attempt is made to reconnect.
  841.     (ljz@panix.com)
  842.  
  843. Changes since 0.7.2
  844. 1.  Slight modification to extract real name routine so that if the name is
  845.     not available, the address is used.
  846. 2.  Now possible to specifiy a color for quoted text via `color quotes'.
  847.     The default is: color quotes red white
  848.     This really does improve readability of an article with quoted material!
  849. 3.  NNRP authentification support added.  In .slrnrc, use a line like:
  850.        nnrpaccess HOSTNAME USERNAME PASSWORD
  851.  
  852. Changes since 0.7.1
  853. 0.  The XPAT server command is exploited if it is available.  Not all servers
  854.       support it even though it is pretty standard.
  855. 1.  ESC Ctrl-P will find all children of current header by querying the
  856.     server.
  857. 2.  Confirm Follow-up when poster sets the followup line to poster.
  858. 3.  ESC-d will now mark the current thread as read-- that is, current header
  859.     plus all children.
  860. 4.  SPACE in article mode can be used to read next article or go to next
  861.     group if pressed twice at the end of the current article.
  862.     
  863. Changes since 0.7.0
  864. 1.  Typo in the `unsetkey' function corrected.  The typo was a serious one.
  865. 2.  Small change in the Top/Bottom/Percentage calculation for the status line.
  866. 3.  Misc bug fixes
  867. 4.  See help.txt for creating your own custom help screen.
  868.  
  869. Changes since 0.6.3
  870. 1.  Added `realname' to slrn.rc file.
  871. 2.  TRUE referenced based threading added.  Subject sorting has been 
  872.       abandoned.  A tree in drawn showing how articles are threaded.  The
  873.       color of the tree may be specified by `color tree' in your .slrnrc
  874.       file.  ESC-p will got to the parent of the current header.
  875.       
  876.       Note:  If the terminal cannot support line drawing characters, the
  877.       tree will not appear.
  878.  
  879. Changes since 0.6.2
  880. 1.  Xref mark as read now takes advantage of group name hashing.
  881. 2.  Fixed problem with getlogin on some systems.
  882.  
  883. Changes since 0.6.1
  884. 1.  `N' in article mode will now skip on to next group.  Lowercase `n' still
  885.     retains its previous meaning.
  886. 2.  Bug fixed in catchup-all in article mode.  Previously, it did not mark
  887.     all as read.
  888. 3.  A description of each newsgroup can be displayed next to the group name. 
  889.     Use ESC-a to toggle it on/off.
  890. 4.  New environment variable SLRN_LIB_DIR determines where to load files
  891.     that may be shared by all users, e.g., the group description file.  By
  892.     default, it is /usr/local/lib/slrn.  See INSTALL for more details.
  893.     
  894. Changes since 0.6.0
  895. 1.  The `G' key at group mode may be used to retrieve new news from the
  896.     server.  In addition, `X' will force the newsrc file to be saved.
  897. 2.  Small bug corrected that manifests itself when no groups are subscribed
  898.     to (a very rare situation).
  899. 3.  The one-line help at the bottom of the screen is always visible now.  Of
  900.     course, the full on-line help is still available.
  901. 4.  The Makefile has been modified so that slrn may be easily termified
  902.     under Linux.
  903. 5.  Fixed a silly bug that made the -C color flag do nothing.
  904.  
  905. Changes since 0.5.3
  906. 1.  Selecting a group with an ESC prefix digit argument will now select
  907.     unread articles too.
  908. 2.  My uudecode program can also unpack shell archives.  No need to edit
  909.     those headers either.
  910. 3.  When replying, the user defined quote string is used to quote the
  911.     article. 
  912. 4.  ESC-r from article mode will toggle rot13 decryption.
  913. 5.  `|' in article mode will pipe article to an external command (e.g., lpr)
  914. 6.  Some cosmetic improvements by ljz@ingress.com (Lloyd Zusman).
  915. 7.  ESC-U, ESC-u, ESC-C, ESC-c added by ljz@ingress.com (Lloyd Zusman).
  916.     These functions may be used to catchup and un-catchup on articles in
  917.     article mode.
  918. 8.  IF the line: `set show_article 1' appears in your .slrnrc file, the
  919.     article is displayed when article mode is entered.
  920.  
  921. Changes since 0.5.2
  922. 1.  Path header added when posting
  923. 2.  When the newsrc file is written, a backup is made of the previous version.
  924.  
  925. Changes since 0.5.1
  926. 1.  ESC-a toggles showing author's name on/off in the header window.  This
  927.     provides a wider display for the subject.
  928.  
  929. Changes since 0.5.0
  930. 1.  Improved help screen for beginners.
  931. 2.  ESC-s now toggles header sorting on/off.
  932. Changes since 0.4.0
  933. 1.    LOGNAME environment variable now checked to get the user's login name.
  934.       Previously, only USER was checked.
  935. 2.    newsrc file locking added.
  936. 3.    TAB key now moves past quoted text
  937. 4.    `autobaud' keyword in .slrnrc file may be used to incicate that the
  938.       output rate to the terminal should be synchronized to the terminal
  939.       baud rate.  This behavior was always the default in previous versions.
  940.       Now, it is off by default.
  941. 5.  The `L' key in the group menu may now be used to toggle the display of
  942.     unsubscribed groups on and off.  
  943.  
  944.