changeset 72:e497bf7e3060 0.3.0

version update
author Goffi <goffi@goffi.org>
date Wed, 26 Feb 2014 15:39:38 +0100
parents eddb8369ba06
children 62c4288e5a97
files CHANGELOG README setup.py
diffstat 3 files changed, 15 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/CHANGELOG	Tue Feb 04 17:55:41 2014 +0100
+++ b/CHANGELOG	Wed Feb 26 15:39:38 2014 +0100
@@ -1,5 +1,12 @@
 All theses changelog are not exhaustive, please check mercurial repository for more details.
 
+v 0.3.0 (26/02/2014):
+	- updates for recent Urwid (> 1.1.0)
+	- updated deprecated FlowWidget use
+	- new ListOption, to manage labels and values
+	- removed __valid_text workaround
+	- added TableContainer
+
 v 0.2.0 (09/01/2013):
 	- new ModalEdit (manage modes à la vi)
 	- new "dir" style FileDialog
--- a/README	Tue Feb 04 17:55:41 2014 +0100
+++ b/README	Wed Feb 26 15:39:38 2014 +0100
@@ -1,11 +1,10 @@
-urwid-satext v0.2.0
-(c) Jérôme Poisson aka Goffi 2008, 2009, 2010, 2011, 2012, 2013; 2014
+urwid-satext v0.3.0
+(c) Jérôme Poisson aka Goffi 2008, 2009, 2010, 2011, 2012, 2013, 2014
 
 urwid-satext, or urwid SàT extensions, is a widgets library based on Urwid
 
 
-
-** LICENSE **
+** LICENCE **
 
 urwid-satext is free software: you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as published by
@@ -21,9 +20,7 @@
 along with urwid-satext.  If not, see <http://www.gnu.org/licenses/>.
 
 
-
-
-** WTF ? **
+** About **
 urwid-satext is a widgets based on top of the excellent Urwid (http://excess.org/urwid/) console user interface library.
 It was originally made for the "Salut à Toi" project, an XMPP/Jabber multi-frontend client, but was eventually separated to be used by other urwid projects.
 
@@ -41,6 +38,7 @@
 You can see the documentation at http://wiki.goffi.org/wiki/urwid-satext .
 Also check examples directory.
 
+
 ** Credit **
 
 A big big thank to the authors/contributors of Urwid (http://excess.org/urwid/), of course.
@@ -49,11 +47,9 @@
 If I forgot any credit (and I probably have), please contact me (mail below) to fix it.
 
 
-
-
-
 ** Contact **
 
-You can contact me on goffi@goffi.org
+You can contact me on goffi@goffi.org (e-mail) or goffi@jabber.fr (xmpp)
 my blog (in french) is at http://www.goffi.org
+SàT official site: http://www.salut-a-toi.org
 urwid-satext wiki page is at http://wiki.goffi.org/wiki/urwid-satext , you will find there link to the latests release, the repository, etc.
--- a/setup.py	Tue Feb 04 17:55:41 2014 +0100
+++ b/setup.py	Wed Feb 26 15:39:38 2014 +0100
@@ -12,7 +12,7 @@
 name = 'urwid_satext'
 
 setup(name=name,
-      version='0.2.0',
+      version='0.3.0',
       description=u'SàT extension widgets for Urwid',
       long_description=u'Urwid SàT extension widgets is a set of widgets for the console user interface library Urwid (http://excess.org/urwid/). This library, originaly made for the SàT project, was eventually separated so other softwares can use it. Widgets provided include password text box, tab container, dialogs, file chooser etc. Feel free to go to the project page for more informations.',
       author='Goffi (Jérôme Poisson)',