/* * Ayttm * * Copyright (C) 2003, the Ayttm team * * Ayttm is derivative of Everybuddy * Copyright (C) 1999-2002, Torrey Searle * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ #include "intl.h" #include "about.h" #include "ui_about_window.h" /* Ayttm developers */ #define AYTTM_TEAM_SIZE (5) static tDeveloperInfo sAyttmDevTeam[AYTTM_TEAM_SIZE] = { {"Colin Leroy", "", "Lead Developer"}, {"Andy S. Maloney", "", "Code Monkey"}, {"Philip S. Tellis", "", "Yahoo!"}, {"Edward L. Haletky", "", "Windows Port"}, {"Tahir Hashmi", "", "Documentation"} }; /* Kudos */ #define KUDOS_SIZE (6) static tDeveloperInfo sKudosPeople[KUDOS_SIZE] = { {"Yann Marigo", "", "Art, Fr translation"}, {"Ben Reser", "", "Patches, MDK RPMs"}, {"Lee Leahu", "", "Patches"}, {"Richard Ellis", "", "Patches"}, {"Paul Rhodes", "", "Patches"}, {"Nicolas Peninguy", "", "Patches"} }; /* Everybuddy developers */ #define EVERYBUDDY_TEAM_SIZE (11) static tDeveloperInfo sEverybuddyDevTeam[EVERYBUDDY_TEAM_SIZE] = { {"Torrey Searle", "", "Creator"}, {"Ben Rigas", "", "Web Design & GUI Devel"}, {"Jared Peterson", "", "GUI Devel"}, {"Alex Wheeler", "", "Jabber Devel & Much More"}, {"Robert Lazzurs", "", "Maintainer"}, {"Meredydd", "", "MSN Devel"}, {"Erik Inge Bolso", "", "IRC Devel"}, {"Colin Leroy", "", "Various hacks, i18n"}, {"Philip Tellis", "", "Yahoo!"}, {"Toby A. Inkster", "", "Patches"}, {"Mark Spencer", "", "Special Thanks"} }; void ay_show_about( void ) { tAboutInfo the_info; the_info.m_version = PACKAGE_STRING "-" RELEASE "\n" __DATE__; the_info.m_ay_developers = sAyttmDevTeam; the_info.m_num_ay_developers = AYTTM_TEAM_SIZE; the_info.m_ay_kudos = sKudosPeople; the_info.m_num_ay_kudos = KUDOS_SIZE; the_info.m_eb_developers = sEverybuddyDevTeam; the_info.m_num_eb_developers = EVERYBUDDY_TEAM_SIZE; ay_ui_about_window_create( &the_info ); }