aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2012-05-16 09:11:55 +0800
committerJavier Jardón <jjardon@gnome.org>2012-05-16 16:49:55 +0800
commit874e72d0d2cf35844f6dfa7d6b56b2fba5b90f18 (patch)
tree4bd4e2b46a4ada194f8f926bf4feaf110b8f960b
parentdfb3a6b6ed46bbdb3c9f4fbf1c398ddf2e1b2a19 (diff)
downloadgsoc2013-evolution-874e72d0d2cf35844f6dfa7d6b56b2fba5b90f18.tar
gsoc2013-evolution-874e72d0d2cf35844f6dfa7d6b56b2fba5b90f18.tar.gz
gsoc2013-evolution-874e72d0d2cf35844f6dfa7d6b56b2fba5b90f18.tar.bz2
gsoc2013-evolution-874e72d0d2cf35844f6dfa7d6b56b2fba5b90f18.tar.lz
gsoc2013-evolution-874e72d0d2cf35844f6dfa7d6b56b2fba5b90f18.tar.xz
gsoc2013-evolution-874e72d0d2cf35844f6dfa7d6b56b2fba5b90f18.tar.zst
gsoc2013-evolution-874e72d0d2cf35844f6dfa7d6b56b2fba5b90f18.zip
Update About dialog content
-rw-r--r--configure.ac4
-rw-r--r--shell/e-shell-window-actions.c9
2 files changed, 6 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac
index 1fd476ba26..a9970d31e4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -21,8 +21,8 @@ dnl varying versions. Reset to 0 whenever BASE_VERSION changes.
m4_define([upgrade_revision], [0])
dnl Autoconf / Automake Initialization
-AC_PREREQ(2.58)
-AC_INIT([evolution],[evo_version],[http://bugzilla.gnome.org/enter_bug.cgi?product=Evolution])
+AC_PREREQ([2.64])
+AC_INIT([evolution],[evo_version],[http://bugzilla.gnome.org/enter_bug.cgi?product=Evolution],[evolution],[http://www.gnome.org/projects/evolution/])
AM_INIT_AUTOMAKE([1.10 dist-xz no-dist-gzip -Wall -Werror -Wno-portability foreign])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS(config.h)
diff --git a/shell/e-shell-window-actions.c b/shell/e-shell-window-actions.c
index 4dc1e1cda9..ae4642e205 100644
--- a/shell/e-shell-window-actions.c
+++ b/shell/e-shell-window-actions.c
@@ -34,10 +34,8 @@
#include <libedataserverui/e-categories-editor.h>
#define EVOLUTION_COPYRIGHT \
- "Copyright \xC2\xA9 1999 - 2008 Novell, Inc. and Others"
-
-#define EVOLUTION_WEBSITE \
- "http://www.gnome.org/projects/evolution/"
+ "Copyright \xC2\xA9 1999 - 2008 Novell, Inc. and Others\n" \
+ "Copyright \xC2\xA9 2008 - 2012 The Evolution Team"
/* Authors and Documenters
*
@@ -652,12 +650,13 @@ action_about_cb (GtkAction *action,
"version", VERSION,
"copyright", EVOLUTION_COPYRIGHT,
"comments", _("Groupware Suite"),
- "website", EVOLUTION_WEBSITE,
+ "website", PACKAGE_URL,
"website-label", _("Evolution Website"),
"authors", authors,
"documenters", documenters,
"translator-credits", translator_credits,
"logo-icon-name", "evolution",
+ "license-type", GTK_LICENSE_GPL_2_0,
NULL);
}