2001-06-09 Dave Peticolas <dave@krondo.com>

* doc/sgml/C/xacc-about.sgml: update credits

	* src/gnome/window-main.c (gnc_main_window_about_cb): update
	credits

	* AUTHORS: update credits


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4574 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2001-06-10 00:33:43 +00:00
parent f492dacff6
commit 8335e2abe9
4 changed files with 19 additions and 6 deletions

View File

@ -62,7 +62,7 @@ Robert Graham Merkel <rgmerk@mira.net> extensive work on reports and
James LewisMoss <dres@debian.org> design doc patches, XML refactoring,
automated test suite, new file hierarchy import.
Christian Stimming <stimming@uclink.berkeley.edu> is a report-generating
Christian Stimming <stimming@tuhh.de> is a report-generating
monster. He's been on of the largest contributors to the current report
infrastructure, creating many of the important reports.
@ -163,7 +163,7 @@ Richard Skelton <rich@brake.demon.co.uk> for Solaris cleanup
Henning Spruth <spruth@bigfoot.com> for German text & euro date rework
Ben Stanley <bds02@uow.edu.au> test infrastructure
Robby Stephenson <robby.stephenson@usa.net> register & file history patches
Christian Stimming <stimming@uclink.berkeley.edu> report patch
Christian Stimming <stimming@tuhh.de> report patch
Bartek Szady <bszx@bszxdomain.edu.eu.org> engine and build system patches
Herbert Thoma <tma@iis.fhg.de> gnome register & euro support patches
Arnold Troeger <troeger@samart.co.th> Mandrake packager

View File

@ -1,5 +1,12 @@
2001-06-09 Dave Peticolas <dave@krondo.com>
* doc/sgml/C/xacc-about.sgml: update credits
* src/gnome/window-main.c (gnc_main_window_about_cb): update
credits
* AUTHORS: update credits
* src/gnome/reconcile-list.c (gnc_reconcile_list_refresh): fix
bugs

View File

@ -162,7 +162,7 @@ linkend="scheme"> Scheme </link>, the <link linkend="gwrap"> g-wrap
</glossentry>
<glossentry>
<glossterm><email>stimming@uclink.berkeley.edu</email>Christian
<glossterm><email>stimming@tuhh.de</email>Christian
Stimming</glossterm>
<glossdef>
<para>
@ -907,7 +907,7 @@ Nielsen</glossterm>
</glossentry>
<glossentry>
<glossterm><email>stimming@uclink.berkeley.edu</email> Christian
<glossterm><email>stimming@tuhh.de</email> Christian
Stimming</glossterm>
<glossdef>
<para>report patch</para>

View File

@ -872,15 +872,21 @@ gnc_main_window_about_cb (GtkWidget *widget, gpointer data)
"The GNU way to manage your money!");
const gchar *copyright = "(C) 1998-2001 Linas Vepstas";
const gchar *authors[] = {
"Rob Browning <rlb@cs.utexas.edu>",
"Bill Gribble <grib@billgribble.com>",
"James LewisMoss <dres@debian.org>",
"Robert Graham Merkel <rgmerk@mira.net>",
"Dave Peticolas <dave@krondo.com>",
"Christian Stimming <stimming@tuhh.de>",
"Linas Vepstas <linas@linas.org>",
NULL
};
about = gnome_about_new ("GnuCash", VERSION, copyright,
authors, message, NULL);
gnome_dialog_set_parent (GNOME_DIALOG(about),
GTK_WINDOW(gnc_ui_get_toplevel()));
gnome_dialog_run_and_close (GNOME_DIALOG(about));
}