Now Time in the About box (when it was build not current)

* src/nautilus-window-menus.c: (help_menu_about_nautilus_callback):
	fix 1997, So you have time in the about box.
	* acconfig.h: added undef for NAUTILUS_TIMESTAMP
	* configure.in: added define for NAUTILUS_TIMESTAMP
This commit is contained in:
Robin Slomkowski 2000-08-05 01:34:57 +00:00
parent 8319c5d7ef
commit 6a0d2d44c6
5 changed files with 30 additions and 3 deletions

View file

@ -1,3 +1,10 @@
2000-08-04 Robin * Slomkowski <rslomkow@eazel.com>
* src/nautilus-window-menus.c: (help_menu_about_nautilus_callback):
fix 1997, So you have time in the about box.
* acconfig.h: added undef for NAUTILUS_TIMESTAMP
* configure.in: added define for NAUTILUS_TIMESTAMP
2000-08-04 John Sullivan <sullivan@eazel.com>
Fixed unreported crash-at-boot bug I ran into when
@ -20,6 +27,7 @@
Fixed the mysterious resizing flashing bug. lay_down_icons
computed canvas_width wrong. bug #1929
>>>>>>> 1.1261
2000-08-04 Andy Hertzfeld <andy@eazel.com>
* libnautilus-extensions/nautilus-icon-canvas-item.c:

View file

@ -18,4 +18,4 @@
#undef HAVE_RPM
#undef HAVE_STPCPY
#undef USING_OAF
#undef NAUTILUS_TIMESTAMP

View file

@ -393,6 +393,11 @@ else
AC_MSG_RESULT(no)
fi
dnl
dnl Do the timestamp
dnl
AC_DEFINE_UNQUOTED(NAUTILUS_TIMESTAMP,"`date`")
AC_OUTPUT([
nautilus.spec
Makefile

View file

@ -410,6 +410,8 @@ help_menu_about_nautilus_callback (BonoboUIHandler *ui_handler,
static GtkWidget *aboot = NULL;
if (aboot == NULL) {
char *about_string;
const char *authors[] = {
"Darin Adler",
"Pavel Císler",
@ -426,13 +428,18 @@ help_menu_about_nautilus_callback (BonoboUIHandler *ui_handler,
NULL
};
about_string = g_strdup_printf (_("The Gnome Shell\n%s"),
NAUTILUS_TIMESTAMP);
aboot = gnome_about_new(_("Nautilus"),
VERSION,
"Copyright (C) 1999, 2000",
authors,
_("The Gnome Shell"),
about_string,
"nautilus/About_Image.png");
g_free (about_string);
gnome_dialog_close_hides (GNOME_DIALOG (aboot), TRUE);
}

View file

@ -410,6 +410,8 @@ help_menu_about_nautilus_callback (BonoboUIHandler *ui_handler,
static GtkWidget *aboot = NULL;
if (aboot == NULL) {
char *about_string;
const char *authors[] = {
"Darin Adler",
"Pavel Císler",
@ -426,13 +428,18 @@ help_menu_about_nautilus_callback (BonoboUIHandler *ui_handler,
NULL
};
about_string = g_strdup_printf (_("The Gnome Shell\n%s"),
NAUTILUS_TIMESTAMP);
aboot = gnome_about_new(_("Nautilus"),
VERSION,
"Copyright (C) 1999, 2000",
authors,
_("The Gnome Shell"),
about_string,
"nautilus/About_Image.png");
g_free (about_string);
gnome_dialog_close_hides (GNOME_DIALOG (aboot), TRUE);
}