Changeset 154

Show
Ignore:
Timestamp:
04/05/2004 11:00:04 PM (5 years ago)
Author:
mwm
Message:

Update the NEWS file for the 2.6 release.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/NEWS

    r152 r154  
    11-*-outline-*- 
     2 
     3* Version 2.6 (5 Apr 2004) 
     4 
     5This is mostly a bug fix release, to get the latest set of fixes out 
     6the door. 
     7 
     8** Distutils is now used to build and install plwm. 
     9 
     10** We now require Python 2.0 or later. Python 1.5 is no longer supported. 
     11 
     12** Mike Meyer (mwm@mired.org) is now administering PLWM. 
     13 
     14** New mixin: mixer.py. 
     15 
     16This is a new mixin for controlling the audio mixer. Currently, it 
     17only supports "rexima", but it should be easy to extend to "aumix" 
     18etc. 
     19 
     20** Menu screen mixin is now configurable. 
     21 
     22The menu screen mixin has been extended to use menu_font, 
     23menu_foreground, menu_background, menu_bordercolor, and 
     24menu_borderwidth when it draws menus on the screen. The default is 
     259x15Bold, black, white, black and 3. menu_seconds is the number of 
     26seconds the menu will be onscreen before it vanishes of it's own 
     27accord. The default value is 0, which means to stay until a selection 
     28is made or the menu is cancelled. 
     29 
     30** Message screen mixin is now configurable. 
     31 
     32The message screen mixin can now be configured with message_font, 
     33message_foreground, message_background, message_bordercolor and 
     34message_borderwidth. message_seconds controls how long the message is 
     35displayed for, with a default value of 5 seconds. 
     36 
     37** Screen.system now allows i/o redirection. 
     38 
     39The Screen.system method now takes an extra argument, redirect. This 
     40argument should either be a single integer between 0 and 2 inclusive, 
     41or a tuple of such integers. These fd's are redirected to pipes, and 
     42the resulting pipes are returned as a three-tuple. Supplying redirect 
     43implies that the command will be run in the background. 
    244 
    345* Version 2.5 (6 Mar 2002)