]> code.delx.au - offlineimap/blobdiff - offlineimap/version.py
Update version info
[offlineimap] / offlineimap / version.py
index 01a8a587149f74bf02f8a024dc135ef9a7d4e49f..c715ab52a4a9077b78103536737ca53841750ca6 100644 (file)
@@ -1,15 +1,15 @@
 productname = 'OfflineIMAP'
-versionstr = "4.0.16"
+versionstr = "5.99.0"
 
 versionlist = versionstr.split(".")
 major = versionlist[0]
 minor = versionlist[1]
 patch = versionlist[2]
-copyright = "Copyright (C) 2002 - 2006 John Goerzen"
+copyright = "Copyright (C) 2002 - 2007 John Goerzen"
 author = "John Goerzen"
 author_email = "jgoerzen@complete.org"
 description = "Disconnected Universal IMAP Mail Synchronization/Reader Support"
-bigcopyright = """%(productname)s %(versionstr)s (%(revstr)s)
+bigcopyright = """%(productname)s %(versionstr)s
 %(copyright)s <%(author_email)s>""" % locals()
 
 banner = bigcopyright + """
@@ -18,7 +18,7 @@ COPYING for details.  This is free software, and you are welcome
 to distribute it under the conditions laid out in COPYING."""
 
 homepage = "http://software.complete.org/offlineimap/"
-license = """Copyright (C) 2002 - 2006 John Goerzen <jgoerzen@complete.org>
+license = """Copyright (C) 2002 - 2007 John Goerzen <jgoerzen@complete.org>
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -100,7 +100,10 @@ cmdhelp = """
               configuration file.  The UI specified with -u  will
               be  forced to be used, even if its isuable() method
               states that it cannot be.   Use  this  option  with
-              care.   The  pre-defined  options are listed in the
-              USER INTERFACES section.
-
+              care.   The  pre-defined  options, described in the
+              USER INTERFACES section of the man page, are:
 """
+from offlineimap.ui import detector
+import os
+for ui in detector.DEFAULT_UI_LIST:
+    cmdhelp += "                " + ui + os.linesep