Changeset 1a8c72d228f2ed9188448dc094a01132e6079eba

Show
Ignore:
Timestamp:
11/02/08 03:11:48 (2 months ago)
Author:
njs@…
Branch:
org.vorpus.parti
Parent:
02a15de9a1ee05e142e0b89548d4a87d7e9e4f07
Child:
6d94b0554a270739a57324bae488131c7913bf40
Message:

bump version number; write NEWS for v0.0.5

Files:
4 modified

Legend:

Unmodified
Added
Removed
  • /NEWS

    rf2f5.. r1a8c..  
     1v0.0.5 (2008-11-02) 
     2=================== 
     3 
     4General: 
     5  -- Logging cleanup -- all logging now goes through the Python 
     6     logging framework instead of using raw 'prints'.  By default 
     7     debug logging is suppressed, but can be enabled in a fine- or 
     8     coarse-grained way. 
     9 
     10Xpra: 
     11  -- Protocol changes; v0.0.5 clients can only be used with v0.0.5 
     12     servers, and vice-versa.  Use 'xpra upgrade' to upgrade old 
     13     servers without losing your session state. 
     14  -- Man page now included. 
     15  Important bug fixes: 
     16  -- Qt apps formerly could not receive keyboard input due to a focus 
     17     handling bug; now fixed. 
     18  -- Fedora's pygtk2 has mysterious local hacks that broke xpra; 
     19     a workaround is now included. 
     20  UI improvements: 
     21  -- 'xpra attach ssh:machine' now works out-of-the-box even if xpra 
     22     is not present in the remote machine's PATH, or requires 
     23     PYTHONPATH tweaks, or whatever.  (The server does still need to 
     24     be running on the remote machine, though, of course.) 
     25  -- Commands that connect to a running xpra server ('attach', 'stop', 
     26     etc.) now can generally be used without specifying the name of 
     27     the server, assuming only one server is running.  (E.g., instead 
     28     of 'xpra attach :10', you can use 'xpra attach'; ditto for remote 
     29     hosts, you can now use plain 'xpra attach ssh:remote'.) 
     30  -- Mouse scroll wheels now supported. 
     31  -- 'xpra start' can now spawn child programs directly (--with-child) 
     32     and exit automatically when these children have exited 
     33     (--exit-with-children). 
     34  Other: 
     35  -- More robust strategy for handling window stacking order. 
     36     (Side-effect: the xpra client no longer requires you to be using 
     37     an EWMH-compliant window manager.) 
     38  -- The xpra client no longer crashes when receiving an unknown key 
     39     event (e.g. a multimedia key). 
     40  -- Very brief transient windows (e.g., tooltips) no longer create 
     41     persistent "litter" on the screen. 
     42  -- Windows with non-empty X borders (e.g., xterm popup menus) are 
     43     now handled properly. 
     44  -- Withdrawn windows no longer reappear after 'xpra upgrade'. 
     45 
     46Wimpiggy: 
     47  -- Do not segfault when querying the tree structure of destroyed 
     48     windows. 
     49  -- Other bugfixes. 
     50 
     51Parti: 
     52  -- No changes. 
     53 
    154v0.0.4 (2008-04-04) 
    255=================== 
  • /parti/__init__.py

    rf2f5.. r1a8c..  
    22pygtk.require('2.0') 
    33 
    4 __version__ = "0.0.4" 
     4__version__ = "0.0.5" 
    55import wimpiggy 
    66assert wimpiggy.__version__ == __version__ 
  • /wimpiggy/__init__.py

    rf2f5.. r1a8c..  
    22pygtk.require('2.0') 
    33 
    4 __version__ = "0.0.4" 
     4__version__ = "0.0.5" 
  • /xpra/__init__.py

    rf2f5.. r1a8c..  
    22pygtk.require('2.0') 
    33 
    4 __version__ = "0.0.4" 
     4__version__ = "0.0.5" 
    55import wimpiggy 
    66assert wimpiggy.__version__ == __version__