From ead5ccf567c4ddee918561259840093ed134febb Mon Sep 17 00:00:00 2001 From: Jim Nelson Date: Mon, 20 Jun 2011 11:40:22 -0700 Subject: [PATCH] Authors credit in About box wasn't null terminated (#3762) and license text now refers to Geary (#3761). Additionally, the authors list now includes an email address. --- src/client/GearyApplication.vala | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/client/GearyApplication.vala b/src/client/GearyApplication.vala index 326a4b0d..17998dbf 100644 --- a/src/client/GearyApplication.vala +++ b/src/client/GearyApplication.vala @@ -14,22 +14,23 @@ public class GearyApplication : YorbaApplication { public static string WEBSITE_LABEL = _("Visit the Yorba web site"); public const string[] AUTHORS = { - "Jim Nelson" + "Jim Nelson ", + null }; public const string LICENSE = """ -Shotwell is free software; you can redistribute it and/or modify it under the +Geary is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. -Shotwell is distributed in the hope that it will be useful, but WITHOUT +Geary is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License -along with Shotwell; if not, write to the Free Software Foundation, Inc., +along with Geary; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA """;