diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..f1c2b1e --- /dev/null +++ b/NEWS @@ -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. diff --git a/setup.py b/setup.py index 35086f6..8adb607 100755 --- a/setup.py +++ b/setup.py @@ -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', diff --git a/wizpym.py b/wizpym.py index bbe66b2..63259ad 100644 --- a/wizpym.py +++ b/wizpym.py @@ -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__))