commit 8f1a0975c13478cc1a375b904ca1589362c09cf1 Author: Damian Johnson atagar@torproject.org Date: Tue Jun 28 07:43:18 2011 -0700
Using @torproject.org address rather than @gmail
Switching the address in the man page, readme, and about dialog to my @tpo address. Looks nicer, though if this is ever invalidated then I will be _very_ unhappy. --- README | 2 +- arm.1 | 2 +- src/cli/popups.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/README b/README index 835b02b..2e0bd6e 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ arm (anonymizing relay monitor) - Terminal status monitor for Tor relays. -Developed by Damian Johnson (www.atagar.com - atagar1@gmail.com) +Developed by Damian Johnson (www.atagar.com - atagar@torproject.org) All code under the GPL v3 (http://www.gnu.org/licenses/gpl.html) Project page: www.atagar.com/arm
diff --git a/arm.1 b/arm.1 index 7743035..7edb5ef 100644 --- a/arm.1 +++ b/arm.1 @@ -70,5 +70,5 @@ Your personal arm configuration file Sample armrc configuration file that documents all options
.SH AUTHOR -Written by Damian Johnson (atagar1@gmail.com) +Written by Damian Johnson (atagar@torproject.org)
diff --git a/src/cli/popups.py b/src/cli/popups.py index 7254f4a..8a41f73 100644 --- a/src/cli/popups.py +++ b/src/cli/popups.py @@ -170,7 +170,7 @@ def showAboutPopup(): popup.win.box() popup.addstr(0, 0, "About:", curses.A_STANDOUT) popup.addstr(1, 2, "arm, version %s (released %s)" % (version.VERSION, version.LAST_MODIFIED), curses.A_BOLD) - popup.addstr(2, 4, "Written by Damian Johnson (atagar1@gmail.com)") + popup.addstr(2, 4, "Written by Damian Johnson (atagar@torproject.org)") popup.addstr(3, 4, "Project page: www.atagar.com/arm") popup.addstr(5, 2, "Released under the GPL v3 (http://www.gnu.org/licenses/gpl.html)") popup.addstr(7, 2, "Press any key...")
tor-commits@lists.torproject.org