aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.in6
-rw-r--r--image/ethereal.rc12
-rw-r--r--plugins.c10
3 files changed, 14 insertions, 14 deletions
diff --git a/configure.in b/configure.in
index 93712371bc..92b37d789c 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.91 2000/05/09 03:09:55 gram Exp $
+# $Id: configure.in,v 1.92 2000/06/07 02:36:58 gram Exp $
dnl
dnl Process this file with autoconf 2.13 or later to produce a
dnl configure script; 2.12 doesn't generate a "configure" script that
@@ -13,7 +13,7 @@ AC_INIT(etypes.h)
AC_PREREQ(2.13)
-AM_INIT_AUTOMAKE(ethereal, 0.8.8)
+AM_INIT_AUTOMAKE(ethereal, 0.8.9)
AM_CONDITIONAL(SETUID_INSTALL, test x$enable_setuid_install = xyes)
@@ -365,7 +365,7 @@ AC_ARG_WITH(plugindir,
*) PLUGIN_DIR="$withval"
esac
],
- : ${PLUGIN_DIR=$libdir/ethereal/plugins/0.8.8}
+ : ${PLUGIN_DIR=$libdir/ethereal/plugins/0.8.9}
)
PLUGIN_DIR=`(
diff --git a/image/ethereal.rc b/image/ethereal.rc
index 430f0df9ed..db4f8095e8 100644
--- a/image/ethereal.rc
+++ b/image/ethereal.rc
@@ -3,8 +3,8 @@
ETHEREAL_ICON ICON "ethereal.ico"
VS_VERSION_INFO VERSIONINFO
- FILEVERSION 0,8,8,0
- PRODUCTVERSION 0,8,8,0
+ FILEVERSION 0,8,9,0
+ PRODUCTVERSION 0,8,9,0
FILEFLAGSMASK 0x0L
#ifdef _DEBUG
FILEFLAGS 0x3L
@@ -19,14 +19,14 @@ BEGIN
BEGIN
BLOCK "040904b0"
BEGIN
- VALUE "CompanyName", "The Ethereal developer community\0"
+ VALUE "CompanyName", "The Ethereal developer community, http://ethereal.zing.org\0"
VALUE "FileDescription", "Ethereal\0"
- VALUE "FileVersion", "0.8.8\0"
- VALUE "InternalName", "Ethereal 0.8.8\0"
+ VALUE "FileVersion", "0.8.9\0"
+ VALUE "InternalName", "Ethereal 0.8.9\0"
VALUE "LegalCopyright", "Copyright © 2000 Gerald Combs <gerald@zing.org>, Gilbert Ramirez <gram@xiexie.org> and others\0"
VALUE "OriginalFilename", "Ethereal.exe\0"
VALUE "ProductName", "Ethereal\0"
- VALUE "ProductVersion", "0.8.8\0"
+ VALUE "ProductVersion", "0.8.9\0"
END
END
BLOCK "VarFileInfo"
diff --git a/plugins.c b/plugins.c
index 55b323ffc6..de0dadf418 100644
--- a/plugins.c
+++ b/plugins.c
@@ -1,7 +1,7 @@
/* plugins.c
* plugin routines
*
- * $Id: plugins.c,v 1.17 2000/05/31 18:32:06 gram Exp $
+ * $Id: plugins.c,v 1.18 2000/06/07 02:36:59 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -67,11 +67,11 @@ plugin *plugin_list;
guint32 enabled_plugins_number;
#ifdef WIN32
-static gchar std_plug_dir[] = "c:/program files/ethereal/plugins/0.8.8";
-static gchar local_plug_dir[] = "c:/ethereal/plugins/0.8.8";
+static gchar std_plug_dir[] = "c:/program files/ethereal/plugins/0.8.9";
+static gchar local_plug_dir[] = "c:/ethereal/plugins/0.8.9";
#else
-static gchar std_plug_dir[] = "/usr/lib/ethereal/plugins/0.8.8";
-static gchar local_plug_dir[] = "/usr/local/lib/ethereal/plugins/0.8.8";
+static gchar std_plug_dir[] = "/usr/lib/ethereal/plugins/0.8.9";
+static gchar local_plug_dir[] = "/usr/local/lib/ethereal/plugins/0.8.9";
#endif
static gchar *user_plug_dir = NULL;
static gchar *plugin_status_file = NULL;