diff --git a/AUTHORS b/AUTHORS index 5369221..a629671 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,3 +1,4 @@ +Tom Van Braeckel (tomvanbraeckel@gmail.com) Adam Blackburn (compwiz18@gmail.com) Dan O'Reilly (oreilldf@gmail.com) Andrew Psaltis (ampsaltis@gmail.com) diff --git a/curses/wicd-curses.py b/curses/wicd-curses.py index efc3cf6..28649e5 100755 --- a/curses/wicd-curses.py +++ b/curses/wicd-curses.py @@ -216,11 +216,12 @@ def about_dialog(body): " http://launchpad.net/wicd\n", ('green', " \\\\\\"), " |+| ", ('green', "///"), " ", _('Brought to you by:'), "\n", -('green', " \\\\\\"), " |+| ", ('green', "///"), " Adam Blackburn\n", -" ___|+|___ Dan O'Reilly\n", -" ____|+|____ Andrew Psaltis\n", -" |-----------| David Paleino\n"] - about = TextDialog(theText, 17, 55, header=('header', _('About Wicd'))) +('green', " \\\\\\"), " |+| ", ('green', "///"), " * Tom Van Braeckel\n", +" __|+|__ * Adam Blackburn\n", +" ___|+|___ * Dan O'Reilly\n", +" ____|+|____ * Andrew Psaltis\n", +" |-----------| * David Paleino\n"] + about = TextDialog(theText, 18, 55, header=('header', _('About Wicd'))) about.run(ui, body) diff --git a/gtk/gui.py b/gtk/gui.py index f9a015b..1dcf723 100644 --- a/gtk/gui.py +++ b/gtk/gui.py @@ -435,6 +435,7 @@ class appGui(object): dialog.set_name("Wicd") dialog.set_version(daemon.Hello()) dialog.set_authors([ + "Tom Van Braeckel", "Adam Blackburn", "Dan O'Reilly", "Andrew Psaltis", diff --git a/setup.py b/setup.py index 6e20556..ea0dbc3 100755 --- a/setup.py +++ b/setup.py @@ -700,8 +700,8 @@ to easily add encryption methods used. It ships with some common encryption types, such as WPA and WEP. Wicd will automatically connect at startup to any preferred network within range. """, - author = "Adam Blackburn, Dan O'Reilly, Andrew Psaltis, David Paleino", - author_email = "compwiz18@gmail.com, oreilldf@gmail.com, ampsaltis@gmail.com, d.paleino@gmail.com", + author = "Tom Van Braeckel, Adam Blackburn, Dan O'Reilly, Andrew Psaltis, David Paleino", + author_email = "tomvanbraeckel@gmail.com, compwiz18@gmail.com, oreilldf@gmail.com, ampsaltis@gmail.com, d.paleino@gmail.com", url = "https://launchpad.net/wicd", license = "http://www.gnu.org/licenses/old-licenses/gpl-2.0.html", py_modules = py_modules,