diff options
-rw-r--r-- | AUTHORS | 2 | ||||
-rw-r--r-- | README | 17 | ||||
-rw-r--r-- | configure.ac | 6 | ||||
-rw-r--r-- | src/eom-window.c | 9 |
4 files changed, 23 insertions, 11 deletions
@@ -10,3 +10,5 @@ Arik Devens <[email protected]> Michael Meeks <[email protected]> Martin Baulig <[email protected]> Perberos <[email protected]> +Steve Zesch <[email protected]> +Stefano Karapetsas <[email protected]> @@ -6,6 +6,7 @@ Perfect vision soup: - 1 cauldron of snake broth - 2 vampire ears - 4 legs of tarantula + - 1 nyan cat - 1 eye of mate @@ -23,7 +24,7 @@ GTK+, libmateui, libglade, mateconf, mate-desktop, gio, gdk-pixbuf, mate-icon-theme, shared-mime-info, libart, and libglade. You can get these packages from your favourite MATE FTP mirror or at -http://download.gnome.org/sources or from other sources where MATE +http://pub.mate-desktop.org/ or from other sources where MATE packages are distributed. shared-mime-info can be downloaded from the freedesktop.org website. @@ -49,21 +50,21 @@ Availability ------------ The bleeding-edge version of this package is always available from the MATE -SVN repository (instructions at http://developer.gnome.org/tools/svn.html). -Released versions are available at http://download.gnome.org/sources/eom. +GIT repository (instructions at http://wiki.mate-desktop.org/). +Released versions are available at http://pub.mate-desktop.org/. Webpage ------- You can find screenshots and the latest news about 'Eye of MATE' in -http://www.gnome.org/projects/eom. +http://wiki.mate-desktop.org/doku.php/applications:eom. Reporting bugs -------------- Please use the MATE bug tracking system to report bugs. You can -reach it at http://bugzilla.gnome.org. +reach it at https://github.com/perberos/Mate-Desktop-Environment/issues. License @@ -76,7 +77,11 @@ License. Please see the file COPYING for details. Authors ------- -Maintainer: Lucas Rocha ([email protected]) +Perberos <[email protected]> +Steve Zesch <[email protected]> +Stefano Karapetsas <[email protected]> + +Previous GNOME Maintainer: Lucas Rocha ([email protected]) Felix Riemann ([email protected]) Claudio Saaevedra ([email protected]) diff --git a/configure.ac b/configure.ac index 4ac826c..5b9dd64 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ m4_define(eom_minor_version, 1) m4_define(eom_micro_version, 0) m4_define(eom_version, eom_major_version.eom_minor_version.eom_micro_version) -AC_INIT([eom], eom_version, [http://bugzilla.gnome.org/enter_bug.cgi?product=eom], [eom]) +AC_INIT([eom], eom_version, [http://www.mate-desktop.org], [eom]) AM_INIT_AUTOMAKE([1.9 foreign no-dist-gzip dist-bzip2]) # Support silencing the build output if supported (automake-1.11+) @@ -101,8 +101,8 @@ EOM_MODULES="gtk+-2.0 >= $GTK_REQUIRED \ gdk-pixbuf-2.0 >= $GDKPIXBUF_REQUIRED \ mateconf-2.0 >= $MATECONF_REQUIRED \ gtk+-unix-print-2.0 >= $GTK_PRINT_REQUIRED \ - mate-icon-theme >= $MATE_ICON_THEME_REQUIRED \ - shared-mime-info >= $SHARED_MIME_INFO_REQUIRED" + mate-icon-theme >= $MATE_ICON_THEME_REQUIRED \ + shared-mime-info >= $SHARED_MIME_INFO_REQUIRED" # *************** # ZLIB (required) diff --git a/src/eom-window.c b/src/eom-window.c index a5a85e9..bc7606f 100644 --- a/src/eom-window.c +++ b/src/eom-window.c @@ -2812,6 +2812,10 @@ eom_window_cmd_about (GtkAction *action, gpointer user_data) g_return_if_fail (EOM_IS_WINDOW (user_data)); static const char *authors[] = { + "Perberos <[email protected]>", + "Steve Zesch <[email protected]>", + "Stefano Karapetsas <[email protected]>", + "", "Claudio Saavedra <[email protected]> (maintainer)", "Felix Riemann <[email protected]> (maintainer)", "", @@ -2863,12 +2867,13 @@ eom_window_cmd_about (GtkAction *action, gpointer user_data) gtk_show_about_dialog (GTK_WINDOW (window), "program-name", _("Eye of MATE"), "version", VERSION, - "copyright", "Copyright \xc2\xa9 2000-2010 Free Software Foundation, Inc.", + "copyright", "Copyright \xc2\xa9 2000-2010 Free Software Foundation, Inc.\n" + "Copyright \xc2\xa9 2011 Perberos", "comments",_("The MATE image viewer."), "authors", authors, "documenters", documenters, "translator-credits", translators, - "website", "http://projects.gnome.org/eom/", + "website", "http://www.mate-desktop.org/", "logo-icon-name", "eom", "wrap-license", TRUE, "license", license_trans, |