From: Sean E. <sea...@us...> - 2002-09-26 07:37:54
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv29880 Modified Files: ChangeLog configure.ac configure.in Log Message: In the interest of continued progress, I pulled what's usable out of my development tree and am committing it. Here, we have gotten rid of the plugins dialog and perl menu under Tools and put them both in preferences. Perl scripts now work like plugins--you have to load them explicitly (it will probe $prefix/lib/gaim and $HOME/.gaim for them) and you can unload them (although right now, this is entirely unreliable) Oh, and I broke all your perl scripts. Sorry about that. Don't try fixing them yet, though--I'm gonna make unloading single scripts more reliable tommorow. I should also finish Phase Two tommorow as well. Index: ChangeLog =================================================================== RCS file: /cvsroot/gaim/gaim/ChangeLog,v retrieving revision 1.546 retrieving revision 1.547 diff -u -d -r1.546 -r1.547 --- ChangeLog 16 Sep 2002 08:35:12 -0000 1.546 +++ ChangeLog 26 Sep 2002 07:37:51 -0000 1.547 @@ -26,7 +26,6 @@ * Updated desktop and window icons (Thanks Robert McQueen) * GTK2 Goodness: - Preferences dialog - - Plugins dialog (Ari Pollak) - GtkIMHtml, sorta (Ari Pollak, Christian Hammond) - Buddy Icons - IM Images @@ -74,6 +73,7 @@ * Docklet plugin--replaces the old GNOME applet. You'll need the Panel Notification Area applet for GNOME 2, or the patch from RedHat for KDE 3. (Thanks Robert McQueen) + * Plugins dialog and perl script menu merged into preferences. version 0.59 (06/24/2002): * Hungarian translation added (Thanks, Sutto Zoltan) Index: configure.ac =================================================================== RCS file: /cvsroot/gaim/gaim/configure.ac,v retrieving revision 1.81 retrieving revision 1.82 diff -u -d -r1.81 -r1.82 --- configure.ac 14 Sep 2002 23:27:25 -0000 1.81 +++ configure.ac 26 Sep 2002 07:37:51 -0000 1.82 @@ -120,11 +120,11 @@ AC_DEFINE(DEBUG) fi -AM_PATH_GLIB_2_0(1.3.0,,AC_MSG_ERROR([ +AM_PATH_GLIB_2_0(2.0.0,,AC_MSG_ERROR([ *** GLib 2.0 is required to build Gaim; please make sure you have the GLib *** development headers installed. The latest version of GLib is *** always available at http://www.gtk.org/.])) -AM_PATH_GTK_2_0(1.3.0,,AC_MSG_ERROR([ +AM_PATH_GTK_2_0(2.0.0,,AC_MSG_ERROR([ *** GTK+ 2.0 is required to build Gaim; please make sure you have the GTK+ *** development headers installed. The latest version of GTK+ is *** always available at http://www.gtk.org/.])) Index: configure.in =================================================================== RCS file: /cvsroot/gaim/gaim/configure.in,v retrieving revision 1.130 retrieving revision 1.131 diff -u -d -r1.130 -r1.131 --- configure.in 14 Sep 2002 23:27:26 -0000 1.130 +++ configure.in 26 Sep 2002 07:37:51 -0000 1.131 @@ -120,11 +120,11 @@ fi -AM_PATH_GLIB_2_0(1.3.0,,AC_MSG_ERROR([ +AM_PATH_GLIB_2_0(2.0.0,,AC_MSG_ERROR([ *** GLib 2.0 is required to build Gaim; please make sure you have the GLib *** development headers installed. The latest version of GLib is *** always available at http://www.gtk.org/.])) -AM_PATH_GTK_2_0(1.3.0,,AC_MSG_ERROR([ +AM_PATH_GTK_2_0(2.0.0,,AC_MSG_ERROR([ *** GTK+ 2.0 is required to build Gaim; please make sure you have the GTK+ *** development headers installed. The latest version of GTK+ is *** always available at http://www.gtk.org/.])) |