Cosmetics for v0.2.

This commit is contained in:
David Soulayrol 2010-11-22 12:10:25 +01:00
parent 97b2b6840d
commit ab1f896047
3 changed files with 19 additions and 2 deletions

17
NEWS Normal file
View file

@ -0,0 +1,17 @@
* v0.2
This version mainly introduces some facilities to place common
components on the panes. These components are not mandatory and can
happily be ignored. They are all hidden by default.
- A header message, packed to the top of the pane, aims at providing
indications or help on the current pane activity or inputs.
- An error message, packed at the bottom of the pane, to signal some
contextual event, like the necessity to fill some input, an error
which occured during a background task, and so on.
- A progress bar in ActivePane instances, packed just above the
error message.
A pane now can also clear itself. See `git log' for other fixes.

View file

@ -13,7 +13,7 @@ setup(name='wizpym',
long_description=read('README'),
author='David Soulayrol',
author_email='david.soulayrol@gmail.com',
url='http://david.soulayrol.name/projects/wizpym',
url='http://david.soulayrol.name/projects/wizpym/',
requires=['gobject(>=2.4)', 'gtk(>=2.4)'],
classifiers=[
'Development Status :: 4 - Beta',

View file

@ -36,7 +36,7 @@ import gtk
import threading
__all__ = ['InvalidPane', 'Pane', 'ActivePane', 'Frame']
__version_info__ = (0, 1, 0)
__version_info__ = (0, 2, 0)
__version__ = '.'.join((str(i) for i in __version_info__))